@seed-design/figma 1.1.17 → 1.1.19
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 +291 -58
- package/lib/codegen/index.d.ts +34 -65
- package/lib/codegen/index.d.ts.map +1 -1
- package/lib/codegen/index.js +291 -58
- package/lib/codegen/targets/react/index.cjs +389 -126
- package/lib/codegen/targets/react/index.d.ts.map +1 -1
- package/lib/codegen/targets/react/index.js +389 -126
- package/lib/index.cjs +317 -59
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +317 -59
- package/package.json +3 -3
- package/src/codegen/component-properties.ts +35 -8
- package/src/codegen/targets/react/component/handlers/{select-box.ts → legacy-select-box.ts} +23 -12
- package/src/codegen/targets/react/component/handlers/legacy-text-field.ts +4 -2
- package/src/codegen/targets/react/component/index.ts +8 -3
- package/src/entities/data/__generated__/component-sets/index.d.ts +170 -53
- package/src/entities/data/__generated__/component-sets/index.mjs +170 -53
- package/src/entities/data/__generated__/components/index.d.ts +0 -13
- package/src/entities/data/__generated__/components/index.mjs +0 -13
- package/src/entities/data/__generated__/icons/index.mjs +24 -0
- package/src/entities/data/__generated__/variable-collections/index.mjs +9 -4
- package/src/entities/data/__generated__/variables/index.mjs +111 -0
- package/src/normalizer/from-rest.ts +2 -1
|
@@ -40,7 +40,6 @@ import { createRadiomarkHandler } from "@/codegen/targets/react/component/handle
|
|
|
40
40
|
import { createReactionButtonHandler } from "./handlers/reaction-button";
|
|
41
41
|
import { createResultSectionHandler } from "./handlers/result-section";
|
|
42
42
|
import { createSegmentedControlHandler } from "./handlers/segmented-control";
|
|
43
|
-
import { createSelectBoxGroupHandler, createSelectBoxHandler } from "./handlers/select-box";
|
|
44
43
|
import { createSkeletonHandler } from "./handlers/skeleton";
|
|
45
44
|
import {
|
|
46
45
|
createSliderHandler,
|
|
@@ -60,6 +59,10 @@ import {
|
|
|
60
59
|
createLegacyTextFieldHandler,
|
|
61
60
|
createLegacyMultilineTextFieldHandler,
|
|
62
61
|
} from "./handlers/legacy-text-field";
|
|
62
|
+
import {
|
|
63
|
+
createLegacySelectBoxHandler,
|
|
64
|
+
createLegacySelectBoxGroupHandler,
|
|
65
|
+
} from "./handlers/legacy-select-box";
|
|
63
66
|
|
|
64
67
|
export type { ComponentHandlerDeps };
|
|
65
68
|
export type UnboundComponentHandler<T extends NormalizedInstanceNode["componentProperties"]> = (
|
|
@@ -97,8 +100,10 @@ export const unboundSeedComponentHandlers: Array<UnboundComponentHandler<any>> =
|
|
|
97
100
|
createAvatarHandler,
|
|
98
101
|
createAvatarStackHandler,
|
|
99
102
|
createSegmentedControlHandler,
|
|
100
|
-
|
|
101
|
-
|
|
103
|
+
|
|
104
|
+
createLegacySelectBoxHandler,
|
|
105
|
+
createLegacySelectBoxGroupHandler,
|
|
106
|
+
|
|
102
107
|
createSliderHandler,
|
|
103
108
|
createSliderFieldHandler,
|
|
104
109
|
createTabsHandler,
|
|
@@ -102,26 +102,21 @@ export declare const templateDisclaimer: {
|
|
|
102
102
|
}
|
|
103
103
|
};
|
|
104
104
|
|
|
105
|
-
export declare const
|
|
106
|
-
"name": "
|
|
107
|
-
"key": "
|
|
105
|
+
export declare const templateResultPage: {
|
|
106
|
+
"name": "templateResultPage",
|
|
107
|
+
"key": "4cc94782abbe7e58f0401c29ad8880a62e512ae7",
|
|
108
108
|
"componentPropertyDefinitions": {
|
|
109
|
-
"
|
|
110
|
-
"type": "
|
|
111
|
-
"variantOptions": [
|
|
112
|
-
"Checkbox",
|
|
113
|
-
"Radio"
|
|
114
|
-
]
|
|
109
|
+
"Show Top Navigation#58717:0": {
|
|
110
|
+
"type": "BOOLEAN"
|
|
115
111
|
},
|
|
116
|
-
"
|
|
112
|
+
"Show Bottom Action Bar#59845:0": {
|
|
113
|
+
"type": "BOOLEAN"
|
|
114
|
+
},
|
|
115
|
+
"Show Bottom Action Bar": {
|
|
117
116
|
"type": "VARIANT",
|
|
118
117
|
"variantOptions": [
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"3",
|
|
122
|
-
"4",
|
|
123
|
-
"5",
|
|
124
|
-
"6"
|
|
118
|
+
"True",
|
|
119
|
+
"False"
|
|
125
120
|
]
|
|
126
121
|
}
|
|
127
122
|
}
|
|
@@ -889,6 +884,165 @@ export declare const helpBubble: {
|
|
|
889
884
|
}
|
|
890
885
|
};
|
|
891
886
|
|
|
887
|
+
export declare const imageFrame: {
|
|
888
|
+
"name": "imageFrame",
|
|
889
|
+
"key": "b12f0bdeb6c6a61e0d50fe7e0dfae8ecd323f0aa",
|
|
890
|
+
"componentPropertyDefinitions": {
|
|
891
|
+
"Has Image Contents#29729:0": {
|
|
892
|
+
"type": "BOOLEAN"
|
|
893
|
+
},
|
|
894
|
+
"Left Top#58686:0": {
|
|
895
|
+
"type": "INSTANCE_SWAP",
|
|
896
|
+
"preferredValues": [
|
|
897
|
+
{
|
|
898
|
+
"type": "COMPONENT",
|
|
899
|
+
"key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"type": "COMPONENT",
|
|
903
|
+
"key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"type": "COMPONENT",
|
|
907
|
+
"key": "146925b01e772269f042df51f8d2cd5b4e492111"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"type": "COMPONENT",
|
|
911
|
+
"key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"type": "COMPONENT",
|
|
915
|
+
"key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
|
|
916
|
+
}
|
|
917
|
+
]
|
|
918
|
+
},
|
|
919
|
+
"Show Overlay#58686:33": {
|
|
920
|
+
"type": "BOOLEAN"
|
|
921
|
+
},
|
|
922
|
+
"Right Top#58686:66": {
|
|
923
|
+
"type": "INSTANCE_SWAP",
|
|
924
|
+
"preferredValues": [
|
|
925
|
+
{
|
|
926
|
+
"type": "COMPONENT",
|
|
927
|
+
"key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"type": "COMPONENT",
|
|
931
|
+
"key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"type": "COMPONENT",
|
|
935
|
+
"key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"type": "COMPONENT",
|
|
939
|
+
"key": "146925b01e772269f042df51f8d2cd5b4e492111"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"type": "COMPONENT",
|
|
943
|
+
"key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
|
|
944
|
+
}
|
|
945
|
+
]
|
|
946
|
+
},
|
|
947
|
+
"Left Bottom#58686:99": {
|
|
948
|
+
"type": "INSTANCE_SWAP",
|
|
949
|
+
"preferredValues": [
|
|
950
|
+
{
|
|
951
|
+
"type": "COMPONENT",
|
|
952
|
+
"key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"type": "COMPONENT",
|
|
956
|
+
"key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
"type": "COMPONENT",
|
|
960
|
+
"key": "146925b01e772269f042df51f8d2cd5b4e492111"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"type": "COMPONENT",
|
|
964
|
+
"key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"type": "COMPONENT",
|
|
968
|
+
"key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
|
|
969
|
+
}
|
|
970
|
+
]
|
|
971
|
+
},
|
|
972
|
+
"Right Bottom#58686:132": {
|
|
973
|
+
"type": "INSTANCE_SWAP",
|
|
974
|
+
"preferredValues": [
|
|
975
|
+
{
|
|
976
|
+
"type": "COMPONENT",
|
|
977
|
+
"key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"type": "COMPONENT",
|
|
981
|
+
"key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"type": "COMPONENT",
|
|
985
|
+
"key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"type": "COMPONENT",
|
|
989
|
+
"key": "146925b01e772269f042df51f8d2cd5b4e492111"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"type": "COMPONENT",
|
|
993
|
+
"key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
|
|
994
|
+
}
|
|
995
|
+
]
|
|
996
|
+
},
|
|
997
|
+
"ㄴ Left Top#58686:165": {
|
|
998
|
+
"type": "BOOLEAN"
|
|
999
|
+
},
|
|
1000
|
+
"ㄴ Right Top#58686:198": {
|
|
1001
|
+
"type": "BOOLEAN"
|
|
1002
|
+
},
|
|
1003
|
+
"ㄴ Left Bottom#58686:231": {
|
|
1004
|
+
"type": "BOOLEAN"
|
|
1005
|
+
},
|
|
1006
|
+
"ㄴ Right Bottom#58686:264": {
|
|
1007
|
+
"type": "BOOLEAN"
|
|
1008
|
+
},
|
|
1009
|
+
"Ratio": {
|
|
1010
|
+
"type": "VARIANT",
|
|
1011
|
+
"variantOptions": [
|
|
1012
|
+
"1:1",
|
|
1013
|
+
"2:1",
|
|
1014
|
+
"16:9",
|
|
1015
|
+
"4:3",
|
|
1016
|
+
"6:7",
|
|
1017
|
+
"4:5",
|
|
1018
|
+
"2:3"
|
|
1019
|
+
]
|
|
1020
|
+
},
|
|
1021
|
+
"Size": {
|
|
1022
|
+
"type": "VARIANT",
|
|
1023
|
+
"variantOptions": [
|
|
1024
|
+
"20",
|
|
1025
|
+
"24",
|
|
1026
|
+
"36",
|
|
1027
|
+
"42",
|
|
1028
|
+
"48",
|
|
1029
|
+
"64",
|
|
1030
|
+
"80",
|
|
1031
|
+
"96",
|
|
1032
|
+
"120",
|
|
1033
|
+
"\bFree"
|
|
1034
|
+
]
|
|
1035
|
+
},
|
|
1036
|
+
"Rounded": {
|
|
1037
|
+
"type": "VARIANT",
|
|
1038
|
+
"variantOptions": [
|
|
1039
|
+
"True",
|
|
1040
|
+
"False"
|
|
1041
|
+
]
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
};
|
|
1045
|
+
|
|
892
1046
|
export declare const listHeader: {
|
|
893
1047
|
"name": "listHeader",
|
|
894
1048
|
"key": "609f93ed0608ef0a6d9a351e47595ad631bae0fa",
|
|
@@ -1531,43 +1685,6 @@ export declare const segmentedControl: {
|
|
|
1531
1685
|
}
|
|
1532
1686
|
};
|
|
1533
1687
|
|
|
1534
|
-
export declare const selectBox: {
|
|
1535
|
-
"name": "selectBox",
|
|
1536
|
-
"key": "38722ffeb4c966256a709155e8ddac50c93d7c60",
|
|
1537
|
-
"componentPropertyDefinitions": {
|
|
1538
|
-
"Show Description#3033:0": {
|
|
1539
|
-
"type": "BOOLEAN"
|
|
1540
|
-
},
|
|
1541
|
-
"Description #3033:5": {
|
|
1542
|
-
"type": "TEXT"
|
|
1543
|
-
},
|
|
1544
|
-
"Label#3635:0": {
|
|
1545
|
-
"type": "TEXT"
|
|
1546
|
-
},
|
|
1547
|
-
"Control": {
|
|
1548
|
-
"type": "VARIANT",
|
|
1549
|
-
"variantOptions": [
|
|
1550
|
-
"Checkbox",
|
|
1551
|
-
"Radio"
|
|
1552
|
-
]
|
|
1553
|
-
},
|
|
1554
|
-
"Selected": {
|
|
1555
|
-
"type": "VARIANT",
|
|
1556
|
-
"variantOptions": [
|
|
1557
|
-
"True",
|
|
1558
|
-
"False"
|
|
1559
|
-
]
|
|
1560
|
-
},
|
|
1561
|
-
"State": {
|
|
1562
|
-
"type": "VARIANT",
|
|
1563
|
-
"variantOptions": [
|
|
1564
|
-
"Enabled",
|
|
1565
|
-
"Pressed"
|
|
1566
|
-
]
|
|
1567
|
-
}
|
|
1568
|
-
}
|
|
1569
|
-
};
|
|
1570
|
-
|
|
1571
1688
|
export declare const skeleton: {
|
|
1572
1689
|
"name": "skeleton",
|
|
1573
1690
|
"key": "ef22c3288722fbfa64a5ab73df397ade88f8e05a",
|
|
@@ -102,26 +102,21 @@ export const templateDisclaimer = {
|
|
|
102
102
|
}
|
|
103
103
|
};
|
|
104
104
|
|
|
105
|
-
export const
|
|
106
|
-
"name": "
|
|
107
|
-
"key": "
|
|
105
|
+
export const templateResultPage = {
|
|
106
|
+
"name": "templateResultPage",
|
|
107
|
+
"key": "4cc94782abbe7e58f0401c29ad8880a62e512ae7",
|
|
108
108
|
"componentPropertyDefinitions": {
|
|
109
|
-
"
|
|
110
|
-
"type": "
|
|
111
|
-
"variantOptions": [
|
|
112
|
-
"Checkbox",
|
|
113
|
-
"Radio"
|
|
114
|
-
]
|
|
109
|
+
"Show Top Navigation#58717:0": {
|
|
110
|
+
"type": "BOOLEAN"
|
|
115
111
|
},
|
|
116
|
-
"
|
|
112
|
+
"Show Bottom Action Bar#59845:0": {
|
|
113
|
+
"type": "BOOLEAN"
|
|
114
|
+
},
|
|
115
|
+
"Show Bottom Action Bar": {
|
|
117
116
|
"type": "VARIANT",
|
|
118
117
|
"variantOptions": [
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"3",
|
|
122
|
-
"4",
|
|
123
|
-
"5",
|
|
124
|
-
"6"
|
|
118
|
+
"True",
|
|
119
|
+
"False"
|
|
125
120
|
]
|
|
126
121
|
}
|
|
127
122
|
}
|
|
@@ -889,6 +884,165 @@ export const helpBubble = {
|
|
|
889
884
|
}
|
|
890
885
|
};
|
|
891
886
|
|
|
887
|
+
export const imageFrame = {
|
|
888
|
+
"name": "imageFrame",
|
|
889
|
+
"key": "b12f0bdeb6c6a61e0d50fe7e0dfae8ecd323f0aa",
|
|
890
|
+
"componentPropertyDefinitions": {
|
|
891
|
+
"Has Image Contents#29729:0": {
|
|
892
|
+
"type": "BOOLEAN"
|
|
893
|
+
},
|
|
894
|
+
"Left Top#58686:0": {
|
|
895
|
+
"type": "INSTANCE_SWAP",
|
|
896
|
+
"preferredValues": [
|
|
897
|
+
{
|
|
898
|
+
"type": "COMPONENT",
|
|
899
|
+
"key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"type": "COMPONENT",
|
|
903
|
+
"key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"type": "COMPONENT",
|
|
907
|
+
"key": "146925b01e772269f042df51f8d2cd5b4e492111"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"type": "COMPONENT",
|
|
911
|
+
"key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"type": "COMPONENT",
|
|
915
|
+
"key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
|
|
916
|
+
}
|
|
917
|
+
]
|
|
918
|
+
},
|
|
919
|
+
"Show Overlay#58686:33": {
|
|
920
|
+
"type": "BOOLEAN"
|
|
921
|
+
},
|
|
922
|
+
"Right Top#58686:66": {
|
|
923
|
+
"type": "INSTANCE_SWAP",
|
|
924
|
+
"preferredValues": [
|
|
925
|
+
{
|
|
926
|
+
"type": "COMPONENT",
|
|
927
|
+
"key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"type": "COMPONENT",
|
|
931
|
+
"key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"type": "COMPONENT",
|
|
935
|
+
"key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"type": "COMPONENT",
|
|
939
|
+
"key": "146925b01e772269f042df51f8d2cd5b4e492111"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"type": "COMPONENT",
|
|
943
|
+
"key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
|
|
944
|
+
}
|
|
945
|
+
]
|
|
946
|
+
},
|
|
947
|
+
"Left Bottom#58686:99": {
|
|
948
|
+
"type": "INSTANCE_SWAP",
|
|
949
|
+
"preferredValues": [
|
|
950
|
+
{
|
|
951
|
+
"type": "COMPONENT",
|
|
952
|
+
"key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"type": "COMPONENT",
|
|
956
|
+
"key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
"type": "COMPONENT",
|
|
960
|
+
"key": "146925b01e772269f042df51f8d2cd5b4e492111"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"type": "COMPONENT",
|
|
964
|
+
"key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"type": "COMPONENT",
|
|
968
|
+
"key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
|
|
969
|
+
}
|
|
970
|
+
]
|
|
971
|
+
},
|
|
972
|
+
"Right Bottom#58686:132": {
|
|
973
|
+
"type": "INSTANCE_SWAP",
|
|
974
|
+
"preferredValues": [
|
|
975
|
+
{
|
|
976
|
+
"type": "COMPONENT",
|
|
977
|
+
"key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"type": "COMPONENT",
|
|
981
|
+
"key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"type": "COMPONENT",
|
|
985
|
+
"key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"type": "COMPONENT",
|
|
989
|
+
"key": "146925b01e772269f042df51f8d2cd5b4e492111"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"type": "COMPONENT",
|
|
993
|
+
"key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
|
|
994
|
+
}
|
|
995
|
+
]
|
|
996
|
+
},
|
|
997
|
+
"ㄴ Left Top#58686:165": {
|
|
998
|
+
"type": "BOOLEAN"
|
|
999
|
+
},
|
|
1000
|
+
"ㄴ Right Top#58686:198": {
|
|
1001
|
+
"type": "BOOLEAN"
|
|
1002
|
+
},
|
|
1003
|
+
"ㄴ Left Bottom#58686:231": {
|
|
1004
|
+
"type": "BOOLEAN"
|
|
1005
|
+
},
|
|
1006
|
+
"ㄴ Right Bottom#58686:264": {
|
|
1007
|
+
"type": "BOOLEAN"
|
|
1008
|
+
},
|
|
1009
|
+
"Ratio": {
|
|
1010
|
+
"type": "VARIANT",
|
|
1011
|
+
"variantOptions": [
|
|
1012
|
+
"1:1",
|
|
1013
|
+
"2:1",
|
|
1014
|
+
"16:9",
|
|
1015
|
+
"4:3",
|
|
1016
|
+
"6:7",
|
|
1017
|
+
"4:5",
|
|
1018
|
+
"2:3"
|
|
1019
|
+
]
|
|
1020
|
+
},
|
|
1021
|
+
"Size": {
|
|
1022
|
+
"type": "VARIANT",
|
|
1023
|
+
"variantOptions": [
|
|
1024
|
+
"20",
|
|
1025
|
+
"24",
|
|
1026
|
+
"36",
|
|
1027
|
+
"42",
|
|
1028
|
+
"48",
|
|
1029
|
+
"64",
|
|
1030
|
+
"80",
|
|
1031
|
+
"96",
|
|
1032
|
+
"120",
|
|
1033
|
+
"\bFree"
|
|
1034
|
+
]
|
|
1035
|
+
},
|
|
1036
|
+
"Rounded": {
|
|
1037
|
+
"type": "VARIANT",
|
|
1038
|
+
"variantOptions": [
|
|
1039
|
+
"True",
|
|
1040
|
+
"False"
|
|
1041
|
+
]
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
};
|
|
1045
|
+
|
|
892
1046
|
export const listHeader = {
|
|
893
1047
|
"name": "listHeader",
|
|
894
1048
|
"key": "609f93ed0608ef0a6d9a351e47595ad631bae0fa",
|
|
@@ -1531,43 +1685,6 @@ export const segmentedControl = {
|
|
|
1531
1685
|
}
|
|
1532
1686
|
};
|
|
1533
1687
|
|
|
1534
|
-
export const selectBox = {
|
|
1535
|
-
"name": "selectBox",
|
|
1536
|
-
"key": "38722ffeb4c966256a709155e8ddac50c93d7c60",
|
|
1537
|
-
"componentPropertyDefinitions": {
|
|
1538
|
-
"Show Description#3033:0": {
|
|
1539
|
-
"type": "BOOLEAN"
|
|
1540
|
-
},
|
|
1541
|
-
"Description #3033:5": {
|
|
1542
|
-
"type": "TEXT"
|
|
1543
|
-
},
|
|
1544
|
-
"Label#3635:0": {
|
|
1545
|
-
"type": "TEXT"
|
|
1546
|
-
},
|
|
1547
|
-
"Control": {
|
|
1548
|
-
"type": "VARIANT",
|
|
1549
|
-
"variantOptions": [
|
|
1550
|
-
"Checkbox",
|
|
1551
|
-
"Radio"
|
|
1552
|
-
]
|
|
1553
|
-
},
|
|
1554
|
-
"Selected": {
|
|
1555
|
-
"type": "VARIANT",
|
|
1556
|
-
"variantOptions": [
|
|
1557
|
-
"True",
|
|
1558
|
-
"False"
|
|
1559
|
-
]
|
|
1560
|
-
},
|
|
1561
|
-
"State": {
|
|
1562
|
-
"type": "VARIANT",
|
|
1563
|
-
"variantOptions": [
|
|
1564
|
-
"Enabled",
|
|
1565
|
-
"Pressed"
|
|
1566
|
-
]
|
|
1567
|
-
}
|
|
1568
|
-
}
|
|
1569
|
-
};
|
|
1570
|
-
|
|
1571
1688
|
export const skeleton = {
|
|
1572
1689
|
"name": "skeleton",
|
|
1573
1690
|
"key": "ef22c3288722fbfa64a5ab73df397ade88f8e05a",
|
|
@@ -23,19 +23,6 @@ export declare const templateInformationList: {
|
|
|
23
23
|
"key": "a111395555825f77d152f84e047e5e798fb53023"
|
|
24
24
|
};
|
|
25
25
|
|
|
26
|
-
export declare const templateResultPage: {
|
|
27
|
-
"name": "templateResultPage",
|
|
28
|
-
"key": "88ff5d153a95a2532925b191960d3401d5fd94a6",
|
|
29
|
-
"componentPropertyDefinitions": {
|
|
30
|
-
"Show Top Navigation#56814:4": {
|
|
31
|
-
"type": "BOOLEAN"
|
|
32
|
-
},
|
|
33
|
-
"Show Bottom Action Bar#56814:6": {
|
|
34
|
-
"type": "BOOLEAN"
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
|
|
39
26
|
export declare const templateSelectField: {
|
|
40
27
|
"name": "templateSelectField",
|
|
41
28
|
"key": "a43d16a5c3cbb5fe22ca230d6a28338da21c7562"
|
|
@@ -23,19 +23,6 @@ export const templateInformationList = {
|
|
|
23
23
|
"key": "a111395555825f77d152f84e047e5e798fb53023"
|
|
24
24
|
};
|
|
25
25
|
|
|
26
|
-
export const templateResultPage = {
|
|
27
|
-
"name": "templateResultPage",
|
|
28
|
-
"key": "88ff5d153a95a2532925b191960d3401d5fd94a6",
|
|
29
|
-
"componentPropertyDefinitions": {
|
|
30
|
-
"Show Top Navigation#56814:4": {
|
|
31
|
-
"type": "BOOLEAN"
|
|
32
|
-
},
|
|
33
|
-
"Show Bottom Action Bar#56814:6": {
|
|
34
|
-
"type": "BOOLEAN"
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
|
|
39
26
|
export const templateSelectField = {
|
|
40
27
|
"name": "templateSelectField",
|
|
41
28
|
"key": "a43d16a5c3cbb5fe22ca230d6a28338da21c7562"
|
|
@@ -564,6 +564,16 @@ export const FIGMA_ICONS = {
|
|
|
564
564
|
"type": "monochrome",
|
|
565
565
|
"weight": "Fill"
|
|
566
566
|
},
|
|
567
|
+
"48d35e692e4cbeb1bfd0b0be28a800061173cf96": {
|
|
568
|
+
"name": "icon_cart_items",
|
|
569
|
+
"type": "monochrome",
|
|
570
|
+
"weight": "Fill"
|
|
571
|
+
},
|
|
572
|
+
"15e92fded5d5306b62b634790f724a72ba8f7033": {
|
|
573
|
+
"name": "icon_cart_items",
|
|
574
|
+
"type": "monochrome",
|
|
575
|
+
"weight": "Line"
|
|
576
|
+
},
|
|
567
577
|
"f6be7d2997e4b139ae4850ee21869bc7e59ccc0b": {
|
|
568
578
|
"name": "icon_cart",
|
|
569
579
|
"type": "monochrome",
|
|
@@ -1129,6 +1139,16 @@ export const FIGMA_ICONS = {
|
|
|
1129
1139
|
"type": "monochrome",
|
|
1130
1140
|
"weight": "Line"
|
|
1131
1141
|
},
|
|
1142
|
+
"8a20bac7b3ef03003f4395e5a5455a62fa363efc": {
|
|
1143
|
+
"name": "icon_exclamationmark_chatbubble_rectangular_center",
|
|
1144
|
+
"type": "monochrome",
|
|
1145
|
+
"weight": "Fill"
|
|
1146
|
+
},
|
|
1147
|
+
"2fe5521cf8ac4b67db3a1cd0a03847f54493583a": {
|
|
1148
|
+
"name": "icon_exclamationmark_chatbubble_rectangular_center",
|
|
1149
|
+
"type": "monochrome",
|
|
1150
|
+
"weight": "Line"
|
|
1151
|
+
},
|
|
1132
1152
|
"3e578773a3da74c255c4c9008914b247e0fc3d2b": {
|
|
1133
1153
|
"name": "icon_exclamationmark_circle",
|
|
1134
1154
|
"type": "monochrome",
|
|
@@ -3193,6 +3213,10 @@ export const FIGMA_ICONS = {
|
|
|
3193
3213
|
"name": "icon_cart",
|
|
3194
3214
|
"type": "multicolor"
|
|
3195
3215
|
},
|
|
3216
|
+
"81a9d09867dbce6bbeca059a24c54ad23130a518": {
|
|
3217
|
+
"name": "icon_cart_items",
|
|
3218
|
+
"type": "multicolor"
|
|
3219
|
+
},
|
|
3196
3220
|
"51692e1d38d71ff24bbf5c7295da347d7700acbe": {
|
|
3197
3221
|
"name": "icon_cart_load",
|
|
3198
3222
|
"type": "multicolor"
|
|
@@ -53,9 +53,11 @@ export const FIGMA_VARIABLE_COLLECTIONS = {
|
|
|
53
53
|
"VariableID:654:20851",
|
|
54
54
|
"VariableID:1:171",
|
|
55
55
|
"VariableID:41186:6437",
|
|
56
|
-
"VariableID:1:158",
|
|
57
56
|
"VariableID:1:172",
|
|
57
|
+
"VariableID:1:158",
|
|
58
58
|
"VariableID:1:161",
|
|
59
|
+
"VariableID:59176:2",
|
|
60
|
+
"VariableID:59176:3",
|
|
59
61
|
"VariableID:1:159",
|
|
60
62
|
"VariableID:576:22878",
|
|
61
63
|
"VariableID:10181:32557",
|
|
@@ -100,8 +102,8 @@ export const FIGMA_VARIABLE_COLLECTIONS = {
|
|
|
100
102
|
"VariableID:12479:23364",
|
|
101
103
|
"VariableID:12479:23365",
|
|
102
104
|
"VariableID:12479:23366",
|
|
103
|
-
"VariableID:12548:1437",
|
|
104
105
|
"VariableID:1:7",
|
|
106
|
+
"VariableID:12548:1437",
|
|
105
107
|
"VariableID:12479:23367",
|
|
106
108
|
"VariableID:12479:23368",
|
|
107
109
|
"VariableID:12479:23371",
|
|
@@ -452,9 +454,9 @@ export const FIGMA_VARIABLE_COLLECTIONS = {
|
|
|
452
454
|
"VariableID:289:13772",
|
|
453
455
|
"VariableID:1886:93038",
|
|
454
456
|
"VariableID:289:13773",
|
|
455
|
-
"VariableID:796:4448",
|
|
456
457
|
"VariableID:15518:15916",
|
|
457
458
|
"VariableID:19225:68732",
|
|
459
|
+
"VariableID:796:4448",
|
|
458
460
|
"VariableID:17955:50606",
|
|
459
461
|
"VariableID:514:13178",
|
|
460
462
|
"VariableID:535:1747",
|
|
@@ -462,7 +464,10 @@ export const FIGMA_VARIABLE_COLLECTIONS = {
|
|
|
462
464
|
"VariableID:1700:4280",
|
|
463
465
|
"VariableID:1700:4281",
|
|
464
466
|
"VariableID:1700:4282",
|
|
465
|
-
"VariableID:40279:20413"
|
|
467
|
+
"VariableID:40279:20413",
|
|
468
|
+
"VariableID:58766:15457",
|
|
469
|
+
"VariableID:58766:15458",
|
|
470
|
+
"VariableID:58766:15459"
|
|
466
471
|
]
|
|
467
472
|
},
|
|
468
473
|
"VariableCollectionId:6075:34487": {
|