@seed-design/figma 1.3.10 β 1.3.12
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/lib/codegen/index.cjs +483 -43
- package/lib/codegen/index.js +483 -43
- package/lib/codegen/targets/react/index.cjs +538 -50
- package/lib/codegen/targets/react/index.js +538 -50
- package/lib/index.cjs +531 -43
- package/lib/index.js +531 -43
- package/package.json +4 -4
- package/src/codegen/targets/react/component/handlers/checkbox.ts +1 -1
- package/src/codegen/targets/react/component/handlers/checkmark.ts +1 -1
- package/src/codegen/targets/react/component/handlers/radio-group.ts +1 -1
- package/src/codegen/targets/react/component/handlers/radiomark.ts +1 -1
- package/src/codegen/targets/react/component/handlers/select-box.ts +1 -1
- package/src/codegen/targets/react/component/handlers/switch.ts +1 -1
- package/src/codegen/targets/react/component/handlers/switchmark.ts +1 -1
- package/src/entities/data/__generated__/component-sets/index.d.ts +440 -10
- package/src/entities/data/__generated__/component-sets/index.mjs +440 -10
- package/src/entities/data/__generated__/components/index.d.ts +84 -7
- package/src/entities/data/__generated__/components/index.mjs +84 -7
- package/src/entities/data/__generated__/icons/index.mjs +48 -0
- package/src/entities/data/__generated__/variable-collections/index.mjs +2 -1
- package/src/entities/data/__generated__/variables/index.mjs +40 -31
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seed-design/figma",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.12",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/daangn/seed-design.git",
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"sync-entities": "find src/entities/data/__generated__ -mindepth 1 -maxdepth 1 ! -name 'archive' -exec rm -rf {} + 2>/dev/null; bun figma-extractor src/entities/data/__generated__"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@seed-design/css": "1.2.
|
|
42
|
+
"@seed-design/css": "1.2.10",
|
|
43
43
|
"change-case": "^5.4.4",
|
|
44
44
|
"ts-pattern": "^5.7.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@figma/plugin-typings": "^1.123.0",
|
|
48
48
|
"@figma/rest-api-spec": "^0.36.0",
|
|
49
|
-
"@karrotmarket/icon-data": "^1.
|
|
50
|
-
"@seed-design/figma-extractor": "^1.1.
|
|
49
|
+
"@karrotmarket/icon-data": "^1.28.0",
|
|
50
|
+
"@seed-design/figma-extractor": "^1.1.1",
|
|
51
51
|
"typescript": "^5.9.2"
|
|
52
52
|
},
|
|
53
53
|
"publishConfig": {
|
|
@@ -27,7 +27,7 @@ export const createCheckboxHandler = (_ctx: ComponentHandlerDeps) =>
|
|
|
27
27
|
({ componentProperties: props }) => {
|
|
28
28
|
const tone = match(props.Tone.value)
|
|
29
29
|
.with("Neutral", () => "neutral")
|
|
30
|
-
.with("
|
|
30
|
+
.with("Brand", () => "brand")
|
|
31
31
|
.exhaustive();
|
|
32
32
|
|
|
33
33
|
const commonProps = {
|
|
@@ -15,7 +15,7 @@ export const createCheckmarkHandler = (_ctx: ComponentHandlerDeps) =>
|
|
|
15
15
|
({ componentProperties: props }) => {
|
|
16
16
|
const tone = match(props.Tone.value)
|
|
17
17
|
.with("Neutral", () => "neutral")
|
|
18
|
-
.with("
|
|
18
|
+
.with("Brand", () => "brand")
|
|
19
19
|
.exhaustive();
|
|
20
20
|
|
|
21
21
|
const commonProps = {
|
|
@@ -23,7 +23,7 @@ export const createRadioGroupItemHandler = (_ctx: ComponentHandlerDeps) =>
|
|
|
23
23
|
({ componentProperties: props }) => {
|
|
24
24
|
const tone = match(props.Tone.value)
|
|
25
25
|
.with("Neutral", () => "neutral")
|
|
26
|
-
.with("
|
|
26
|
+
.with("Brand", () => "brand")
|
|
27
27
|
.exhaustive();
|
|
28
28
|
|
|
29
29
|
const commonProps = {
|
|
@@ -14,7 +14,7 @@ export const createRadiomarkHandler = (_ctx: ComponentHandlerDeps) =>
|
|
|
14
14
|
({ componentProperties: props }) => {
|
|
15
15
|
const tone = match(props.Tone.value)
|
|
16
16
|
.with("Neutral", () => "neutral")
|
|
17
|
-
.with("
|
|
17
|
+
.with("Brand", () => "brand")
|
|
18
18
|
.exhaustive();
|
|
19
19
|
|
|
20
20
|
const commonProps = {
|
|
@@ -78,7 +78,7 @@ const createSelectBoxHorizontalHandler = (ctx: ComponentHandlerDeps) =>
|
|
|
78
78
|
})();
|
|
79
79
|
|
|
80
80
|
const contentSlotNode = props["Show Custom Content#56903:0"].value
|
|
81
|
-
? findSlotNode(node, "
|
|
81
|
+
? findSlotNode(node, "Contents Slot#6752:6")
|
|
82
82
|
: undefined;
|
|
83
83
|
const footer = contentSlotNode ? traverse(contentSlotNode) : undefined;
|
|
84
84
|
|
|
@@ -13,7 +13,7 @@ export const createSwitchHandler = (_ctx: ComponentHandlerDeps) =>
|
|
|
13
13
|
({ componentProperties: props }) => {
|
|
14
14
|
const tone = match(props.Tone.value)
|
|
15
15
|
.with("Neutral", () => "neutral")
|
|
16
|
-
.with("
|
|
16
|
+
.with("Brand", () => "brand")
|
|
17
17
|
.exhaustive();
|
|
18
18
|
|
|
19
19
|
const commonProps = {
|
|
@@ -13,7 +13,7 @@ export const createSwitchmarkHandler = (_ctx: ComponentHandlerDeps) =>
|
|
|
13
13
|
({ componentProperties: props }) => {
|
|
14
14
|
const tone = match(props.Tone.value)
|
|
15
15
|
.with("Neutral", () => "neutral")
|
|
16
|
-
.with("
|
|
16
|
+
.with("Brand", () => "brand")
|
|
17
17
|
.exhaustive();
|
|
18
18
|
|
|
19
19
|
const commonProps = {
|
|
@@ -418,6 +418,26 @@ export declare const privateComponentItemButtonType: {
|
|
|
418
418
|
}
|
|
419
419
|
};
|
|
420
420
|
|
|
421
|
+
export declare const privateComponentItemMenuItem: {
|
|
422
|
+
"name": "privateComponentItemMenuItem",
|
|
423
|
+
"key": "f0587a7a1d313f5be38d87fe386ab1f7b89e7953",
|
|
424
|
+
"componentPropertyDefinitions": {
|
|
425
|
+
"Icon#52689:0": {
|
|
426
|
+
"type": "INSTANCE_SWAP"
|
|
427
|
+
},
|
|
428
|
+
"Label#52689:4": {
|
|
429
|
+
"type": "TEXT"
|
|
430
|
+
},
|
|
431
|
+
"\bState": {
|
|
432
|
+
"type": "VARIANT",
|
|
433
|
+
"variantOptions": [
|
|
434
|
+
"Enabled",
|
|
435
|
+
"Pressed"
|
|
436
|
+
]
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
};
|
|
440
|
+
|
|
421
441
|
export declare const privateComponentItemMenuType: {
|
|
422
442
|
"name": "privateComponentItemMenuType",
|
|
423
443
|
"key": "e888d8fa0a1031f916adfd4d4a1cb05d4ae69b75",
|
|
@@ -499,6 +519,119 @@ export declare const privateComponentItemTag: {
|
|
|
499
519
|
}
|
|
500
520
|
};
|
|
501
521
|
|
|
522
|
+
export declare const privateComponentItemLiveActivityTagGroup: {
|
|
523
|
+
"name": "privateComponentItemLiveActivityTagGroup",
|
|
524
|
+
"key": "9322629a723642968dc8b89abf31f93eaaea96cb",
|
|
525
|
+
"componentPropertyDefinitions": {
|
|
526
|
+
"Tag 1 Text#7703:15": {
|
|
527
|
+
"type": "TEXT"
|
|
528
|
+
},
|
|
529
|
+
"Tag 2 Text#7703:18": {
|
|
530
|
+
"type": "TEXT"
|
|
531
|
+
},
|
|
532
|
+
"Tag Count": {
|
|
533
|
+
"type": "VARIANT",
|
|
534
|
+
"variantOptions": [
|
|
535
|
+
"1",
|
|
536
|
+
"2"
|
|
537
|
+
]
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
};
|
|
541
|
+
|
|
542
|
+
export declare const privateComponentMenuGroup: {
|
|
543
|
+
"name": "privateComponentMenuGroup",
|
|
544
|
+
"key": "09a4fa7ba8b01cb0912f1d95c4e5ee67563a9562",
|
|
545
|
+
"componentPropertyDefinitions": {
|
|
546
|
+
"Items#2013:7": {
|
|
547
|
+
"type": "SLOT"
|
|
548
|
+
},
|
|
549
|
+
"Has Header#2013:10": {
|
|
550
|
+
"type": "BOOLEAN"
|
|
551
|
+
},
|
|
552
|
+
"Size": {
|
|
553
|
+
"type": "VARIANT",
|
|
554
|
+
"variantOptions": [
|
|
555
|
+
"Medium",
|
|
556
|
+
"Small"
|
|
557
|
+
]
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
};
|
|
561
|
+
|
|
562
|
+
export declare const privateComponentMenuGroupLabel: {
|
|
563
|
+
"name": "privateComponentMenuGroupLabel",
|
|
564
|
+
"key": "07a04219faec33ebd988f9883b314a7c4f1dcafe",
|
|
565
|
+
"componentPropertyDefinitions": {
|
|
566
|
+
"Label#2125:0": {
|
|
567
|
+
"type": "TEXT"
|
|
568
|
+
},
|
|
569
|
+
"Size": {
|
|
570
|
+
"type": "VARIANT",
|
|
571
|
+
"variantOptions": [
|
|
572
|
+
"Medium",
|
|
573
|
+
"Small"
|
|
574
|
+
]
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
};
|
|
578
|
+
|
|
579
|
+
export declare const privateComponentMenuItem: {
|
|
580
|
+
"name": "privateComponentMenuItem",
|
|
581
|
+
"key": "adb610a300212eac49e2b86908ad9712e6c67e21",
|
|
582
|
+
"componentPropertyDefinitions": {
|
|
583
|
+
"Has Description#1995:9": {
|
|
584
|
+
"type": "BOOLEAN"
|
|
585
|
+
},
|
|
586
|
+
"Suffix Slot#1995:10": {
|
|
587
|
+
"type": "INSTANCE_SWAP"
|
|
588
|
+
},
|
|
589
|
+
"Has Prefix Icon#1995:11": {
|
|
590
|
+
"type": "BOOLEAN"
|
|
591
|
+
},
|
|
592
|
+
"Title Sub Slot#1995:12": {
|
|
593
|
+
"type": "INSTANCE_SWAP"
|
|
594
|
+
},
|
|
595
|
+
"Title#1995:13": {
|
|
596
|
+
"type": "TEXT"
|
|
597
|
+
},
|
|
598
|
+
"Description#1995:14": {
|
|
599
|
+
"type": "TEXT"
|
|
600
|
+
},
|
|
601
|
+
"Prefix Icon#1995:15": {
|
|
602
|
+
"type": "INSTANCE_SWAP"
|
|
603
|
+
},
|
|
604
|
+
"Has Title Sub Slot#1995:16": {
|
|
605
|
+
"type": "BOOLEAN"
|
|
606
|
+
},
|
|
607
|
+
"Has Suffix#2013:0": {
|
|
608
|
+
"type": "BOOLEAN"
|
|
609
|
+
},
|
|
610
|
+
"Size": {
|
|
611
|
+
"type": "VARIANT",
|
|
612
|
+
"variantOptions": [
|
|
613
|
+
"Medium",
|
|
614
|
+
"Small"
|
|
615
|
+
]
|
|
616
|
+
},
|
|
617
|
+
"Tone": {
|
|
618
|
+
"type": "VARIANT",
|
|
619
|
+
"variantOptions": [
|
|
620
|
+
"Neutral",
|
|
621
|
+
"Critical"
|
|
622
|
+
]
|
|
623
|
+
},
|
|
624
|
+
"State": {
|
|
625
|
+
"type": "VARIANT",
|
|
626
|
+
"variantOptions": [
|
|
627
|
+
"Enabled",
|
|
628
|
+
"Pressed",
|
|
629
|
+
"Disabled"
|
|
630
|
+
]
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
};
|
|
634
|
+
|
|
502
635
|
export declare const privateComponentMenuSheetCloseButton: {
|
|
503
636
|
"name": "privateComponentMenuSheetCloseButton",
|
|
504
637
|
"key": "6b169789070ae16cd226a3f21be61d207cc6dd2e",
|
|
@@ -670,6 +803,124 @@ export declare const privateComponentSelectBoxItemCheckmark: {
|
|
|
670
803
|
}
|
|
671
804
|
};
|
|
672
805
|
|
|
806
|
+
export declare const privateTemplateShareSheetMenuGroup: {
|
|
807
|
+
"name": "privateTemplateShareSheetMenuGroup",
|
|
808
|
+
"key": "ab02952328ca4705ee94355b69675055c67fa1ef",
|
|
809
|
+
"componentPropertyDefinitions": {
|
|
810
|
+
"Action Count": {
|
|
811
|
+
"type": "VARIANT",
|
|
812
|
+
"variantOptions": [
|
|
813
|
+
"1",
|
|
814
|
+
"2",
|
|
815
|
+
"3",
|
|
816
|
+
"4",
|
|
817
|
+
"5",
|
|
818
|
+
"6",
|
|
819
|
+
"7",
|
|
820
|
+
"8"
|
|
821
|
+
]
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
};
|
|
825
|
+
|
|
826
|
+
export declare const privateTemplateShareSheetMenuItem: {
|
|
827
|
+
"name": "privateTemplateShareSheetMenuItem",
|
|
828
|
+
"key": "8f94361b6329f78eecb4656f0533080166b4b037",
|
|
829
|
+
"componentPropertyDefinitions": {
|
|
830
|
+
"Show Prefix Icon#17043:5": {
|
|
831
|
+
"type": "BOOLEAN"
|
|
832
|
+
},
|
|
833
|
+
"Sub Text#51411:0": {
|
|
834
|
+
"type": "TEXT"
|
|
835
|
+
},
|
|
836
|
+
"Show Item Description#51411:19": {
|
|
837
|
+
"type": "BOOLEAN"
|
|
838
|
+
},
|
|
839
|
+
"Label#55905:8": {
|
|
840
|
+
"type": "TEXT"
|
|
841
|
+
},
|
|
842
|
+
"Prefix Icon#55948:0": {
|
|
843
|
+
"type": "INSTANCE_SWAP"
|
|
844
|
+
},
|
|
845
|
+
"Tone": {
|
|
846
|
+
"type": "VARIANT",
|
|
847
|
+
"variantOptions": [
|
|
848
|
+
"Neutral"
|
|
849
|
+
]
|
|
850
|
+
},
|
|
851
|
+
"State": {
|
|
852
|
+
"type": "VARIANT",
|
|
853
|
+
"variantOptions": [
|
|
854
|
+
"Enabled",
|
|
855
|
+
"Pressed",
|
|
856
|
+
"Disabled"
|
|
857
|
+
]
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
};
|
|
861
|
+
|
|
862
|
+
export declare const privateComponentSidebarMenuItem: {
|
|
863
|
+
"name": "privateComponentSidebarMenuItem",
|
|
864
|
+
"key": "0c241e8cf55c66565835dc6d124ceedf32f96567",
|
|
865
|
+
"componentPropertyDefinitions": {
|
|
866
|
+
"Expanded#308:0": {
|
|
867
|
+
"type": "BOOLEAN"
|
|
868
|
+
},
|
|
869
|
+
"Collapsible Items Container#3329:0": {
|
|
870
|
+
"type": "SLOT"
|
|
871
|
+
},
|
|
872
|
+
"Type": {
|
|
873
|
+
"type": "VARIANT",
|
|
874
|
+
"variantOptions": [
|
|
875
|
+
"Default",
|
|
876
|
+
"Collapsible"
|
|
877
|
+
]
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
};
|
|
881
|
+
|
|
882
|
+
export declare const privateComponentSidebarMenuItemPremitive: {
|
|
883
|
+
"name": "privateComponentSidebarMenuItemPremitive",
|
|
884
|
+
"key": "e291d4e534433a1115ad041adf28b4b9ac61b4d3",
|
|
885
|
+
"componentPropertyDefinitions": {
|
|
886
|
+
"Has Suffix Icon#5:0": {
|
|
887
|
+
"type": "BOOLEAN"
|
|
888
|
+
},
|
|
889
|
+
"Prefix Icon#5:5": {
|
|
890
|
+
"type": "INSTANCE_SWAP"
|
|
891
|
+
},
|
|
892
|
+
"Suffix Icon#5:10": {
|
|
893
|
+
"type": "INSTANCE_SWAP"
|
|
894
|
+
},
|
|
895
|
+
"Label#5:24": {
|
|
896
|
+
"type": "TEXT"
|
|
897
|
+
},
|
|
898
|
+
"Selected": {
|
|
899
|
+
"type": "VARIANT",
|
|
900
|
+
"variantOptions": [
|
|
901
|
+
"False",
|
|
902
|
+
"True"
|
|
903
|
+
]
|
|
904
|
+
},
|
|
905
|
+
"Layout": {
|
|
906
|
+
"type": "VARIANT",
|
|
907
|
+
"variantOptions": [
|
|
908
|
+
"Icon First",
|
|
909
|
+
"Text Only",
|
|
910
|
+
"Icon Only"
|
|
911
|
+
]
|
|
912
|
+
},
|
|
913
|
+
"State": {
|
|
914
|
+
"type": "VARIANT",
|
|
915
|
+
"variantOptions": [
|
|
916
|
+
"Enabled",
|
|
917
|
+
"Hover",
|
|
918
|
+
"Disabled"
|
|
919
|
+
]
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
};
|
|
923
|
+
|
|
673
924
|
export declare const privateComponentSliderItemHandles: {
|
|
674
925
|
"name": "privateComponentSliderItemHandles",
|
|
675
926
|
"key": "950b33735d6dda594436c876386b921908dedf64",
|
|
@@ -1961,6 +2212,21 @@ export declare const componentAlertDialog: {
|
|
|
1961
2212
|
}
|
|
1962
2213
|
};
|
|
1963
2214
|
|
|
2215
|
+
export declare const componentAndroidNowBarScreen: {
|
|
2216
|
+
"name": "componentAndroidNowBarScreen",
|
|
2217
|
+
"key": "735019feaa75b4e71618a8b0bc21a7a1985c2978",
|
|
2218
|
+
"componentPropertyDefinitions": {
|
|
2219
|
+
"Type": {
|
|
2220
|
+
"type": "VARIANT",
|
|
2221
|
+
"variantOptions": [
|
|
2222
|
+
"Status bar chip",
|
|
2223
|
+
"Expanded view",
|
|
2224
|
+
"Collapsed view"
|
|
2225
|
+
]
|
|
2226
|
+
}
|
|
2227
|
+
}
|
|
2228
|
+
};
|
|
2229
|
+
|
|
1964
2230
|
export declare const componentAvatar: {
|
|
1965
2231
|
"name": "componentAvatar",
|
|
1966
2232
|
"key": "f17031afc2c71f35e5a147f6937a2b918029d334",
|
|
@@ -2286,7 +2552,7 @@ export declare const componentCheckbox: {
|
|
|
2286
2552
|
"type": "VARIANT",
|
|
2287
2553
|
"variantOptions": [
|
|
2288
2554
|
"Neutral",
|
|
2289
|
-
"
|
|
2555
|
+
"Brand"
|
|
2290
2556
|
]
|
|
2291
2557
|
},
|
|
2292
2558
|
"Shape": {
|
|
@@ -2358,8 +2624,8 @@ export declare const componentCheckmark: {
|
|
|
2358
2624
|
"Tone": {
|
|
2359
2625
|
"type": "VARIANT",
|
|
2360
2626
|
"variantOptions": [
|
|
2361
|
-
"
|
|
2362
|
-
"
|
|
2627
|
+
"Neutral",
|
|
2628
|
+
"Brand"
|
|
2363
2629
|
]
|
|
2364
2630
|
},
|
|
2365
2631
|
"Shape": {
|
|
@@ -2744,8 +3010,8 @@ export declare const componentImageFrame: {
|
|
|
2744
3010
|
}
|
|
2745
3011
|
};
|
|
2746
3012
|
|
|
2747
|
-
export declare const
|
|
2748
|
-
"name": "
|
|
3013
|
+
export declare const componentIOsLiveAcitivityScreen: {
|
|
3014
|
+
"name": "componentIOsLiveAcitivityScreen",
|
|
2749
3015
|
"key": "3d7ff6cf68e769096237bcc0122be08caf8b6ce4",
|
|
2750
3016
|
"componentPropertyDefinitions": {
|
|
2751
3017
|
"Type": {
|
|
@@ -2917,6 +3183,23 @@ export declare const componentMannerTempBadge: {
|
|
|
2917
3183
|
}
|
|
2918
3184
|
};
|
|
2919
3185
|
|
|
3186
|
+
export declare const componentMenu: {
|
|
3187
|
+
"name": "componentMenu",
|
|
3188
|
+
"key": "fa09812bfb6ba24fc6367636032f14a2b2931ee9",
|
|
3189
|
+
"componentPropertyDefinitions": {
|
|
3190
|
+
"Slot#2013:6": {
|
|
3191
|
+
"type": "SLOT"
|
|
3192
|
+
},
|
|
3193
|
+
"Size": {
|
|
3194
|
+
"type": "VARIANT",
|
|
3195
|
+
"variantOptions": [
|
|
3196
|
+
"Medium",
|
|
3197
|
+
"Small"
|
|
3198
|
+
]
|
|
3199
|
+
}
|
|
3200
|
+
}
|
|
3201
|
+
};
|
|
3202
|
+
|
|
2920
3203
|
export declare const componentMenuSheet: {
|
|
2921
3204
|
"name": "componentMenuSheet",
|
|
2922
3205
|
"key": "0e0597f2ea3f9dde6c17bf0e4d8eebe3a95e3942",
|
|
@@ -3124,7 +3407,7 @@ export declare const componentRadio: {
|
|
|
3124
3407
|
"type": "VARIANT",
|
|
3125
3408
|
"variantOptions": [
|
|
3126
3409
|
"Neutral",
|
|
3127
|
-
"
|
|
3410
|
+
"Brand"
|
|
3128
3411
|
]
|
|
3129
3412
|
},
|
|
3130
3413
|
"Weight": {
|
|
@@ -3189,7 +3472,7 @@ export declare const componentRadiomark: {
|
|
|
3189
3472
|
"type": "VARIANT",
|
|
3190
3473
|
"variantOptions": [
|
|
3191
3474
|
"Neutral",
|
|
3192
|
-
"
|
|
3475
|
+
"Brand"
|
|
3193
3476
|
]
|
|
3194
3477
|
},
|
|
3195
3478
|
"Selected": {
|
|
@@ -3446,6 +3729,65 @@ export declare const componentShareModalFigmaOnly: {
|
|
|
3446
3729
|
}
|
|
3447
3730
|
};
|
|
3448
3731
|
|
|
3732
|
+
export declare const componentSideNavigation: {
|
|
3733
|
+
"name": "componentSideNavigation",
|
|
3734
|
+
"key": "72906d8fc24bdd5905bef1fc967193f88aa3e6b7",
|
|
3735
|
+
"componentPropertyDefinitions": {
|
|
3736
|
+
"Is Scrolled#1072:7": {
|
|
3737
|
+
"type": "BOOLEAN"
|
|
3738
|
+
},
|
|
3739
|
+
"Show Scroll Fog#1881:0": {
|
|
3740
|
+
"type": "BOOLEAN"
|
|
3741
|
+
},
|
|
3742
|
+
"Body Slot#3329:6": {
|
|
3743
|
+
"type": "SLOT"
|
|
3744
|
+
},
|
|
3745
|
+
"Header Slot#3329:11": {
|
|
3746
|
+
"type": "SLOT"
|
|
3747
|
+
},
|
|
3748
|
+
"Footer Slot#3329:14": {
|
|
3749
|
+
"type": "SLOT"
|
|
3750
|
+
},
|
|
3751
|
+
"Has Header#3333:17": {
|
|
3752
|
+
"type": "BOOLEAN"
|
|
3753
|
+
},
|
|
3754
|
+
"Has Footer#3333:20": {
|
|
3755
|
+
"type": "BOOLEAN"
|
|
3756
|
+
},
|
|
3757
|
+
"Variant": {
|
|
3758
|
+
"type": "VARIANT",
|
|
3759
|
+
"variantOptions": [
|
|
3760
|
+
"Neutral",
|
|
3761
|
+
"Transparent"
|
|
3762
|
+
]
|
|
3763
|
+
}
|
|
3764
|
+
}
|
|
3765
|
+
};
|
|
3766
|
+
|
|
3767
|
+
export declare const componentSideNavigationPreset: {
|
|
3768
|
+
"name": "componentSideNavigationPreset",
|
|
3769
|
+
"key": "4aa3ac505361b0099c29d3bf910ebf9e0620b261",
|
|
3770
|
+
"componentPropertyDefinitions": {
|
|
3771
|
+
"Product": {
|
|
3772
|
+
"type": "VARIANT",
|
|
3773
|
+
"variantOptions": [
|
|
3774
|
+
"컀머μ€",
|
|
3775
|
+
"μλ° - λ³Έμ¬",
|
|
3776
|
+
"μλ° - μ§μ ",
|
|
3777
|
+
"λΉμ¦νλ‘ν",
|
|
3778
|
+
"κ΄κ³ - μ λ¬Έκ°λͺ¨λ"
|
|
3779
|
+
]
|
|
3780
|
+
},
|
|
3781
|
+
"Collapsed": {
|
|
3782
|
+
"type": "VARIANT",
|
|
3783
|
+
"variantOptions": [
|
|
3784
|
+
"False",
|
|
3785
|
+
"True"
|
|
3786
|
+
]
|
|
3787
|
+
}
|
|
3788
|
+
}
|
|
3789
|
+
};
|
|
3790
|
+
|
|
3449
3791
|
export declare const componentSkeleton: {
|
|
3450
3792
|
"name": "componentSkeleton",
|
|
3451
3793
|
"key": "fdf69f0324c6c1145e5c715655f73bbb45575ba2",
|
|
@@ -3603,7 +3945,7 @@ export declare const componentSwitch: {
|
|
|
3603
3945
|
"type": "VARIANT",
|
|
3604
3946
|
"variantOptions": [
|
|
3605
3947
|
"Neutral",
|
|
3606
|
-
"
|
|
3948
|
+
"Brand"
|
|
3607
3949
|
]
|
|
3608
3950
|
},
|
|
3609
3951
|
"Selected": {
|
|
@@ -3646,7 +3988,7 @@ export declare const componentSwitchmark: {
|
|
|
3646
3988
|
"type": "VARIANT",
|
|
3647
3989
|
"variantOptions": [
|
|
3648
3990
|
"Neutral",
|
|
3649
|
-
"
|
|
3991
|
+
"Brand"
|
|
3650
3992
|
]
|
|
3651
3993
|
},
|
|
3652
3994
|
"Selected": {
|
|
@@ -4144,6 +4486,52 @@ export declare const componentBottomNavigationKr: {
|
|
|
4144
4486
|
}
|
|
4145
4487
|
};
|
|
4146
4488
|
|
|
4489
|
+
export declare const templateEmbedViewType: {
|
|
4490
|
+
"name": "templateEmbedViewType",
|
|
4491
|
+
"key": "6913a0eb2ae6a5e704ee862cb2294046274bcaae",
|
|
4492
|
+
"componentPropertyDefinitions": {
|
|
4493
|
+
"Title#2602:0": {
|
|
4494
|
+
"type": "TEXT"
|
|
4495
|
+
},
|
|
4496
|
+
"Description#2602:1": {
|
|
4497
|
+
"type": "TEXT"
|
|
4498
|
+
},
|
|
4499
|
+
"Show Thumbnail#2602:2": {
|
|
4500
|
+
"type": "BOOLEAN"
|
|
4501
|
+
},
|
|
4502
|
+
"Show Delete Button#2614:4": {
|
|
4503
|
+
"type": "BOOLEAN"
|
|
4504
|
+
},
|
|
4505
|
+
"Show Title#2727:0": {
|
|
4506
|
+
"type": "BOOLEAN"
|
|
4507
|
+
},
|
|
4508
|
+
"Show Description#2727:7": {
|
|
4509
|
+
"type": "BOOLEAN"
|
|
4510
|
+
},
|
|
4511
|
+
"Show Tag Group#3562:0": {
|
|
4512
|
+
"type": "BOOLEAN"
|
|
4513
|
+
},
|
|
4514
|
+
"State": {
|
|
4515
|
+
"type": "VARIANT",
|
|
4516
|
+
"variantOptions": [
|
|
4517
|
+
"Enabled",
|
|
4518
|
+
"Pressed",
|
|
4519
|
+
"Disabled",
|
|
4520
|
+
"Loading",
|
|
4521
|
+
"Forbidden",
|
|
4522
|
+
"Not Found"
|
|
4523
|
+
]
|
|
4524
|
+
},
|
|
4525
|
+
"Layout": {
|
|
4526
|
+
"type": "VARIANT",
|
|
4527
|
+
"variantOptions": [
|
|
4528
|
+
"Title First",
|
|
4529
|
+
"Description First"
|
|
4530
|
+
]
|
|
4531
|
+
}
|
|
4532
|
+
}
|
|
4533
|
+
};
|
|
4534
|
+
|
|
4147
4535
|
export declare const componentImageFrameReactionButton: {
|
|
4148
4536
|
"name": "componentImageFrameReactionButton",
|
|
4149
4537
|
"key": "559ac01a2ef202564821a5c7f0dbf46dcd61b3f9",
|
|
@@ -4237,7 +4625,7 @@ export declare const componentSelectBoxItemHorizontal: {
|
|
|
4237
4625
|
"name": "componentSelectBoxItemHorizontal",
|
|
4238
4626
|
"key": "8174af8ef3654dad996723883f5b84f44f791513",
|
|
4239
4627
|
"componentPropertyDefinitions": {
|
|
4240
|
-
"
|
|
4628
|
+
"Contents Slot#6752:6": {
|
|
4241
4629
|
"type": "SLOT"
|
|
4242
4630
|
},
|
|
4243
4631
|
"Title#28452:21": {
|
|
@@ -4334,3 +4722,45 @@ export declare const componentSelectBoxItemVertical: {
|
|
|
4334
4722
|
}
|
|
4335
4723
|
}
|
|
4336
4724
|
};
|
|
4725
|
+
|
|
4726
|
+
export declare const templateShareSheet: {
|
|
4727
|
+
"name": "templateShareSheet",
|
|
4728
|
+
"key": "1dadeec71d6ddcac198ed197366e5c4b5a114ef9",
|
|
4729
|
+
"componentPropertyDefinitions": {
|
|
4730
|
+
"Share Sheet Slot#2497:0": {
|
|
4731
|
+
"type": "SLOT"
|
|
4732
|
+
},
|
|
4733
|
+
"Show Slot#2497:8": {
|
|
4734
|
+
"type": "BOOLEAN"
|
|
4735
|
+
},
|
|
4736
|
+
"Show Header#4926:7": {
|
|
4737
|
+
"type": "BOOLEAN"
|
|
4738
|
+
},
|
|
4739
|
+
"Title Text#14599:0": {
|
|
4740
|
+
"type": "TEXT"
|
|
4741
|
+
},
|
|
4742
|
+
"Description Text#21827:0": {
|
|
4743
|
+
"type": "TEXT"
|
|
4744
|
+
},
|
|
4745
|
+
"Show Safe Area#25531:15": {
|
|
4746
|
+
"type": "BOOLEAN"
|
|
4747
|
+
},
|
|
4748
|
+
"Show Header Description#32984:0": {
|
|
4749
|
+
"type": "BOOLEAN"
|
|
4750
|
+
},
|
|
4751
|
+
"Menu Group Count": {
|
|
4752
|
+
"type": "VARIANT",
|
|
4753
|
+
"variantOptions": [
|
|
4754
|
+
"1",
|
|
4755
|
+
"2",
|
|
4756
|
+
"3"
|
|
4757
|
+
]
|
|
4758
|
+
},
|
|
4759
|
+
"Layout": {
|
|
4760
|
+
"type": "VARIANT",
|
|
4761
|
+
"variantOptions": [
|
|
4762
|
+
"Text Only"
|
|
4763
|
+
]
|
|
4764
|
+
}
|
|
4765
|
+
}
|
|
4766
|
+
};
|