feat(canvas): register social shapes in shape registry for cross-rApp sharing
Import, define, and register folk-social-thread, folk-social-campaign, and folk-social-newsletter in canvas.html so they're available on any canvas across rSpaces, rSchedule, rFlows, etc. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
77ac0c1e32
commit
0f3eb45ffa
|
|
@ -2454,6 +2454,9 @@
|
||||||
FolkSpider3D,
|
FolkSpider3D,
|
||||||
FolkChoiceConviction,
|
FolkChoiceConviction,
|
||||||
FolkSocialPost,
|
FolkSocialPost,
|
||||||
|
FolkSocialThread,
|
||||||
|
FolkSocialCampaign,
|
||||||
|
FolkSocialNewsletter,
|
||||||
FolkSplat,
|
FolkSplat,
|
||||||
FolkBlender,
|
FolkBlender,
|
||||||
FolkDrawfast,
|
FolkDrawfast,
|
||||||
|
|
@ -2698,6 +2701,9 @@
|
||||||
FolkSpider3D.define();
|
FolkSpider3D.define();
|
||||||
FolkChoiceConviction.define();
|
FolkChoiceConviction.define();
|
||||||
FolkSocialPost.define();
|
FolkSocialPost.define();
|
||||||
|
FolkSocialThread.define();
|
||||||
|
FolkSocialCampaign.define();
|
||||||
|
FolkSocialNewsletter.define();
|
||||||
FolkSplat.define();
|
FolkSplat.define();
|
||||||
FolkBlender.define();
|
FolkBlender.define();
|
||||||
FolkDrawfast.define();
|
FolkDrawfast.define();
|
||||||
|
|
@ -2745,6 +2751,9 @@
|
||||||
shapeRegistry.register("folk-spider-3d", FolkSpider3D);
|
shapeRegistry.register("folk-spider-3d", FolkSpider3D);
|
||||||
shapeRegistry.register("folk-choice-conviction", FolkChoiceConviction);
|
shapeRegistry.register("folk-choice-conviction", FolkChoiceConviction);
|
||||||
shapeRegistry.register("folk-social-post", FolkSocialPost);
|
shapeRegistry.register("folk-social-post", FolkSocialPost);
|
||||||
|
shapeRegistry.register("folk-social-thread", FolkSocialThread);
|
||||||
|
shapeRegistry.register("folk-social-campaign", FolkSocialCampaign);
|
||||||
|
shapeRegistry.register("folk-social-newsletter", FolkSocialNewsletter);
|
||||||
shapeRegistry.register("folk-splat", FolkSplat);
|
shapeRegistry.register("folk-splat", FolkSplat);
|
||||||
shapeRegistry.register("folk-blender", FolkBlender);
|
shapeRegistry.register("folk-blender", FolkBlender);
|
||||||
shapeRegistry.register("folk-drawfast", FolkDrawfast);
|
shapeRegistry.register("folk-drawfast", FolkDrawfast);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue