@supernova-studio/client 0.9.2 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +145 -244
- package/dist/index.d.ts +145 -244
- package/dist/index.js +256 -99
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +245 -88
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-system.ts +11 -0
- package/src/api/dto/index.ts +1 -0
- package/src/docs-editor/blocks-to-prosemirror.ts +8 -4
- package/src/docs-editor/mock.ts +2 -1374
- package/src/docs-editor/prosemirror-to-blocks.ts +20 -25
package/src/docs-editor/mock.ts
CHANGED
|
@@ -2192,7 +2192,7 @@ const blocks: PageBlockDefinition[] = [
|
|
|
2192
2192
|
},
|
|
2193
2193
|
},
|
|
2194
2194
|
{
|
|
2195
|
-
id: "io.supernova.block.figma-
|
|
2195
|
+
id: "io.supernova.block.figma-nodes",
|
|
2196
2196
|
name: "Figma frames",
|
|
2197
2197
|
description: "Display Figma frames as images",
|
|
2198
2198
|
category: "Figma",
|
|
@@ -2255,7 +2255,7 @@ const blocks: PageBlockDefinition[] = [
|
|
|
2255
2255
|
defaultVariantKey: "bordered",
|
|
2256
2256
|
},
|
|
2257
2257
|
behavior: {
|
|
2258
|
-
dataType: "
|
|
2258
|
+
dataType: "FigmaNode",
|
|
2259
2259
|
entities: {
|
|
2260
2260
|
selectionType: "Entity",
|
|
2261
2261
|
maxSelected: 0,
|
|
@@ -2511,1375 +2511,3 @@ const blocks: PageBlockDefinition[] = [
|
|
|
2511
2511
|
},
|
|
2512
2512
|
},
|
|
2513
2513
|
];
|
|
2514
|
-
|
|
2515
|
-
// const blocks: PageBlockDefinition[] = [
|
|
2516
|
-
// {
|
|
2517
|
-
// id: "io.supernova.block.rich-text",
|
|
2518
|
-
// name: "Text",
|
|
2519
|
-
// description: "Plain text",
|
|
2520
|
-
// category: "Text",
|
|
2521
|
-
// searchKeywords: ["paragraph", "rich text"],
|
|
2522
|
-
// item: {
|
|
2523
|
-
// properties: [
|
|
2524
|
-
// {
|
|
2525
|
-
// id: "text",
|
|
2526
|
-
// name: "Text",
|
|
2527
|
-
// type: "RichText",
|
|
2528
|
-
// description: undefined,
|
|
2529
|
-
// options: {
|
|
2530
|
-
// placeholder: "Start writing with plain text",
|
|
2531
|
-
// richTextStyle: "Default",
|
|
2532
|
-
// },
|
|
2533
|
-
// variantOptions: undefined,
|
|
2534
|
-
// },
|
|
2535
|
-
// ],
|
|
2536
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2537
|
-
// variants: [
|
|
2538
|
-
// {
|
|
2539
|
-
// id: "default",
|
|
2540
|
-
// name: "Default",
|
|
2541
|
-
// image: undefined,
|
|
2542
|
-
// description: undefined,
|
|
2543
|
-
// documentationLink: undefined,
|
|
2544
|
-
// layout: { type: "Column", children: ["text"] },
|
|
2545
|
-
// maxColumns: 1,
|
|
2546
|
-
// defaultColumns: 1,
|
|
2547
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2548
|
-
// },
|
|
2549
|
-
// ],
|
|
2550
|
-
// defaultVariantKey: "default",
|
|
2551
|
-
// },
|
|
2552
|
-
// behavior: {
|
|
2553
|
-
// dataType: "Item",
|
|
2554
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2555
|
-
// entities: undefined,
|
|
2556
|
-
// },
|
|
2557
|
-
// editorOptions: {
|
|
2558
|
-
// onboarding: {
|
|
2559
|
-
// helpText: "Use rich text block to write text and add additional formatting to it.",
|
|
2560
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/text-HxZ9ssJR",
|
|
2561
|
-
// },
|
|
2562
|
-
// },
|
|
2563
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2564
|
-
// },
|
|
2565
|
-
// {
|
|
2566
|
-
// id: "io.supernova.block.title1",
|
|
2567
|
-
// name: "Title 1",
|
|
2568
|
-
// description: "Main sections within the page",
|
|
2569
|
-
// category: "Text",
|
|
2570
|
-
// searchKeywords: ["heading"],
|
|
2571
|
-
// item: {
|
|
2572
|
-
// properties: [
|
|
2573
|
-
// {
|
|
2574
|
-
// id: "text",
|
|
2575
|
-
// name: "Text",
|
|
2576
|
-
// type: "RichText",
|
|
2577
|
-
// options: { placeholder: "Title 1", richTextStyle: "Title1" },
|
|
2578
|
-
// },
|
|
2579
|
-
// ],
|
|
2580
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2581
|
-
// variants: [
|
|
2582
|
-
// {
|
|
2583
|
-
// id: "default",
|
|
2584
|
-
// name: "Default",
|
|
2585
|
-
// documentationLink: undefined,
|
|
2586
|
-
// layout: { type: "Column", children: ["text"] },
|
|
2587
|
-
// maxColumns: 1,
|
|
2588
|
-
// defaultColumns: 1,
|
|
2589
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2590
|
-
// },
|
|
2591
|
-
// ],
|
|
2592
|
-
// defaultVariantKey: "default",
|
|
2593
|
-
// },
|
|
2594
|
-
// behavior: {
|
|
2595
|
-
// dataType: "Item",
|
|
2596
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2597
|
-
// entities: undefined,
|
|
2598
|
-
// },
|
|
2599
|
-
// editorOptions: {
|
|
2600
|
-
// onboarding: {
|
|
2601
|
-
// helpText: "Use for main sections within the page, introducing broad topics or themes.",
|
|
2602
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/heading-MUKlJ7dY",
|
|
2603
|
-
// },
|
|
2604
|
-
// },
|
|
2605
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2606
|
-
// },
|
|
2607
|
-
// {
|
|
2608
|
-
// id: "io.supernova.block.title2",
|
|
2609
|
-
// name: "Title 2",
|
|
2610
|
-
// description: "Section subheadings",
|
|
2611
|
-
// category: "Text",
|
|
2612
|
-
// icon: undefined,
|
|
2613
|
-
// documentationLink: undefined,
|
|
2614
|
-
// searchKeywords: ["heading"],
|
|
2615
|
-
// item: {
|
|
2616
|
-
// properties: [
|
|
2617
|
-
// {
|
|
2618
|
-
// id: "text",
|
|
2619
|
-
// name: "Text",
|
|
2620
|
-
// type: "RichText",
|
|
2621
|
-
// description: undefined,
|
|
2622
|
-
// options: { placeholder: "Title 2", richTextStyle: "Title2" },
|
|
2623
|
-
// variantOptions: undefined,
|
|
2624
|
-
// },
|
|
2625
|
-
// ],
|
|
2626
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2627
|
-
// variants: [
|
|
2628
|
-
// {
|
|
2629
|
-
// id: "default",
|
|
2630
|
-
// name: "Default",
|
|
2631
|
-
// image: undefined,
|
|
2632
|
-
// description: undefined,
|
|
2633
|
-
// documentationLink: undefined,
|
|
2634
|
-
// layout: { type: "Column", children: ["text"] },
|
|
2635
|
-
// maxColumns: 1,
|
|
2636
|
-
// defaultColumns: 1,
|
|
2637
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2638
|
-
// },
|
|
2639
|
-
// ],
|
|
2640
|
-
// defaultVariantKey: "default",
|
|
2641
|
-
// },
|
|
2642
|
-
// behavior: {
|
|
2643
|
-
// dataType: "Item",
|
|
2644
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2645
|
-
// entities: undefined,
|
|
2646
|
-
// },
|
|
2647
|
-
// editorOptions: {
|
|
2648
|
-
// onboarding: {
|
|
2649
|
-
// helpText: "Use for subheadings, indicating major subsections under the main sections.",
|
|
2650
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/heading-MUKlJ7dY",
|
|
2651
|
-
// },
|
|
2652
|
-
// },
|
|
2653
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2654
|
-
// },
|
|
2655
|
-
// {
|
|
2656
|
-
// id: "io.supernova.block.title3",
|
|
2657
|
-
// name: "Title 3",
|
|
2658
|
-
// description: "Further subsections",
|
|
2659
|
-
// category: "Text",
|
|
2660
|
-
// icon: undefined,
|
|
2661
|
-
// documentationLink: undefined,
|
|
2662
|
-
// searchKeywords: ["heading"],
|
|
2663
|
-
// item: {
|
|
2664
|
-
// properties: [
|
|
2665
|
-
// {
|
|
2666
|
-
// id: "text",
|
|
2667
|
-
// name: "Text",
|
|
2668
|
-
// type: "RichText",
|
|
2669
|
-
// description: undefined,
|
|
2670
|
-
// options: { placeholder: "Title 3", richTextStyle: "Title3" },
|
|
2671
|
-
// variantOptions: undefined,
|
|
2672
|
-
// },
|
|
2673
|
-
// ],
|
|
2674
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2675
|
-
// variants: [
|
|
2676
|
-
// {
|
|
2677
|
-
// id: "default",
|
|
2678
|
-
// name: "Default",
|
|
2679
|
-
// image: undefined,
|
|
2680
|
-
// description: undefined,
|
|
2681
|
-
// documentationLink: undefined,
|
|
2682
|
-
// layout: { type: "Column", children: ["text"] },
|
|
2683
|
-
// maxColumns: 1,
|
|
2684
|
-
// defaultColumns: 1,
|
|
2685
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2686
|
-
// },
|
|
2687
|
-
// ],
|
|
2688
|
-
// defaultVariantKey: "default",
|
|
2689
|
-
// },
|
|
2690
|
-
// behavior: {
|
|
2691
|
-
// dataType: "Item",
|
|
2692
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2693
|
-
// entities: undefined,
|
|
2694
|
-
// },
|
|
2695
|
-
// editorOptions: {
|
|
2696
|
-
// onboarding: {
|
|
2697
|
-
// helpText: "Use for further subsections, detailing specific topics within the major subsections.",
|
|
2698
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/heading-MUKlJ7dY",
|
|
2699
|
-
// },
|
|
2700
|
-
// },
|
|
2701
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2702
|
-
// },
|
|
2703
|
-
// {
|
|
2704
|
-
// id: "io.supernova.block.title4",
|
|
2705
|
-
// name: "Title 4",
|
|
2706
|
-
// description: "Details in subsections",
|
|
2707
|
-
// category: "Text",
|
|
2708
|
-
// icon: undefined,
|
|
2709
|
-
// documentationLink: undefined,
|
|
2710
|
-
// searchKeywords: ["heading"],
|
|
2711
|
-
// item: {
|
|
2712
|
-
// properties: [
|
|
2713
|
-
// {
|
|
2714
|
-
// id: "text",
|
|
2715
|
-
// name: "Text",
|
|
2716
|
-
// type: "RichText",
|
|
2717
|
-
// description: undefined,
|
|
2718
|
-
// options: { placeholder: "Title 4", richTextStyle: "Title4" },
|
|
2719
|
-
// variantOptions: undefined,
|
|
2720
|
-
// },
|
|
2721
|
-
// ],
|
|
2722
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2723
|
-
// variants: [
|
|
2724
|
-
// {
|
|
2725
|
-
// id: "default",
|
|
2726
|
-
// name: "Default",
|
|
2727
|
-
// image: undefined,
|
|
2728
|
-
// description: undefined,
|
|
2729
|
-
// documentationLink: undefined,
|
|
2730
|
-
// layout: { type: "Column", children: ["text"] },
|
|
2731
|
-
// maxColumns: 1,
|
|
2732
|
-
// defaultColumns: 1,
|
|
2733
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2734
|
-
// },
|
|
2735
|
-
// ],
|
|
2736
|
-
// defaultVariantKey: "default",
|
|
2737
|
-
// },
|
|
2738
|
-
// behavior: {
|
|
2739
|
-
// dataType: "Item",
|
|
2740
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2741
|
-
// entities: undefined,
|
|
2742
|
-
// },
|
|
2743
|
-
// editorOptions: {
|
|
2744
|
-
// onboarding: {
|
|
2745
|
-
// helpText: "Use for sub-divisions, elaborating on details within the subsections.",
|
|
2746
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/heading-MUKlJ7dY",
|
|
2747
|
-
// },
|
|
2748
|
-
// },
|
|
2749
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2750
|
-
// },
|
|
2751
|
-
// {
|
|
2752
|
-
// id: "io.supernova.block.title5",
|
|
2753
|
-
// name: "Title 5",
|
|
2754
|
-
// description: "Nuanced details or sub-points",
|
|
2755
|
-
// category: "Text",
|
|
2756
|
-
// icon: undefined,
|
|
2757
|
-
// documentationLink: undefined,
|
|
2758
|
-
// searchKeywords: ["heading"],
|
|
2759
|
-
// item: {
|
|
2760
|
-
// properties: [
|
|
2761
|
-
// {
|
|
2762
|
-
// id: "text",
|
|
2763
|
-
// name: "Text",
|
|
2764
|
-
// type: "RichText",
|
|
2765
|
-
// description: undefined,
|
|
2766
|
-
// options: { placeholder: "Title 5", richTextStyle: "Title5" },
|
|
2767
|
-
// variantOptions: undefined,
|
|
2768
|
-
// },
|
|
2769
|
-
// ],
|
|
2770
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2771
|
-
// variants: [
|
|
2772
|
-
// {
|
|
2773
|
-
// id: "default",
|
|
2774
|
-
// name: "Default",
|
|
2775
|
-
// image: undefined,
|
|
2776
|
-
// description: undefined,
|
|
2777
|
-
// documentationLink: undefined,
|
|
2778
|
-
// layout: { type: "Column", children: ["text"] },
|
|
2779
|
-
// maxColumns: 1,
|
|
2780
|
-
// defaultColumns: 1,
|
|
2781
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2782
|
-
// },
|
|
2783
|
-
// ],
|
|
2784
|
-
// defaultVariantKey: "default",
|
|
2785
|
-
// },
|
|
2786
|
-
// behavior: {
|
|
2787
|
-
// dataType: "Item",
|
|
2788
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2789
|
-
// entities: undefined,
|
|
2790
|
-
// },
|
|
2791
|
-
// editorOptions: {
|
|
2792
|
-
// onboarding: {
|
|
2793
|
-
// helpText: "Use for nuanced details or specific sub-points within sub-divisions.",
|
|
2794
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/heading-MUKlJ7dY",
|
|
2795
|
-
// },
|
|
2796
|
-
// },
|
|
2797
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2798
|
-
// },
|
|
2799
|
-
// {
|
|
2800
|
-
// id: "io.supernova.block.ordered-list",
|
|
2801
|
-
// name: "Ordered list",
|
|
2802
|
-
// description: "A list with numbers",
|
|
2803
|
-
// category: "Text",
|
|
2804
|
-
// icon: undefined,
|
|
2805
|
-
// documentationLink: undefined,
|
|
2806
|
-
// searchKeywords: ["ol"],
|
|
2807
|
-
// item: {
|
|
2808
|
-
// properties: [
|
|
2809
|
-
// {
|
|
2810
|
-
// id: "text",
|
|
2811
|
-
// name: "Text",
|
|
2812
|
-
// type: "MultiRichText",
|
|
2813
|
-
// description: undefined,
|
|
2814
|
-
// options: { multiRichTextStyle: "OL" },
|
|
2815
|
-
// variantOptions: undefined,
|
|
2816
|
-
// },
|
|
2817
|
-
// ],
|
|
2818
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2819
|
-
// variants: [
|
|
2820
|
-
// {
|
|
2821
|
-
// id: "default",
|
|
2822
|
-
// name: "Default",
|
|
2823
|
-
// image: undefined,
|
|
2824
|
-
// description: undefined,
|
|
2825
|
-
// documentationLink: undefined,
|
|
2826
|
-
// layout: { type: "Column", children: ["text"] },
|
|
2827
|
-
// maxColumns: 1,
|
|
2828
|
-
// defaultColumns: 1,
|
|
2829
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2830
|
-
// },
|
|
2831
|
-
// ],
|
|
2832
|
-
// defaultVariantKey: "default",
|
|
2833
|
-
// },
|
|
2834
|
-
// behavior: {
|
|
2835
|
-
// dataType: "Item",
|
|
2836
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2837
|
-
// entities: undefined,
|
|
2838
|
-
// },
|
|
2839
|
-
// editorOptions: {
|
|
2840
|
-
// onboarding: {
|
|
2841
|
-
// helpText: "Display a sequence of numbers or letters to indicate order.",
|
|
2842
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/list-UC5iPZLK",
|
|
2843
|
-
// },
|
|
2844
|
-
// },
|
|
2845
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2846
|
-
// },
|
|
2847
|
-
// {
|
|
2848
|
-
// id: "io.supernova.block.unordered-list",
|
|
2849
|
-
// name: "Unordered list",
|
|
2850
|
-
// description: "A list with bullet points",
|
|
2851
|
-
// category: "Text",
|
|
2852
|
-
// icon: undefined,
|
|
2853
|
-
// documentationLink: undefined,
|
|
2854
|
-
// searchKeywords: ["ul"],
|
|
2855
|
-
// item: {
|
|
2856
|
-
// properties: [
|
|
2857
|
-
// {
|
|
2858
|
-
// id: "text",
|
|
2859
|
-
// name: "Text",
|
|
2860
|
-
// type: "MultiRichText",
|
|
2861
|
-
// description: undefined,
|
|
2862
|
-
// options: { multiRichTextStyle: "UL" },
|
|
2863
|
-
// variantOptions: undefined,
|
|
2864
|
-
// },
|
|
2865
|
-
// ],
|
|
2866
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2867
|
-
// variants: [
|
|
2868
|
-
// {
|
|
2869
|
-
// id: "default",
|
|
2870
|
-
// name: "Default",
|
|
2871
|
-
// image: undefined,
|
|
2872
|
-
// description: undefined,
|
|
2873
|
-
// documentationLink: undefined,
|
|
2874
|
-
// layout: { type: "Column", children: ["text"] },
|
|
2875
|
-
// maxColumns: 1,
|
|
2876
|
-
// defaultColumns: 1,
|
|
2877
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2878
|
-
// },
|
|
2879
|
-
// ],
|
|
2880
|
-
// defaultVariantKey: "default",
|
|
2881
|
-
// },
|
|
2882
|
-
// behavior: {
|
|
2883
|
-
// dataType: "Item",
|
|
2884
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2885
|
-
// entities: undefined,
|
|
2886
|
-
// },
|
|
2887
|
-
// editorOptions: {
|
|
2888
|
-
// onboarding: {
|
|
2889
|
-
// helpText: "A list of items displayed with bullet points without a specific sequence.",
|
|
2890
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/list-UC5iPZLK",
|
|
2891
|
-
// },
|
|
2892
|
-
// },
|
|
2893
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2894
|
-
// },
|
|
2895
|
-
// {
|
|
2896
|
-
// id: "io.supernova.block.divider",
|
|
2897
|
-
// name: "Divider",
|
|
2898
|
-
// description: "A section divider",
|
|
2899
|
-
// category: "Layout",
|
|
2900
|
-
// icon: undefined,
|
|
2901
|
-
// documentationLink: undefined,
|
|
2902
|
-
// searchKeywords: ["hr", "line", "rule", "separator"],
|
|
2903
|
-
// item: {
|
|
2904
|
-
// properties: [
|
|
2905
|
-
// {
|
|
2906
|
-
// id: "divider",
|
|
2907
|
-
// name: "Divider",
|
|
2908
|
-
// type: "Divider",
|
|
2909
|
-
// description: undefined,
|
|
2910
|
-
// options: {},
|
|
2911
|
-
// variantOptions: undefined,
|
|
2912
|
-
// },
|
|
2913
|
-
// ],
|
|
2914
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2915
|
-
// variants: [
|
|
2916
|
-
// {
|
|
2917
|
-
// id: "default",
|
|
2918
|
-
// name: "Default",
|
|
2919
|
-
// image: undefined,
|
|
2920
|
-
// description: undefined,
|
|
2921
|
-
// documentationLink: undefined,
|
|
2922
|
-
// layout: { type: "Column", children: ["divider"] },
|
|
2923
|
-
// maxColumns: 1,
|
|
2924
|
-
// defaultColumns: 1,
|
|
2925
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2926
|
-
// },
|
|
2927
|
-
// ],
|
|
2928
|
-
// defaultVariantKey: "default",
|
|
2929
|
-
// },
|
|
2930
|
-
// behavior: {
|
|
2931
|
-
// dataType: "Item",
|
|
2932
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2933
|
-
// entities: undefined,
|
|
2934
|
-
// },
|
|
2935
|
-
// editorOptions: {
|
|
2936
|
-
// onboarding: {
|
|
2937
|
-
// helpText: "A thematic break or horizontal rule, often used to separate content or define a change in topic.",
|
|
2938
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/divider-tLuxooLH",
|
|
2939
|
-
// },
|
|
2940
|
-
// },
|
|
2941
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2942
|
-
// },
|
|
2943
|
-
// {
|
|
2944
|
-
// id: "io.supernova.block.blockquote",
|
|
2945
|
-
// name: "Blockquote",
|
|
2946
|
-
// description: "Display a quotation",
|
|
2947
|
-
// category: "Text",
|
|
2948
|
-
// icon: undefined,
|
|
2949
|
-
// documentationLink: undefined,
|
|
2950
|
-
// searchKeywords: ["cite"],
|
|
2951
|
-
// item: {
|
|
2952
|
-
// properties: [
|
|
2953
|
-
// {
|
|
2954
|
-
// id: "text",
|
|
2955
|
-
// name: "Text",
|
|
2956
|
-
// type: "RichText",
|
|
2957
|
-
// description: undefined,
|
|
2958
|
-
// options: { placeholder: "Empty quote", richTextStyle: "Quote" },
|
|
2959
|
-
// variantOptions: undefined,
|
|
2960
|
-
// },
|
|
2961
|
-
// ],
|
|
2962
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2963
|
-
// variants: [
|
|
2964
|
-
// {
|
|
2965
|
-
// id: "default",
|
|
2966
|
-
// name: "Default",
|
|
2967
|
-
// image: undefined,
|
|
2968
|
-
// description: undefined,
|
|
2969
|
-
// documentationLink: undefined,
|
|
2970
|
-
// layout: { type: "Column", children: ["text"] },
|
|
2971
|
-
// maxColumns: 1,
|
|
2972
|
-
// defaultColumns: 1,
|
|
2973
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2974
|
-
// },
|
|
2975
|
-
// ],
|
|
2976
|
-
// defaultVariantKey: "default",
|
|
2977
|
-
// },
|
|
2978
|
-
// behavior: {
|
|
2979
|
-
// dataType: "Item",
|
|
2980
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
2981
|
-
// entities: undefined,
|
|
2982
|
-
// },
|
|
2983
|
-
// editorOptions: {
|
|
2984
|
-
// onboarding: {
|
|
2985
|
-
// helpText: "Use a blockquote to set off a quotation or cited content from the main text.",
|
|
2986
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/blockquote-zYWAsb6X",
|
|
2987
|
-
// },
|
|
2988
|
-
// },
|
|
2989
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
2990
|
-
// },
|
|
2991
|
-
// {
|
|
2992
|
-
// id: "io.supernova.block.callout",
|
|
2993
|
-
// name: "Callout",
|
|
2994
|
-
// description: "Highlight a section of text",
|
|
2995
|
-
// category: "Text",
|
|
2996
|
-
// icon: undefined,
|
|
2997
|
-
// documentationLink: undefined,
|
|
2998
|
-
// searchKeywords: ["banner", "alert", "note", "tip", "warning"],
|
|
2999
|
-
// item: {
|
|
3000
|
-
// properties: [
|
|
3001
|
-
// {
|
|
3002
|
-
// id: "text",
|
|
3003
|
-
// name: "Text",
|
|
3004
|
-
// type: "RichText",
|
|
3005
|
-
// description: undefined,
|
|
3006
|
-
// options: { richTextStyle: "Callout" },
|
|
3007
|
-
// variantOptions: undefined,
|
|
3008
|
-
// },
|
|
3009
|
-
// ],
|
|
3010
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3011
|
-
// variants: [
|
|
3012
|
-
// {
|
|
3013
|
-
// id: "default",
|
|
3014
|
-
// name: "Default",
|
|
3015
|
-
// image: undefined,
|
|
3016
|
-
// description: undefined,
|
|
3017
|
-
// documentationLink: undefined,
|
|
3018
|
-
// layout: { type: "Column", children: ["text"] },
|
|
3019
|
-
// maxColumns: 1,
|
|
3020
|
-
// defaultColumns: 1,
|
|
3021
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3022
|
-
// },
|
|
3023
|
-
// ],
|
|
3024
|
-
// defaultVariantKey: "default",
|
|
3025
|
-
// },
|
|
3026
|
-
// behavior: {
|
|
3027
|
-
// dataType: "Item",
|
|
3028
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
3029
|
-
// entities: undefined,
|
|
3030
|
-
// },
|
|
3031
|
-
// editorOptions: {
|
|
3032
|
-
// onboarding: {
|
|
3033
|
-
// helpText: "Use to highlight a section of text.",
|
|
3034
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/text/callout-ZPlZObD1",
|
|
3035
|
-
// },
|
|
3036
|
-
// },
|
|
3037
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3038
|
-
// },
|
|
3039
|
-
// {
|
|
3040
|
-
// id: "io.supernova.block.image",
|
|
3041
|
-
// name: "Image",
|
|
3042
|
-
// description: "Display an image or Figma frame",
|
|
3043
|
-
// category: "Media",
|
|
3044
|
-
// icon: undefined,
|
|
3045
|
-
// documentationLink: undefined,
|
|
3046
|
-
// searchKeywords: ["image", "figma", "frame", "picture", "photo"],
|
|
3047
|
-
// item: {
|
|
3048
|
-
// properties: [
|
|
3049
|
-
// {
|
|
3050
|
-
// id: "image",
|
|
3051
|
-
// name: "Image",
|
|
3052
|
-
// type: "Image",
|
|
3053
|
-
// description: undefined,
|
|
3054
|
-
// options: { allowCaption: true },
|
|
3055
|
-
// variantOptions: undefined,
|
|
3056
|
-
// },
|
|
3057
|
-
// ],
|
|
3058
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3059
|
-
// variants: [
|
|
3060
|
-
// {
|
|
3061
|
-
// id: "default",
|
|
3062
|
-
// name: "Default",
|
|
3063
|
-
// image: undefined,
|
|
3064
|
-
// description: undefined,
|
|
3065
|
-
// documentationLink: undefined,
|
|
3066
|
-
// layout: { type: "Column", children: ["image"] },
|
|
3067
|
-
// maxColumns: 1,
|
|
3068
|
-
// defaultColumns: 1,
|
|
3069
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3070
|
-
// },
|
|
3071
|
-
// ],
|
|
3072
|
-
// defaultVariantKey: "default",
|
|
3073
|
-
// },
|
|
3074
|
-
// behavior: {
|
|
3075
|
-
// dataType: "Item",
|
|
3076
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
3077
|
-
// entities: undefined,
|
|
3078
|
-
// },
|
|
3079
|
-
// editorOptions: {
|
|
3080
|
-
// onboarding: {
|
|
3081
|
-
// helpText: "Use to display an image or Figma frame.",
|
|
3082
|
-
// documentationLink:
|
|
3083
|
-
// "https://learn.supernova.io/latest/documentation/types-of-blocks/media-and-assets/image-Ue8VdT8B",
|
|
3084
|
-
// },
|
|
3085
|
-
// },
|
|
3086
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3087
|
-
// },
|
|
3088
|
-
// {
|
|
3089
|
-
// id: "io.supernova.block.shortcut-links",
|
|
3090
|
-
// name: "Shortcut links",
|
|
3091
|
-
// description: "Link to a page or external URL",
|
|
3092
|
-
// category: "Media",
|
|
3093
|
-
// icon: undefined,
|
|
3094
|
-
// documentationLink: undefined,
|
|
3095
|
-
// searchKeywords: [],
|
|
3096
|
-
// item: {
|
|
3097
|
-
// properties: [
|
|
3098
|
-
// {
|
|
3099
|
-
// id: "block.links.property.title",
|
|
3100
|
-
// name: "Title",
|
|
3101
|
-
// type: "Text",
|
|
3102
|
-
// description: undefined,
|
|
3103
|
-
// options: { textStyle: "Title5" },
|
|
3104
|
-
// variantOptions: undefined,
|
|
3105
|
-
// },
|
|
3106
|
-
// {
|
|
3107
|
-
// id: "block.links.property.description",
|
|
3108
|
-
// name: "Short description",
|
|
3109
|
-
// type: "Text",
|
|
3110
|
-
// description: undefined,
|
|
3111
|
-
// options: { textStyle: "Default", color: "NeutralFaded" },
|
|
3112
|
-
// variantOptions: undefined,
|
|
3113
|
-
// },
|
|
3114
|
-
// {
|
|
3115
|
-
// id: "block.links.property.image",
|
|
3116
|
-
// name: "Image",
|
|
3117
|
-
// type: "Image",
|
|
3118
|
-
// description: undefined,
|
|
3119
|
-
// options: { width: "Medium", aspectRatio: "Landscape", allowCaption: false },
|
|
3120
|
-
// variantOptions: {
|
|
3121
|
-
// iconOnTop: { width: "Icon", aspectRatio: "Square" },
|
|
3122
|
-
// iconOnLeft: { width: "Icon", aspectRatio: "Square" },
|
|
3123
|
-
// },
|
|
3124
|
-
// },
|
|
3125
|
-
// ],
|
|
3126
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3127
|
-
// variants: [
|
|
3128
|
-
// {
|
|
3129
|
-
// id: "imageOnTop",
|
|
3130
|
-
// name: "Image on top",
|
|
3131
|
-
// image: "assets/variant-image-on-top.png",
|
|
3132
|
-
// description: undefined,
|
|
3133
|
-
// documentationLink: undefined,
|
|
3134
|
-
// layout: {
|
|
3135
|
-
// type: "Column",
|
|
3136
|
-
// children: ["block.links.property.image", "block.links.property.title", "block.links.property.description"],
|
|
3137
|
-
// },
|
|
3138
|
-
// maxColumns: 4,
|
|
3139
|
-
// defaultColumns: 1,
|
|
3140
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3141
|
-
// },
|
|
3142
|
-
// {
|
|
3143
|
-
// id: "imageOnLeft",
|
|
3144
|
-
// name: "Image on left",
|
|
3145
|
-
// image: "assets/variant-image-on-left.png",
|
|
3146
|
-
// description: undefined,
|
|
3147
|
-
// documentationLink: undefined,
|
|
3148
|
-
// layout: {
|
|
3149
|
-
// type: "Row",
|
|
3150
|
-
// children: [
|
|
3151
|
-
// {
|
|
3152
|
-
// type: "Column",
|
|
3153
|
-
// columnResizing: "Hug",
|
|
3154
|
-
// children: ["block.links.property.image"],
|
|
3155
|
-
// },
|
|
3156
|
-
// {
|
|
3157
|
-
// type: "Column",
|
|
3158
|
-
// gap: "Small",
|
|
3159
|
-
// children: ["block.links.property.title", "block.links.property.description"],
|
|
3160
|
-
// },
|
|
3161
|
-
// ],
|
|
3162
|
-
// },
|
|
3163
|
-
// maxColumns: 1,
|
|
3164
|
-
// defaultColumns: 1,
|
|
3165
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3166
|
-
// },
|
|
3167
|
-
// {
|
|
3168
|
-
// id: "iconOnTop",
|
|
3169
|
-
// name: "Icon on top",
|
|
3170
|
-
// image: "assets/variant-icon-on-top.png",
|
|
3171
|
-
// description: undefined,
|
|
3172
|
-
// documentationLink: undefined,
|
|
3173
|
-
// layout: {
|
|
3174
|
-
// type: "Column",
|
|
3175
|
-
// children: ["block.links.property.image", "block.links.property.title", "block.links.property.description"],
|
|
3176
|
-
// },
|
|
3177
|
-
// maxColumns: 4,
|
|
3178
|
-
// defaultColumns: 1,
|
|
3179
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3180
|
-
// },
|
|
3181
|
-
// {
|
|
3182
|
-
// id: "iconOnLeft",
|
|
3183
|
-
// name: "Icon on left",
|
|
3184
|
-
// image: "assets/variant-icon-on-left.png",
|
|
3185
|
-
// description: undefined,
|
|
3186
|
-
// documentationLink: undefined,
|
|
3187
|
-
// layout: {
|
|
3188
|
-
// type: "Row",
|
|
3189
|
-
// children: [
|
|
3190
|
-
// {
|
|
3191
|
-
// type: "Column",
|
|
3192
|
-
// columnResizing: "Hug",
|
|
3193
|
-
// children: ["block.links.property.image"],
|
|
3194
|
-
// },
|
|
3195
|
-
// {
|
|
3196
|
-
// type: "Column",
|
|
3197
|
-
// gap: "Small",
|
|
3198
|
-
// children: ["block.links.property.title", "block.links.property.description"],
|
|
3199
|
-
// },
|
|
3200
|
-
// ],
|
|
3201
|
-
// },
|
|
3202
|
-
// maxColumns: 2,
|
|
3203
|
-
// defaultColumns: 1,
|
|
3204
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3205
|
-
// },
|
|
3206
|
-
// ],
|
|
3207
|
-
// defaultVariantKey: "imageOnTop",
|
|
3208
|
-
// },
|
|
3209
|
-
// behavior: {
|
|
3210
|
-
// dataType: "Item",
|
|
3211
|
-
// items: { numberOfItems: -1, allowLinks: true },
|
|
3212
|
-
// entities: undefined,
|
|
3213
|
-
// },
|
|
3214
|
-
// editorOptions: {
|
|
3215
|
-
// onboarding: {
|
|
3216
|
-
// helpText: "Use link block to create single or multiple links to places in or out of your documentation.",
|
|
3217
|
-
// documentationLink:
|
|
3218
|
-
// "https://learn.supernova.io/latest/documentation/types-of-blocks/links/shortcuts/general-jVfNifo4",
|
|
3219
|
-
// },
|
|
3220
|
-
// },
|
|
3221
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3222
|
-
// },
|
|
3223
|
-
// {
|
|
3224
|
-
// id: "io.supernova.block.color-accessibility-grid",
|
|
3225
|
-
// name: "Accessibility Color Grid",
|
|
3226
|
-
// description: "Visualize accessibility of your color tokens.",
|
|
3227
|
-
// category: "Tokens",
|
|
3228
|
-
// icon: undefined,
|
|
3229
|
-
// documentationLink: undefined,
|
|
3230
|
-
// searchKeywords: ["color", "accessibility", "grid", "contrast", "blind", "impairment"],
|
|
3231
|
-
// item: {
|
|
3232
|
-
// properties: [
|
|
3233
|
-
// {
|
|
3234
|
-
// id: "tokens",
|
|
3235
|
-
// name: "Tokens",
|
|
3236
|
-
// type: "Token",
|
|
3237
|
-
// description: undefined,
|
|
3238
|
-
// options: { allowedTypes: ["Color"], allowPropertySelection: false, allowThemeSelection: false },
|
|
3239
|
-
// variantOptions: undefined,
|
|
3240
|
-
// },
|
|
3241
|
-
// ],
|
|
3242
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3243
|
-
// variants: [
|
|
3244
|
-
// {
|
|
3245
|
-
// id: "default",
|
|
3246
|
-
// name: "Default",
|
|
3247
|
-
// image: undefined,
|
|
3248
|
-
// description: undefined,
|
|
3249
|
-
// documentationLink: undefined,
|
|
3250
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3251
|
-
// maxColumns: 1,
|
|
3252
|
-
// defaultColumns: 1,
|
|
3253
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3254
|
-
// },
|
|
3255
|
-
// ],
|
|
3256
|
-
// defaultVariantKey: "default",
|
|
3257
|
-
// },
|
|
3258
|
-
// behavior: {
|
|
3259
|
-
// dataType: "Token",
|
|
3260
|
-
// items: undefined,
|
|
3261
|
-
// entities: { selectionType: "Group", maxSelected: 2 },
|
|
3262
|
-
// },
|
|
3263
|
-
// editorOptions: {
|
|
3264
|
-
// onboarding: {
|
|
3265
|
-
// helpText: "Visualize accessibility of your colors and compare token groups to one another.",
|
|
3266
|
-
// documentationLink: "https://learn.supernova.io",
|
|
3267
|
-
// },
|
|
3268
|
-
// },
|
|
3269
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3270
|
-
// },
|
|
3271
|
-
// {
|
|
3272
|
-
// id: "io.supernova.block.embed",
|
|
3273
|
-
// name: "Embed",
|
|
3274
|
-
// description: "Embed a generic URL",
|
|
3275
|
-
// category: "Media",
|
|
3276
|
-
// icon: undefined,
|
|
3277
|
-
// documentationLink: undefined,
|
|
3278
|
-
// searchKeywords: ["embed", "url", "iframe", "site", "import"],
|
|
3279
|
-
// item: {
|
|
3280
|
-
// properties: [
|
|
3281
|
-
// {
|
|
3282
|
-
// id: "embedUrl",
|
|
3283
|
-
// name: "Embed URL",
|
|
3284
|
-
// type: "EmbedURL",
|
|
3285
|
-
// description: undefined,
|
|
3286
|
-
// options: {
|
|
3287
|
-
// allowCaption: true,
|
|
3288
|
-
// allowResize: true,
|
|
3289
|
-
// defaultHeight: 400,
|
|
3290
|
-
// urlValidationRegex: "^(https?://)?(www.)?.+$",
|
|
3291
|
-
// },
|
|
3292
|
-
// variantOptions: undefined,
|
|
3293
|
-
// },
|
|
3294
|
-
// ],
|
|
3295
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3296
|
-
// variants: [
|
|
3297
|
-
// {
|
|
3298
|
-
// id: "default",
|
|
3299
|
-
// name: "Default",
|
|
3300
|
-
// image: undefined,
|
|
3301
|
-
// description: undefined,
|
|
3302
|
-
// documentationLink: undefined,
|
|
3303
|
-
// layout: { type: "Column", children: ["embedUrl"] },
|
|
3304
|
-
// maxColumns: 1,
|
|
3305
|
-
// defaultColumns: 1,
|
|
3306
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3307
|
-
// },
|
|
3308
|
-
// ],
|
|
3309
|
-
// defaultVariantKey: "default",
|
|
3310
|
-
// },
|
|
3311
|
-
// behavior: {
|
|
3312
|
-
// dataType: "Item",
|
|
3313
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
3314
|
-
// entities: undefined,
|
|
3315
|
-
// },
|
|
3316
|
-
// editorOptions: {
|
|
3317
|
-
// onboarding: {
|
|
3318
|
-
// helpText: "Embed any page to your documentation as an iframe.",
|
|
3319
|
-
// documentationLink:
|
|
3320
|
-
// "https://learn.supernova.io/latest/documentation/types-of-blocks/media-and-assets/embed/public-url-2ZeRQ332",
|
|
3321
|
-
// },
|
|
3322
|
-
// },
|
|
3323
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3324
|
-
// },
|
|
3325
|
-
// {
|
|
3326
|
-
// id: "io.supernova.block.embed-youtube",
|
|
3327
|
-
// name: "YouTube",
|
|
3328
|
-
// description: "Embed a Youtube video",
|
|
3329
|
-
// category: "Media",
|
|
3330
|
-
// icon: undefined,
|
|
3331
|
-
// documentationLink: undefined,
|
|
3332
|
-
// searchKeywords: ["embed", "video", "player", "upload"],
|
|
3333
|
-
// item: {
|
|
3334
|
-
// properties: [
|
|
3335
|
-
// {
|
|
3336
|
-
// id: "embed",
|
|
3337
|
-
// name: "Youtube URL",
|
|
3338
|
-
// type: "EmbedURL",
|
|
3339
|
-
// description: undefined,
|
|
3340
|
-
// options: {
|
|
3341
|
-
// allowCaption: false,
|
|
3342
|
-
// allowResize: false,
|
|
3343
|
-
// defaultHeight: 400,
|
|
3344
|
-
// urlValidationRegex: "^(https?://)?(www.)?(youtube.com|youtu.?be)/.+$",
|
|
3345
|
-
// },
|
|
3346
|
-
// variantOptions: undefined,
|
|
3347
|
-
// },
|
|
3348
|
-
// ],
|
|
3349
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3350
|
-
// variants: [
|
|
3351
|
-
// {
|
|
3352
|
-
// id: "default",
|
|
3353
|
-
// name: "Default",
|
|
3354
|
-
// image: undefined,
|
|
3355
|
-
// description: undefined,
|
|
3356
|
-
// documentationLink: undefined,
|
|
3357
|
-
// layout: { type: "Column", children: ["embed"] },
|
|
3358
|
-
// maxColumns: 1,
|
|
3359
|
-
// defaultColumns: 1,
|
|
3360
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3361
|
-
// },
|
|
3362
|
-
// ],
|
|
3363
|
-
// defaultVariantKey: "default",
|
|
3364
|
-
// },
|
|
3365
|
-
// behavior: {
|
|
3366
|
-
// dataType: "Item",
|
|
3367
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
3368
|
-
// entities: undefined,
|
|
3369
|
-
// },
|
|
3370
|
-
// editorOptions: {
|
|
3371
|
-
// onboarding: {
|
|
3372
|
-
// helpText: "Embed a YouTube video to your documentation.",
|
|
3373
|
-
// documentationLink:
|
|
3374
|
-
// "https://learn.supernova.io/latest/documentation/types-of-blocks/media-and-assets/youtube-Gh8VUrSF",
|
|
3375
|
-
// },
|
|
3376
|
-
// },
|
|
3377
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3378
|
-
// },
|
|
3379
|
-
// {
|
|
3380
|
-
// id: "io.supernova.block.embed-lottie",
|
|
3381
|
-
// name: "Lottie animation",
|
|
3382
|
-
// description: "Preview a Lottie animation",
|
|
3383
|
-
// category: "Media",
|
|
3384
|
-
// icon: undefined,
|
|
3385
|
-
// documentationLink: undefined,
|
|
3386
|
-
// searchKeywords: ["embed", "lottie", "animation", "rive", "json"],
|
|
3387
|
-
// item: {
|
|
3388
|
-
// properties: [
|
|
3389
|
-
// {
|
|
3390
|
-
// id: "embed",
|
|
3391
|
-
// name: "Lottie URL",
|
|
3392
|
-
// type: "EmbedURL",
|
|
3393
|
-
// description: undefined,
|
|
3394
|
-
// options: {
|
|
3395
|
-
// allowCaption: false,
|
|
3396
|
-
// allowResize: true,
|
|
3397
|
-
// defaultHeight: 400,
|
|
3398
|
-
// urlValidationRegex:
|
|
3399
|
-
// "^(https?:\\/\\/)?([\\w\\d\\-\\.]+)\\.([\\w]+)(\\/[\\w\\d_\\-\\.\\/]*)?(\\.json|\\.lottie)$\n",
|
|
3400
|
-
// },
|
|
3401
|
-
// variantOptions: undefined,
|
|
3402
|
-
// },
|
|
3403
|
-
// {
|
|
3404
|
-
// id: "autoplay",
|
|
3405
|
-
// name: "Autoplay",
|
|
3406
|
-
// type: "Boolean",
|
|
3407
|
-
// description: undefined,
|
|
3408
|
-
// options: { defaultValue: true },
|
|
3409
|
-
// variantOptions: undefined,
|
|
3410
|
-
// },
|
|
3411
|
-
// {
|
|
3412
|
-
// id: "loop",
|
|
3413
|
-
// name: "Loop",
|
|
3414
|
-
// type: "Boolean",
|
|
3415
|
-
// description: undefined,
|
|
3416
|
-
// options: { defaultValue: true },
|
|
3417
|
-
// variantOptions: undefined,
|
|
3418
|
-
// },
|
|
3419
|
-
// ],
|
|
3420
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3421
|
-
// variants: [
|
|
3422
|
-
// {
|
|
3423
|
-
// id: "default",
|
|
3424
|
-
// name: "Default",
|
|
3425
|
-
// image: undefined,
|
|
3426
|
-
// description: undefined,
|
|
3427
|
-
// documentationLink: undefined,
|
|
3428
|
-
// layout: { type: "Column", children: ["embed", "autoplay", "loop"] },
|
|
3429
|
-
// maxColumns: 1,
|
|
3430
|
-
// defaultColumns: 1,
|
|
3431
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3432
|
-
// },
|
|
3433
|
-
// ],
|
|
3434
|
-
// defaultVariantKey: "default",
|
|
3435
|
-
// },
|
|
3436
|
-
// behavior: {
|
|
3437
|
-
// dataType: "Item",
|
|
3438
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
3439
|
-
// entities: undefined,
|
|
3440
|
-
// },
|
|
3441
|
-
// editorOptions: {
|
|
3442
|
-
// onboarding: {
|
|
3443
|
-
// helpText: "Embed a Lottie animation to your documentation.",
|
|
3444
|
-
// documentationLink:
|
|
3445
|
-
// "https://learn.supernova.io/latest/documentation/types-of-blocks/media-and-assets/lottie-preview-7CqFdGv9",
|
|
3446
|
-
// },
|
|
3447
|
-
// },
|
|
3448
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3449
|
-
// },
|
|
3450
|
-
// {
|
|
3451
|
-
// id: "io.supernova.block.storybook",
|
|
3452
|
-
// name: "Storybook",
|
|
3453
|
-
// description: "Embed Storybook canvas",
|
|
3454
|
-
// category: "Media",
|
|
3455
|
-
// icon: undefined,
|
|
3456
|
-
// documentationLink: undefined,
|
|
3457
|
-
// searchKeywords: ["storybook", "story", "stories", "example", "preview", "code", "react"],
|
|
3458
|
-
// item: {
|
|
3459
|
-
// properties: [
|
|
3460
|
-
// {
|
|
3461
|
-
// id: "embed",
|
|
3462
|
-
// name: "Storybook URL",
|
|
3463
|
-
// type: "Storybook",
|
|
3464
|
-
// description: undefined,
|
|
3465
|
-
// options: {},
|
|
3466
|
-
// variantOptions: undefined,
|
|
3467
|
-
// },
|
|
3468
|
-
// ],
|
|
3469
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3470
|
-
// variants: [
|
|
3471
|
-
// {
|
|
3472
|
-
// id: "default",
|
|
3473
|
-
// name: "Default",
|
|
3474
|
-
// image: undefined,
|
|
3475
|
-
// description: undefined,
|
|
3476
|
-
// documentationLink: undefined,
|
|
3477
|
-
// layout: { type: "Column", children: ["embed"] },
|
|
3478
|
-
// maxColumns: 1,
|
|
3479
|
-
// defaultColumns: 1,
|
|
3480
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3481
|
-
// },
|
|
3482
|
-
// ],
|
|
3483
|
-
// defaultVariantKey: "default",
|
|
3484
|
-
// },
|
|
3485
|
-
// behavior: {
|
|
3486
|
-
// dataType: "Item",
|
|
3487
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
3488
|
-
// entities: undefined,
|
|
3489
|
-
// },
|
|
3490
|
-
// editorOptions: {
|
|
3491
|
-
// onboarding: {
|
|
3492
|
-
// helpText: "Embed a Storybook story to your documentation.",
|
|
3493
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/code/storybook-1EGPhwBl",
|
|
3494
|
-
// },
|
|
3495
|
-
// },
|
|
3496
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3497
|
-
// },
|
|
3498
|
-
// {
|
|
3499
|
-
// id: "io.supernova.block.embed-figma",
|
|
3500
|
-
// name: "Figma embed",
|
|
3501
|
-
// description: "Embed a Figma canvas or prototype",
|
|
3502
|
-
// category: "Media",
|
|
3503
|
-
// icon: undefined,
|
|
3504
|
-
// documentationLink: undefined,
|
|
3505
|
-
// searchKeywords: ["embed", "figma", "design", "prototype", "canvas"],
|
|
3506
|
-
// item: {
|
|
3507
|
-
// properties: [
|
|
3508
|
-
// {
|
|
3509
|
-
// id: "embed",
|
|
3510
|
-
// name: "Figma URl",
|
|
3511
|
-
// type: "EmbedURL",
|
|
3512
|
-
// description: undefined,
|
|
3513
|
-
// options: {
|
|
3514
|
-
// allowCaption: false,
|
|
3515
|
-
// allowResize: true,
|
|
3516
|
-
// defaultHeight: 400,
|
|
3517
|
-
// urlValidationRegex: "^(https?://)?(www.)?(figma.com)/.+$",
|
|
3518
|
-
// },
|
|
3519
|
-
// variantOptions: undefined,
|
|
3520
|
-
// },
|
|
3521
|
-
// ],
|
|
3522
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3523
|
-
// variants: [
|
|
3524
|
-
// {
|
|
3525
|
-
// id: "default",
|
|
3526
|
-
// name: "Default",
|
|
3527
|
-
// image: undefined,
|
|
3528
|
-
// description: undefined,
|
|
3529
|
-
// documentationLink: undefined,
|
|
3530
|
-
// layout: { type: "Column", children: ["embed"] },
|
|
3531
|
-
// maxColumns: 1,
|
|
3532
|
-
// defaultColumns: 1,
|
|
3533
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3534
|
-
// },
|
|
3535
|
-
// ],
|
|
3536
|
-
// defaultVariantKey: "default",
|
|
3537
|
-
// },
|
|
3538
|
-
// behavior: {
|
|
3539
|
-
// dataType: "Item",
|
|
3540
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
3541
|
-
// entities: undefined,
|
|
3542
|
-
// },
|
|
3543
|
-
// editorOptions: {
|
|
3544
|
-
// onboarding: {
|
|
3545
|
-
// helpText: "Embed a Figma canvas or prototype to your documentation.",
|
|
3546
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/figma/embed-figma-GPNJsT8A",
|
|
3547
|
-
// },
|
|
3548
|
-
// },
|
|
3549
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3550
|
-
// },
|
|
3551
|
-
// {
|
|
3552
|
-
// id: "io.supernova.block.markdown",
|
|
3553
|
-
// name: "Markdown",
|
|
3554
|
-
// description: "Render Markdown URL",
|
|
3555
|
-
// category: "Other",
|
|
3556
|
-
// icon: undefined,
|
|
3557
|
-
// documentationLink: undefined,
|
|
3558
|
-
// searchKeywords: ["md", "embed", "api", "table", "mdx"],
|
|
3559
|
-
// item: {
|
|
3560
|
-
// properties: [
|
|
3561
|
-
// {
|
|
3562
|
-
// id: "markdownUrl",
|
|
3563
|
-
// name: "Markdown URL",
|
|
3564
|
-
// type: "Markdown",
|
|
3565
|
-
// description: undefined,
|
|
3566
|
-
// options: {},
|
|
3567
|
-
// variantOptions: undefined,
|
|
3568
|
-
// },
|
|
3569
|
-
// ],
|
|
3570
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3571
|
-
// variants: [
|
|
3572
|
-
// {
|
|
3573
|
-
// id: "default",
|
|
3574
|
-
// name: "Default",
|
|
3575
|
-
// image: undefined,
|
|
3576
|
-
// description: undefined,
|
|
3577
|
-
// documentationLink: undefined,
|
|
3578
|
-
// layout: { type: "Column", children: ["markdownUrl"] },
|
|
3579
|
-
// maxColumns: 1,
|
|
3580
|
-
// defaultColumns: 1,
|
|
3581
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3582
|
-
// },
|
|
3583
|
-
// ],
|
|
3584
|
-
// defaultVariantKey: "default",
|
|
3585
|
-
// },
|
|
3586
|
-
// behavior: {
|
|
3587
|
-
// dataType: "Item",
|
|
3588
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
3589
|
-
// entities: undefined,
|
|
3590
|
-
// },
|
|
3591
|
-
// editorOptions: {
|
|
3592
|
-
// onboarding: {
|
|
3593
|
-
// helpText: "Embed and process markdown from URL.",
|
|
3594
|
-
// documentationLink:
|
|
3595
|
-
// "https://learn.supernova.io/latest/documentation/types-of-blocks/code/markdown/general-B8wQVOem",
|
|
3596
|
-
// },
|
|
3597
|
-
// },
|
|
3598
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3599
|
-
// },
|
|
3600
|
-
// {
|
|
3601
|
-
// id: "io.supernova.block.table",
|
|
3602
|
-
// name: "Table",
|
|
3603
|
-
// description: "Display a simple table",
|
|
3604
|
-
// category: "Layout",
|
|
3605
|
-
// icon: undefined,
|
|
3606
|
-
// documentationLink: undefined,
|
|
3607
|
-
// searchKeywords: ["grid", "data", "spreadsheet", "api"],
|
|
3608
|
-
// item: {
|
|
3609
|
-
// properties: [
|
|
3610
|
-
// {
|
|
3611
|
-
// id: "table",
|
|
3612
|
-
// name: "Table",
|
|
3613
|
-
// type: "Table",
|
|
3614
|
-
// description: undefined,
|
|
3615
|
-
// options: {},
|
|
3616
|
-
// variantOptions: undefined,
|
|
3617
|
-
// },
|
|
3618
|
-
// ],
|
|
3619
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3620
|
-
// variants: [
|
|
3621
|
-
// {
|
|
3622
|
-
// id: "default",
|
|
3623
|
-
// name: "Default",
|
|
3624
|
-
// image: undefined,
|
|
3625
|
-
// description: undefined,
|
|
3626
|
-
// documentationLink: undefined,
|
|
3627
|
-
// layout: { type: "Column", children: ["table"] },
|
|
3628
|
-
// maxColumns: 1,
|
|
3629
|
-
// defaultColumns: 1,
|
|
3630
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3631
|
-
// },
|
|
3632
|
-
// ],
|
|
3633
|
-
// defaultVariantKey: "default",
|
|
3634
|
-
// },
|
|
3635
|
-
// behavior: {
|
|
3636
|
-
// dataType: "Item",
|
|
3637
|
-
// items: { numberOfItems: 1, allowLinks: false },
|
|
3638
|
-
// entities: undefined,
|
|
3639
|
-
// },
|
|
3640
|
-
// editorOptions: {
|
|
3641
|
-
// onboarding: {
|
|
3642
|
-
// helpText: "Use for displaying data in a tabular format.",
|
|
3643
|
-
// documentationLink: "https://learn.supernova.io/latest/documentation/types-of-blocks/layout/table-R8KGnxej",
|
|
3644
|
-
// },
|
|
3645
|
-
// },
|
|
3646
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3647
|
-
// },
|
|
3648
|
-
// {
|
|
3649
|
-
// id: "io.supernova.block.token-detail",
|
|
3650
|
-
// name: "Token detail",
|
|
3651
|
-
// description: "Show a single design tokens",
|
|
3652
|
-
// category: "Tokens",
|
|
3653
|
-
// icon: undefined,
|
|
3654
|
-
// documentationLink: undefined,
|
|
3655
|
-
// searchKeywords: ["color", "typography", "spacing", "grid", "material", "theme"],
|
|
3656
|
-
// item: {
|
|
3657
|
-
// properties: [
|
|
3658
|
-
// {
|
|
3659
|
-
// id: "tokens",
|
|
3660
|
-
// name: "Tokens",
|
|
3661
|
-
// type: "Token",
|
|
3662
|
-
// description: undefined,
|
|
3663
|
-
// options: {},
|
|
3664
|
-
// variantOptions: undefined,
|
|
3665
|
-
// },
|
|
3666
|
-
// ],
|
|
3667
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3668
|
-
// variants: [
|
|
3669
|
-
// {
|
|
3670
|
-
// id: "table",
|
|
3671
|
-
// name: "Table Row",
|
|
3672
|
-
// image: "assets/variant-table.png",
|
|
3673
|
-
// description: undefined,
|
|
3674
|
-
// documentationLink: undefined,
|
|
3675
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3676
|
-
// maxColumns: 1,
|
|
3677
|
-
// defaultColumns: 1,
|
|
3678
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3679
|
-
// },
|
|
3680
|
-
// {
|
|
3681
|
-
// id: "grid",
|
|
3682
|
-
// name: "Grid Item",
|
|
3683
|
-
// image: "assets/variant-grid.png",
|
|
3684
|
-
// description: undefined,
|
|
3685
|
-
// documentationLink: undefined,
|
|
3686
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3687
|
-
// maxColumns: 1,
|
|
3688
|
-
// defaultColumns: 1,
|
|
3689
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3690
|
-
// },
|
|
3691
|
-
// {
|
|
3692
|
-
// id: "color-stack",
|
|
3693
|
-
// name: "Color stack item",
|
|
3694
|
-
// image: "assets/variant-color-stack.png",
|
|
3695
|
-
// description: undefined,
|
|
3696
|
-
// documentationLink: undefined,
|
|
3697
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3698
|
-
// maxColumns: 1,
|
|
3699
|
-
// defaultColumns: 1,
|
|
3700
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3701
|
-
// },
|
|
3702
|
-
// ],
|
|
3703
|
-
// defaultVariantKey: "table",
|
|
3704
|
-
// },
|
|
3705
|
-
// behavior: {
|
|
3706
|
-
// dataType: "Token",
|
|
3707
|
-
// items: undefined,
|
|
3708
|
-
// entities: { selectionType: "Entity", maxSelected: 1 },
|
|
3709
|
-
// },
|
|
3710
|
-
// editorOptions: {
|
|
3711
|
-
// onboarding: {
|
|
3712
|
-
// helpText: "Show a single design token.",
|
|
3713
|
-
// documentationLink:
|
|
3714
|
-
// "https://learn.supernova.io/latest/documentation/types-of-blocks/token/tokens/general-84NRgxGl#section-token-detail-04",
|
|
3715
|
-
// },
|
|
3716
|
-
// },
|
|
3717
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3718
|
-
// },
|
|
3719
|
-
// {
|
|
3720
|
-
// id: "io.supernova.block.token-list",
|
|
3721
|
-
// name: "Token list",
|
|
3722
|
-
// description: "Show a list of design tokens",
|
|
3723
|
-
// category: "Tokens",
|
|
3724
|
-
// icon: undefined,
|
|
3725
|
-
// documentationLink: undefined,
|
|
3726
|
-
// searchKeywords: ["color", "typography", "spacing", "grid", "material", "theme", "accessibility", "contrast"],
|
|
3727
|
-
// item: {
|
|
3728
|
-
// properties: [
|
|
3729
|
-
// {
|
|
3730
|
-
// id: "tokens",
|
|
3731
|
-
// name: "Tokens",
|
|
3732
|
-
// type: "Token",
|
|
3733
|
-
// description: undefined,
|
|
3734
|
-
// options: {},
|
|
3735
|
-
// variantOptions: undefined,
|
|
3736
|
-
// },
|
|
3737
|
-
// ],
|
|
3738
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3739
|
-
// variants: [
|
|
3740
|
-
// {
|
|
3741
|
-
// id: "table",
|
|
3742
|
-
// name: "Table",
|
|
3743
|
-
// image: "assets/variant-table.png",
|
|
3744
|
-
// description: undefined,
|
|
3745
|
-
// documentationLink: undefined,
|
|
3746
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3747
|
-
// maxColumns: 1,
|
|
3748
|
-
// defaultColumns: 1,
|
|
3749
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3750
|
-
// },
|
|
3751
|
-
// {
|
|
3752
|
-
// id: "grid",
|
|
3753
|
-
// name: "Grid",
|
|
3754
|
-
// image: "assets/variant-grid.png",
|
|
3755
|
-
// description: undefined,
|
|
3756
|
-
// documentationLink: undefined,
|
|
3757
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3758
|
-
// maxColumns: 4,
|
|
3759
|
-
// defaultColumns: 1,
|
|
3760
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3761
|
-
// },
|
|
3762
|
-
// {
|
|
3763
|
-
// id: "color-stack",
|
|
3764
|
-
// name: "Color stack",
|
|
3765
|
-
// image: "assets/variant-color-stack.png",
|
|
3766
|
-
// description: undefined,
|
|
3767
|
-
// documentationLink: undefined,
|
|
3768
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3769
|
-
// maxColumns: 1,
|
|
3770
|
-
// defaultColumns: 1,
|
|
3771
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3772
|
-
// },
|
|
3773
|
-
// {
|
|
3774
|
-
// id: "color-contrast-grid",
|
|
3775
|
-
// name: "Color contrast grid",
|
|
3776
|
-
// image: "assets/variant-color-contrast-grid.png",
|
|
3777
|
-
// description: undefined,
|
|
3778
|
-
// documentationLink: undefined,
|
|
3779
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3780
|
-
// maxColumns: 1,
|
|
3781
|
-
// defaultColumns: 1,
|
|
3782
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3783
|
-
// },
|
|
3784
|
-
// ],
|
|
3785
|
-
// defaultVariantKey: "table",
|
|
3786
|
-
// },
|
|
3787
|
-
// behavior: {
|
|
3788
|
-
// dataType: "Token",
|
|
3789
|
-
// items: undefined,
|
|
3790
|
-
// entities: { selectionType: "Entity", maxSelected: 0 },
|
|
3791
|
-
// },
|
|
3792
|
-
// editorOptions: {
|
|
3793
|
-
// onboarding: {
|
|
3794
|
-
// helpText:
|
|
3795
|
-
// "Show a list of design tokens. You can use this block to create a list of colors, typography, spacing, grid, or any other token type.",
|
|
3796
|
-
// documentationLink:
|
|
3797
|
-
// "https://learn.supernova.io/latest/documentation/types-of-blocks/token/tokens/general-84NRgxGl#section-token-list-06",
|
|
3798
|
-
// },
|
|
3799
|
-
// },
|
|
3800
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3801
|
-
// },
|
|
3802
|
-
// {
|
|
3803
|
-
// id: "io.supernova.block.token-group",
|
|
3804
|
-
// name: "Token group",
|
|
3805
|
-
// description: "Show a group of design tokens",
|
|
3806
|
-
// category: "Tokens",
|
|
3807
|
-
// icon: undefined,
|
|
3808
|
-
// documentationLink: undefined,
|
|
3809
|
-
// searchKeywords: ["color", "typography", "spacing", "grid", "material", "theme", "accessibility", "contrast"],
|
|
3810
|
-
// item: {
|
|
3811
|
-
// properties: [
|
|
3812
|
-
// {
|
|
3813
|
-
// id: "tokens",
|
|
3814
|
-
// name: "Tokens",
|
|
3815
|
-
// type: "Token",
|
|
3816
|
-
// description: undefined,
|
|
3817
|
-
// options: {},
|
|
3818
|
-
// variantOptions: undefined,
|
|
3819
|
-
// },
|
|
3820
|
-
// ],
|
|
3821
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3822
|
-
// variants: [
|
|
3823
|
-
// {
|
|
3824
|
-
// id: "table",
|
|
3825
|
-
// name: "Table",
|
|
3826
|
-
// image: "assets/variant-table.png",
|
|
3827
|
-
// description: undefined,
|
|
3828
|
-
// documentationLink: undefined,
|
|
3829
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3830
|
-
// maxColumns: 1,
|
|
3831
|
-
// defaultColumns: 1,
|
|
3832
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3833
|
-
// },
|
|
3834
|
-
// {
|
|
3835
|
-
// id: "grid",
|
|
3836
|
-
// name: "Grid",
|
|
3837
|
-
// image: "assets/variant-grid.png",
|
|
3838
|
-
// description: undefined,
|
|
3839
|
-
// documentationLink: undefined,
|
|
3840
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3841
|
-
// maxColumns: 4,
|
|
3842
|
-
// defaultColumns: 1,
|
|
3843
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3844
|
-
// },
|
|
3845
|
-
// {
|
|
3846
|
-
// id: "color-stack",
|
|
3847
|
-
// name: "Color stack",
|
|
3848
|
-
// image: "assets/variant-color-stack.png",
|
|
3849
|
-
// description: undefined,
|
|
3850
|
-
// documentationLink: undefined,
|
|
3851
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3852
|
-
// maxColumns: 2,
|
|
3853
|
-
// defaultColumns: 1,
|
|
3854
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3855
|
-
// },
|
|
3856
|
-
// {
|
|
3857
|
-
// id: "color-contrast-grid",
|
|
3858
|
-
// name: "Color contrast grid",
|
|
3859
|
-
// image: "assets/variant-color-contrast-grid.png",
|
|
3860
|
-
// description: undefined,
|
|
3861
|
-
// documentationLink: undefined,
|
|
3862
|
-
// layout: { type: "Column", children: ["tokens"] },
|
|
3863
|
-
// maxColumns: 1,
|
|
3864
|
-
// defaultColumns: 1,
|
|
3865
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3866
|
-
// },
|
|
3867
|
-
// ],
|
|
3868
|
-
// defaultVariantKey: "table",
|
|
3869
|
-
// },
|
|
3870
|
-
// behavior: {
|
|
3871
|
-
// dataType: "Token",
|
|
3872
|
-
// items: undefined,
|
|
3873
|
-
// entities: { selectionType: "Group", maxSelected: 1 },
|
|
3874
|
-
// },
|
|
3875
|
-
// editorOptions: {
|
|
3876
|
-
// onboarding: {
|
|
3877
|
-
// helpText:
|
|
3878
|
-
// "Show a group of design tokens. You can use this block to create a list of colors, typography, spacing, grid, or any other token type.",
|
|
3879
|
-
// documentationLink:
|
|
3880
|
-
// "https://learn.supernova.io/latest/documentation/types-of-blocks/token/tokens/general-84NRgxGl#section-token-group-09",
|
|
3881
|
-
// },
|
|
3882
|
-
// },
|
|
3883
|
-
// appearance: { isBordered: false, hasBackground: false },
|
|
3884
|
-
// },
|
|
3885
|
-
// ];
|