@seed-design/figma 0.0.0-alpha-20260324091316
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 +23543 -0
- package/lib/codegen/index.d.ts +2957 -0
- package/lib/codegen/index.d.ts.map +1 -0
- package/lib/codegen/index.js +23514 -0
- package/lib/codegen/targets/react/index.cjs +31980 -0
- package/lib/codegen/targets/react/index.d.ts +308 -0
- package/lib/codegen/targets/react/index.d.ts.map +1 -0
- package/lib/codegen/targets/react/index.js +31961 -0
- package/lib/index.cjs +26905 -0
- package/lib/index.d.ts +221 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +26884 -0
- package/package.json +56 -0
- package/src/codegen/component-properties.archive.ts +1019 -0
- package/src/codegen/component-properties.ts +369 -0
- package/src/codegen/core/codegen.ts +112 -0
- package/src/codegen/core/component-handler.ts +23 -0
- package/src/codegen/core/component-type-helper.ts +35 -0
- package/src/codegen/core/element-transformer.ts +13 -0
- package/src/codegen/core/index.ts +19 -0
- package/src/codegen/core/infer-layout.test.ts +286 -0
- package/src/codegen/core/infer-layout.ts +416 -0
- package/src/codegen/core/jsx.ts +174 -0
- package/src/codegen/core/props-converter.ts +78 -0
- package/src/codegen/core/value-resolver.ts +381 -0
- package/src/codegen/default-services.ts +44 -0
- package/src/codegen/index.ts +3 -0
- package/src/codegen/skip-components.ts +7 -0
- package/src/codegen/targets/figma/frame.ts +38 -0
- package/src/codegen/targets/figma/index.ts +6 -0
- package/src/codegen/targets/figma/instance.ts +36 -0
- package/src/codegen/targets/figma/pipeline.ts +106 -0
- package/src/codegen/targets/figma/props.ts +262 -0
- package/src/codegen/targets/figma/shape.ts +65 -0
- package/src/codegen/targets/figma/text.ts +30 -0
- package/src/codegen/targets/figma/value-resolver.ts +75 -0
- package/src/codegen/targets/index.ts +2 -0
- package/src/codegen/targets/react/component/deps.interface.ts +7 -0
- package/src/codegen/targets/react/component/handlers/action-button.ts +149 -0
- package/src/codegen/targets/react/component/handlers/alert-dialog.ts +120 -0
- package/src/codegen/targets/react/component/handlers/app-bar.ts +169 -0
- package/src/codegen/targets/react/component/handlers/archive/action-button.ts +144 -0
- package/src/codegen/targets/react/component/handlers/archive/alert-dialog.ts +122 -0
- package/src/codegen/targets/react/component/handlers/archive/app-bar.ts +149 -0
- package/src/codegen/targets/react/component/handlers/archive/avatar-stack.ts +35 -0
- package/src/codegen/targets/react/component/handlers/archive/avatar.ts +55 -0
- package/src/codegen/targets/react/component/handlers/archive/badge.ts +18 -0
- package/src/codegen/targets/react/component/handlers/archive/bottom-sheet.ts +70 -0
- package/src/codegen/targets/react/component/handlers/archive/callout.ts +88 -0
- package/src/codegen/targets/react/component/handlers/archive/checkbox.ts +43 -0
- package/src/codegen/targets/react/component/handlers/archive/checkmark.ts +29 -0
- package/src/codegen/targets/react/component/handlers/archive/chip.ts +90 -0
- package/src/codegen/targets/react/component/handlers/archive/contextual-floating-button.ts +52 -0
- package/src/codegen/targets/react/component/handlers/archive/divider.ts +25 -0
- package/src/codegen/targets/react/component/handlers/archive/field-button.ts +197 -0
- package/src/codegen/targets/react/component/handlers/archive/field.ts +167 -0
- package/src/codegen/targets/react/component/handlers/archive/floating-action-button.ts +48 -0
- package/src/codegen/targets/react/component/handlers/archive/help-bubble.ts +73 -0
- package/src/codegen/targets/react/component/handlers/archive/identity-placeholder.ts +21 -0
- package/src/codegen/targets/react/component/handlers/archive/index.ts +40 -0
- package/src/codegen/targets/react/component/handlers/archive/legacy-select-box.ts +89 -0
- package/src/codegen/targets/react/component/handlers/archive/legacy-text-field.ts +198 -0
- package/src/codegen/targets/react/component/handlers/archive/list-header.ts +20 -0
- package/src/codegen/targets/react/component/handlers/archive/list-item.ts +162 -0
- package/src/codegen/targets/react/component/handlers/archive/manner-temp-badge.ts +21 -0
- package/src/codegen/targets/react/component/handlers/archive/manner-temp.ts +18 -0
- package/src/codegen/targets/react/component/handlers/archive/menu-sheet.ts +108 -0
- package/src/codegen/targets/react/component/handlers/archive/page-banner.ts +101 -0
- package/src/codegen/targets/react/component/handlers/archive/progress-circle.ts +55 -0
- package/src/codegen/targets/react/component/handlers/archive/radio-group.ts +31 -0
- package/src/codegen/targets/react/component/handlers/archive/radiomark.ts +27 -0
- package/src/codegen/targets/react/component/handlers/archive/reaction-button.ts +37 -0
- package/src/codegen/targets/react/component/handlers/archive/result-section.ts +67 -0
- package/src/codegen/targets/react/component/handlers/archive/segmented-control.ts +64 -0
- package/src/codegen/targets/react/component/handlers/archive/skeleton.ts +26 -0
- package/src/codegen/targets/react/component/handlers/archive/slider.ts +114 -0
- package/src/codegen/targets/react/component/handlers/archive/snackbar.ts +25 -0
- package/src/codegen/targets/react/component/handlers/archive/switch.ts +39 -0
- package/src/codegen/targets/react/component/handlers/archive/switchmark.ts +26 -0
- package/src/codegen/targets/react/component/handlers/archive/tabs.ts +297 -0
- package/src/codegen/targets/react/component/handlers/archive/tag-group.ts +86 -0
- package/src/codegen/targets/react/component/handlers/archive/text-field.ts +264 -0
- package/src/codegen/targets/react/component/handlers/archive/toggle-button.ts +43 -0
- package/src/codegen/targets/react/component/handlers/avatar-stack.ts +38 -0
- package/src/codegen/targets/react/component/handlers/avatar.ts +58 -0
- package/src/codegen/targets/react/component/handlers/badge.ts +18 -0
- package/src/codegen/targets/react/component/handlers/bottom-sheet.ts +74 -0
- package/src/codegen/targets/react/component/handlers/callout.ts +88 -0
- package/src/codegen/targets/react/component/handlers/checkbox.ts +129 -0
- package/src/codegen/targets/react/component/handlers/checkmark.ts +29 -0
- package/src/codegen/targets/react/component/handlers/chip.ts +93 -0
- package/src/codegen/targets/react/component/handlers/content-placeholder.ts +20 -0
- package/src/codegen/targets/react/component/handlers/contextual-floating-button.ts +52 -0
- package/src/codegen/targets/react/component/handlers/divider.ts +25 -0
- package/src/codegen/targets/react/component/handlers/field-button.ts +192 -0
- package/src/codegen/targets/react/component/handlers/field.ts +164 -0
- package/src/codegen/targets/react/component/handlers/floating-action-button.ts +45 -0
- package/src/codegen/targets/react/component/handlers/help-bubble.ts +73 -0
- package/src/codegen/targets/react/component/handlers/identity-placeholder.ts +20 -0
- package/src/codegen/targets/react/component/handlers/image-frame.ts +147 -0
- package/src/codegen/targets/react/component/handlers/index.ts +43 -0
- package/src/codegen/targets/react/component/handlers/legacy-select-box.ts +87 -0
- package/src/codegen/targets/react/component/handlers/legacy-text-field.ts +196 -0
- package/src/codegen/targets/react/component/handlers/list-header.ts +20 -0
- package/src/codegen/targets/react/component/handlers/list-item.ts +163 -0
- package/src/codegen/targets/react/component/handlers/manner-temp-badge.ts +21 -0
- package/src/codegen/targets/react/component/handlers/manner-temp.ts +18 -0
- package/src/codegen/targets/react/component/handlers/menu-sheet.ts +111 -0
- package/src/codegen/targets/react/component/handlers/page-banner.ts +106 -0
- package/src/codegen/targets/react/component/handlers/progress-circle.ts +55 -0
- package/src/codegen/targets/react/component/handlers/radio-group.ts +109 -0
- package/src/codegen/targets/react/component/handlers/radiomark.ts +27 -0
- package/src/codegen/targets/react/component/handlers/reaction-button.ts +37 -0
- package/src/codegen/targets/react/component/handlers/result-section.ts +67 -0
- package/src/codegen/targets/react/component/handlers/segmented-control.ts +63 -0
- package/src/codegen/targets/react/component/handlers/select-box.ts +333 -0
- package/src/codegen/targets/react/component/handlers/skeleton.ts +26 -0
- package/src/codegen/targets/react/component/handlers/slider.ts +117 -0
- package/src/codegen/targets/react/component/handlers/snackbar.ts +25 -0
- package/src/codegen/targets/react/component/handlers/switch.ts +35 -0
- package/src/codegen/targets/react/component/handlers/switchmark.ts +26 -0
- package/src/codegen/targets/react/component/handlers/tabs.ts +298 -0
- package/src/codegen/targets/react/component/handlers/tag-group.ts +90 -0
- package/src/codegen/targets/react/component/handlers/text-field.ts +253 -0
- package/src/codegen/targets/react/component/handlers/toggle-button.ts +43 -0
- package/src/codegen/targets/react/component/index.ts +24 -0
- package/src/codegen/targets/react/component/size.ts +22 -0
- package/src/codegen/targets/react/element-factories.ts +59 -0
- package/src/codegen/targets/react/frame.ts +96 -0
- package/src/codegen/targets/react/icon.ts +55 -0
- package/src/codegen/targets/react/index.ts +7 -0
- package/src/codegen/targets/react/instance.ts +82 -0
- package/src/codegen/targets/react/pipeline.ts +133 -0
- package/src/codegen/targets/react/props.ts +417 -0
- package/src/codegen/targets/react/shape.ts +47 -0
- package/src/codegen/targets/react/text.ts +31 -0
- package/src/codegen/targets/react/value-resolver.ts +93 -0
- package/src/entities/component.interface.ts +7 -0
- package/src/entities/component.repository.ts +16 -0
- package/src/entities/data/__generated__/archive/component-sets/index.d.ts +2074 -0
- package/src/entities/data/__generated__/archive/component-sets/index.mjs +2074 -0
- package/src/entities/data/__generated__/archive/components/index.d.ts +116 -0
- package/src/entities/data/__generated__/archive/components/index.mjs +116 -0
- package/src/entities/data/__generated__/archive/styles/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/styles/index.mjs +429 -0
- package/src/entities/data/__generated__/archive/variable-collections/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/variable-collections/index.mjs +501 -0
- package/src/entities/data/__generated__/archive/variables/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/variables/index.mjs +7019 -0
- package/src/entities/data/__generated__/component-sets/index.d.ts +4325 -0
- package/src/entities/data/__generated__/component-sets/index.mjs +4325 -0
- package/src/entities/data/__generated__/components/index.d.ts +378 -0
- package/src/entities/data/__generated__/components/index.mjs +378 -0
- package/src/entities/data/__generated__/icons/index.d.ts +3 -0
- package/src/entities/data/__generated__/icons/index.mjs +3476 -0
- package/src/entities/data/__generated__/styles/index.d.ts +3 -0
- package/src/entities/data/__generated__/styles/index.mjs +436 -0
- package/src/entities/data/__generated__/variable-collections/index.d.ts +3 -0
- package/src/entities/data/__generated__/variable-collections/index.mjs +479 -0
- package/src/entities/data/__generated__/variables/index.d.ts +3 -0
- package/src/entities/data/__generated__/variables/index.mjs +6969 -0
- package/src/entities/icon.interface.ts +5 -0
- package/src/entities/icon.repository.ts +11 -0
- package/src/entities/icon.service.ts +26 -0
- package/src/entities/index.ts +60 -0
- package/src/entities/style.interface.ts +5 -0
- package/src/entities/style.repository.ts +27 -0
- package/src/entities/style.service.ts +36 -0
- package/src/entities/variable.interface.ts +18 -0
- package/src/entities/variable.repository.ts +57 -0
- package/src/entities/variable.service.ts +101 -0
- package/src/index.ts +3 -0
- package/src/normalizer/from-plugin.ts +602 -0
- package/src/normalizer/from-rest.ts +577 -0
- package/src/normalizer/index.ts +3 -0
- package/src/normalizer/types.ts +208 -0
- package/src/utils/common.ts +38 -0
- package/src/utils/css.ts +19 -0
- package/src/utils/figma-gradient.ts +72 -0
- package/src/utils/figma-node.ts +95 -0
- package/src/utils/figma-variable.ts +49 -0
|
@@ -0,0 +1,4325 @@
|
|
|
1
|
+
export const privateTemplateAttachmentField = {
|
|
2
|
+
"name": "privateTemplateAttachmentField",
|
|
3
|
+
"key": "5ba20e248e9cd0292fc285488b2ed3b3145d37b0",
|
|
4
|
+
"componentPropertyDefinitions": {
|
|
5
|
+
"Show Header#40606:8": {
|
|
6
|
+
"type": "BOOLEAN"
|
|
7
|
+
},
|
|
8
|
+
"Show Footer#40606:9": {
|
|
9
|
+
"type": "BOOLEAN"
|
|
10
|
+
},
|
|
11
|
+
"Type": {
|
|
12
|
+
"type": "VARIANT",
|
|
13
|
+
"variantOptions": [
|
|
14
|
+
"Media",
|
|
15
|
+
"File"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
"State": {
|
|
19
|
+
"type": "VARIANT",
|
|
20
|
+
"variantOptions": [
|
|
21
|
+
"Enabled",
|
|
22
|
+
"Error",
|
|
23
|
+
"Disabled",
|
|
24
|
+
"Read Only"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"Has Value": {
|
|
28
|
+
"type": "VARIANT",
|
|
29
|
+
"variantOptions": [
|
|
30
|
+
"False",
|
|
31
|
+
"True"
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export const privateTemplateChipGroupField = {
|
|
38
|
+
"name": "privateTemplateChipGroupField",
|
|
39
|
+
"key": "b6e9378d9ac76f812121d6aa7264cc38d2310e39",
|
|
40
|
+
"componentPropertyDefinitions": {
|
|
41
|
+
"Show Header#40606:8": {
|
|
42
|
+
"type": "BOOLEAN"
|
|
43
|
+
},
|
|
44
|
+
"Show Footer#40606:9": {
|
|
45
|
+
"type": "BOOLEAN"
|
|
46
|
+
},
|
|
47
|
+
"State": {
|
|
48
|
+
"type": "VARIANT",
|
|
49
|
+
"variantOptions": [
|
|
50
|
+
"Enabled",
|
|
51
|
+
"Error",
|
|
52
|
+
"Disabled",
|
|
53
|
+
"Read Only"
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
export const privateTemplatePhoneNumberField = {
|
|
60
|
+
"name": "privateTemplatePhoneNumberField",
|
|
61
|
+
"key": "b9c5726a5d6d25938fcc2b84281a3a0f513c7495",
|
|
62
|
+
"componentPropertyDefinitions": {
|
|
63
|
+
"Show Header#40606:8": {
|
|
64
|
+
"type": "BOOLEAN"
|
|
65
|
+
},
|
|
66
|
+
"Show Footer#40606:9": {
|
|
67
|
+
"type": "BOOLEAN"
|
|
68
|
+
},
|
|
69
|
+
"Variant": {
|
|
70
|
+
"type": "VARIANT",
|
|
71
|
+
"variantOptions": [
|
|
72
|
+
"Outline"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"State": {
|
|
76
|
+
"type": "VARIANT",
|
|
77
|
+
"variantOptions": [
|
|
78
|
+
"Enabled",
|
|
79
|
+
"Focused",
|
|
80
|
+
"Error",
|
|
81
|
+
"Error Focused",
|
|
82
|
+
"Disabled",
|
|
83
|
+
"Read Only"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
export const privateTemplatePinField = {
|
|
90
|
+
"name": "privateTemplatePinField",
|
|
91
|
+
"key": "0abee679553f912b4cbe9839d048cc64494a3b51",
|
|
92
|
+
"componentPropertyDefinitions": {
|
|
93
|
+
"Show Header#40606:8": {
|
|
94
|
+
"type": "BOOLEAN"
|
|
95
|
+
},
|
|
96
|
+
"Show Footer#40606:9": {
|
|
97
|
+
"type": "BOOLEAN"
|
|
98
|
+
},
|
|
99
|
+
"State": {
|
|
100
|
+
"type": "VARIANT",
|
|
101
|
+
"variantOptions": [
|
|
102
|
+
"Enabled",
|
|
103
|
+
"Focused",
|
|
104
|
+
"Error",
|
|
105
|
+
"Error Focused",
|
|
106
|
+
"Disabled",
|
|
107
|
+
"Read Only"
|
|
108
|
+
]
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export const privateComponentAlertDialogActions = {
|
|
114
|
+
"name": "privateComponentAlertDialogActions",
|
|
115
|
+
"key": "a912194669fa80185aea9043a15b84d9ef73b066",
|
|
116
|
+
"componentPropertyDefinitions": {
|
|
117
|
+
"Type": {
|
|
118
|
+
"type": "VARIANT",
|
|
119
|
+
"variantOptions": [
|
|
120
|
+
"Single",
|
|
121
|
+
"Neutral",
|
|
122
|
+
"Neutral (Overflow)",
|
|
123
|
+
"Critical",
|
|
124
|
+
"Critical (Overflow)",
|
|
125
|
+
"Nonpreferred"
|
|
126
|
+
]
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
export const privateComponentBottomSheetCloseButton = {
|
|
132
|
+
"name": "privateComponentBottomSheetCloseButton",
|
|
133
|
+
"key": "e94c4d5b10fa0e4e2edf6bf4b7673b2e434eafa0",
|
|
134
|
+
"componentPropertyDefinitions": {
|
|
135
|
+
"State": {
|
|
136
|
+
"type": "VARIANT",
|
|
137
|
+
"variantOptions": [
|
|
138
|
+
"Enabled",
|
|
139
|
+
"Pressed"
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
export const privateComponentBottomSheetHandle = {
|
|
146
|
+
"name": "privateComponentBottomSheetHandle",
|
|
147
|
+
"key": "360affc2611cdc961de05cf04090ec0628665a18",
|
|
148
|
+
"componentPropertyDefinitions": {
|
|
149
|
+
"State": {
|
|
150
|
+
"type": "VARIANT",
|
|
151
|
+
"variantOptions": [
|
|
152
|
+
"Default",
|
|
153
|
+
"Pressed"
|
|
154
|
+
]
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
export const privateTemplateChipGroup = {
|
|
160
|
+
"name": "privateTemplateChipGroup",
|
|
161
|
+
"key": "a6819019971fb8f472a4c07f6952014393da1859",
|
|
162
|
+
"componentPropertyDefinitions": {
|
|
163
|
+
"Layout": {
|
|
164
|
+
"type": "VARIANT",
|
|
165
|
+
"variantOptions": [
|
|
166
|
+
"Overflow",
|
|
167
|
+
"Scrollable"
|
|
168
|
+
]
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
export const privateComponentContentPlaceholder = {
|
|
174
|
+
"name": "privateComponentContentPlaceholder",
|
|
175
|
+
"key": "49e110c31e4a7e6e9872d369f889dc48c0f5cef4",
|
|
176
|
+
"componentPropertyDefinitions": {
|
|
177
|
+
"Type": {
|
|
178
|
+
"type": "VARIANT",
|
|
179
|
+
"variantOptions": [
|
|
180
|
+
"Default",
|
|
181
|
+
"Coupon",
|
|
182
|
+
"Realty",
|
|
183
|
+
"Car",
|
|
184
|
+
"Jobs",
|
|
185
|
+
"Buy-sell",
|
|
186
|
+
"Business",
|
|
187
|
+
"Post",
|
|
188
|
+
"Group",
|
|
189
|
+
"Image",
|
|
190
|
+
"Food",
|
|
191
|
+
"Commerce"
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
export const privateComponentFieldFooterCharacterCount = {
|
|
198
|
+
"name": "privateComponentFieldFooterCharacterCount",
|
|
199
|
+
"key": "73f1a9275275c87b563e879e6948318523faf8e4",
|
|
200
|
+
"componentPropertyDefinitions": {
|
|
201
|
+
"Counter#40960:0": {
|
|
202
|
+
"type": "TEXT"
|
|
203
|
+
},
|
|
204
|
+
"Max Count#40960:4": {
|
|
205
|
+
"type": "TEXT"
|
|
206
|
+
},
|
|
207
|
+
"State": {
|
|
208
|
+
"type": "VARIANT",
|
|
209
|
+
"variantOptions": [
|
|
210
|
+
"Null",
|
|
211
|
+
"Has Value",
|
|
212
|
+
"Error"
|
|
213
|
+
]
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
export const privateComponentFieldHeaderIndicator = {
|
|
219
|
+
"name": "privateComponentFieldHeaderIndicator",
|
|
220
|
+
"key": "c3f7843103c1efcc3a8ac365b1175df6d10173e2",
|
|
221
|
+
"componentPropertyDefinitions": {
|
|
222
|
+
"Required Label#40606:3": {
|
|
223
|
+
"type": "TEXT"
|
|
224
|
+
},
|
|
225
|
+
"Type": {
|
|
226
|
+
"type": "VARIANT",
|
|
227
|
+
"variantOptions": [
|
|
228
|
+
"Required Mark",
|
|
229
|
+
"Text"
|
|
230
|
+
]
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
};
|
|
234
|
+
|
|
235
|
+
export const privateComponentFieldHeaderSuffix = {
|
|
236
|
+
"name": "privateComponentFieldHeaderSuffix",
|
|
237
|
+
"key": "9991519dc55a6641ff6511e0380030e2480e6674",
|
|
238
|
+
"componentPropertyDefinitions": {
|
|
239
|
+
"Type": {
|
|
240
|
+
"type": "VARIANT",
|
|
241
|
+
"variantOptions": [
|
|
242
|
+
"Ghost Button",
|
|
243
|
+
"Icon",
|
|
244
|
+
"Custom"
|
|
245
|
+
]
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
};
|
|
249
|
+
|
|
250
|
+
export const privateComponentIdentityPlaceholder = {
|
|
251
|
+
"name": "privateComponentIdentityPlaceholder",
|
|
252
|
+
"key": "7d7ae18cabac6ebad19934516de8e7e256854eba",
|
|
253
|
+
"componentPropertyDefinitions": {
|
|
254
|
+
"Identity": {
|
|
255
|
+
"type": "VARIANT",
|
|
256
|
+
"variantOptions": [
|
|
257
|
+
"Person",
|
|
258
|
+
"Business"
|
|
259
|
+
]
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
};
|
|
263
|
+
|
|
264
|
+
export const privateComponentIdentityPlaceholderStatic = {
|
|
265
|
+
"name": "privateComponentIdentityPlaceholderStatic",
|
|
266
|
+
"key": "628e8010084e94e426edf97021ddaadff1c9e008",
|
|
267
|
+
"componentPropertyDefinitions": {
|
|
268
|
+
"Identity": {
|
|
269
|
+
"type": "VARIANT",
|
|
270
|
+
"variantOptions": [
|
|
271
|
+
"Person",
|
|
272
|
+
"Business"
|
|
273
|
+
]
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
export const privateComponentInputButtonPrefix = {
|
|
279
|
+
"name": "privateComponentInputButtonPrefix",
|
|
280
|
+
"key": "c7d12be4056a8171f6857ec4ef15d81bd18d8cae",
|
|
281
|
+
"componentPropertyDefinitions": {
|
|
282
|
+
"Icon#34021:2": {
|
|
283
|
+
"type": "INSTANCE_SWAP"
|
|
284
|
+
},
|
|
285
|
+
"Type": {
|
|
286
|
+
"type": "VARIANT",
|
|
287
|
+
"variantOptions": [
|
|
288
|
+
"Icon",
|
|
289
|
+
"Custom (Figma Only)"
|
|
290
|
+
]
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
export const privateComponentInputButtonSuffix = {
|
|
296
|
+
"name": "privateComponentInputButtonSuffix",
|
|
297
|
+
"key": "888eab4f5a68587525886e516af396f083e20a38",
|
|
298
|
+
"componentPropertyDefinitions": {
|
|
299
|
+
"Suffix Text#34021:4": {
|
|
300
|
+
"type": "TEXT"
|
|
301
|
+
},
|
|
302
|
+
"Icon#37963:0": {
|
|
303
|
+
"type": "INSTANCE_SWAP"
|
|
304
|
+
},
|
|
305
|
+
"Type (Figma Only)": {
|
|
306
|
+
"type": "VARIANT",
|
|
307
|
+
"variantOptions": [
|
|
308
|
+
"Icon",
|
|
309
|
+
"Text",
|
|
310
|
+
"Custom"
|
|
311
|
+
]
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
export const privateComponentInputButtonValue = {
|
|
317
|
+
"name": "privateComponentInputButtonValue",
|
|
318
|
+
"key": "a353166e4de9393b5cc2957046eb986bd2989ffb",
|
|
319
|
+
"componentPropertyDefinitions": {
|
|
320
|
+
"Value Text#34067:0": {
|
|
321
|
+
"type": "TEXT"
|
|
322
|
+
},
|
|
323
|
+
"Clear Button#34067:1": {
|
|
324
|
+
"type": "BOOLEAN"
|
|
325
|
+
},
|
|
326
|
+
"Placeholder Text#34067:2": {
|
|
327
|
+
"type": "TEXT"
|
|
328
|
+
},
|
|
329
|
+
"Value": {
|
|
330
|
+
"type": "VARIANT",
|
|
331
|
+
"variantOptions": [
|
|
332
|
+
"Empty",
|
|
333
|
+
"Text",
|
|
334
|
+
"Chips-Scrollable (Figma Only)",
|
|
335
|
+
"Chips-Overflow (Figma Only)",
|
|
336
|
+
"Custom (Figma Only)"
|
|
337
|
+
]
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
};
|
|
341
|
+
|
|
342
|
+
export const privateComponentInputButtonValueDisabled = {
|
|
343
|
+
"name": "privateComponentInputButtonValueDisabled",
|
|
344
|
+
"key": "2e9a95e0457289fddbe1956ef2535e914e7fe7a4",
|
|
345
|
+
"componentPropertyDefinitions": {
|
|
346
|
+
"Value Text#34067:0": {
|
|
347
|
+
"type": "TEXT"
|
|
348
|
+
},
|
|
349
|
+
"Clear Button#34067:1": {
|
|
350
|
+
"type": "BOOLEAN"
|
|
351
|
+
},
|
|
352
|
+
"Placeholder Text#34067:2": {
|
|
353
|
+
"type": "TEXT"
|
|
354
|
+
},
|
|
355
|
+
"Value": {
|
|
356
|
+
"type": "VARIANT",
|
|
357
|
+
"variantOptions": [
|
|
358
|
+
"Empty",
|
|
359
|
+
"Text",
|
|
360
|
+
"Chips-Scrollable (Figma Only)",
|
|
361
|
+
"Chips-Overflow (Figma Only)",
|
|
362
|
+
"Custom (Figma Only)"
|
|
363
|
+
]
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
};
|
|
367
|
+
|
|
368
|
+
export const privateComponentInputButtonValueReadOnly = {
|
|
369
|
+
"name": "privateComponentInputButtonValueReadOnly",
|
|
370
|
+
"key": "f12e4c829040b351d0ab6f976fc15800bd3abfa5",
|
|
371
|
+
"componentPropertyDefinitions": {
|
|
372
|
+
"Value Text#34067:0": {
|
|
373
|
+
"type": "TEXT"
|
|
374
|
+
},
|
|
375
|
+
"Clear Button#34067:1": {
|
|
376
|
+
"type": "BOOLEAN"
|
|
377
|
+
},
|
|
378
|
+
"Placeholder Text#34067:2": {
|
|
379
|
+
"type": "TEXT"
|
|
380
|
+
},
|
|
381
|
+
"Value": {
|
|
382
|
+
"type": "VARIANT",
|
|
383
|
+
"variantOptions": [
|
|
384
|
+
"Custom (Figma Only)",
|
|
385
|
+
"Chips-Overflow (Figma Only)",
|
|
386
|
+
"Chips-Scrollable (Figma Only)",
|
|
387
|
+
"Text",
|
|
388
|
+
"Empty"
|
|
389
|
+
]
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
};
|
|
393
|
+
|
|
394
|
+
export const privateComponentItemButtonType = {
|
|
395
|
+
"name": "privateComponentItemButtonType",
|
|
396
|
+
"key": "79904c9def675bde3efa99db6d739d2fcae5a5a3",
|
|
397
|
+
"componentPropertyDefinitions": {
|
|
398
|
+
"Icon#29766:18": {
|
|
399
|
+
"type": "INSTANCE_SWAP"
|
|
400
|
+
},
|
|
401
|
+
"Label#29808:0": {
|
|
402
|
+
"type": "TEXT"
|
|
403
|
+
},
|
|
404
|
+
"State": {
|
|
405
|
+
"type": "VARIANT",
|
|
406
|
+
"variantOptions": [
|
|
407
|
+
"Enabled",
|
|
408
|
+
"Pressed"
|
|
409
|
+
]
|
|
410
|
+
},
|
|
411
|
+
"Extended": {
|
|
412
|
+
"type": "VARIANT",
|
|
413
|
+
"variantOptions": [
|
|
414
|
+
"True",
|
|
415
|
+
"False"
|
|
416
|
+
]
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
};
|
|
420
|
+
|
|
421
|
+
export const privateComponentItemMenuType = {
|
|
422
|
+
"name": "privateComponentItemMenuType",
|
|
423
|
+
"key": "e888d8fa0a1031f916adfd4d4a1cb05d4ae69b75",
|
|
424
|
+
"componentPropertyDefinitions": {
|
|
425
|
+
"Icon#29766:0": {
|
|
426
|
+
"type": "INSTANCE_SWAP"
|
|
427
|
+
},
|
|
428
|
+
"Label#29766:9": {
|
|
429
|
+
"type": "TEXT"
|
|
430
|
+
},
|
|
431
|
+
"State": {
|
|
432
|
+
"type": "VARIANT",
|
|
433
|
+
"variantOptions": [
|
|
434
|
+
"Pressed",
|
|
435
|
+
"Enabled"
|
|
436
|
+
]
|
|
437
|
+
},
|
|
438
|
+
"Extended": {
|
|
439
|
+
"type": "VARIANT",
|
|
440
|
+
"variantOptions": [
|
|
441
|
+
"True",
|
|
442
|
+
"False"
|
|
443
|
+
]
|
|
444
|
+
},
|
|
445
|
+
"Open": {
|
|
446
|
+
"type": "VARIANT",
|
|
447
|
+
"variantOptions": [
|
|
448
|
+
"True",
|
|
449
|
+
"False"
|
|
450
|
+
]
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
};
|
|
454
|
+
|
|
455
|
+
export const privateComponentItemTag = {
|
|
456
|
+
"name": "privateComponentItemTag",
|
|
457
|
+
"key": "84a3658affaf65a11c2827af18f1d20eb8ef2ee8",
|
|
458
|
+
"componentPropertyDefinitions": {
|
|
459
|
+
"Label#5409:0": {
|
|
460
|
+
"type": "TEXT"
|
|
461
|
+
},
|
|
462
|
+
"Prefix Icon#47948:0": {
|
|
463
|
+
"type": "INSTANCE_SWAP"
|
|
464
|
+
},
|
|
465
|
+
"Suffix Icon#47948:55": {
|
|
466
|
+
"type": "INSTANCE_SWAP"
|
|
467
|
+
},
|
|
468
|
+
"Size": {
|
|
469
|
+
"type": "VARIANT",
|
|
470
|
+
"variantOptions": [
|
|
471
|
+
"t2(12pt)",
|
|
472
|
+
"t3(13pt)",
|
|
473
|
+
"t4(14pt)"
|
|
474
|
+
]
|
|
475
|
+
},
|
|
476
|
+
"Layout": {
|
|
477
|
+
"type": "VARIANT",
|
|
478
|
+
"variantOptions": [
|
|
479
|
+
"Text Only",
|
|
480
|
+
"Icon First",
|
|
481
|
+
"Icon Last"
|
|
482
|
+
]
|
|
483
|
+
},
|
|
484
|
+
"Tone": {
|
|
485
|
+
"type": "VARIANT",
|
|
486
|
+
"variantOptions": [
|
|
487
|
+
"Neutral Subtle",
|
|
488
|
+
"Brand",
|
|
489
|
+
"Neutral"
|
|
490
|
+
]
|
|
491
|
+
},
|
|
492
|
+
"Weight": {
|
|
493
|
+
"type": "VARIANT",
|
|
494
|
+
"variantOptions": [
|
|
495
|
+
"Regular",
|
|
496
|
+
"Bold"
|
|
497
|
+
]
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
};
|
|
501
|
+
|
|
502
|
+
export const privateComponentMenuSheetCloseButton = {
|
|
503
|
+
"name": "privateComponentMenuSheetCloseButton",
|
|
504
|
+
"key": "6b169789070ae16cd226a3f21be61d207cc6dd2e",
|
|
505
|
+
"componentPropertyDefinitions": {
|
|
506
|
+
"State": {
|
|
507
|
+
"type": "VARIANT",
|
|
508
|
+
"variantOptions": [
|
|
509
|
+
"Enabled",
|
|
510
|
+
"Pressed"
|
|
511
|
+
]
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
};
|
|
515
|
+
|
|
516
|
+
export const privateComponentMenuSheetMenuGroup = {
|
|
517
|
+
"name": "privateComponentMenuSheetMenuGroup",
|
|
518
|
+
"key": "683d81ef9c38d5b15b959aad19bd6e3e261c5c31",
|
|
519
|
+
"componentPropertyDefinitions": {
|
|
520
|
+
"Action Count": {
|
|
521
|
+
"type": "VARIANT",
|
|
522
|
+
"variantOptions": [
|
|
523
|
+
"1",
|
|
524
|
+
"2",
|
|
525
|
+
"3",
|
|
526
|
+
"4",
|
|
527
|
+
"5",
|
|
528
|
+
"6",
|
|
529
|
+
"7",
|
|
530
|
+
"8"
|
|
531
|
+
]
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
};
|
|
535
|
+
|
|
536
|
+
export const privateComponentMenuSheetMenuItem = {
|
|
537
|
+
"name": "privateComponentMenuSheetMenuItem",
|
|
538
|
+
"key": "2b8a0dc72e6ed2072d122ec47816cf927d5d0a2f",
|
|
539
|
+
"componentPropertyDefinitions": {
|
|
540
|
+
"Show Prefix Icon#17043:5": {
|
|
541
|
+
"type": "BOOLEAN"
|
|
542
|
+
},
|
|
543
|
+
"Sub Text#51411:0": {
|
|
544
|
+
"type": "TEXT"
|
|
545
|
+
},
|
|
546
|
+
"Show Item Description#51411:19": {
|
|
547
|
+
"type": "BOOLEAN"
|
|
548
|
+
},
|
|
549
|
+
"Label#55905:8": {
|
|
550
|
+
"type": "TEXT"
|
|
551
|
+
},
|
|
552
|
+
"Prefix Icon#55948:0": {
|
|
553
|
+
"type": "INSTANCE_SWAP"
|
|
554
|
+
},
|
|
555
|
+
"Tone": {
|
|
556
|
+
"type": "VARIANT",
|
|
557
|
+
"variantOptions": [
|
|
558
|
+
"Neutral",
|
|
559
|
+
"Critical"
|
|
560
|
+
]
|
|
561
|
+
},
|
|
562
|
+
"State": {
|
|
563
|
+
"type": "VARIANT",
|
|
564
|
+
"variantOptions": [
|
|
565
|
+
"Enabled",
|
|
566
|
+
"Pressed",
|
|
567
|
+
"Disabled"
|
|
568
|
+
]
|
|
569
|
+
},
|
|
570
|
+
"Layout": {
|
|
571
|
+
"type": "VARIANT",
|
|
572
|
+
"variantOptions": [
|
|
573
|
+
"Text Only",
|
|
574
|
+
"Text with Icon"
|
|
575
|
+
]
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
};
|
|
579
|
+
|
|
580
|
+
export const privateComponentRootTopNavigationActionList = {
|
|
581
|
+
"name": "privateComponentRootTopNavigationActionList",
|
|
582
|
+
"key": "d7c7d679ee225d6e30cf4192cb276755f8dfeae6",
|
|
583
|
+
"componentPropertyDefinitions": {
|
|
584
|
+
"Type": {
|
|
585
|
+
"type": "VARIANT",
|
|
586
|
+
"variantOptions": [
|
|
587
|
+
"1 Icon",
|
|
588
|
+
"2 Icons",
|
|
589
|
+
"3 Icons"
|
|
590
|
+
]
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
};
|
|
594
|
+
|
|
595
|
+
export const privateComponentRootTopNavigationIconButton = {
|
|
596
|
+
"name": "privateComponentRootTopNavigationIconButton",
|
|
597
|
+
"key": "ab0bb3caefb80b335c1ae4b4f8fbfaff3bbe6df2",
|
|
598
|
+
"componentPropertyDefinitions": {
|
|
599
|
+
"Icon#6406:3": {
|
|
600
|
+
"type": "INSTANCE_SWAP"
|
|
601
|
+
},
|
|
602
|
+
"Badge": {
|
|
603
|
+
"type": "VARIANT",
|
|
604
|
+
"variantOptions": [
|
|
605
|
+
"None",
|
|
606
|
+
"Small",
|
|
607
|
+
"Large"
|
|
608
|
+
]
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
};
|
|
612
|
+
|
|
613
|
+
export const privateTemplateRootTopNavigationPreset = {
|
|
614
|
+
"name": "privateTemplateRootTopNavigationPreset",
|
|
615
|
+
"key": "524bbc05ea9fb5910d36618720ea82d96d8f211f",
|
|
616
|
+
"componentPropertyDefinitions": {
|
|
617
|
+
"Tab": {
|
|
618
|
+
"type": "VARIANT",
|
|
619
|
+
"variantOptions": [
|
|
620
|
+
"Home",
|
|
621
|
+
"Community",
|
|
622
|
+
"Chatting",
|
|
623
|
+
"My Karrot"
|
|
624
|
+
]
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
};
|
|
628
|
+
|
|
629
|
+
export const privateComponentSegmentedControlItem = {
|
|
630
|
+
"name": "privateComponentSegmentedControlItem",
|
|
631
|
+
"key": "a98fb826dd91ea0713a4571c1b1ed45b3ab9ad5c",
|
|
632
|
+
"componentPropertyDefinitions": {
|
|
633
|
+
"Label#11366:15": {
|
|
634
|
+
"type": "TEXT"
|
|
635
|
+
},
|
|
636
|
+
"Has Notification#41904:11": {
|
|
637
|
+
"type": "BOOLEAN"
|
|
638
|
+
},
|
|
639
|
+
"State": {
|
|
640
|
+
"type": "VARIANT",
|
|
641
|
+
"variantOptions": [
|
|
642
|
+
"Enabled",
|
|
643
|
+
"Pressed",
|
|
644
|
+
"Disabled"
|
|
645
|
+
]
|
|
646
|
+
},
|
|
647
|
+
"Selected": {
|
|
648
|
+
"type": "VARIANT",
|
|
649
|
+
"variantOptions": [
|
|
650
|
+
"False",
|
|
651
|
+
"True"
|
|
652
|
+
]
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
};
|
|
656
|
+
|
|
657
|
+
export const privateComponentSelectBoxItemCheckmark = {
|
|
658
|
+
"name": "privateComponentSelectBoxItemCheckmark",
|
|
659
|
+
"key": "2d91bde3c21bc38b2b07d8e1b87a03116e96555d",
|
|
660
|
+
"componentPropertyDefinitions": {
|
|
661
|
+
"State": {
|
|
662
|
+
"type": "VARIANT",
|
|
663
|
+
"variantOptions": [
|
|
664
|
+
"Enabled",
|
|
665
|
+
"Pressed",
|
|
666
|
+
"Selected",
|
|
667
|
+
"Disabled"
|
|
668
|
+
]
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
};
|
|
672
|
+
|
|
673
|
+
export const privateComponentSliderItemHandles = {
|
|
674
|
+
"name": "privateComponentSliderItemHandles",
|
|
675
|
+
"key": "950b33735d6dda594436c876386b921908dedf64",
|
|
676
|
+
"componentPropertyDefinitions": {
|
|
677
|
+
"Thumb": {
|
|
678
|
+
"type": "VARIANT",
|
|
679
|
+
"variantOptions": [
|
|
680
|
+
"Single",
|
|
681
|
+
"Double"
|
|
682
|
+
]
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
};
|
|
686
|
+
|
|
687
|
+
export const privateComponentSliderItemMarker = {
|
|
688
|
+
"name": "privateComponentSliderItemMarker",
|
|
689
|
+
"key": "e560242660009c997e360ed1eadba706a4e5017e",
|
|
690
|
+
"componentPropertyDefinitions": {
|
|
691
|
+
"Label 1#65932:0": {
|
|
692
|
+
"type": "TEXT"
|
|
693
|
+
},
|
|
694
|
+
"Label 2#65932:6": {
|
|
695
|
+
"type": "TEXT"
|
|
696
|
+
},
|
|
697
|
+
"Label 3#65932:12": {
|
|
698
|
+
"type": "TEXT"
|
|
699
|
+
},
|
|
700
|
+
"Label 4#65932:18": {
|
|
701
|
+
"type": "TEXT"
|
|
702
|
+
},
|
|
703
|
+
"Label 5#65932:24": {
|
|
704
|
+
"type": "TEXT"
|
|
705
|
+
},
|
|
706
|
+
"Label 6#65932:30": {
|
|
707
|
+
"type": "TEXT"
|
|
708
|
+
},
|
|
709
|
+
"State": {
|
|
710
|
+
"type": "VARIANT",
|
|
711
|
+
"variantOptions": [
|
|
712
|
+
"Enabled",
|
|
713
|
+
"Disabled"
|
|
714
|
+
]
|
|
715
|
+
},
|
|
716
|
+
"Count": {
|
|
717
|
+
"type": "VARIANT",
|
|
718
|
+
"variantOptions": [
|
|
719
|
+
"2",
|
|
720
|
+
"3",
|
|
721
|
+
"4",
|
|
722
|
+
"5",
|
|
723
|
+
"6"
|
|
724
|
+
]
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
};
|
|
728
|
+
|
|
729
|
+
export const privateComponentSliderItemRange = {
|
|
730
|
+
"name": "privateComponentSliderItemRange",
|
|
731
|
+
"key": "2918c6c796b91a2aa32917d713ad6af326251fe7",
|
|
732
|
+
"componentPropertyDefinitions": {
|
|
733
|
+
"State": {
|
|
734
|
+
"type": "VARIANT",
|
|
735
|
+
"variantOptions": [
|
|
736
|
+
"Default",
|
|
737
|
+
"Disabled"
|
|
738
|
+
]
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
};
|
|
742
|
+
|
|
743
|
+
export const privateComponentSliderItemTickMark = {
|
|
744
|
+
"name": "privateComponentSliderItemTickMark",
|
|
745
|
+
"key": "2e8f08dab9d9eb6403e4f9921662b486270df938",
|
|
746
|
+
"componentPropertyDefinitions": {
|
|
747
|
+
"Type": {
|
|
748
|
+
"type": "VARIANT",
|
|
749
|
+
"variantOptions": [
|
|
750
|
+
"Continuous",
|
|
751
|
+
"Discrete"
|
|
752
|
+
]
|
|
753
|
+
},
|
|
754
|
+
"Step": {
|
|
755
|
+
"type": "VARIANT",
|
|
756
|
+
"variantOptions": [
|
|
757
|
+
"2",
|
|
758
|
+
"3",
|
|
759
|
+
"4",
|
|
760
|
+
"5"
|
|
761
|
+
]
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
};
|
|
765
|
+
|
|
766
|
+
export const privateComponentTabItemChip = {
|
|
767
|
+
"name": "privateComponentTabItemChip",
|
|
768
|
+
"key": "2ce189a3e942a06ffd011dfce76888f7e69c6e39",
|
|
769
|
+
"componentPropertyDefinitions": {
|
|
770
|
+
"Size": {
|
|
771
|
+
"type": "VARIANT",
|
|
772
|
+
"variantOptions": [
|
|
773
|
+
"Medium",
|
|
774
|
+
"Large"
|
|
775
|
+
]
|
|
776
|
+
},
|
|
777
|
+
"Variant": {
|
|
778
|
+
"type": "VARIANT",
|
|
779
|
+
"variantOptions": [
|
|
780
|
+
"Outline",
|
|
781
|
+
"Solid"
|
|
782
|
+
]
|
|
783
|
+
},
|
|
784
|
+
"State": {
|
|
785
|
+
"type": "VARIANT",
|
|
786
|
+
"variantOptions": [
|
|
787
|
+
"Enabled",
|
|
788
|
+
"Selected",
|
|
789
|
+
"Disabled"
|
|
790
|
+
]
|
|
791
|
+
},
|
|
792
|
+
"Has Notification": {
|
|
793
|
+
"type": "VARIANT",
|
|
794
|
+
"variantOptions": [
|
|
795
|
+
"False",
|
|
796
|
+
"True"
|
|
797
|
+
]
|
|
798
|
+
}
|
|
799
|
+
}
|
|
800
|
+
};
|
|
801
|
+
|
|
802
|
+
export const privateComponentTabItemLineFill = {
|
|
803
|
+
"name": "privateComponentTabItemLineFill",
|
|
804
|
+
"key": "c17dc61e60eae90ded40d15a3cc48dd4091c4b85",
|
|
805
|
+
"componentPropertyDefinitions": {
|
|
806
|
+
"Label#4478:2": {
|
|
807
|
+
"type": "TEXT"
|
|
808
|
+
},
|
|
809
|
+
"Has Notification#32904:13": {
|
|
810
|
+
"type": "BOOLEAN"
|
|
811
|
+
},
|
|
812
|
+
"Size": {
|
|
813
|
+
"type": "VARIANT",
|
|
814
|
+
"variantOptions": [
|
|
815
|
+
"Medium",
|
|
816
|
+
"Small"
|
|
817
|
+
]
|
|
818
|
+
},
|
|
819
|
+
"State": {
|
|
820
|
+
"type": "VARIANT",
|
|
821
|
+
"variantOptions": [
|
|
822
|
+
"Enabled",
|
|
823
|
+
"Selected",
|
|
824
|
+
"Disabled"
|
|
825
|
+
]
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
};
|
|
829
|
+
|
|
830
|
+
export const privateComponentTabItemLineHug = {
|
|
831
|
+
"name": "privateComponentTabItemLineHug",
|
|
832
|
+
"key": "097be11cbee67db4f008c0c70686bcec444bf35e",
|
|
833
|
+
"componentPropertyDefinitions": {
|
|
834
|
+
"Label#4478:2": {
|
|
835
|
+
"type": "TEXT"
|
|
836
|
+
},
|
|
837
|
+
"Has Notification#32892:0": {
|
|
838
|
+
"type": "BOOLEAN"
|
|
839
|
+
},
|
|
840
|
+
"Size": {
|
|
841
|
+
"type": "VARIANT",
|
|
842
|
+
"variantOptions": [
|
|
843
|
+
"Medium",
|
|
844
|
+
"Small"
|
|
845
|
+
]
|
|
846
|
+
},
|
|
847
|
+
"State": {
|
|
848
|
+
"type": "VARIANT",
|
|
849
|
+
"variantOptions": [
|
|
850
|
+
"Enabled",
|
|
851
|
+
"Selected",
|
|
852
|
+
"Disabled"
|
|
853
|
+
]
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
};
|
|
857
|
+
|
|
858
|
+
export const privateComponentTabsChip = {
|
|
859
|
+
"name": "privateComponentTabsChip",
|
|
860
|
+
"key": "16bd9efbd95f4b5fa3dfe31c2e1acf4e8a88f6a5",
|
|
861
|
+
"componentPropertyDefinitions": {
|
|
862
|
+
"Show Scroll Fog(Figma Only)#53171:9": {
|
|
863
|
+
"type": "BOOLEAN"
|
|
864
|
+
},
|
|
865
|
+
"Size": {
|
|
866
|
+
"type": "VARIANT",
|
|
867
|
+
"variantOptions": [
|
|
868
|
+
"Medium",
|
|
869
|
+
"Large"
|
|
870
|
+
]
|
|
871
|
+
},
|
|
872
|
+
"Variant": {
|
|
873
|
+
"type": "VARIANT",
|
|
874
|
+
"variantOptions": [
|
|
875
|
+
"Solid",
|
|
876
|
+
"Outline"
|
|
877
|
+
]
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
};
|
|
881
|
+
|
|
882
|
+
export const privateComponentTabsLine = {
|
|
883
|
+
"name": "privateComponentTabsLine",
|
|
884
|
+
"key": "e5bf0d2582100280b410415b9d8742202edbb45c",
|
|
885
|
+
"componentPropertyDefinitions": {
|
|
886
|
+
"Show Scroll Fog(Figma Only)#53171:14": {
|
|
887
|
+
"type": "BOOLEAN"
|
|
888
|
+
},
|
|
889
|
+
"Size": {
|
|
890
|
+
"type": "VARIANT",
|
|
891
|
+
"variantOptions": [
|
|
892
|
+
"Medium",
|
|
893
|
+
"Small"
|
|
894
|
+
]
|
|
895
|
+
},
|
|
896
|
+
"Layout": {
|
|
897
|
+
"type": "VARIANT",
|
|
898
|
+
"variantOptions": [
|
|
899
|
+
"Hug",
|
|
900
|
+
"Fill"
|
|
901
|
+
]
|
|
902
|
+
}
|
|
903
|
+
}
|
|
904
|
+
};
|
|
905
|
+
|
|
906
|
+
export const privateComponentTextInputCardNumberInput = {
|
|
907
|
+
"name": "privateComponentTextInputCardNumberInput",
|
|
908
|
+
"key": "60888e1eba691721f0ec6a41df43c1c075e5beac",
|
|
909
|
+
"componentPropertyDefinitions": {
|
|
910
|
+
"Clear Button#34067:1": {
|
|
911
|
+
"type": "BOOLEAN"
|
|
912
|
+
},
|
|
913
|
+
"Has Value": {
|
|
914
|
+
"type": "VARIANT",
|
|
915
|
+
"variantOptions": [
|
|
916
|
+
"false",
|
|
917
|
+
"true"
|
|
918
|
+
]
|
|
919
|
+
},
|
|
920
|
+
"Variant": {
|
|
921
|
+
"type": "VARIANT",
|
|
922
|
+
"variantOptions": [
|
|
923
|
+
"Plain Text"
|
|
924
|
+
]
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
};
|
|
928
|
+
|
|
929
|
+
export const privateComponentTextInputIdNumberInput = {
|
|
930
|
+
"name": "privateComponentTextInputIdNumberInput",
|
|
931
|
+
"key": "6c6ae2b292cdec5caf84f7f52aa46027aeb4aeb2",
|
|
932
|
+
"componentPropertyDefinitions": {
|
|
933
|
+
"Value Text#34067:0": {
|
|
934
|
+
"type": "TEXT"
|
|
935
|
+
},
|
|
936
|
+
"Clear Button#34067:1": {
|
|
937
|
+
"type": "BOOLEAN"
|
|
938
|
+
},
|
|
939
|
+
"Has Value": {
|
|
940
|
+
"type": "VARIANT",
|
|
941
|
+
"variantOptions": [
|
|
942
|
+
"false",
|
|
943
|
+
"true"
|
|
944
|
+
]
|
|
945
|
+
},
|
|
946
|
+
"Variant": {
|
|
947
|
+
"type": "VARIANT",
|
|
948
|
+
"variantOptions": [
|
|
949
|
+
"Plain Text"
|
|
950
|
+
]
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
};
|
|
954
|
+
|
|
955
|
+
export const privateComponentTextInputInput = {
|
|
956
|
+
"name": "privateComponentTextInputInput",
|
|
957
|
+
"key": "c030fb7107795ad42b4b2eea454b05fb4b4c9ac7",
|
|
958
|
+
"componentPropertyDefinitions": {
|
|
959
|
+
"Value Text#34067:0": {
|
|
960
|
+
"type": "TEXT"
|
|
961
|
+
},
|
|
962
|
+
"Clear Button#34067:1": {
|
|
963
|
+
"type": "BOOLEAN"
|
|
964
|
+
},
|
|
965
|
+
"Placeholder Text#34067:2": {
|
|
966
|
+
"type": "TEXT"
|
|
967
|
+
},
|
|
968
|
+
"Show Cursor (Figma Only)#53584:0": {
|
|
969
|
+
"type": "BOOLEAN"
|
|
970
|
+
},
|
|
971
|
+
"Has Value": {
|
|
972
|
+
"type": "VARIANT",
|
|
973
|
+
"variantOptions": [
|
|
974
|
+
"false",
|
|
975
|
+
"true"
|
|
976
|
+
]
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
};
|
|
980
|
+
|
|
981
|
+
export const privateComponentTextInputInputDisabled = {
|
|
982
|
+
"name": "privateComponentTextInputInputDisabled",
|
|
983
|
+
"key": "1b7fde89bf7b705bf09fa032185aa67719fce8ac",
|
|
984
|
+
"componentPropertyDefinitions": {
|
|
985
|
+
"Value Text#34067:0": {
|
|
986
|
+
"type": "TEXT"
|
|
987
|
+
},
|
|
988
|
+
"Clear Button#34067:1": {
|
|
989
|
+
"type": "BOOLEAN"
|
|
990
|
+
},
|
|
991
|
+
"Placeholder Text#34067:2": {
|
|
992
|
+
"type": "TEXT"
|
|
993
|
+
},
|
|
994
|
+
"Has Value": {
|
|
995
|
+
"type": "VARIANT",
|
|
996
|
+
"variantOptions": [
|
|
997
|
+
"false",
|
|
998
|
+
"true"
|
|
999
|
+
]
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
};
|
|
1003
|
+
|
|
1004
|
+
export const privateComponentTextInputInputReadOnly = {
|
|
1005
|
+
"name": "privateComponentTextInputInputReadOnly",
|
|
1006
|
+
"key": "e4e79b0bcb07dd6c0ce6cc20141f3c9b8e4093fd",
|
|
1007
|
+
"componentPropertyDefinitions": {
|
|
1008
|
+
"Value Text#34067:0": {
|
|
1009
|
+
"type": "TEXT"
|
|
1010
|
+
},
|
|
1011
|
+
"Clear Button#34067:1": {
|
|
1012
|
+
"type": "BOOLEAN"
|
|
1013
|
+
},
|
|
1014
|
+
"Placeholder Text#34067:2": {
|
|
1015
|
+
"type": "TEXT"
|
|
1016
|
+
},
|
|
1017
|
+
"Has Value": {
|
|
1018
|
+
"type": "VARIANT",
|
|
1019
|
+
"variantOptions": [
|
|
1020
|
+
"false",
|
|
1021
|
+
"true"
|
|
1022
|
+
]
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
};
|
|
1026
|
+
|
|
1027
|
+
export const privateComponentTextInputPrefix = {
|
|
1028
|
+
"name": "privateComponentTextInputPrefix",
|
|
1029
|
+
"key": "aefa4b78b293957af825e83db80f7f49df33910d",
|
|
1030
|
+
"componentPropertyDefinitions": {
|
|
1031
|
+
"Icon#34021:2": {
|
|
1032
|
+
"type": "INSTANCE_SWAP"
|
|
1033
|
+
},
|
|
1034
|
+
"Type": {
|
|
1035
|
+
"type": "VARIANT",
|
|
1036
|
+
"variantOptions": [
|
|
1037
|
+
"Icon",
|
|
1038
|
+
"Custom (Figma Only)"
|
|
1039
|
+
]
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
};
|
|
1043
|
+
|
|
1044
|
+
export const privateComponentTextInputSuffix = {
|
|
1045
|
+
"name": "privateComponentTextInputSuffix",
|
|
1046
|
+
"key": "f35e27f3f6dd237929fa61d2b02f3e8e9e711940",
|
|
1047
|
+
"componentPropertyDefinitions": {
|
|
1048
|
+
"Suffix Text#34021:4": {
|
|
1049
|
+
"type": "TEXT"
|
|
1050
|
+
},
|
|
1051
|
+
"Icon#45391:0": {
|
|
1052
|
+
"type": "INSTANCE_SWAP"
|
|
1053
|
+
},
|
|
1054
|
+
"Type (Figma Only)": {
|
|
1055
|
+
"type": "VARIANT",
|
|
1056
|
+
"variantOptions": [
|
|
1057
|
+
"Text",
|
|
1058
|
+
"Icon",
|
|
1059
|
+
"Icon Button (Ghost Button)",
|
|
1060
|
+
"Custom"
|
|
1061
|
+
]
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
};
|
|
1065
|
+
|
|
1066
|
+
export const privateComponentTextareaInput = {
|
|
1067
|
+
"name": "privateComponentTextareaInput",
|
|
1068
|
+
"key": "a75e057f13d05ee57003a90cc91c74f130b22135",
|
|
1069
|
+
"componentPropertyDefinitions": {
|
|
1070
|
+
"Value Text#34067:0": {
|
|
1071
|
+
"type": "TEXT"
|
|
1072
|
+
},
|
|
1073
|
+
"Placeholder Text#34067:2": {
|
|
1074
|
+
"type": "TEXT"
|
|
1075
|
+
},
|
|
1076
|
+
"Has Value": {
|
|
1077
|
+
"type": "VARIANT",
|
|
1078
|
+
"variantOptions": [
|
|
1079
|
+
"false",
|
|
1080
|
+
"true"
|
|
1081
|
+
]
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
};
|
|
1085
|
+
|
|
1086
|
+
export const privateComponentTextareaInputDisabled = {
|
|
1087
|
+
"name": "privateComponentTextareaInputDisabled",
|
|
1088
|
+
"key": "9a2399ddeeaffcefee2c847d7d6460e265381669",
|
|
1089
|
+
"componentPropertyDefinitions": {
|
|
1090
|
+
"Value Text#34067:0": {
|
|
1091
|
+
"type": "TEXT"
|
|
1092
|
+
},
|
|
1093
|
+
"Clear Button#34067:1": {
|
|
1094
|
+
"type": "BOOLEAN"
|
|
1095
|
+
},
|
|
1096
|
+
"Placeholder Text#34067:2": {
|
|
1097
|
+
"type": "TEXT"
|
|
1098
|
+
},
|
|
1099
|
+
"Has Value": {
|
|
1100
|
+
"type": "VARIANT",
|
|
1101
|
+
"variantOptions": [
|
|
1102
|
+
"false",
|
|
1103
|
+
"true"
|
|
1104
|
+
]
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
};
|
|
1108
|
+
|
|
1109
|
+
export const privateComponentTextareaInputReadOnly = {
|
|
1110
|
+
"name": "privateComponentTextareaInputReadOnly",
|
|
1111
|
+
"key": "343410cf1e8043a646068be2dcb6dbff88118ba4",
|
|
1112
|
+
"componentPropertyDefinitions": {
|
|
1113
|
+
"Value Text#34067:0": {
|
|
1114
|
+
"type": "TEXT"
|
|
1115
|
+
},
|
|
1116
|
+
"Clear Button#34067:1": {
|
|
1117
|
+
"type": "BOOLEAN"
|
|
1118
|
+
},
|
|
1119
|
+
"Placeholder Text#34067:2": {
|
|
1120
|
+
"type": "TEXT"
|
|
1121
|
+
},
|
|
1122
|
+
"Has Value": {
|
|
1123
|
+
"type": "VARIANT",
|
|
1124
|
+
"variantOptions": [
|
|
1125
|
+
"false",
|
|
1126
|
+
"true"
|
|
1127
|
+
]
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
};
|
|
1131
|
+
|
|
1132
|
+
export const privateComponentTopNavigationRightIconButton = {
|
|
1133
|
+
"name": "privateComponentTopNavigationRightIconButton",
|
|
1134
|
+
"key": "4f0db543b68ecb13d39842951e1b97c5c53c219f",
|
|
1135
|
+
"componentPropertyDefinitions": {
|
|
1136
|
+
"Icon#6406:3": {
|
|
1137
|
+
"type": "INSTANCE_SWAP"
|
|
1138
|
+
},
|
|
1139
|
+
"Badge": {
|
|
1140
|
+
"type": "VARIANT",
|
|
1141
|
+
"variantOptions": [
|
|
1142
|
+
"None",
|
|
1143
|
+
"Small",
|
|
1144
|
+
"Large"
|
|
1145
|
+
]
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
};
|
|
1149
|
+
|
|
1150
|
+
export const privateComponentTopNavigationRightTextButton = {
|
|
1151
|
+
"name": "privateComponentTopNavigationRightTextButton",
|
|
1152
|
+
"key": "781fedc3e33ba60d7347c1e8e735244e3d5f6c74",
|
|
1153
|
+
"componentPropertyDefinitions": {
|
|
1154
|
+
"Label#52619:2": {
|
|
1155
|
+
"type": "TEXT"
|
|
1156
|
+
},
|
|
1157
|
+
"State (Figma Only)": {
|
|
1158
|
+
"type": "VARIANT",
|
|
1159
|
+
"variantOptions": [
|
|
1160
|
+
"Enable",
|
|
1161
|
+
"Disabled"
|
|
1162
|
+
]
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1165
|
+
};
|
|
1166
|
+
|
|
1167
|
+
export const privateComponentTopNavigationTitle = {
|
|
1168
|
+
"name": "privateComponentTopNavigationTitle",
|
|
1169
|
+
"key": "e3ecc21dcd6016c9d5fb64b13a186ac921d63b25",
|
|
1170
|
+
"componentPropertyDefinitions": {
|
|
1171
|
+
"Title#16944:0": {
|
|
1172
|
+
"type": "TEXT"
|
|
1173
|
+
},
|
|
1174
|
+
"Logo#16958:5": {
|
|
1175
|
+
"type": "INSTANCE_SWAP"
|
|
1176
|
+
},
|
|
1177
|
+
"Subtitle#16958:9": {
|
|
1178
|
+
"type": "TEXT"
|
|
1179
|
+
},
|
|
1180
|
+
"Show Right#16958:13": {
|
|
1181
|
+
"type": "BOOLEAN"
|
|
1182
|
+
},
|
|
1183
|
+
"Show Left#16958:17": {
|
|
1184
|
+
"type": "BOOLEAN"
|
|
1185
|
+
},
|
|
1186
|
+
"Type": {
|
|
1187
|
+
"type": "VARIANT",
|
|
1188
|
+
"variantOptions": [
|
|
1189
|
+
"Title",
|
|
1190
|
+
"Title-Subtitle",
|
|
1191
|
+
"Logo (Figma Only)"
|
|
1192
|
+
]
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
};
|
|
1196
|
+
|
|
1197
|
+
export const privateComponentTopNavigationTitleLeft = {
|
|
1198
|
+
"name": "privateComponentTopNavigationTitleLeft",
|
|
1199
|
+
"key": "bfc55048226fd9b22b409b972376620984200daa",
|
|
1200
|
+
"componentPropertyDefinitions": {
|
|
1201
|
+
"Type": {
|
|
1202
|
+
"type": "VARIANT",
|
|
1203
|
+
"variantOptions": [
|
|
1204
|
+
"Avatar",
|
|
1205
|
+
"Custom",
|
|
1206
|
+
"Cutom Icon"
|
|
1207
|
+
]
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
};
|
|
1211
|
+
|
|
1212
|
+
export const privateComponentTopNavigationTitleRight = {
|
|
1213
|
+
"name": "privateComponentTopNavigationTitleRight",
|
|
1214
|
+
"key": "8907fde9016c80cf59b3f7d6635ccf02241a558f",
|
|
1215
|
+
"componentPropertyDefinitions": {
|
|
1216
|
+
"Count#16944:0": {
|
|
1217
|
+
"type": "TEXT"
|
|
1218
|
+
},
|
|
1219
|
+
"Type": {
|
|
1220
|
+
"type": "VARIANT",
|
|
1221
|
+
"variantOptions": [
|
|
1222
|
+
"Chevron",
|
|
1223
|
+
"Count",
|
|
1224
|
+
"Manner Temp Badge",
|
|
1225
|
+
"Custom"
|
|
1226
|
+
]
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
};
|
|
1230
|
+
|
|
1231
|
+
export const privateComponentUnderlineTextInputInput = {
|
|
1232
|
+
"name": "privateComponentUnderlineTextInputInput",
|
|
1233
|
+
"key": "a8a39cf124e7b4c3b873429e81b4278639a7031b",
|
|
1234
|
+
"componentPropertyDefinitions": {
|
|
1235
|
+
"Value Text#34067:0": {
|
|
1236
|
+
"type": "TEXT"
|
|
1237
|
+
},
|
|
1238
|
+
"Placeholder Text#34067:2": {
|
|
1239
|
+
"type": "TEXT"
|
|
1240
|
+
},
|
|
1241
|
+
"Show Cursor (Figma Only)#53584:3": {
|
|
1242
|
+
"type": "BOOLEAN"
|
|
1243
|
+
},
|
|
1244
|
+
"Has Value": {
|
|
1245
|
+
"type": "VARIANT",
|
|
1246
|
+
"variantOptions": [
|
|
1247
|
+
"false",
|
|
1248
|
+
"true"
|
|
1249
|
+
]
|
|
1250
|
+
}
|
|
1251
|
+
}
|
|
1252
|
+
};
|
|
1253
|
+
|
|
1254
|
+
export const privateComponentUnderlineTextInputInputDisabled = {
|
|
1255
|
+
"name": "privateComponentUnderlineTextInputInputDisabled",
|
|
1256
|
+
"key": "6e0ecce6c9640b8ef3d27498c2ccc2904dd72cff",
|
|
1257
|
+
"componentPropertyDefinitions": {
|
|
1258
|
+
"Value Text#34067:0": {
|
|
1259
|
+
"type": "TEXT"
|
|
1260
|
+
},
|
|
1261
|
+
"Clear Button#34067:1": {
|
|
1262
|
+
"type": "BOOLEAN"
|
|
1263
|
+
},
|
|
1264
|
+
"Placeholder Text#34067:2": {
|
|
1265
|
+
"type": "TEXT"
|
|
1266
|
+
},
|
|
1267
|
+
"Has Value": {
|
|
1268
|
+
"type": "VARIANT",
|
|
1269
|
+
"variantOptions": [
|
|
1270
|
+
"false",
|
|
1271
|
+
"true"
|
|
1272
|
+
]
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
};
|
|
1276
|
+
|
|
1277
|
+
export const privateComponentUnderlineTextInputInputReadOnly = {
|
|
1278
|
+
"name": "privateComponentUnderlineTextInputInputReadOnly",
|
|
1279
|
+
"key": "6152ae2641c38644c246e37524ddd2258c73832a",
|
|
1280
|
+
"componentPropertyDefinitions": {
|
|
1281
|
+
"Value Text#34067:0": {
|
|
1282
|
+
"type": "TEXT"
|
|
1283
|
+
},
|
|
1284
|
+
"Clear Button#34067:1": {
|
|
1285
|
+
"type": "BOOLEAN"
|
|
1286
|
+
},
|
|
1287
|
+
"Placeholder Text#34067:2": {
|
|
1288
|
+
"type": "TEXT"
|
|
1289
|
+
},
|
|
1290
|
+
"Has Value": {
|
|
1291
|
+
"type": "VARIANT",
|
|
1292
|
+
"variantOptions": [
|
|
1293
|
+
"false",
|
|
1294
|
+
"true"
|
|
1295
|
+
]
|
|
1296
|
+
}
|
|
1297
|
+
}
|
|
1298
|
+
};
|
|
1299
|
+
|
|
1300
|
+
export const privateComponentUnderlineTextInputPrefix = {
|
|
1301
|
+
"name": "privateComponentUnderlineTextInputPrefix",
|
|
1302
|
+
"key": "13213343c4a8822d0a7660106f27ee2d456470f1",
|
|
1303
|
+
"componentPropertyDefinitions": {
|
|
1304
|
+
"Icon#34021:2": {
|
|
1305
|
+
"type": "INSTANCE_SWAP"
|
|
1306
|
+
},
|
|
1307
|
+
"Type": {
|
|
1308
|
+
"type": "VARIANT",
|
|
1309
|
+
"variantOptions": [
|
|
1310
|
+
"Icon",
|
|
1311
|
+
"Custom (Figma Only)"
|
|
1312
|
+
]
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
};
|
|
1316
|
+
|
|
1317
|
+
export const privateComponentUnderlineTextInputSuffix = {
|
|
1318
|
+
"name": "privateComponentUnderlineTextInputSuffix",
|
|
1319
|
+
"key": "48b4d6492a564596bfef541d2ef72eb22ed506e5",
|
|
1320
|
+
"componentPropertyDefinitions": {
|
|
1321
|
+
"Suffix Text#34021:4": {
|
|
1322
|
+
"type": "TEXT"
|
|
1323
|
+
},
|
|
1324
|
+
"Icon#45391:5": {
|
|
1325
|
+
"type": "INSTANCE_SWAP"
|
|
1326
|
+
},
|
|
1327
|
+
"Type (Figma Only)": {
|
|
1328
|
+
"type": "VARIANT",
|
|
1329
|
+
"variantOptions": [
|
|
1330
|
+
"Text",
|
|
1331
|
+
"Icon",
|
|
1332
|
+
"Icon Button (Ghost Button)",
|
|
1333
|
+
"Custom"
|
|
1334
|
+
]
|
|
1335
|
+
}
|
|
1336
|
+
}
|
|
1337
|
+
};
|
|
1338
|
+
|
|
1339
|
+
export const componentDeprecatedActionChip = {
|
|
1340
|
+
"name": "componentDeprecatedActionChip",
|
|
1341
|
+
"key": "63e532d9a4cf7304cf1101a05db8e0a063b7b0df",
|
|
1342
|
+
"componentPropertyDefinitions": {
|
|
1343
|
+
"Label#7185:0": {
|
|
1344
|
+
"type": "TEXT"
|
|
1345
|
+
},
|
|
1346
|
+
"Count#7185:21": {
|
|
1347
|
+
"type": "TEXT"
|
|
1348
|
+
},
|
|
1349
|
+
"Show Count#7185:42": {
|
|
1350
|
+
"type": "BOOLEAN"
|
|
1351
|
+
},
|
|
1352
|
+
"Prefix Icon#8711:0": {
|
|
1353
|
+
"type": "INSTANCE_SWAP"
|
|
1354
|
+
},
|
|
1355
|
+
"Suffix Icon#8711:3": {
|
|
1356
|
+
"type": "INSTANCE_SWAP"
|
|
1357
|
+
},
|
|
1358
|
+
"Icon#8714:0": {
|
|
1359
|
+
"type": "INSTANCE_SWAP"
|
|
1360
|
+
},
|
|
1361
|
+
"Size": {
|
|
1362
|
+
"type": "VARIANT",
|
|
1363
|
+
"variantOptions": [
|
|
1364
|
+
"Medium",
|
|
1365
|
+
"Small"
|
|
1366
|
+
]
|
|
1367
|
+
},
|
|
1368
|
+
"Layout": {
|
|
1369
|
+
"type": "VARIANT",
|
|
1370
|
+
"variantOptions": [
|
|
1371
|
+
"Text Only",
|
|
1372
|
+
"Icon First",
|
|
1373
|
+
"Icon Last",
|
|
1374
|
+
"Icon Both",
|
|
1375
|
+
"Icon Only"
|
|
1376
|
+
]
|
|
1377
|
+
},
|
|
1378
|
+
"State": {
|
|
1379
|
+
"type": "VARIANT",
|
|
1380
|
+
"variantOptions": [
|
|
1381
|
+
"Enabled",
|
|
1382
|
+
"Pressed",
|
|
1383
|
+
"Disabled"
|
|
1384
|
+
]
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
};
|
|
1388
|
+
|
|
1389
|
+
export const componentDeprecatedActionSheet = {
|
|
1390
|
+
"name": "componentDeprecatedActionSheet",
|
|
1391
|
+
"key": "5a1897680f8c0f7afde81fc1c44a26c65c8b3331",
|
|
1392
|
+
"componentPropertyDefinitions": {
|
|
1393
|
+
"Title Text#15641:37": {
|
|
1394
|
+
"type": "TEXT"
|
|
1395
|
+
},
|
|
1396
|
+
"Description Text#15641:70": {
|
|
1397
|
+
"type": "TEXT"
|
|
1398
|
+
},
|
|
1399
|
+
"Show Header#25531:3": {
|
|
1400
|
+
"type": "BOOLEAN"
|
|
1401
|
+
},
|
|
1402
|
+
"Show Safe Area#25531:12": {
|
|
1403
|
+
"type": "BOOLEAN"
|
|
1404
|
+
},
|
|
1405
|
+
"Type": {
|
|
1406
|
+
"type": "VARIANT",
|
|
1407
|
+
"variantOptions": [
|
|
1408
|
+
"Normal",
|
|
1409
|
+
"Destructive"
|
|
1410
|
+
]
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1413
|
+
};
|
|
1414
|
+
|
|
1415
|
+
export const templateDeprecatedChipGroup = {
|
|
1416
|
+
"name": "templateDeprecatedChipGroup",
|
|
1417
|
+
"key": "c6b8406eed754f43da93e17a1887ea331d168bdc",
|
|
1418
|
+
"componentPropertyDefinitions": {
|
|
1419
|
+
"Refresh Button#15888:2": {
|
|
1420
|
+
"type": "BOOLEAN"
|
|
1421
|
+
},
|
|
1422
|
+
"Type": {
|
|
1423
|
+
"type": "VARIANT",
|
|
1424
|
+
"variantOptions": [
|
|
1425
|
+
"Filter",
|
|
1426
|
+
"Control",
|
|
1427
|
+
"Action"
|
|
1428
|
+
]
|
|
1429
|
+
},
|
|
1430
|
+
"Chip Count": {
|
|
1431
|
+
"type": "VARIANT",
|
|
1432
|
+
"variantOptions": [
|
|
1433
|
+
"2",
|
|
1434
|
+
"3",
|
|
1435
|
+
"4",
|
|
1436
|
+
"Full"
|
|
1437
|
+
]
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
};
|
|
1441
|
+
|
|
1442
|
+
export const componentDeprecatedCompletion = {
|
|
1443
|
+
"name": "componentDeprecatedCompletion",
|
|
1444
|
+
"key": "20cccc2e9b80f66fe6704a3865d8f0a5a705e4d8",
|
|
1445
|
+
"componentPropertyDefinitions": {
|
|
1446
|
+
"Description#28427:4": {
|
|
1447
|
+
"type": "TEXT"
|
|
1448
|
+
},
|
|
1449
|
+
"Title#28427:5": {
|
|
1450
|
+
"type": "TEXT"
|
|
1451
|
+
},
|
|
1452
|
+
"Show Description#28427:6": {
|
|
1453
|
+
"type": "BOOLEAN"
|
|
1454
|
+
},
|
|
1455
|
+
"Show Button#28427:7": {
|
|
1456
|
+
"type": "BOOLEAN"
|
|
1457
|
+
},
|
|
1458
|
+
"Show Top Navigation#28427:8": {
|
|
1459
|
+
"type": "BOOLEAN"
|
|
1460
|
+
},
|
|
1461
|
+
"Variant": {
|
|
1462
|
+
"type": "VARIANT",
|
|
1463
|
+
"variantOptions": [
|
|
1464
|
+
"Screen",
|
|
1465
|
+
"Dialog"
|
|
1466
|
+
]
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
};
|
|
1470
|
+
|
|
1471
|
+
export const componentDeprecatedControlChip = {
|
|
1472
|
+
"name": "componentDeprecatedControlChip",
|
|
1473
|
+
"key": "8f512f6e12fb0c3cd72e4bd03c6878443e1d5524",
|
|
1474
|
+
"componentPropertyDefinitions": {
|
|
1475
|
+
"Label#7185:0": {
|
|
1476
|
+
"type": "TEXT"
|
|
1477
|
+
},
|
|
1478
|
+
"Count#7185:21": {
|
|
1479
|
+
"type": "TEXT"
|
|
1480
|
+
},
|
|
1481
|
+
"Show Count#7185:42": {
|
|
1482
|
+
"type": "BOOLEAN"
|
|
1483
|
+
},
|
|
1484
|
+
"Prefix Icon#8722:0": {
|
|
1485
|
+
"type": "INSTANCE_SWAP"
|
|
1486
|
+
},
|
|
1487
|
+
"Icon#8722:41": {
|
|
1488
|
+
"type": "INSTANCE_SWAP"
|
|
1489
|
+
},
|
|
1490
|
+
"Suffix Icon#8722:82": {
|
|
1491
|
+
"type": "INSTANCE_SWAP"
|
|
1492
|
+
},
|
|
1493
|
+
"Size": {
|
|
1494
|
+
"type": "VARIANT",
|
|
1495
|
+
"variantOptions": [
|
|
1496
|
+
"Medium",
|
|
1497
|
+
"Small"
|
|
1498
|
+
]
|
|
1499
|
+
},
|
|
1500
|
+
"Layout": {
|
|
1501
|
+
"type": "VARIANT",
|
|
1502
|
+
"variantOptions": [
|
|
1503
|
+
"Text Only",
|
|
1504
|
+
"Icon First",
|
|
1505
|
+
"Icon Last",
|
|
1506
|
+
"Icon Both",
|
|
1507
|
+
"Icon Only"
|
|
1508
|
+
]
|
|
1509
|
+
},
|
|
1510
|
+
"State": {
|
|
1511
|
+
"type": "VARIANT",
|
|
1512
|
+
"variantOptions": [
|
|
1513
|
+
"Enabled",
|
|
1514
|
+
"Pressed",
|
|
1515
|
+
"Disabled",
|
|
1516
|
+
"Selected",
|
|
1517
|
+
"Selected-Pressed",
|
|
1518
|
+
"Selected-Disabled"
|
|
1519
|
+
]
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
};
|
|
1523
|
+
|
|
1524
|
+
export const componentDeprecatedErrorState = {
|
|
1525
|
+
"name": "componentDeprecatedErrorState",
|
|
1526
|
+
"key": "8ee1e922166970c8616e7813e5b8c50f13a8119f",
|
|
1527
|
+
"componentPropertyDefinitions": {
|
|
1528
|
+
"Show Buttons#9080:5": {
|
|
1529
|
+
"type": "BOOLEAN"
|
|
1530
|
+
},
|
|
1531
|
+
"Title#16237:0": {
|
|
1532
|
+
"type": "TEXT"
|
|
1533
|
+
},
|
|
1534
|
+
"Description#16237:5": {
|
|
1535
|
+
"type": "TEXT"
|
|
1536
|
+
},
|
|
1537
|
+
"Secondary Action Label#17042:0": {
|
|
1538
|
+
"type": "TEXT"
|
|
1539
|
+
},
|
|
1540
|
+
"Variant": {
|
|
1541
|
+
"type": "VARIANT",
|
|
1542
|
+
"variantOptions": [
|
|
1543
|
+
"Default",
|
|
1544
|
+
"Basement"
|
|
1545
|
+
]
|
|
1546
|
+
},
|
|
1547
|
+
"Layout": {
|
|
1548
|
+
"type": "VARIANT",
|
|
1549
|
+
"variantOptions": [
|
|
1550
|
+
"With Title",
|
|
1551
|
+
"Description Only"
|
|
1552
|
+
]
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
};
|
|
1556
|
+
|
|
1557
|
+
export const componentDeprecatedMultilineTextField = {
|
|
1558
|
+
"name": "componentDeprecatedMultilineTextField",
|
|
1559
|
+
"key": "8789080940291191e10d6f695e5ca2553407ecc4",
|
|
1560
|
+
"componentPropertyDefinitions": {
|
|
1561
|
+
"Show Header#870:0": {
|
|
1562
|
+
"type": "BOOLEAN"
|
|
1563
|
+
},
|
|
1564
|
+
"Placeholder#958:0": {
|
|
1565
|
+
"type": "TEXT"
|
|
1566
|
+
},
|
|
1567
|
+
"Show Footer#958:25": {
|
|
1568
|
+
"type": "BOOLEAN"
|
|
1569
|
+
},
|
|
1570
|
+
"Show Description#958:50": {
|
|
1571
|
+
"type": "BOOLEAN"
|
|
1572
|
+
},
|
|
1573
|
+
"Show Character count#958:75": {
|
|
1574
|
+
"type": "BOOLEAN"
|
|
1575
|
+
},
|
|
1576
|
+
"Show Indicator#1259:0": {
|
|
1577
|
+
"type": "BOOLEAN"
|
|
1578
|
+
},
|
|
1579
|
+
"Filled Text#1304:0": {
|
|
1580
|
+
"type": "TEXT"
|
|
1581
|
+
},
|
|
1582
|
+
"Max Character Count#15327:175": {
|
|
1583
|
+
"type": "TEXT"
|
|
1584
|
+
},
|
|
1585
|
+
"Description#15327:212": {
|
|
1586
|
+
"type": "TEXT"
|
|
1587
|
+
},
|
|
1588
|
+
"Indicator#15327:286": {
|
|
1589
|
+
"type": "TEXT"
|
|
1590
|
+
},
|
|
1591
|
+
"Label#15327:323": {
|
|
1592
|
+
"type": "TEXT"
|
|
1593
|
+
},
|
|
1594
|
+
"Character Count#15327:360": {
|
|
1595
|
+
"type": "TEXT"
|
|
1596
|
+
},
|
|
1597
|
+
"Size": {
|
|
1598
|
+
"type": "VARIANT",
|
|
1599
|
+
"variantOptions": [
|
|
1600
|
+
"Medium",
|
|
1601
|
+
"Large",
|
|
1602
|
+
"XLarge"
|
|
1603
|
+
]
|
|
1604
|
+
},
|
|
1605
|
+
"State": {
|
|
1606
|
+
"type": "VARIANT",
|
|
1607
|
+
"variantOptions": [
|
|
1608
|
+
"Enabled",
|
|
1609
|
+
"Focused",
|
|
1610
|
+
"Invalid",
|
|
1611
|
+
"Invalid-Focused",
|
|
1612
|
+
"Disabled",
|
|
1613
|
+
"Read Only"
|
|
1614
|
+
]
|
|
1615
|
+
},
|
|
1616
|
+
"Filled": {
|
|
1617
|
+
"type": "VARIANT",
|
|
1618
|
+
"variantOptions": [
|
|
1619
|
+
"True",
|
|
1620
|
+
"False"
|
|
1621
|
+
]
|
|
1622
|
+
}
|
|
1623
|
+
}
|
|
1624
|
+
};
|
|
1625
|
+
|
|
1626
|
+
export const componentDeprecatedRangeSlider = {
|
|
1627
|
+
"name": "componentDeprecatedRangeSlider",
|
|
1628
|
+
"key": "acd9b25dba649748699d0a67f900857629d62e64",
|
|
1629
|
+
"componentPropertyDefinitions": {
|
|
1630
|
+
"Steps": {
|
|
1631
|
+
"type": "VARIANT",
|
|
1632
|
+
"variantOptions": [
|
|
1633
|
+
"0",
|
|
1634
|
+
"1",
|
|
1635
|
+
"2",
|
|
1636
|
+
"3",
|
|
1637
|
+
"4"
|
|
1638
|
+
]
|
|
1639
|
+
},
|
|
1640
|
+
"State": {
|
|
1641
|
+
"type": "VARIANT",
|
|
1642
|
+
"variantOptions": [
|
|
1643
|
+
"Enabled",
|
|
1644
|
+
"Disabled"
|
|
1645
|
+
]
|
|
1646
|
+
},
|
|
1647
|
+
"Marker": {
|
|
1648
|
+
"type": "VARIANT",
|
|
1649
|
+
"variantOptions": [
|
|
1650
|
+
"None",
|
|
1651
|
+
"Min Max",
|
|
1652
|
+
"All"
|
|
1653
|
+
]
|
|
1654
|
+
}
|
|
1655
|
+
}
|
|
1656
|
+
};
|
|
1657
|
+
|
|
1658
|
+
export const componentDeprecatedSelectBox = {
|
|
1659
|
+
"name": "componentDeprecatedSelectBox",
|
|
1660
|
+
"key": "83d4bbb026d432c35f0b2c7b7b273eafdd28e1a1",
|
|
1661
|
+
"componentPropertyDefinitions": {
|
|
1662
|
+
"Show Description#3033:0": {
|
|
1663
|
+
"type": "BOOLEAN"
|
|
1664
|
+
},
|
|
1665
|
+
"Description #3033:5": {
|
|
1666
|
+
"type": "TEXT"
|
|
1667
|
+
},
|
|
1668
|
+
"Label#3635:0": {
|
|
1669
|
+
"type": "TEXT"
|
|
1670
|
+
},
|
|
1671
|
+
"Control": {
|
|
1672
|
+
"type": "VARIANT",
|
|
1673
|
+
"variantOptions": [
|
|
1674
|
+
"Checkbox",
|
|
1675
|
+
"Radio"
|
|
1676
|
+
]
|
|
1677
|
+
},
|
|
1678
|
+
"Selected": {
|
|
1679
|
+
"type": "VARIANT",
|
|
1680
|
+
"variantOptions": [
|
|
1681
|
+
"True",
|
|
1682
|
+
"False"
|
|
1683
|
+
]
|
|
1684
|
+
},
|
|
1685
|
+
"State": {
|
|
1686
|
+
"type": "VARIANT",
|
|
1687
|
+
"variantOptions": [
|
|
1688
|
+
"Enabled",
|
|
1689
|
+
"Pressed"
|
|
1690
|
+
]
|
|
1691
|
+
}
|
|
1692
|
+
}
|
|
1693
|
+
};
|
|
1694
|
+
|
|
1695
|
+
export const componentDeprecatedSelectBoxGroup = {
|
|
1696
|
+
"name": "componentDeprecatedSelectBoxGroup",
|
|
1697
|
+
"key": "558248a78625c79a55953956531738e490bf38fd",
|
|
1698
|
+
"componentPropertyDefinitions": {
|
|
1699
|
+
"Control": {
|
|
1700
|
+
"type": "VARIANT",
|
|
1701
|
+
"variantOptions": [
|
|
1702
|
+
"Checkbox",
|
|
1703
|
+
"Radio"
|
|
1704
|
+
]
|
|
1705
|
+
},
|
|
1706
|
+
"Item Count": {
|
|
1707
|
+
"type": "VARIANT",
|
|
1708
|
+
"variantOptions": [
|
|
1709
|
+
"1",
|
|
1710
|
+
"2",
|
|
1711
|
+
"3",
|
|
1712
|
+
"4",
|
|
1713
|
+
"5",
|
|
1714
|
+
"6"
|
|
1715
|
+
]
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1718
|
+
};
|
|
1719
|
+
|
|
1720
|
+
export const componentDeprecatedSlider = {
|
|
1721
|
+
"name": "componentDeprecatedSlider",
|
|
1722
|
+
"key": "c103c0a6ec25de57bb41eb820648a467afc5788e",
|
|
1723
|
+
"componentPropertyDefinitions": {
|
|
1724
|
+
"Steps": {
|
|
1725
|
+
"type": "VARIANT",
|
|
1726
|
+
"variantOptions": [
|
|
1727
|
+
"0",
|
|
1728
|
+
"1",
|
|
1729
|
+
"2",
|
|
1730
|
+
"3",
|
|
1731
|
+
"4"
|
|
1732
|
+
]
|
|
1733
|
+
},
|
|
1734
|
+
"State": {
|
|
1735
|
+
"type": "VARIANT",
|
|
1736
|
+
"variantOptions": [
|
|
1737
|
+
"Enabled",
|
|
1738
|
+
"Disabled"
|
|
1739
|
+
]
|
|
1740
|
+
},
|
|
1741
|
+
"Marker": {
|
|
1742
|
+
"type": "VARIANT",
|
|
1743
|
+
"variantOptions": [
|
|
1744
|
+
"None",
|
|
1745
|
+
"Min Max",
|
|
1746
|
+
"All"
|
|
1747
|
+
]
|
|
1748
|
+
}
|
|
1749
|
+
}
|
|
1750
|
+
};
|
|
1751
|
+
|
|
1752
|
+
export const componentDeprecatedTextField = {
|
|
1753
|
+
"name": "componentDeprecatedTextField",
|
|
1754
|
+
"key": "5e497fe23421ab30b245b7d7b6624be803cb4d67",
|
|
1755
|
+
"componentPropertyDefinitions": {
|
|
1756
|
+
"Show Header#870:0": {
|
|
1757
|
+
"type": "BOOLEAN"
|
|
1758
|
+
},
|
|
1759
|
+
"Placeholder#958:0": {
|
|
1760
|
+
"type": "TEXT"
|
|
1761
|
+
},
|
|
1762
|
+
"Show Footer#958:25": {
|
|
1763
|
+
"type": "BOOLEAN"
|
|
1764
|
+
},
|
|
1765
|
+
"Show Description#958:50": {
|
|
1766
|
+
"type": "BOOLEAN"
|
|
1767
|
+
},
|
|
1768
|
+
"Show Character Count#958:75": {
|
|
1769
|
+
"type": "BOOLEAN"
|
|
1770
|
+
},
|
|
1771
|
+
"Show Suffix#958:100": {
|
|
1772
|
+
"type": "BOOLEAN"
|
|
1773
|
+
},
|
|
1774
|
+
"Show Prefix#958:125": {
|
|
1775
|
+
"type": "BOOLEAN"
|
|
1776
|
+
},
|
|
1777
|
+
"Show Indicator#1259:0": {
|
|
1778
|
+
"type": "BOOLEAN"
|
|
1779
|
+
},
|
|
1780
|
+
"Show Prefix Text#1267:0": {
|
|
1781
|
+
"type": "BOOLEAN"
|
|
1782
|
+
},
|
|
1783
|
+
"Prefix Icon#1267:25": {
|
|
1784
|
+
"type": "INSTANCE_SWAP"
|
|
1785
|
+
},
|
|
1786
|
+
"Show Prefix Icon#1267:50": {
|
|
1787
|
+
"type": "BOOLEAN"
|
|
1788
|
+
},
|
|
1789
|
+
"Show Suffix Icon#1267:75": {
|
|
1790
|
+
"type": "BOOLEAN"
|
|
1791
|
+
},
|
|
1792
|
+
"Suffix Icon #1267:100": {
|
|
1793
|
+
"type": "INSTANCE_SWAP"
|
|
1794
|
+
},
|
|
1795
|
+
"Show Suffix Text#1267:125": {
|
|
1796
|
+
"type": "BOOLEAN"
|
|
1797
|
+
},
|
|
1798
|
+
"Filled Text#1304:0": {
|
|
1799
|
+
"type": "TEXT"
|
|
1800
|
+
},
|
|
1801
|
+
"Description#12626:5": {
|
|
1802
|
+
"type": "TEXT"
|
|
1803
|
+
},
|
|
1804
|
+
"Label#14964:0": {
|
|
1805
|
+
"type": "TEXT"
|
|
1806
|
+
},
|
|
1807
|
+
"Max Character Count#15327:27": {
|
|
1808
|
+
"type": "TEXT"
|
|
1809
|
+
},
|
|
1810
|
+
"Character Count#15327:64": {
|
|
1811
|
+
"type": "TEXT"
|
|
1812
|
+
},
|
|
1813
|
+
"Prefix Text#15327:101": {
|
|
1814
|
+
"type": "TEXT"
|
|
1815
|
+
},
|
|
1816
|
+
"Suffix Text#15327:138": {
|
|
1817
|
+
"type": "TEXT"
|
|
1818
|
+
},
|
|
1819
|
+
"Indicator#15327:249": {
|
|
1820
|
+
"type": "TEXT"
|
|
1821
|
+
},
|
|
1822
|
+
"Size": {
|
|
1823
|
+
"type": "VARIANT",
|
|
1824
|
+
"variantOptions": [
|
|
1825
|
+
"Medium",
|
|
1826
|
+
"Large(Default)"
|
|
1827
|
+
]
|
|
1828
|
+
},
|
|
1829
|
+
"State": {
|
|
1830
|
+
"type": "VARIANT",
|
|
1831
|
+
"variantOptions": [
|
|
1832
|
+
"Enabled",
|
|
1833
|
+
"Focused",
|
|
1834
|
+
"Invalid",
|
|
1835
|
+
"Invalid-Focused",
|
|
1836
|
+
"Disabled",
|
|
1837
|
+
"Read Only"
|
|
1838
|
+
]
|
|
1839
|
+
},
|
|
1840
|
+
"Filled": {
|
|
1841
|
+
"type": "VARIANT",
|
|
1842
|
+
"variantOptions": [
|
|
1843
|
+
"True",
|
|
1844
|
+
"False"
|
|
1845
|
+
]
|
|
1846
|
+
}
|
|
1847
|
+
}
|
|
1848
|
+
};
|
|
1849
|
+
|
|
1850
|
+
export const componentDerpecatedTopNavigation = {
|
|
1851
|
+
"name": "componentDerpecatedTopNavigation",
|
|
1852
|
+
"key": "bcecabe1f2ddcac7e8b06049d2f7d13925fa8463",
|
|
1853
|
+
"componentPropertyDefinitions": {
|
|
1854
|
+
"Show Right#18464:0": {
|
|
1855
|
+
"type": "BOOLEAN"
|
|
1856
|
+
},
|
|
1857
|
+
"Show Left#18464:5": {
|
|
1858
|
+
"type": "BOOLEAN"
|
|
1859
|
+
},
|
|
1860
|
+
"Show Title#28176:5": {
|
|
1861
|
+
"type": "BOOLEAN"
|
|
1862
|
+
},
|
|
1863
|
+
"Variant": {
|
|
1864
|
+
"type": "VARIANT",
|
|
1865
|
+
"variantOptions": [
|
|
1866
|
+
"Layer Default",
|
|
1867
|
+
"Transparent"
|
|
1868
|
+
]
|
|
1869
|
+
},
|
|
1870
|
+
"OS": {
|
|
1871
|
+
"type": "VARIANT",
|
|
1872
|
+
"variantOptions": [
|
|
1873
|
+
"iOS",
|
|
1874
|
+
"Android"
|
|
1875
|
+
]
|
|
1876
|
+
}
|
|
1877
|
+
}
|
|
1878
|
+
};
|
|
1879
|
+
|
|
1880
|
+
export const componentActionButton = {
|
|
1881
|
+
"name": "componentActionButton",
|
|
1882
|
+
"key": "cd70496145efd7f5ffdb5413fb4db8e918561ffa",
|
|
1883
|
+
"componentPropertyDefinitions": {
|
|
1884
|
+
"Label#5987:61": {
|
|
1885
|
+
"type": "TEXT"
|
|
1886
|
+
},
|
|
1887
|
+
"Suffix Icon#5987:244": {
|
|
1888
|
+
"type": "INSTANCE_SWAP"
|
|
1889
|
+
},
|
|
1890
|
+
"Prefix Icon#5987:305": {
|
|
1891
|
+
"type": "INSTANCE_SWAP"
|
|
1892
|
+
},
|
|
1893
|
+
"Icon#7574:0": {
|
|
1894
|
+
"type": "INSTANCE_SWAP"
|
|
1895
|
+
},
|
|
1896
|
+
"Size": {
|
|
1897
|
+
"type": "VARIANT",
|
|
1898
|
+
"variantOptions": [
|
|
1899
|
+
"XSmall",
|
|
1900
|
+
"Small",
|
|
1901
|
+
"Medium",
|
|
1902
|
+
"Large"
|
|
1903
|
+
]
|
|
1904
|
+
},
|
|
1905
|
+
"Layout": {
|
|
1906
|
+
"type": "VARIANT",
|
|
1907
|
+
"variantOptions": [
|
|
1908
|
+
"Text Only",
|
|
1909
|
+
"Icon First",
|
|
1910
|
+
"Icon Last",
|
|
1911
|
+
"Icon Only"
|
|
1912
|
+
]
|
|
1913
|
+
},
|
|
1914
|
+
"Variant": {
|
|
1915
|
+
"type": "VARIANT",
|
|
1916
|
+
"variantOptions": [
|
|
1917
|
+
"Neutral Solid",
|
|
1918
|
+
"Brand Solid",
|
|
1919
|
+
"Critical Solid",
|
|
1920
|
+
"Neutral Weak",
|
|
1921
|
+
"Brand Outline",
|
|
1922
|
+
"Neutral Outline"
|
|
1923
|
+
]
|
|
1924
|
+
},
|
|
1925
|
+
"State": {
|
|
1926
|
+
"type": "VARIANT",
|
|
1927
|
+
"variantOptions": [
|
|
1928
|
+
"Enabled",
|
|
1929
|
+
"Pressed",
|
|
1930
|
+
"Loading",
|
|
1931
|
+
"Disabled"
|
|
1932
|
+
]
|
|
1933
|
+
}
|
|
1934
|
+
}
|
|
1935
|
+
};
|
|
1936
|
+
|
|
1937
|
+
export const componentAlertDialog = {
|
|
1938
|
+
"name": "componentAlertDialog",
|
|
1939
|
+
"key": "00b6325b272baf7b5f981d366fb0f34a264b9ec8",
|
|
1940
|
+
"componentPropertyDefinitions": {
|
|
1941
|
+
"Title Text#20361:0": {
|
|
1942
|
+
"type": "TEXT"
|
|
1943
|
+
},
|
|
1944
|
+
"Description Text#20361:7": {
|
|
1945
|
+
"type": "TEXT"
|
|
1946
|
+
},
|
|
1947
|
+
"Show Title#20361:14": {
|
|
1948
|
+
"type": "BOOLEAN"
|
|
1949
|
+
},
|
|
1950
|
+
"Layout": {
|
|
1951
|
+
"type": "VARIANT",
|
|
1952
|
+
"variantOptions": [
|
|
1953
|
+
"Single",
|
|
1954
|
+
"Neutral",
|
|
1955
|
+
"Neutral (Overflow)",
|
|
1956
|
+
"Critical",
|
|
1957
|
+
"Critical (Overflow)",
|
|
1958
|
+
"Nonpreferred"
|
|
1959
|
+
]
|
|
1960
|
+
}
|
|
1961
|
+
}
|
|
1962
|
+
};
|
|
1963
|
+
|
|
1964
|
+
export const componentAvatar = {
|
|
1965
|
+
"name": "componentAvatar",
|
|
1966
|
+
"key": "f17031afc2c71f35e5a147f6937a2b918029d334",
|
|
1967
|
+
"componentPropertyDefinitions": {
|
|
1968
|
+
"Has Image Contents#33407:0": {
|
|
1969
|
+
"type": "BOOLEAN"
|
|
1970
|
+
},
|
|
1971
|
+
"Size": {
|
|
1972
|
+
"type": "VARIANT",
|
|
1973
|
+
"variantOptions": [
|
|
1974
|
+
"20",
|
|
1975
|
+
"24",
|
|
1976
|
+
"36",
|
|
1977
|
+
"42",
|
|
1978
|
+
"48",
|
|
1979
|
+
"64",
|
|
1980
|
+
"80",
|
|
1981
|
+
"96",
|
|
1982
|
+
"108"
|
|
1983
|
+
]
|
|
1984
|
+
},
|
|
1985
|
+
"Badge": {
|
|
1986
|
+
"type": "VARIANT",
|
|
1987
|
+
"variantOptions": [
|
|
1988
|
+
"None",
|
|
1989
|
+
"Circle",
|
|
1990
|
+
"Shield",
|
|
1991
|
+
"Flower"
|
|
1992
|
+
]
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
};
|
|
1996
|
+
|
|
1997
|
+
export const templateAvatarPreset = {
|
|
1998
|
+
"name": "templateAvatarPreset",
|
|
1999
|
+
"key": "42eefce6a1ab0d45780d2be5346d8ec5f6bace6e",
|
|
2000
|
+
"componentPropertyDefinitions": {
|
|
2001
|
+
"Image": {
|
|
2002
|
+
"type": "VARIANT",
|
|
2003
|
+
"variantOptions": [
|
|
2004
|
+
"001",
|
|
2005
|
+
"002",
|
|
2006
|
+
"003",
|
|
2007
|
+
"004",
|
|
2008
|
+
"005",
|
|
2009
|
+
"006",
|
|
2010
|
+
"007",
|
|
2011
|
+
"008",
|
|
2012
|
+
"009",
|
|
2013
|
+
"010",
|
|
2014
|
+
"011",
|
|
2015
|
+
"012",
|
|
2016
|
+
"013"
|
|
2017
|
+
]
|
|
2018
|
+
}
|
|
2019
|
+
}
|
|
2020
|
+
};
|
|
2021
|
+
|
|
2022
|
+
export const componentAvatarStack = {
|
|
2023
|
+
"name": "componentAvatarStack",
|
|
2024
|
+
"key": "99d74f36d2989b450cc0c7f15eb6495888bb1cec",
|
|
2025
|
+
"componentPropertyDefinitions": {
|
|
2026
|
+
"Size": {
|
|
2027
|
+
"type": "VARIANT",
|
|
2028
|
+
"variantOptions": [
|
|
2029
|
+
"20",
|
|
2030
|
+
"24",
|
|
2031
|
+
"36",
|
|
2032
|
+
"42",
|
|
2033
|
+
"48",
|
|
2034
|
+
"64",
|
|
2035
|
+
"80",
|
|
2036
|
+
"96",
|
|
2037
|
+
"108"
|
|
2038
|
+
]
|
|
2039
|
+
}
|
|
2040
|
+
}
|
|
2041
|
+
};
|
|
2042
|
+
|
|
2043
|
+
export const componentBadge = {
|
|
2044
|
+
"name": "componentBadge",
|
|
2045
|
+
"key": "56e8fb298b4b79ba4f1a702d4b834e6ed1051481",
|
|
2046
|
+
"componentPropertyDefinitions": {
|
|
2047
|
+
"Label#1584:0": {
|
|
2048
|
+
"type": "TEXT"
|
|
2049
|
+
},
|
|
2050
|
+
"Size": {
|
|
2051
|
+
"type": "VARIANT",
|
|
2052
|
+
"variantOptions": [
|
|
2053
|
+
"Medium",
|
|
2054
|
+
"Large"
|
|
2055
|
+
]
|
|
2056
|
+
},
|
|
2057
|
+
"Tone": {
|
|
2058
|
+
"type": "VARIANT",
|
|
2059
|
+
"variantOptions": [
|
|
2060
|
+
"Neutral",
|
|
2061
|
+
"Brand",
|
|
2062
|
+
"Informative",
|
|
2063
|
+
"Positive",
|
|
2064
|
+
"Critical",
|
|
2065
|
+
"Warning"
|
|
2066
|
+
]
|
|
2067
|
+
},
|
|
2068
|
+
"Variant": {
|
|
2069
|
+
"type": "VARIANT",
|
|
2070
|
+
"variantOptions": [
|
|
2071
|
+
"Weak",
|
|
2072
|
+
"Outline",
|
|
2073
|
+
"Solid"
|
|
2074
|
+
]
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
};
|
|
2078
|
+
|
|
2079
|
+
export const componentBottomActionBarFigmaOnly = {
|
|
2080
|
+
"name": "componentBottomActionBarFigmaOnly",
|
|
2081
|
+
"key": "6475aac366b2b18edf8cbabff4f84a9f1619253a",
|
|
2082
|
+
"componentPropertyDefinitions": {
|
|
2083
|
+
"Show Pay Logo#18180:0": {
|
|
2084
|
+
"type": "BOOLEAN"
|
|
2085
|
+
},
|
|
2086
|
+
"Show Divider#19566:0": {
|
|
2087
|
+
"type": "BOOLEAN"
|
|
2088
|
+
},
|
|
2089
|
+
"Show Action Button#25142:9": {
|
|
2090
|
+
"type": "BOOLEAN"
|
|
2091
|
+
},
|
|
2092
|
+
"Show Step Indicator#25896:0": {
|
|
2093
|
+
"type": "BOOLEAN"
|
|
2094
|
+
},
|
|
2095
|
+
"Show Help Text#26801:0": {
|
|
2096
|
+
"type": "BOOLEAN"
|
|
2097
|
+
},
|
|
2098
|
+
"Show Safe Area#28768:0": {
|
|
2099
|
+
"type": "BOOLEAN"
|
|
2100
|
+
},
|
|
2101
|
+
"Show Favorite Button#29056:0": {
|
|
2102
|
+
"type": "BOOLEAN"
|
|
2103
|
+
},
|
|
2104
|
+
"Layout": {
|
|
2105
|
+
"type": "VARIANT",
|
|
2106
|
+
"variantOptions": [
|
|
2107
|
+
"Single",
|
|
2108
|
+
"Horizontal",
|
|
2109
|
+
"Horizontal Ratio",
|
|
2110
|
+
"Vertical",
|
|
2111
|
+
"Vertical Elevated",
|
|
2112
|
+
"Informative"
|
|
2113
|
+
]
|
|
2114
|
+
},
|
|
2115
|
+
"Show Keyboard": {
|
|
2116
|
+
"type": "VARIANT",
|
|
2117
|
+
"variantOptions": [
|
|
2118
|
+
"False",
|
|
2119
|
+
"True"
|
|
2120
|
+
]
|
|
2121
|
+
}
|
|
2122
|
+
}
|
|
2123
|
+
};
|
|
2124
|
+
|
|
2125
|
+
export const componentBottomSheet = {
|
|
2126
|
+
"name": "componentBottomSheet",
|
|
2127
|
+
"key": "ffe99a21452831c28bd9375aac0aaf37d7ee6a0d",
|
|
2128
|
+
"componentPropertyDefinitions": {
|
|
2129
|
+
"Title#19787:3": {
|
|
2130
|
+
"type": "TEXT"
|
|
2131
|
+
},
|
|
2132
|
+
"Description#19787:7": {
|
|
2133
|
+
"type": "TEXT"
|
|
2134
|
+
},
|
|
2135
|
+
"Show Close Button#19787:11": {
|
|
2136
|
+
"type": "BOOLEAN"
|
|
2137
|
+
},
|
|
2138
|
+
"Show Footer#25162:14": {
|
|
2139
|
+
"type": "BOOLEAN"
|
|
2140
|
+
},
|
|
2141
|
+
"Show Description#25192:0": {
|
|
2142
|
+
"type": "BOOLEAN"
|
|
2143
|
+
},
|
|
2144
|
+
"Contents#25320:0": {
|
|
2145
|
+
"type": "INSTANCE_SWAP"
|
|
2146
|
+
},
|
|
2147
|
+
"Show Safe Area#25488:8": {
|
|
2148
|
+
"type": "BOOLEAN"
|
|
2149
|
+
},
|
|
2150
|
+
"Show Handle#49774:6": {
|
|
2151
|
+
"type": "BOOLEAN"
|
|
2152
|
+
},
|
|
2153
|
+
"Show Scroll Fog(Figma Only)#53171:3": {
|
|
2154
|
+
"type": "BOOLEAN"
|
|
2155
|
+
},
|
|
2156
|
+
"Header Layout": {
|
|
2157
|
+
"type": "VARIANT",
|
|
2158
|
+
"variantOptions": [
|
|
2159
|
+
"Top Left",
|
|
2160
|
+
"Top Center",
|
|
2161
|
+
"Bottom Left",
|
|
2162
|
+
"Bottom Center",
|
|
2163
|
+
"None"
|
|
2164
|
+
]
|
|
2165
|
+
}
|
|
2166
|
+
}
|
|
2167
|
+
};
|
|
2168
|
+
|
|
2169
|
+
export const templateButtonGroup = {
|
|
2170
|
+
"name": "templateButtonGroup",
|
|
2171
|
+
"key": "c36b74a90e2321ac498f59ed8bf9ce4b365a5547",
|
|
2172
|
+
"componentPropertyDefinitions": {
|
|
2173
|
+
"Size": {
|
|
2174
|
+
"type": "VARIANT",
|
|
2175
|
+
"variantOptions": [
|
|
2176
|
+
"Small",
|
|
2177
|
+
"Medium"
|
|
2178
|
+
]
|
|
2179
|
+
},
|
|
2180
|
+
"Type": {
|
|
2181
|
+
"type": "VARIANT",
|
|
2182
|
+
"variantOptions": [
|
|
2183
|
+
"horizontal Equal",
|
|
2184
|
+
"Horizontal Ratio"
|
|
2185
|
+
]
|
|
2186
|
+
},
|
|
2187
|
+
"Item Count": {
|
|
2188
|
+
"type": "VARIANT",
|
|
2189
|
+
"variantOptions": [
|
|
2190
|
+
"2",
|
|
2191
|
+
"3"
|
|
2192
|
+
]
|
|
2193
|
+
}
|
|
2194
|
+
}
|
|
2195
|
+
};
|
|
2196
|
+
|
|
2197
|
+
export const componentCallout = {
|
|
2198
|
+
"name": "componentCallout",
|
|
2199
|
+
"key": "023a7bace9c6cb50437e1a40488020bacb13e19c",
|
|
2200
|
+
"componentPropertyDefinitions": {
|
|
2201
|
+
"Prefix Icon#35087:0": {
|
|
2202
|
+
"type": "INSTANCE_SWAP"
|
|
2203
|
+
},
|
|
2204
|
+
"Show Prefix Icon#35087:1": {
|
|
2205
|
+
"type": "BOOLEAN"
|
|
2206
|
+
},
|
|
2207
|
+
"Pressed#35087:2": {
|
|
2208
|
+
"type": "BOOLEAN"
|
|
2209
|
+
},
|
|
2210
|
+
"Interaction": {
|
|
2211
|
+
"type": "VARIANT",
|
|
2212
|
+
"variantOptions": [
|
|
2213
|
+
"Display",
|
|
2214
|
+
"Actionable",
|
|
2215
|
+
"Dismissible"
|
|
2216
|
+
]
|
|
2217
|
+
},
|
|
2218
|
+
"Tone": {
|
|
2219
|
+
"type": "VARIANT",
|
|
2220
|
+
"variantOptions": [
|
|
2221
|
+
"Neutral",
|
|
2222
|
+
"Informative",
|
|
2223
|
+
"Critical",
|
|
2224
|
+
"Warning",
|
|
2225
|
+
"Magic",
|
|
2226
|
+
"Positive"
|
|
2227
|
+
]
|
|
2228
|
+
},
|
|
2229
|
+
"Show Title": {
|
|
2230
|
+
"type": "VARIANT",
|
|
2231
|
+
"variantOptions": [
|
|
2232
|
+
"False",
|
|
2233
|
+
"True"
|
|
2234
|
+
]
|
|
2235
|
+
},
|
|
2236
|
+
"Show Link Text": {
|
|
2237
|
+
"type": "VARIANT",
|
|
2238
|
+
"variantOptions": [
|
|
2239
|
+
"False",
|
|
2240
|
+
"True"
|
|
2241
|
+
]
|
|
2242
|
+
}
|
|
2243
|
+
}
|
|
2244
|
+
};
|
|
2245
|
+
|
|
2246
|
+
export const templateChatScreenPreset = {
|
|
2247
|
+
"name": "templateChatScreenPreset",
|
|
2248
|
+
"key": "1f80aa722ba73f49537f7382cb3f900258d5aef0",
|
|
2249
|
+
"componentPropertyDefinitions": {
|
|
2250
|
+
"Service": {
|
|
2251
|
+
"type": "VARIANT",
|
|
2252
|
+
"variantOptions": [
|
|
2253
|
+
"중고거래-구매자",
|
|
2254
|
+
"중고거래-판매자",
|
|
2255
|
+
"모임채팅방",
|
|
2256
|
+
"중고차",
|
|
2257
|
+
"부동산",
|
|
2258
|
+
"공식 계정",
|
|
2259
|
+
"비즈프로필(고객 뷰)",
|
|
2260
|
+
"비즈프로필 (사장님 뷰)",
|
|
2261
|
+
"알바 (구인자 뷰)",
|
|
2262
|
+
"알바 (구직자 뷰)",
|
|
2263
|
+
"Service11"
|
|
2264
|
+
]
|
|
2265
|
+
}
|
|
2266
|
+
}
|
|
2267
|
+
};
|
|
2268
|
+
|
|
2269
|
+
export const componentCheckbox = {
|
|
2270
|
+
"name": "componentCheckbox",
|
|
2271
|
+
"key": "61da0cb392bbad8342cfa1630e08ae9e062cc8a4",
|
|
2272
|
+
"componentPropertyDefinitions": {
|
|
2273
|
+
"Label#49990:0": {
|
|
2274
|
+
"type": "TEXT"
|
|
2275
|
+
},
|
|
2276
|
+
"Size": {
|
|
2277
|
+
"type": "VARIANT",
|
|
2278
|
+
"variantOptions": [
|
|
2279
|
+
"Medium",
|
|
2280
|
+
"Large"
|
|
2281
|
+
]
|
|
2282
|
+
},
|
|
2283
|
+
"Tone": {
|
|
2284
|
+
"type": "VARIANT",
|
|
2285
|
+
"variantOptions": [
|
|
2286
|
+
"Neutral",
|
|
2287
|
+
"🚫[Deprecated]Brand"
|
|
2288
|
+
]
|
|
2289
|
+
},
|
|
2290
|
+
"Shape": {
|
|
2291
|
+
"type": "VARIANT",
|
|
2292
|
+
"variantOptions": [
|
|
2293
|
+
"Square",
|
|
2294
|
+
"Ghost"
|
|
2295
|
+
]
|
|
2296
|
+
},
|
|
2297
|
+
"Weight": {
|
|
2298
|
+
"type": "VARIANT",
|
|
2299
|
+
"variantOptions": [
|
|
2300
|
+
"Bold",
|
|
2301
|
+
"Regular"
|
|
2302
|
+
]
|
|
2303
|
+
},
|
|
2304
|
+
"Selected": {
|
|
2305
|
+
"type": "VARIANT",
|
|
2306
|
+
"variantOptions": [
|
|
2307
|
+
"True",
|
|
2308
|
+
"False",
|
|
2309
|
+
"Indeterminate"
|
|
2310
|
+
]
|
|
2311
|
+
},
|
|
2312
|
+
"State": {
|
|
2313
|
+
"type": "VARIANT",
|
|
2314
|
+
"variantOptions": [
|
|
2315
|
+
"Enabled",
|
|
2316
|
+
"Pressed",
|
|
2317
|
+
"Disabled"
|
|
2318
|
+
]
|
|
2319
|
+
}
|
|
2320
|
+
}
|
|
2321
|
+
};
|
|
2322
|
+
|
|
2323
|
+
export const templateCheckboxField = {
|
|
2324
|
+
"name": "templateCheckboxField",
|
|
2325
|
+
"key": "214dd0fc8a3c5bc1e0c90cce29936f1ec6a26c3c",
|
|
2326
|
+
"componentPropertyDefinitions": {
|
|
2327
|
+
"Show Header#40606:8": {
|
|
2328
|
+
"type": "BOOLEAN"
|
|
2329
|
+
},
|
|
2330
|
+
"Show Footer#40606:9": {
|
|
2331
|
+
"type": "BOOLEAN"
|
|
2332
|
+
},
|
|
2333
|
+
"State": {
|
|
2334
|
+
"type": "VARIANT",
|
|
2335
|
+
"variantOptions": [
|
|
2336
|
+
"Enabled",
|
|
2337
|
+
"Error",
|
|
2338
|
+
"Disabled",
|
|
2339
|
+
"Read Only"
|
|
2340
|
+
]
|
|
2341
|
+
}
|
|
2342
|
+
}
|
|
2343
|
+
};
|
|
2344
|
+
|
|
2345
|
+
export const componentCheckmark = {
|
|
2346
|
+
"name": "componentCheckmark",
|
|
2347
|
+
"key": "f38acf130c42de3fd533d70d5319c3798c42f8c1",
|
|
2348
|
+
"componentPropertyDefinitions": {
|
|
2349
|
+
"Size": {
|
|
2350
|
+
"type": "VARIANT",
|
|
2351
|
+
"variantOptions": [
|
|
2352
|
+
"Medium",
|
|
2353
|
+
"Large"
|
|
2354
|
+
]
|
|
2355
|
+
},
|
|
2356
|
+
"Tone": {
|
|
2357
|
+
"type": "VARIANT",
|
|
2358
|
+
"variantOptions": [
|
|
2359
|
+
"🚫[Deprecated]Brand",
|
|
2360
|
+
"Neutral"
|
|
2361
|
+
]
|
|
2362
|
+
},
|
|
2363
|
+
"Shape": {
|
|
2364
|
+
"type": "VARIANT",
|
|
2365
|
+
"variantOptions": [
|
|
2366
|
+
"Square",
|
|
2367
|
+
"Ghost"
|
|
2368
|
+
]
|
|
2369
|
+
},
|
|
2370
|
+
"Selected": {
|
|
2371
|
+
"type": "VARIANT",
|
|
2372
|
+
"variantOptions": [
|
|
2373
|
+
"True",
|
|
2374
|
+
"False",
|
|
2375
|
+
"Indeterminate"
|
|
2376
|
+
]
|
|
2377
|
+
},
|
|
2378
|
+
"State": {
|
|
2379
|
+
"type": "VARIANT",
|
|
2380
|
+
"variantOptions": [
|
|
2381
|
+
"Enabled",
|
|
2382
|
+
"Pressed",
|
|
2383
|
+
"Disabled"
|
|
2384
|
+
]
|
|
2385
|
+
}
|
|
2386
|
+
}
|
|
2387
|
+
};
|
|
2388
|
+
|
|
2389
|
+
export const componentChip = {
|
|
2390
|
+
"name": "componentChip",
|
|
2391
|
+
"key": "c947a926605cfd181998ddbb46554da84eebaab2",
|
|
2392
|
+
"componentPropertyDefinitions": {
|
|
2393
|
+
"Label#7185:0": {
|
|
2394
|
+
"type": "TEXT"
|
|
2395
|
+
},
|
|
2396
|
+
"Prefix Icon#8722:0": {
|
|
2397
|
+
"type": "INSTANCE_SWAP"
|
|
2398
|
+
},
|
|
2399
|
+
"Suffix Type#32538:0": {
|
|
2400
|
+
"type": "INSTANCE_SWAP"
|
|
2401
|
+
},
|
|
2402
|
+
"Has Suffix#32538:181": {
|
|
2403
|
+
"type": "BOOLEAN"
|
|
2404
|
+
},
|
|
2405
|
+
"Variant": {
|
|
2406
|
+
"type": "VARIANT",
|
|
2407
|
+
"variantOptions": [
|
|
2408
|
+
"Solid",
|
|
2409
|
+
"Outline Strong",
|
|
2410
|
+
"Outline Weak"
|
|
2411
|
+
]
|
|
2412
|
+
},
|
|
2413
|
+
"Size": {
|
|
2414
|
+
"type": "VARIANT",
|
|
2415
|
+
"variantOptions": [
|
|
2416
|
+
"Large",
|
|
2417
|
+
"Medium",
|
|
2418
|
+
"Small"
|
|
2419
|
+
]
|
|
2420
|
+
},
|
|
2421
|
+
"Selected": {
|
|
2422
|
+
"type": "VARIANT",
|
|
2423
|
+
"variantOptions": [
|
|
2424
|
+
"False",
|
|
2425
|
+
"True"
|
|
2426
|
+
]
|
|
2427
|
+
},
|
|
2428
|
+
"State": {
|
|
2429
|
+
"type": "VARIANT",
|
|
2430
|
+
"variantOptions": [
|
|
2431
|
+
"Enabled",
|
|
2432
|
+
"Pressed",
|
|
2433
|
+
"Disabled"
|
|
2434
|
+
]
|
|
2435
|
+
},
|
|
2436
|
+
"Prefix Type": {
|
|
2437
|
+
"type": "VARIANT",
|
|
2438
|
+
"variantOptions": [
|
|
2439
|
+
"None",
|
|
2440
|
+
"Icon",
|
|
2441
|
+
"Avatar",
|
|
2442
|
+
"Image"
|
|
2443
|
+
]
|
|
2444
|
+
}
|
|
2445
|
+
}
|
|
2446
|
+
};
|
|
2447
|
+
|
|
2448
|
+
export const templateChipGroup = {
|
|
2449
|
+
"name": "templateChipGroup",
|
|
2450
|
+
"key": "cb2a0fa6e04cf2099baeced91ee74f9d93d36069",
|
|
2451
|
+
"componentPropertyDefinitions": {
|
|
2452
|
+
"Variant": {
|
|
2453
|
+
"type": "VARIANT",
|
|
2454
|
+
"variantOptions": [
|
|
2455
|
+
"Solid",
|
|
2456
|
+
"Outline Strong",
|
|
2457
|
+
"Outline Weak"
|
|
2458
|
+
]
|
|
2459
|
+
},
|
|
2460
|
+
"Size": {
|
|
2461
|
+
"type": "VARIANT",
|
|
2462
|
+
"variantOptions": [
|
|
2463
|
+
"Large",
|
|
2464
|
+
"Medium",
|
|
2465
|
+
"Small"
|
|
2466
|
+
]
|
|
2467
|
+
},
|
|
2468
|
+
"Layout": {
|
|
2469
|
+
"type": "VARIANT",
|
|
2470
|
+
"variantOptions": [
|
|
2471
|
+
"Scrollable",
|
|
2472
|
+
"Overflow"
|
|
2473
|
+
]
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
};
|
|
2477
|
+
|
|
2478
|
+
export const componentChlid = {
|
|
2479
|
+
"name": "componentChlid",
|
|
2480
|
+
"key": "ef79a21a39ceb4ce24b2fb93c9b430c1980a3e71",
|
|
2481
|
+
"componentPropertyDefinitions": {
|
|
2482
|
+
"Type": {
|
|
2483
|
+
"type": "VARIANT",
|
|
2484
|
+
"variantOptions": [
|
|
2485
|
+
"Child",
|
|
2486
|
+
"Text",
|
|
2487
|
+
"Slot"
|
|
2488
|
+
]
|
|
2489
|
+
}
|
|
2490
|
+
}
|
|
2491
|
+
};
|
|
2492
|
+
|
|
2493
|
+
export const componentContextualFloatingButton = {
|
|
2494
|
+
"name": "componentContextualFloatingButton",
|
|
2495
|
+
"key": "37c74e5bfc39356f6675deacb0f5ae6af44511dc",
|
|
2496
|
+
"componentPropertyDefinitions": {
|
|
2497
|
+
"Icon#28796:0": {
|
|
2498
|
+
"type": "INSTANCE_SWAP"
|
|
2499
|
+
},
|
|
2500
|
+
"Label#28936:0": {
|
|
2501
|
+
"type": "TEXT"
|
|
2502
|
+
},
|
|
2503
|
+
"Layout": {
|
|
2504
|
+
"type": "VARIANT",
|
|
2505
|
+
"variantOptions": [
|
|
2506
|
+
"Icon First",
|
|
2507
|
+
"Icon Only"
|
|
2508
|
+
]
|
|
2509
|
+
},
|
|
2510
|
+
"Variant": {
|
|
2511
|
+
"type": "VARIANT",
|
|
2512
|
+
"variantOptions": [
|
|
2513
|
+
"Solid",
|
|
2514
|
+
"Layer"
|
|
2515
|
+
]
|
|
2516
|
+
},
|
|
2517
|
+
"State": {
|
|
2518
|
+
"type": "VARIANT",
|
|
2519
|
+
"variantOptions": [
|
|
2520
|
+
"Enabled",
|
|
2521
|
+
"Pressed",
|
|
2522
|
+
"Loading",
|
|
2523
|
+
"Disabled"
|
|
2524
|
+
]
|
|
2525
|
+
}
|
|
2526
|
+
}
|
|
2527
|
+
};
|
|
2528
|
+
|
|
2529
|
+
export const templateDisclaimer = {
|
|
2530
|
+
"name": "templateDisclaimer",
|
|
2531
|
+
"key": "c56cb5f18959ad92f6638b588e8d248335dcc03b",
|
|
2532
|
+
"componentPropertyDefinitions": {
|
|
2533
|
+
"Show Title#54910:2": {
|
|
2534
|
+
"type": "BOOLEAN"
|
|
2535
|
+
},
|
|
2536
|
+
"Size": {
|
|
2537
|
+
"type": "VARIANT",
|
|
2538
|
+
"variantOptions": [
|
|
2539
|
+
"t4(14pt)",
|
|
2540
|
+
"t5(16pt)"
|
|
2541
|
+
]
|
|
2542
|
+
}
|
|
2543
|
+
}
|
|
2544
|
+
};
|
|
2545
|
+
|
|
2546
|
+
export const componentDivider = {
|
|
2547
|
+
"name": "componentDivider",
|
|
2548
|
+
"key": "b559adf0f7e5eb21a7812bba5a15ece6abc73580",
|
|
2549
|
+
"componentPropertyDefinitions": {
|
|
2550
|
+
"Inset#36435:0": {
|
|
2551
|
+
"type": "BOOLEAN"
|
|
2552
|
+
},
|
|
2553
|
+
"Tone": {
|
|
2554
|
+
"type": "VARIANT",
|
|
2555
|
+
"variantOptions": [
|
|
2556
|
+
"Neutral Muted",
|
|
2557
|
+
"Neutral Subtle"
|
|
2558
|
+
]
|
|
2559
|
+
},
|
|
2560
|
+
"Orientation": {
|
|
2561
|
+
"type": "VARIANT",
|
|
2562
|
+
"variantOptions": [
|
|
2563
|
+
"Vertical",
|
|
2564
|
+
"Horizontal"
|
|
2565
|
+
]
|
|
2566
|
+
}
|
|
2567
|
+
}
|
|
2568
|
+
};
|
|
2569
|
+
|
|
2570
|
+
export const componentEditorToolbarFigmaOnly = {
|
|
2571
|
+
"name": "componentEditorToolbarFigmaOnly",
|
|
2572
|
+
"key": "53581fb21ed028e76cab5596a9ce8d25ac4ebc64",
|
|
2573
|
+
"componentPropertyDefinitions": {
|
|
2574
|
+
"Layout": {
|
|
2575
|
+
"type": "VARIANT",
|
|
2576
|
+
"variantOptions": [
|
|
2577
|
+
"Icon with Text",
|
|
2578
|
+
"Icon Only",
|
|
2579
|
+
"Text Editor"
|
|
2580
|
+
]
|
|
2581
|
+
},
|
|
2582
|
+
"Show Keyboard": {
|
|
2583
|
+
"type": "VARIANT",
|
|
2584
|
+
"variantOptions": [
|
|
2585
|
+
"True",
|
|
2586
|
+
"False"
|
|
2587
|
+
]
|
|
2588
|
+
}
|
|
2589
|
+
}
|
|
2590
|
+
};
|
|
2591
|
+
|
|
2592
|
+
export const templateFieldButton = {
|
|
2593
|
+
"name": "templateFieldButton",
|
|
2594
|
+
"key": "e706abd7be0d1a2ea0aeeb656b47d3b03aa5cda8",
|
|
2595
|
+
"componentPropertyDefinitions": {
|
|
2596
|
+
"Show Header#40606:8": {
|
|
2597
|
+
"type": "BOOLEAN"
|
|
2598
|
+
},
|
|
2599
|
+
"Show Footer#40606:9": {
|
|
2600
|
+
"type": "BOOLEAN"
|
|
2601
|
+
},
|
|
2602
|
+
"State": {
|
|
2603
|
+
"type": "VARIANT",
|
|
2604
|
+
"variantOptions": [
|
|
2605
|
+
"Enabled",
|
|
2606
|
+
"Error",
|
|
2607
|
+
"Disabled",
|
|
2608
|
+
"Read Only"
|
|
2609
|
+
]
|
|
2610
|
+
},
|
|
2611
|
+
"Has Value": {
|
|
2612
|
+
"type": "VARIANT",
|
|
2613
|
+
"variantOptions": [
|
|
2614
|
+
"False",
|
|
2615
|
+
"True"
|
|
2616
|
+
]
|
|
2617
|
+
}
|
|
2618
|
+
}
|
|
2619
|
+
};
|
|
2620
|
+
|
|
2621
|
+
export const componentFloatingActionButton = {
|
|
2622
|
+
"name": "componentFloatingActionButton",
|
|
2623
|
+
"key": "83c57914bf0fde4192e6bb11dc5231204df12ba2",
|
|
2624
|
+
"componentPropertyDefinitions": {
|
|
2625
|
+
"Type": {
|
|
2626
|
+
"type": "VARIANT",
|
|
2627
|
+
"variantOptions": [
|
|
2628
|
+
"Button",
|
|
2629
|
+
"Menu"
|
|
2630
|
+
]
|
|
2631
|
+
}
|
|
2632
|
+
}
|
|
2633
|
+
};
|
|
2634
|
+
|
|
2635
|
+
export const componentHelpBubble = {
|
|
2636
|
+
"name": "componentHelpBubble",
|
|
2637
|
+
"key": "eb1f8c5cb33de231bf3352d44a5abf05fe19a9a2",
|
|
2638
|
+
"componentPropertyDefinitions": {
|
|
2639
|
+
"Show Close Button#40538:0": {
|
|
2640
|
+
"type": "BOOLEAN"
|
|
2641
|
+
},
|
|
2642
|
+
"Show Description#62499:0": {
|
|
2643
|
+
"type": "BOOLEAN"
|
|
2644
|
+
},
|
|
2645
|
+
"Title#62535:0": {
|
|
2646
|
+
"type": "TEXT"
|
|
2647
|
+
},
|
|
2648
|
+
"Description#62535:98": {
|
|
2649
|
+
"type": "TEXT"
|
|
2650
|
+
},
|
|
2651
|
+
"Placement": {
|
|
2652
|
+
"type": "VARIANT",
|
|
2653
|
+
"variantOptions": [
|
|
2654
|
+
"Right-Top",
|
|
2655
|
+
"Right-Center",
|
|
2656
|
+
"Right-Bottom",
|
|
2657
|
+
"Left-Top",
|
|
2658
|
+
"Left-Center",
|
|
2659
|
+
"Left-Bottom",
|
|
2660
|
+
"Bottom-Left",
|
|
2661
|
+
"Bottom-Center",
|
|
2662
|
+
"Bottom-Right",
|
|
2663
|
+
"Top-Left",
|
|
2664
|
+
"Top-Center",
|
|
2665
|
+
"Top-Right"
|
|
2666
|
+
]
|
|
2667
|
+
}
|
|
2668
|
+
}
|
|
2669
|
+
};
|
|
2670
|
+
|
|
2671
|
+
export const componentImageFrame = {
|
|
2672
|
+
"name": "componentImageFrame",
|
|
2673
|
+
"key": "130c5e29ba25736fa407202272752acb87ffe99a",
|
|
2674
|
+
"componentPropertyDefinitions": {
|
|
2675
|
+
"Has Image Contents#29729:0": {
|
|
2676
|
+
"type": "BOOLEAN"
|
|
2677
|
+
},
|
|
2678
|
+
"Left Top#58686:0": {
|
|
2679
|
+
"type": "INSTANCE_SWAP"
|
|
2680
|
+
},
|
|
2681
|
+
"Show Overlay#58686:33": {
|
|
2682
|
+
"type": "BOOLEAN"
|
|
2683
|
+
},
|
|
2684
|
+
"Right Top#58686:66": {
|
|
2685
|
+
"type": "INSTANCE_SWAP"
|
|
2686
|
+
},
|
|
2687
|
+
"Left Bottom#58686:99": {
|
|
2688
|
+
"type": "INSTANCE_SWAP"
|
|
2689
|
+
},
|
|
2690
|
+
"Right Bottom#58686:132": {
|
|
2691
|
+
"type": "INSTANCE_SWAP"
|
|
2692
|
+
},
|
|
2693
|
+
"ㄴ Left Top#58686:165": {
|
|
2694
|
+
"type": "BOOLEAN"
|
|
2695
|
+
},
|
|
2696
|
+
"ㄴ Right Top#58686:198": {
|
|
2697
|
+
"type": "BOOLEAN"
|
|
2698
|
+
},
|
|
2699
|
+
"ㄴ Left Bottom#58686:231": {
|
|
2700
|
+
"type": "BOOLEAN"
|
|
2701
|
+
},
|
|
2702
|
+
"ㄴ Right Bottom#58686:264": {
|
|
2703
|
+
"type": "BOOLEAN"
|
|
2704
|
+
},
|
|
2705
|
+
"Ratio": {
|
|
2706
|
+
"type": "VARIANT",
|
|
2707
|
+
"variantOptions": [
|
|
2708
|
+
"1:1",
|
|
2709
|
+
"2:1",
|
|
2710
|
+
"16:9",
|
|
2711
|
+
"4:3",
|
|
2712
|
+
"6:7",
|
|
2713
|
+
"4:5",
|
|
2714
|
+
"2:3"
|
|
2715
|
+
]
|
|
2716
|
+
},
|
|
2717
|
+
"Size": {
|
|
2718
|
+
"type": "VARIANT",
|
|
2719
|
+
"variantOptions": [
|
|
2720
|
+
"20",
|
|
2721
|
+
"24",
|
|
2722
|
+
"36",
|
|
2723
|
+
"42",
|
|
2724
|
+
"48",
|
|
2725
|
+
"64",
|
|
2726
|
+
"80",
|
|
2727
|
+
"96",
|
|
2728
|
+
"120",
|
|
2729
|
+
"Free"
|
|
2730
|
+
]
|
|
2731
|
+
},
|
|
2732
|
+
"Rounded": {
|
|
2733
|
+
"type": "VARIANT",
|
|
2734
|
+
"variantOptions": [
|
|
2735
|
+
"True",
|
|
2736
|
+
"False"
|
|
2737
|
+
]
|
|
2738
|
+
}
|
|
2739
|
+
}
|
|
2740
|
+
};
|
|
2741
|
+
|
|
2742
|
+
export const componentIOsLiveAcitivityScreenFigmaOnly = {
|
|
2743
|
+
"name": "componentIOsLiveAcitivityScreenFigmaOnly",
|
|
2744
|
+
"key": "3d7ff6cf68e769096237bcc0122be08caf8b6ce4",
|
|
2745
|
+
"componentPropertyDefinitions": {
|
|
2746
|
+
"Type": {
|
|
2747
|
+
"type": "VARIANT",
|
|
2748
|
+
"variantOptions": [
|
|
2749
|
+
"Notification",
|
|
2750
|
+
"Expanded",
|
|
2751
|
+
"Compact"
|
|
2752
|
+
]
|
|
2753
|
+
}
|
|
2754
|
+
}
|
|
2755
|
+
};
|
|
2756
|
+
|
|
2757
|
+
export const componentKakaoTalkBubbleFigmaOnly = {
|
|
2758
|
+
"name": "componentKakaoTalkBubbleFigmaOnly",
|
|
2759
|
+
"key": "e125ecfbedce9b1c2835dad373d9e97ed14a76f5",
|
|
2760
|
+
"componentPropertyDefinitions": {
|
|
2761
|
+
"hasTail#753:0": {
|
|
2762
|
+
"type": "BOOLEAN"
|
|
2763
|
+
},
|
|
2764
|
+
"hasProfile#756:0": {
|
|
2765
|
+
"type": "BOOLEAN"
|
|
2766
|
+
},
|
|
2767
|
+
"hasTimeStamp#3380:1": {
|
|
2768
|
+
"type": "BOOLEAN"
|
|
2769
|
+
},
|
|
2770
|
+
"type": {
|
|
2771
|
+
"type": "VARIANT",
|
|
2772
|
+
"variantOptions": [
|
|
2773
|
+
"textMessage",
|
|
2774
|
+
"URLShare"
|
|
2775
|
+
]
|
|
2776
|
+
},
|
|
2777
|
+
"myBubble": {
|
|
2778
|
+
"type": "VARIANT",
|
|
2779
|
+
"variantOptions": [
|
|
2780
|
+
"false",
|
|
2781
|
+
"true"
|
|
2782
|
+
]
|
|
2783
|
+
}
|
|
2784
|
+
}
|
|
2785
|
+
};
|
|
2786
|
+
|
|
2787
|
+
export const componentListHeader = {
|
|
2788
|
+
"name": "componentListHeader",
|
|
2789
|
+
"key": "88a425714cf186e362b9c420fabf6e39d7bd5155",
|
|
2790
|
+
"componentPropertyDefinitions": {
|
|
2791
|
+
"Title#28588:0": {
|
|
2792
|
+
"type": "TEXT"
|
|
2793
|
+
},
|
|
2794
|
+
"Suffix": {
|
|
2795
|
+
"type": "VARIANT",
|
|
2796
|
+
"variantOptions": [
|
|
2797
|
+
"None",
|
|
2798
|
+
"Custom",
|
|
2799
|
+
"Button"
|
|
2800
|
+
]
|
|
2801
|
+
},
|
|
2802
|
+
"Variant": {
|
|
2803
|
+
"type": "VARIANT",
|
|
2804
|
+
"variantOptions": [
|
|
2805
|
+
"Medium Weak",
|
|
2806
|
+
"Bold Solid"
|
|
2807
|
+
]
|
|
2808
|
+
}
|
|
2809
|
+
}
|
|
2810
|
+
};
|
|
2811
|
+
|
|
2812
|
+
export const componentListItem = {
|
|
2813
|
+
"name": "componentListItem",
|
|
2814
|
+
"key": "1d699a87b94808ef1b66f6538440300ec4a05db2",
|
|
2815
|
+
"componentPropertyDefinitions": {
|
|
2816
|
+
"Divider#28441:0": {
|
|
2817
|
+
"type": "BOOLEAN"
|
|
2818
|
+
},
|
|
2819
|
+
"Suffix Type#28441:42": {
|
|
2820
|
+
"type": "INSTANCE_SWAP"
|
|
2821
|
+
},
|
|
2822
|
+
"Title#28452:21": {
|
|
2823
|
+
"type": "TEXT"
|
|
2824
|
+
},
|
|
2825
|
+
"Has Suffix#28452:64": {
|
|
2826
|
+
"type": "BOOLEAN"
|
|
2827
|
+
},
|
|
2828
|
+
"Has Prefix#28452:85": {
|
|
2829
|
+
"type": "BOOLEAN"
|
|
2830
|
+
},
|
|
2831
|
+
"Prefix Type#28452:106": {
|
|
2832
|
+
"type": "INSTANCE_SWAP"
|
|
2833
|
+
},
|
|
2834
|
+
"Has Detail#28469:1": {
|
|
2835
|
+
"type": "BOOLEAN"
|
|
2836
|
+
},
|
|
2837
|
+
"Detail Type#28469:11": {
|
|
2838
|
+
"type": "INSTANCE_SWAP"
|
|
2839
|
+
},
|
|
2840
|
+
"Title #28487:0": {
|
|
2841
|
+
"type": "TEXT"
|
|
2842
|
+
},
|
|
2843
|
+
"Detail Type #28487:11": {
|
|
2844
|
+
"type": "INSTANCE_SWAP"
|
|
2845
|
+
},
|
|
2846
|
+
"State": {
|
|
2847
|
+
"type": "VARIANT",
|
|
2848
|
+
"variantOptions": [
|
|
2849
|
+
"Enabled",
|
|
2850
|
+
"Pressed",
|
|
2851
|
+
"Disabled"
|
|
2852
|
+
]
|
|
2853
|
+
},
|
|
2854
|
+
"Variants": {
|
|
2855
|
+
"type": "VARIANT",
|
|
2856
|
+
"variantOptions": [
|
|
2857
|
+
"Single Line",
|
|
2858
|
+
"Multi Line"
|
|
2859
|
+
]
|
|
2860
|
+
},
|
|
2861
|
+
"Highlighted": {
|
|
2862
|
+
"type": "VARIANT",
|
|
2863
|
+
"variantOptions": [
|
|
2864
|
+
"True",
|
|
2865
|
+
"False"
|
|
2866
|
+
]
|
|
2867
|
+
}
|
|
2868
|
+
}
|
|
2869
|
+
};
|
|
2870
|
+
|
|
2871
|
+
export const componentMannerTemp = {
|
|
2872
|
+
"name": "componentMannerTemp",
|
|
2873
|
+
"key": "b1cce2a31335bdb62afdad5efd974650b60f71ac",
|
|
2874
|
+
"componentPropertyDefinitions": {
|
|
2875
|
+
"Level": {
|
|
2876
|
+
"type": "VARIANT",
|
|
2877
|
+
"variantOptions": [
|
|
2878
|
+
"L1",
|
|
2879
|
+
"L2",
|
|
2880
|
+
"L3",
|
|
2881
|
+
"L4",
|
|
2882
|
+
"L5",
|
|
2883
|
+
"L6",
|
|
2884
|
+
"L7",
|
|
2885
|
+
"L8",
|
|
2886
|
+
"L9",
|
|
2887
|
+
"L10"
|
|
2888
|
+
]
|
|
2889
|
+
}
|
|
2890
|
+
}
|
|
2891
|
+
};
|
|
2892
|
+
|
|
2893
|
+
export const componentMannerTempBadge = {
|
|
2894
|
+
"name": "componentMannerTempBadge",
|
|
2895
|
+
"key": "35bf7adf8b0a67b2222f54116d474f0e02cf21a5",
|
|
2896
|
+
"componentPropertyDefinitions": {
|
|
2897
|
+
"Level": {
|
|
2898
|
+
"type": "VARIANT",
|
|
2899
|
+
"variantOptions": [
|
|
2900
|
+
"L1",
|
|
2901
|
+
"L2",
|
|
2902
|
+
"L3",
|
|
2903
|
+
"L4",
|
|
2904
|
+
"L5",
|
|
2905
|
+
"L6",
|
|
2906
|
+
"L7",
|
|
2907
|
+
"L8",
|
|
2908
|
+
"L9",
|
|
2909
|
+
"L10"
|
|
2910
|
+
]
|
|
2911
|
+
}
|
|
2912
|
+
}
|
|
2913
|
+
};
|
|
2914
|
+
|
|
2915
|
+
export const componentMenuSheet = {
|
|
2916
|
+
"name": "componentMenuSheet",
|
|
2917
|
+
"key": "0e0597f2ea3f9dde6c17bf0e4d8eebe3a95e3942",
|
|
2918
|
+
"componentPropertyDefinitions": {
|
|
2919
|
+
"Title Text#14599:0": {
|
|
2920
|
+
"type": "TEXT"
|
|
2921
|
+
},
|
|
2922
|
+
"Show Header#17043:12": {
|
|
2923
|
+
"type": "BOOLEAN"
|
|
2924
|
+
},
|
|
2925
|
+
"Description Text#21827:0": {
|
|
2926
|
+
"type": "TEXT"
|
|
2927
|
+
},
|
|
2928
|
+
"Show Safe Area#25531:15": {
|
|
2929
|
+
"type": "BOOLEAN"
|
|
2930
|
+
},
|
|
2931
|
+
"Show Header Description#32984:0": {
|
|
2932
|
+
"type": "BOOLEAN"
|
|
2933
|
+
},
|
|
2934
|
+
"Menu Group Count": {
|
|
2935
|
+
"type": "VARIANT",
|
|
2936
|
+
"variantOptions": [
|
|
2937
|
+
"1",
|
|
2938
|
+
"2",
|
|
2939
|
+
"3"
|
|
2940
|
+
]
|
|
2941
|
+
},
|
|
2942
|
+
"Layout": {
|
|
2943
|
+
"type": "VARIANT",
|
|
2944
|
+
"variantOptions": [
|
|
2945
|
+
"Text Only",
|
|
2946
|
+
"Text with Icon"
|
|
2947
|
+
]
|
|
2948
|
+
}
|
|
2949
|
+
}
|
|
2950
|
+
};
|
|
2951
|
+
|
|
2952
|
+
export const componentOsBottomIndicatorFigmaOnly = {
|
|
2953
|
+
"name": "componentOsBottomIndicatorFigmaOnly",
|
|
2954
|
+
"key": "291fcfece0247fd59a6ef14312347267523a5152",
|
|
2955
|
+
"componentPropertyDefinitions": {
|
|
2956
|
+
"OS": {
|
|
2957
|
+
"type": "VARIANT",
|
|
2958
|
+
"variantOptions": [
|
|
2959
|
+
"Android",
|
|
2960
|
+
"iOS"
|
|
2961
|
+
]
|
|
2962
|
+
}
|
|
2963
|
+
}
|
|
2964
|
+
};
|
|
2965
|
+
|
|
2966
|
+
export const componentOsKeyboardFigmaOnly = {
|
|
2967
|
+
"name": "componentOsKeyboardFigmaOnly",
|
|
2968
|
+
"key": "12d041e14b447f7d02ef9a52fd52a586177fda1a",
|
|
2969
|
+
"componentPropertyDefinitions": {
|
|
2970
|
+
"Keyword#31538:0": {
|
|
2971
|
+
"type": "BOOLEAN"
|
|
2972
|
+
},
|
|
2973
|
+
"OS": {
|
|
2974
|
+
"type": "VARIANT",
|
|
2975
|
+
"variantOptions": [
|
|
2976
|
+
"Android",
|
|
2977
|
+
"iOS"
|
|
2978
|
+
]
|
|
2979
|
+
},
|
|
2980
|
+
"Type": {
|
|
2981
|
+
"type": "VARIANT",
|
|
2982
|
+
"variantOptions": [
|
|
2983
|
+
"Korean",
|
|
2984
|
+
"English",
|
|
2985
|
+
"Numeric",
|
|
2986
|
+
"Japanese"
|
|
2987
|
+
]
|
|
2988
|
+
}
|
|
2989
|
+
}
|
|
2990
|
+
};
|
|
2991
|
+
|
|
2992
|
+
export const componentOsPushScreenFigmaOnly = {
|
|
2993
|
+
"name": "componentOsPushScreenFigmaOnly",
|
|
2994
|
+
"key": "67fd400f423a2bb1eff6e1c9affc07af579e1485",
|
|
2995
|
+
"componentPropertyDefinitions": {
|
|
2996
|
+
"OS": {
|
|
2997
|
+
"type": "VARIANT",
|
|
2998
|
+
"variantOptions": [
|
|
2999
|
+
"Android",
|
|
3000
|
+
"iOS"
|
|
3001
|
+
]
|
|
3002
|
+
}
|
|
3003
|
+
}
|
|
3004
|
+
};
|
|
3005
|
+
|
|
3006
|
+
export const componentOsStatusBarFigmaOnly = {
|
|
3007
|
+
"name": "componentOsStatusBarFigmaOnly",
|
|
3008
|
+
"key": "86aa16b7ffc310d54f55aef02428455fe4b712a2",
|
|
3009
|
+
"componentPropertyDefinitions": {
|
|
3010
|
+
"OS": {
|
|
3011
|
+
"type": "VARIANT",
|
|
3012
|
+
"variantOptions": [
|
|
3013
|
+
"iOS",
|
|
3014
|
+
"Android"
|
|
3015
|
+
]
|
|
3016
|
+
}
|
|
3017
|
+
}
|
|
3018
|
+
};
|
|
3019
|
+
|
|
3020
|
+
export const componentPageBanner = {
|
|
3021
|
+
"name": "componentPageBanner",
|
|
3022
|
+
"key": "3a5a87cb13a30404d4b2478391ef3371c1895553",
|
|
3023
|
+
"componentPropertyDefinitions": {
|
|
3024
|
+
"Show Prefix Icon#11840:27": {
|
|
3025
|
+
"type": "BOOLEAN"
|
|
3026
|
+
},
|
|
3027
|
+
"Prefix Icon#35433:45": {
|
|
3028
|
+
"type": "INSTANCE_SWAP"
|
|
3029
|
+
},
|
|
3030
|
+
"Pressed#36736:0": {
|
|
3031
|
+
"type": "BOOLEAN"
|
|
3032
|
+
},
|
|
3033
|
+
"Interaction": {
|
|
3034
|
+
"type": "VARIANT",
|
|
3035
|
+
"variantOptions": [
|
|
3036
|
+
"Display",
|
|
3037
|
+
"Display (With Action)",
|
|
3038
|
+
"Actionable",
|
|
3039
|
+
"Dismissible",
|
|
3040
|
+
"Actionable (Custom)"
|
|
3041
|
+
]
|
|
3042
|
+
},
|
|
3043
|
+
"Tone": {
|
|
3044
|
+
"type": "VARIANT",
|
|
3045
|
+
"variantOptions": [
|
|
3046
|
+
"Neutral",
|
|
3047
|
+
"Informative",
|
|
3048
|
+
"Positive",
|
|
3049
|
+
"Warning",
|
|
3050
|
+
"Critical",
|
|
3051
|
+
"Magic"
|
|
3052
|
+
]
|
|
3053
|
+
},
|
|
3054
|
+
"Variant": {
|
|
3055
|
+
"type": "VARIANT",
|
|
3056
|
+
"variantOptions": [
|
|
3057
|
+
"Weak",
|
|
3058
|
+
"Solid"
|
|
3059
|
+
]
|
|
3060
|
+
},
|
|
3061
|
+
"Show Title": {
|
|
3062
|
+
"type": "VARIANT",
|
|
3063
|
+
"variantOptions": [
|
|
3064
|
+
"False",
|
|
3065
|
+
"True"
|
|
3066
|
+
]
|
|
3067
|
+
}
|
|
3068
|
+
}
|
|
3069
|
+
};
|
|
3070
|
+
|
|
3071
|
+
export const componentProgressCircle = {
|
|
3072
|
+
"name": "componentProgressCircle",
|
|
3073
|
+
"key": "28441ca27a79547f29d72ea9e7f18beeb41b83b5",
|
|
3074
|
+
"componentPropertyDefinitions": {
|
|
3075
|
+
"Size": {
|
|
3076
|
+
"type": "VARIANT",
|
|
3077
|
+
"variantOptions": [
|
|
3078
|
+
"24",
|
|
3079
|
+
"40"
|
|
3080
|
+
]
|
|
3081
|
+
},
|
|
3082
|
+
"Tone": {
|
|
3083
|
+
"type": "VARIANT",
|
|
3084
|
+
"variantOptions": [
|
|
3085
|
+
"Neutral",
|
|
3086
|
+
"Brand",
|
|
3087
|
+
"Static White",
|
|
3088
|
+
"Custom(inherit)"
|
|
3089
|
+
]
|
|
3090
|
+
},
|
|
3091
|
+
"Value": {
|
|
3092
|
+
"type": "VARIANT",
|
|
3093
|
+
"variantOptions": [
|
|
3094
|
+
"Indeterminate",
|
|
3095
|
+
"0%",
|
|
3096
|
+
"25%",
|
|
3097
|
+
"75%",
|
|
3098
|
+
"100%"
|
|
3099
|
+
]
|
|
3100
|
+
}
|
|
3101
|
+
}
|
|
3102
|
+
};
|
|
3103
|
+
|
|
3104
|
+
export const componentRadio = {
|
|
3105
|
+
"name": "componentRadio",
|
|
3106
|
+
"key": "51d7c6ecc2884252cdd982269e7cfafd1f4b746b",
|
|
3107
|
+
"componentPropertyDefinitions": {
|
|
3108
|
+
"Label#49990:171": {
|
|
3109
|
+
"type": "TEXT"
|
|
3110
|
+
},
|
|
3111
|
+
"Size": {
|
|
3112
|
+
"type": "VARIANT",
|
|
3113
|
+
"variantOptions": [
|
|
3114
|
+
"Medium",
|
|
3115
|
+
"Large"
|
|
3116
|
+
]
|
|
3117
|
+
},
|
|
3118
|
+
"Tone": {
|
|
3119
|
+
"type": "VARIANT",
|
|
3120
|
+
"variantOptions": [
|
|
3121
|
+
"Neutral",
|
|
3122
|
+
"🚫[Deprecated]Brand"
|
|
3123
|
+
]
|
|
3124
|
+
},
|
|
3125
|
+
"Weight": {
|
|
3126
|
+
"type": "VARIANT",
|
|
3127
|
+
"variantOptions": [
|
|
3128
|
+
"Regular",
|
|
3129
|
+
"Bold"
|
|
3130
|
+
]
|
|
3131
|
+
},
|
|
3132
|
+
"Selected": {
|
|
3133
|
+
"type": "VARIANT",
|
|
3134
|
+
"variantOptions": [
|
|
3135
|
+
"True",
|
|
3136
|
+
"False"
|
|
3137
|
+
]
|
|
3138
|
+
},
|
|
3139
|
+
"State": {
|
|
3140
|
+
"type": "VARIANT",
|
|
3141
|
+
"variantOptions": [
|
|
3142
|
+
"Enabled",
|
|
3143
|
+
"Pressed",
|
|
3144
|
+
"Disabled"
|
|
3145
|
+
]
|
|
3146
|
+
}
|
|
3147
|
+
}
|
|
3148
|
+
};
|
|
3149
|
+
|
|
3150
|
+
export const templateRadioField = {
|
|
3151
|
+
"name": "templateRadioField",
|
|
3152
|
+
"key": "a3f159c223e3a0888fc48098c1580793297f82e9",
|
|
3153
|
+
"componentPropertyDefinitions": {
|
|
3154
|
+
"Show Header#40606:8": {
|
|
3155
|
+
"type": "BOOLEAN"
|
|
3156
|
+
},
|
|
3157
|
+
"Show Footer#40606:9": {
|
|
3158
|
+
"type": "BOOLEAN"
|
|
3159
|
+
},
|
|
3160
|
+
"State": {
|
|
3161
|
+
"type": "VARIANT",
|
|
3162
|
+
"variantOptions": [
|
|
3163
|
+
"Enabled",
|
|
3164
|
+
"Error",
|
|
3165
|
+
"Disabled",
|
|
3166
|
+
"Read Only"
|
|
3167
|
+
]
|
|
3168
|
+
}
|
|
3169
|
+
}
|
|
3170
|
+
};
|
|
3171
|
+
|
|
3172
|
+
export const componentRadiomark = {
|
|
3173
|
+
"name": "componentRadiomark",
|
|
3174
|
+
"key": "26d35aab30804772d07d30be8e1dda07319ead83",
|
|
3175
|
+
"componentPropertyDefinitions": {
|
|
3176
|
+
"Size": {
|
|
3177
|
+
"type": "VARIANT",
|
|
3178
|
+
"variantOptions": [
|
|
3179
|
+
"Medium",
|
|
3180
|
+
"Large"
|
|
3181
|
+
]
|
|
3182
|
+
},
|
|
3183
|
+
"Tone": {
|
|
3184
|
+
"type": "VARIANT",
|
|
3185
|
+
"variantOptions": [
|
|
3186
|
+
"Neutral",
|
|
3187
|
+
"🚫[Deprecated]Brand"
|
|
3188
|
+
]
|
|
3189
|
+
},
|
|
3190
|
+
"Selected": {
|
|
3191
|
+
"type": "VARIANT",
|
|
3192
|
+
"variantOptions": [
|
|
3193
|
+
"True",
|
|
3194
|
+
"False"
|
|
3195
|
+
]
|
|
3196
|
+
},
|
|
3197
|
+
"State": {
|
|
3198
|
+
"type": "VARIANT",
|
|
3199
|
+
"variantOptions": [
|
|
3200
|
+
"Enabled",
|
|
3201
|
+
"Pressed",
|
|
3202
|
+
"Disabled"
|
|
3203
|
+
]
|
|
3204
|
+
}
|
|
3205
|
+
}
|
|
3206
|
+
};
|
|
3207
|
+
|
|
3208
|
+
export const componentReactionButton = {
|
|
3209
|
+
"name": "componentReactionButton",
|
|
3210
|
+
"key": "d65d1e3c4e5ffb902a6c6a76f9455c4ebd8e7233",
|
|
3211
|
+
"componentPropertyDefinitions": {
|
|
3212
|
+
"Label#6397:0": {
|
|
3213
|
+
"type": "TEXT"
|
|
3214
|
+
},
|
|
3215
|
+
"Show Count#6397:33": {
|
|
3216
|
+
"type": "BOOLEAN"
|
|
3217
|
+
},
|
|
3218
|
+
"Icon#12379:0": {
|
|
3219
|
+
"type": "INSTANCE_SWAP"
|
|
3220
|
+
},
|
|
3221
|
+
"Count#15816:0": {
|
|
3222
|
+
"type": "TEXT"
|
|
3223
|
+
},
|
|
3224
|
+
"Size": {
|
|
3225
|
+
"type": "VARIANT",
|
|
3226
|
+
"variantOptions": [
|
|
3227
|
+
"XSmall",
|
|
3228
|
+
"Small"
|
|
3229
|
+
]
|
|
3230
|
+
},
|
|
3231
|
+
"Selected": {
|
|
3232
|
+
"type": "VARIANT",
|
|
3233
|
+
"variantOptions": [
|
|
3234
|
+
"True",
|
|
3235
|
+
"False"
|
|
3236
|
+
]
|
|
3237
|
+
},
|
|
3238
|
+
"State": {
|
|
3239
|
+
"type": "VARIANT",
|
|
3240
|
+
"variantOptions": [
|
|
3241
|
+
"Enabled",
|
|
3242
|
+
"Pressed",
|
|
3243
|
+
"Loading",
|
|
3244
|
+
"Disabled"
|
|
3245
|
+
]
|
|
3246
|
+
}
|
|
3247
|
+
}
|
|
3248
|
+
};
|
|
3249
|
+
|
|
3250
|
+
export const componentResizableChild = {
|
|
3251
|
+
"name": "componentResizableChild",
|
|
3252
|
+
"key": "66d02ba3f413493fa356faeee9c78441867a9743",
|
|
3253
|
+
"componentPropertyDefinitions": {
|
|
3254
|
+
"Size": {
|
|
3255
|
+
"type": "VARIANT",
|
|
3256
|
+
"variantOptions": [
|
|
3257
|
+
"12",
|
|
3258
|
+
"14",
|
|
3259
|
+
"16",
|
|
3260
|
+
"20",
|
|
3261
|
+
"24",
|
|
3262
|
+
"28",
|
|
3263
|
+
"32"
|
|
3264
|
+
]
|
|
3265
|
+
}
|
|
3266
|
+
}
|
|
3267
|
+
};
|
|
3268
|
+
|
|
3269
|
+
export const componentResizableIcon = {
|
|
3270
|
+
"name": "componentResizableIcon",
|
|
3271
|
+
"key": "16ed6fd2308e3dddcc4ecb60562b5b79d4091491",
|
|
3272
|
+
"componentPropertyDefinitions": {
|
|
3273
|
+
"Size": {
|
|
3274
|
+
"type": "VARIANT",
|
|
3275
|
+
"variantOptions": [
|
|
3276
|
+
"12",
|
|
3277
|
+
"14",
|
|
3278
|
+
"16",
|
|
3279
|
+
"20",
|
|
3280
|
+
"24",
|
|
3281
|
+
"28",
|
|
3282
|
+
"32"
|
|
3283
|
+
]
|
|
3284
|
+
}
|
|
3285
|
+
}
|
|
3286
|
+
};
|
|
3287
|
+
|
|
3288
|
+
export const templateResultPage = {
|
|
3289
|
+
"name": "templateResultPage",
|
|
3290
|
+
"key": "6888c4197746e695a946a97cecdc4696b11afb60",
|
|
3291
|
+
"componentPropertyDefinitions": {
|
|
3292
|
+
"Show Top Navigation#58717:0": {
|
|
3293
|
+
"type": "BOOLEAN"
|
|
3294
|
+
},
|
|
3295
|
+
"Show Bottom Action Bar": {
|
|
3296
|
+
"type": "VARIANT",
|
|
3297
|
+
"variantOptions": [
|
|
3298
|
+
"True",
|
|
3299
|
+
"False"
|
|
3300
|
+
]
|
|
3301
|
+
}
|
|
3302
|
+
}
|
|
3303
|
+
};
|
|
3304
|
+
|
|
3305
|
+
export const componentResultSection = {
|
|
3306
|
+
"name": "componentResultSection",
|
|
3307
|
+
"key": "9e78921e8878fba351dca71e5c58127c403ddd07",
|
|
3308
|
+
"componentPropertyDefinitions": {
|
|
3309
|
+
"Title#16237:0": {
|
|
3310
|
+
"type": "TEXT"
|
|
3311
|
+
},
|
|
3312
|
+
"Description#16237:5": {
|
|
3313
|
+
"type": "TEXT"
|
|
3314
|
+
},
|
|
3315
|
+
"Asset Type#45154:9": {
|
|
3316
|
+
"type": "INSTANCE_SWAP"
|
|
3317
|
+
},
|
|
3318
|
+
"Show Asset#45154:14": {
|
|
3319
|
+
"type": "BOOLEAN"
|
|
3320
|
+
},
|
|
3321
|
+
"Show Buttons#53435:0": {
|
|
3322
|
+
"type": "BOOLEAN"
|
|
3323
|
+
},
|
|
3324
|
+
"ㄴShow First Button#53766:0": {
|
|
3325
|
+
"type": "BOOLEAN"
|
|
3326
|
+
},
|
|
3327
|
+
"ㄴShow Second Button#53766:3": {
|
|
3328
|
+
"type": "BOOLEAN"
|
|
3329
|
+
},
|
|
3330
|
+
"Size": {
|
|
3331
|
+
"type": "VARIANT",
|
|
3332
|
+
"variantOptions": [
|
|
3333
|
+
"Large",
|
|
3334
|
+
"Medium"
|
|
3335
|
+
]
|
|
3336
|
+
}
|
|
3337
|
+
}
|
|
3338
|
+
};
|
|
3339
|
+
|
|
3340
|
+
export const componentScrollFog = {
|
|
3341
|
+
"name": "componentScrollFog",
|
|
3342
|
+
"key": "9813f4bd584a00efd7a3a48ecdd03341f127c692",
|
|
3343
|
+
"componentPropertyDefinitions": {
|
|
3344
|
+
"Placement": {
|
|
3345
|
+
"type": "VARIANT",
|
|
3346
|
+
"variantOptions": [
|
|
3347
|
+
"Left",
|
|
3348
|
+
"Right",
|
|
3349
|
+
"Bottom",
|
|
3350
|
+
"Top"
|
|
3351
|
+
]
|
|
3352
|
+
},
|
|
3353
|
+
"Layer (Figma-Only)": {
|
|
3354
|
+
"type": "VARIANT",
|
|
3355
|
+
"variantOptions": [
|
|
3356
|
+
"Basement",
|
|
3357
|
+
"Default",
|
|
3358
|
+
"Floating"
|
|
3359
|
+
]
|
|
3360
|
+
}
|
|
3361
|
+
}
|
|
3362
|
+
};
|
|
3363
|
+
|
|
3364
|
+
export const componentSearchBarFigmaOnly = {
|
|
3365
|
+
"name": "componentSearchBarFigmaOnly",
|
|
3366
|
+
"key": "976d91906d4aa5033d71d4bfdf5d40944e33bc9e",
|
|
3367
|
+
"componentPropertyDefinitions": {
|
|
3368
|
+
"Use Stack": {
|
|
3369
|
+
"type": "VARIANT",
|
|
3370
|
+
"variantOptions": [
|
|
3371
|
+
"false",
|
|
3372
|
+
"true"
|
|
3373
|
+
]
|
|
3374
|
+
}
|
|
3375
|
+
}
|
|
3376
|
+
};
|
|
3377
|
+
|
|
3378
|
+
export const componentSegmentedControl = {
|
|
3379
|
+
"name": "componentSegmentedControl",
|
|
3380
|
+
"key": "de7a2de48c7b18363eb8c025c7a9d02d0bfef3d8",
|
|
3381
|
+
"componentPropertyDefinitions": {
|
|
3382
|
+
"Item Count": {
|
|
3383
|
+
"type": "VARIANT",
|
|
3384
|
+
"variantOptions": [
|
|
3385
|
+
"2",
|
|
3386
|
+
"3",
|
|
3387
|
+
"4"
|
|
3388
|
+
]
|
|
3389
|
+
}
|
|
3390
|
+
}
|
|
3391
|
+
};
|
|
3392
|
+
|
|
3393
|
+
export const templateSelectBoxField = {
|
|
3394
|
+
"name": "templateSelectBoxField",
|
|
3395
|
+
"key": "cddac54129eed15830319d1e30480f42ea80d4d3",
|
|
3396
|
+
"componentPropertyDefinitions": {
|
|
3397
|
+
"Show Header#40606:8": {
|
|
3398
|
+
"type": "BOOLEAN"
|
|
3399
|
+
},
|
|
3400
|
+
"Show Footer#40606:9": {
|
|
3401
|
+
"type": "BOOLEAN"
|
|
3402
|
+
},
|
|
3403
|
+
"State": {
|
|
3404
|
+
"type": "VARIANT",
|
|
3405
|
+
"variantOptions": [
|
|
3406
|
+
"Enabled",
|
|
3407
|
+
"Error",
|
|
3408
|
+
"Disabled",
|
|
3409
|
+
"Read Only"
|
|
3410
|
+
]
|
|
3411
|
+
}
|
|
3412
|
+
}
|
|
3413
|
+
};
|
|
3414
|
+
|
|
3415
|
+
export const componentSelectBoxGroup = {
|
|
3416
|
+
"name": "componentSelectBoxGroup",
|
|
3417
|
+
"key": "cbf6ddeb6d6f889e983399291ec8b60ee3390177",
|
|
3418
|
+
"componentPropertyDefinitions": {
|
|
3419
|
+
"Column": {
|
|
3420
|
+
"type": "VARIANT",
|
|
3421
|
+
"variantOptions": [
|
|
3422
|
+
"1 Column",
|
|
3423
|
+
"2 Columns",
|
|
3424
|
+
"3 Columns"
|
|
3425
|
+
]
|
|
3426
|
+
}
|
|
3427
|
+
}
|
|
3428
|
+
};
|
|
3429
|
+
|
|
3430
|
+
export const componentShareModalFigmaOnly = {
|
|
3431
|
+
"name": "componentShareModalFigmaOnly",
|
|
3432
|
+
"key": "9a004b31527378d7f0e711812466640f35c187de",
|
|
3433
|
+
"componentPropertyDefinitions": {
|
|
3434
|
+
"OS": {
|
|
3435
|
+
"type": "VARIANT",
|
|
3436
|
+
"variantOptions": [
|
|
3437
|
+
"iOS",
|
|
3438
|
+
"Android"
|
|
3439
|
+
]
|
|
3440
|
+
}
|
|
3441
|
+
}
|
|
3442
|
+
};
|
|
3443
|
+
|
|
3444
|
+
export const componentSkeleton = {
|
|
3445
|
+
"name": "componentSkeleton",
|
|
3446
|
+
"key": "fdf69f0324c6c1145e5c715655f73bbb45575ba2",
|
|
3447
|
+
"componentPropertyDefinitions": {
|
|
3448
|
+
"Radius": {
|
|
3449
|
+
"type": "VARIANT",
|
|
3450
|
+
"variantOptions": [
|
|
3451
|
+
"0",
|
|
3452
|
+
"8",
|
|
3453
|
+
"16",
|
|
3454
|
+
"Full"
|
|
3455
|
+
]
|
|
3456
|
+
},
|
|
3457
|
+
"Tone": {
|
|
3458
|
+
"type": "VARIANT",
|
|
3459
|
+
"variantOptions": [
|
|
3460
|
+
"Magic",
|
|
3461
|
+
"Neutral"
|
|
3462
|
+
]
|
|
3463
|
+
}
|
|
3464
|
+
}
|
|
3465
|
+
};
|
|
3466
|
+
|
|
3467
|
+
export const templateSkeletonPreset = {
|
|
3468
|
+
"name": "templateSkeletonPreset",
|
|
3469
|
+
"key": "6ef44f7c25caf577c58486f7dd9a6d2dbccdbae2",
|
|
3470
|
+
"componentPropertyDefinitions": {
|
|
3471
|
+
"Preset (Figma-Only)": {
|
|
3472
|
+
"type": "VARIANT",
|
|
3473
|
+
"variantOptions": [
|
|
3474
|
+
"Article",
|
|
3475
|
+
"Item Card",
|
|
3476
|
+
"Item Carousel",
|
|
3477
|
+
"List",
|
|
3478
|
+
"Profile Large",
|
|
3479
|
+
"Profile Small",
|
|
3480
|
+
"Review"
|
|
3481
|
+
]
|
|
3482
|
+
}
|
|
3483
|
+
}
|
|
3484
|
+
};
|
|
3485
|
+
|
|
3486
|
+
export const componentSlider = {
|
|
3487
|
+
"name": "componentSlider",
|
|
3488
|
+
"key": "1a647951b15393671c23ad3259d4af1cb51a186c",
|
|
3489
|
+
"componentPropertyDefinitions": {
|
|
3490
|
+
"Has Tick Mark#47921:0": {
|
|
3491
|
+
"type": "BOOLEAN"
|
|
3492
|
+
},
|
|
3493
|
+
"Show Active Track#48156:0": {
|
|
3494
|
+
"type": "BOOLEAN"
|
|
3495
|
+
},
|
|
3496
|
+
"Show Markers#49596:0": {
|
|
3497
|
+
"type": "BOOLEAN"
|
|
3498
|
+
},
|
|
3499
|
+
"Value": {
|
|
3500
|
+
"type": "VARIANT",
|
|
3501
|
+
"variantOptions": [
|
|
3502
|
+
"Single",
|
|
3503
|
+
"Range"
|
|
3504
|
+
]
|
|
3505
|
+
},
|
|
3506
|
+
"State": {
|
|
3507
|
+
"type": "VARIANT",
|
|
3508
|
+
"variantOptions": [
|
|
3509
|
+
"Enabled",
|
|
3510
|
+
"Pressed",
|
|
3511
|
+
"Disabled"
|
|
3512
|
+
]
|
|
3513
|
+
}
|
|
3514
|
+
}
|
|
3515
|
+
};
|
|
3516
|
+
|
|
3517
|
+
export const templateSliderField = {
|
|
3518
|
+
"name": "templateSliderField",
|
|
3519
|
+
"key": "28779a6663ce9d43b08050f128a925513e36a2e6",
|
|
3520
|
+
"componentPropertyDefinitions": {
|
|
3521
|
+
"Show Header#40606:8": {
|
|
3522
|
+
"type": "BOOLEAN"
|
|
3523
|
+
},
|
|
3524
|
+
"Show Footer#40606:9": {
|
|
3525
|
+
"type": "BOOLEAN"
|
|
3526
|
+
},
|
|
3527
|
+
"State": {
|
|
3528
|
+
"type": "VARIANT",
|
|
3529
|
+
"variantOptions": [
|
|
3530
|
+
"Enabled",
|
|
3531
|
+
"Pressed",
|
|
3532
|
+
"Error",
|
|
3533
|
+
"Disabled",
|
|
3534
|
+
"Read Only"
|
|
3535
|
+
]
|
|
3536
|
+
}
|
|
3537
|
+
}
|
|
3538
|
+
};
|
|
3539
|
+
|
|
3540
|
+
export const componentSnackbar = {
|
|
3541
|
+
"name": "componentSnackbar",
|
|
3542
|
+
"key": "3e4c1701d9018f70a5fc79c515ba934327c5ce69",
|
|
3543
|
+
"componentPropertyDefinitions": {
|
|
3544
|
+
"Show Action#1528:0": {
|
|
3545
|
+
"type": "BOOLEAN"
|
|
3546
|
+
},
|
|
3547
|
+
"Message#1528:4": {
|
|
3548
|
+
"type": "TEXT"
|
|
3549
|
+
},
|
|
3550
|
+
"Action Label#1528:8": {
|
|
3551
|
+
"type": "TEXT"
|
|
3552
|
+
},
|
|
3553
|
+
"Variant": {
|
|
3554
|
+
"type": "VARIANT",
|
|
3555
|
+
"variantOptions": [
|
|
3556
|
+
"Default",
|
|
3557
|
+
"Positive",
|
|
3558
|
+
"Critical"
|
|
3559
|
+
]
|
|
3560
|
+
}
|
|
3561
|
+
}
|
|
3562
|
+
};
|
|
3563
|
+
|
|
3564
|
+
export const componentSuperscriptChild = {
|
|
3565
|
+
"name": "componentSuperscriptChild",
|
|
3566
|
+
"key": "4088f4bf9b9e824e3467a84087b3b29f70052f97",
|
|
3567
|
+
"componentPropertyDefinitions": {
|
|
3568
|
+
"Icon#37641:0": {
|
|
3569
|
+
"type": "INSTANCE_SWAP"
|
|
3570
|
+
},
|
|
3571
|
+
"Type": {
|
|
3572
|
+
"type": "VARIANT",
|
|
3573
|
+
"variantOptions": [
|
|
3574
|
+
"Icon",
|
|
3575
|
+
"Notification Badge",
|
|
3576
|
+
"Custom"
|
|
3577
|
+
]
|
|
3578
|
+
}
|
|
3579
|
+
}
|
|
3580
|
+
};
|
|
3581
|
+
|
|
3582
|
+
export const componentSwitch = {
|
|
3583
|
+
"name": "componentSwitch",
|
|
3584
|
+
"key": "b9fe3494543cebdf8244091ee77f3fa0badf0670",
|
|
3585
|
+
"componentPropertyDefinitions": {
|
|
3586
|
+
"Label#36578:0": {
|
|
3587
|
+
"type": "TEXT"
|
|
3588
|
+
},
|
|
3589
|
+
"Size": {
|
|
3590
|
+
"type": "VARIANT",
|
|
3591
|
+
"variantOptions": [
|
|
3592
|
+
"16",
|
|
3593
|
+
"24",
|
|
3594
|
+
"32"
|
|
3595
|
+
]
|
|
3596
|
+
},
|
|
3597
|
+
"Tone": {
|
|
3598
|
+
"type": "VARIANT",
|
|
3599
|
+
"variantOptions": [
|
|
3600
|
+
"Neutral",
|
|
3601
|
+
"🚫[Deprecated] Brand"
|
|
3602
|
+
]
|
|
3603
|
+
},
|
|
3604
|
+
"Selected": {
|
|
3605
|
+
"type": "VARIANT",
|
|
3606
|
+
"variantOptions": [
|
|
3607
|
+
"True",
|
|
3608
|
+
"False"
|
|
3609
|
+
]
|
|
3610
|
+
},
|
|
3611
|
+
"State": {
|
|
3612
|
+
"type": "VARIANT",
|
|
3613
|
+
"variantOptions": [
|
|
3614
|
+
"Enabled",
|
|
3615
|
+
"Disabled"
|
|
3616
|
+
]
|
|
3617
|
+
},
|
|
3618
|
+
"Layout(Figma Only)": {
|
|
3619
|
+
"type": "VARIANT",
|
|
3620
|
+
"variantOptions": [
|
|
3621
|
+
"Label Last",
|
|
3622
|
+
"Label First"
|
|
3623
|
+
]
|
|
3624
|
+
}
|
|
3625
|
+
}
|
|
3626
|
+
};
|
|
3627
|
+
|
|
3628
|
+
export const componentSwitchmark = {
|
|
3629
|
+
"name": "componentSwitchmark",
|
|
3630
|
+
"key": "af4f8501f3393367750d2b642c6e8bba5906c5a9",
|
|
3631
|
+
"componentPropertyDefinitions": {
|
|
3632
|
+
"Size": {
|
|
3633
|
+
"type": "VARIANT",
|
|
3634
|
+
"variantOptions": [
|
|
3635
|
+
"16",
|
|
3636
|
+
"24",
|
|
3637
|
+
"32"
|
|
3638
|
+
]
|
|
3639
|
+
},
|
|
3640
|
+
"Tone": {
|
|
3641
|
+
"type": "VARIANT",
|
|
3642
|
+
"variantOptions": [
|
|
3643
|
+
"Neutral",
|
|
3644
|
+
"🚫[Deprecated] Brand"
|
|
3645
|
+
]
|
|
3646
|
+
},
|
|
3647
|
+
"Selected": {
|
|
3648
|
+
"type": "VARIANT",
|
|
3649
|
+
"variantOptions": [
|
|
3650
|
+
"True",
|
|
3651
|
+
"False"
|
|
3652
|
+
]
|
|
3653
|
+
},
|
|
3654
|
+
"State": {
|
|
3655
|
+
"type": "VARIANT",
|
|
3656
|
+
"variantOptions": [
|
|
3657
|
+
"Enabled",
|
|
3658
|
+
"Disabled"
|
|
3659
|
+
]
|
|
3660
|
+
}
|
|
3661
|
+
}
|
|
3662
|
+
};
|
|
3663
|
+
|
|
3664
|
+
export const componentTabs = {
|
|
3665
|
+
"name": "componentTabs",
|
|
3666
|
+
"key": "bf4442aa3cf58b6725ce9b3ff6de064df12baba2",
|
|
3667
|
+
"componentPropertyDefinitions": {
|
|
3668
|
+
"Variant": {
|
|
3669
|
+
"type": "VARIANT",
|
|
3670
|
+
"variantOptions": [
|
|
3671
|
+
"Line",
|
|
3672
|
+
"Chip"
|
|
3673
|
+
]
|
|
3674
|
+
}
|
|
3675
|
+
}
|
|
3676
|
+
};
|
|
3677
|
+
|
|
3678
|
+
export const componentTagGroup = {
|
|
3679
|
+
"name": "componentTagGroup",
|
|
3680
|
+
"key": "6d31f7b7781868a3fa38c68050bd975cb71b53c0",
|
|
3681
|
+
"componentPropertyDefinitions": {
|
|
3682
|
+
"Size": {
|
|
3683
|
+
"type": "VARIANT",
|
|
3684
|
+
"variantOptions": [
|
|
3685
|
+
"t2(12pt)",
|
|
3686
|
+
"t3(13pt)",
|
|
3687
|
+
"t4(14pt)"
|
|
3688
|
+
]
|
|
3689
|
+
},
|
|
3690
|
+
"Tag Count": {
|
|
3691
|
+
"type": "VARIANT",
|
|
3692
|
+
"variantOptions": [
|
|
3693
|
+
"1",
|
|
3694
|
+
"2",
|
|
3695
|
+
"3",
|
|
3696
|
+
"4"
|
|
3697
|
+
]
|
|
3698
|
+
}
|
|
3699
|
+
}
|
|
3700
|
+
};
|
|
3701
|
+
|
|
3702
|
+
export const templateTextField = {
|
|
3703
|
+
"name": "templateTextField",
|
|
3704
|
+
"key": "d23c5e730ba19fe6ba3c376a5abbf3df7a54672e",
|
|
3705
|
+
"componentPropertyDefinitions": {
|
|
3706
|
+
"Show Header#40606:8": {
|
|
3707
|
+
"type": "BOOLEAN"
|
|
3708
|
+
},
|
|
3709
|
+
"Show Footer#40606:9": {
|
|
3710
|
+
"type": "BOOLEAN"
|
|
3711
|
+
},
|
|
3712
|
+
"Variant": {
|
|
3713
|
+
"type": "VARIANT",
|
|
3714
|
+
"variantOptions": [
|
|
3715
|
+
"Outline",
|
|
3716
|
+
"Underline"
|
|
3717
|
+
]
|
|
3718
|
+
},
|
|
3719
|
+
"State": {
|
|
3720
|
+
"type": "VARIANT",
|
|
3721
|
+
"variantOptions": [
|
|
3722
|
+
"Enabled",
|
|
3723
|
+
"Focused",
|
|
3724
|
+
"Error",
|
|
3725
|
+
"Error Focused",
|
|
3726
|
+
"Disabled",
|
|
3727
|
+
"Read Only",
|
|
3728
|
+
"AI Loading (Figma Only)"
|
|
3729
|
+
]
|
|
3730
|
+
}
|
|
3731
|
+
}
|
|
3732
|
+
};
|
|
3733
|
+
|
|
3734
|
+
export const templateTextareaField = {
|
|
3735
|
+
"name": "templateTextareaField",
|
|
3736
|
+
"key": "1e0375ed8a5dc490008d6e0dcc20b812b6e39114",
|
|
3737
|
+
"componentPropertyDefinitions": {
|
|
3738
|
+
"State": {
|
|
3739
|
+
"type": "VARIANT",
|
|
3740
|
+
"variantOptions": [
|
|
3741
|
+
"AI Loading (Figma Only)",
|
|
3742
|
+
"Disabled",
|
|
3743
|
+
"Read Only",
|
|
3744
|
+
"Error Focused",
|
|
3745
|
+
"Error",
|
|
3746
|
+
"Focused",
|
|
3747
|
+
"Enabled"
|
|
3748
|
+
]
|
|
3749
|
+
}
|
|
3750
|
+
}
|
|
3751
|
+
};
|
|
3752
|
+
|
|
3753
|
+
export const componentToggleButton = {
|
|
3754
|
+
"name": "componentToggleButton",
|
|
3755
|
+
"key": "eb1eac49eb281c1029e659821f4091619d0b74e4",
|
|
3756
|
+
"componentPropertyDefinitions": {
|
|
3757
|
+
"Label#6122:49": {
|
|
3758
|
+
"type": "TEXT"
|
|
3759
|
+
},
|
|
3760
|
+
"Prefix Icon#6122:98": {
|
|
3761
|
+
"type": "INSTANCE_SWAP"
|
|
3762
|
+
},
|
|
3763
|
+
"Show Suffix Icon#6122:147": {
|
|
3764
|
+
"type": "BOOLEAN"
|
|
3765
|
+
},
|
|
3766
|
+
"Suffix Icon#6122:343": {
|
|
3767
|
+
"type": "INSTANCE_SWAP"
|
|
3768
|
+
},
|
|
3769
|
+
"Show Prefix Icon#6122:392": {
|
|
3770
|
+
"type": "BOOLEAN"
|
|
3771
|
+
},
|
|
3772
|
+
"Size": {
|
|
3773
|
+
"type": "VARIANT",
|
|
3774
|
+
"variantOptions": [
|
|
3775
|
+
"Small",
|
|
3776
|
+
"XSmall"
|
|
3777
|
+
]
|
|
3778
|
+
},
|
|
3779
|
+
"Variant": {
|
|
3780
|
+
"type": "VARIANT",
|
|
3781
|
+
"variantOptions": [
|
|
3782
|
+
"Neutral Weak",
|
|
3783
|
+
"Brand Solid"
|
|
3784
|
+
]
|
|
3785
|
+
},
|
|
3786
|
+
"Selected": {
|
|
3787
|
+
"type": "VARIANT",
|
|
3788
|
+
"variantOptions": [
|
|
3789
|
+
"True",
|
|
3790
|
+
"False"
|
|
3791
|
+
]
|
|
3792
|
+
},
|
|
3793
|
+
"State": {
|
|
3794
|
+
"type": "VARIANT",
|
|
3795
|
+
"variantOptions": [
|
|
3796
|
+
"Enabled",
|
|
3797
|
+
"Pressed",
|
|
3798
|
+
"Loading",
|
|
3799
|
+
"Disabled"
|
|
3800
|
+
]
|
|
3801
|
+
}
|
|
3802
|
+
}
|
|
3803
|
+
};
|
|
3804
|
+
|
|
3805
|
+
export const componentTopNavigation = {
|
|
3806
|
+
"name": "componentTopNavigation",
|
|
3807
|
+
"key": "e9afd82664e7d588ca6790245926f62ca2dc0bef",
|
|
3808
|
+
"componentPropertyDefinitions": {
|
|
3809
|
+
"Show Title#33588:82": {
|
|
3810
|
+
"type": "BOOLEAN"
|
|
3811
|
+
},
|
|
3812
|
+
"OS (Figma Only)": {
|
|
3813
|
+
"type": "VARIANT",
|
|
3814
|
+
"variantOptions": [
|
|
3815
|
+
"iOS",
|
|
3816
|
+
"Android"
|
|
3817
|
+
]
|
|
3818
|
+
},
|
|
3819
|
+
"Variant": {
|
|
3820
|
+
"type": "VARIANT",
|
|
3821
|
+
"variantOptions": [
|
|
3822
|
+
"Layer Default",
|
|
3823
|
+
"Transparent"
|
|
3824
|
+
]
|
|
3825
|
+
},
|
|
3826
|
+
"Left": {
|
|
3827
|
+
"type": "VARIANT",
|
|
3828
|
+
"variantOptions": [
|
|
3829
|
+
"Back",
|
|
3830
|
+
"Close",
|
|
3831
|
+
"Custom",
|
|
3832
|
+
"None"
|
|
3833
|
+
]
|
|
3834
|
+
},
|
|
3835
|
+
"Right": {
|
|
3836
|
+
"type": "VARIANT",
|
|
3837
|
+
"variantOptions": [
|
|
3838
|
+
"1 Icon Button",
|
|
3839
|
+
"2 Icon Button",
|
|
3840
|
+
"3 Icon Button",
|
|
3841
|
+
"Text Button",
|
|
3842
|
+
"None"
|
|
3843
|
+
]
|
|
3844
|
+
}
|
|
3845
|
+
}
|
|
3846
|
+
};
|
|
3847
|
+
|
|
3848
|
+
export const templateTopNavigationPreset = {
|
|
3849
|
+
"name": "templateTopNavigationPreset",
|
|
3850
|
+
"key": "392ae70c701b8f657d3114498801c5672decc547",
|
|
3851
|
+
"componentPropertyDefinitions": {
|
|
3852
|
+
"Action Button#17406:0": {
|
|
3853
|
+
"type": "BOOLEAN"
|
|
3854
|
+
},
|
|
3855
|
+
"Sub Title#20497:0": {
|
|
3856
|
+
"type": "BOOLEAN"
|
|
3857
|
+
},
|
|
3858
|
+
"Large Title#20497:5": {
|
|
3859
|
+
"type": "TEXT"
|
|
3860
|
+
},
|
|
3861
|
+
"Sub Title #20497:10": {
|
|
3862
|
+
"type": "TEXT"
|
|
3863
|
+
},
|
|
3864
|
+
"Variants": {
|
|
3865
|
+
"type": "VARIANT",
|
|
3866
|
+
"variantOptions": [
|
|
3867
|
+
"Root",
|
|
3868
|
+
"Root Preset",
|
|
3869
|
+
"Standard",
|
|
3870
|
+
"Standard Transparent",
|
|
3871
|
+
"Large Title"
|
|
3872
|
+
]
|
|
3873
|
+
}
|
|
3874
|
+
}
|
|
3875
|
+
};
|
|
3876
|
+
|
|
3877
|
+
export const componentUserSelectionFigmaOnly = {
|
|
3878
|
+
"name": "componentUserSelectionFigmaOnly",
|
|
3879
|
+
"key": "e9d64ed94edf61c01af3ec7b3aea82f6f7c6f0a2",
|
|
3880
|
+
"componentPropertyDefinitions": {
|
|
3881
|
+
"OS": {
|
|
3882
|
+
"type": "VARIANT",
|
|
3883
|
+
"variantOptions": [
|
|
3884
|
+
"iOS",
|
|
3885
|
+
"Android"
|
|
3886
|
+
]
|
|
3887
|
+
}
|
|
3888
|
+
}
|
|
3889
|
+
};
|
|
3890
|
+
|
|
3891
|
+
export const componentFieldFooter = {
|
|
3892
|
+
"name": "componentFieldFooter",
|
|
3893
|
+
"key": "a2e73c375b787756a11e84c5915f8251c621ee3a",
|
|
3894
|
+
"componentPropertyDefinitions": {
|
|
3895
|
+
"Text#2770:0": {
|
|
3896
|
+
"type": "TEXT"
|
|
3897
|
+
},
|
|
3898
|
+
"Has Prefix#2778:13": {
|
|
3899
|
+
"type": "BOOLEAN"
|
|
3900
|
+
},
|
|
3901
|
+
"Error Text#32821:0": {
|
|
3902
|
+
"type": "TEXT"
|
|
3903
|
+
},
|
|
3904
|
+
"Type": {
|
|
3905
|
+
"type": "VARIANT",
|
|
3906
|
+
"variantOptions": [
|
|
3907
|
+
"Description",
|
|
3908
|
+
"Description With Character Count",
|
|
3909
|
+
"Character Count"
|
|
3910
|
+
]
|
|
3911
|
+
},
|
|
3912
|
+
"Error": {
|
|
3913
|
+
"type": "VARIANT",
|
|
3914
|
+
"variantOptions": [
|
|
3915
|
+
"true",
|
|
3916
|
+
"false"
|
|
3917
|
+
]
|
|
3918
|
+
}
|
|
3919
|
+
}
|
|
3920
|
+
};
|
|
3921
|
+
|
|
3922
|
+
export const componentFieldHeader = {
|
|
3923
|
+
"name": "componentFieldHeader",
|
|
3924
|
+
"key": "8371fe9083cb9bebfb4ee51b0791bfb00a799dd6",
|
|
3925
|
+
"componentPropertyDefinitions": {
|
|
3926
|
+
"Label#34796:0": {
|
|
3927
|
+
"type": "TEXT"
|
|
3928
|
+
},
|
|
3929
|
+
"Has Indicator#34796:1": {
|
|
3930
|
+
"type": "BOOLEAN"
|
|
3931
|
+
},
|
|
3932
|
+
"Has Suffix#34796:2": {
|
|
3933
|
+
"type": "BOOLEAN"
|
|
3934
|
+
},
|
|
3935
|
+
"Weight": {
|
|
3936
|
+
"type": "VARIANT",
|
|
3937
|
+
"variantOptions": [
|
|
3938
|
+
"Medium",
|
|
3939
|
+
"Bold"
|
|
3940
|
+
]
|
|
3941
|
+
}
|
|
3942
|
+
}
|
|
3943
|
+
};
|
|
3944
|
+
|
|
3945
|
+
export const componentInputButton = {
|
|
3946
|
+
"name": "componentInputButton",
|
|
3947
|
+
"key": "1220e63a59a31b50eefe5c4ec1a4e516ba70b07b",
|
|
3948
|
+
"componentPropertyDefinitions": {
|
|
3949
|
+
"Has Prefix#32514:10": {
|
|
3950
|
+
"type": "BOOLEAN"
|
|
3951
|
+
},
|
|
3952
|
+
"Has Suffix#32865:68": {
|
|
3953
|
+
"type": "BOOLEAN"
|
|
3954
|
+
},
|
|
3955
|
+
"State": {
|
|
3956
|
+
"type": "VARIANT",
|
|
3957
|
+
"variantOptions": [
|
|
3958
|
+
"Enabled",
|
|
3959
|
+
"Error",
|
|
3960
|
+
"Disabled",
|
|
3961
|
+
"Read Only",
|
|
3962
|
+
"Pressed",
|
|
3963
|
+
"Error Pressed"
|
|
3964
|
+
]
|
|
3965
|
+
}
|
|
3966
|
+
}
|
|
3967
|
+
};
|
|
3968
|
+
|
|
3969
|
+
export const componentTextInput = {
|
|
3970
|
+
"name": "componentTextInput",
|
|
3971
|
+
"key": "1f3e7bd2f1d39a76e304188b5a8b800d7c87aff2",
|
|
3972
|
+
"componentPropertyDefinitions": {
|
|
3973
|
+
"Has Prefix#32514:10": {
|
|
3974
|
+
"type": "BOOLEAN"
|
|
3975
|
+
},
|
|
3976
|
+
"Loading Text#32734:0": {
|
|
3977
|
+
"type": "TEXT"
|
|
3978
|
+
},
|
|
3979
|
+
"Has Suffix#32865:68": {
|
|
3980
|
+
"type": "BOOLEAN"
|
|
3981
|
+
},
|
|
3982
|
+
"State": {
|
|
3983
|
+
"type": "VARIANT",
|
|
3984
|
+
"variantOptions": [
|
|
3985
|
+
"Enabled",
|
|
3986
|
+
"Focused",
|
|
3987
|
+
"Error",
|
|
3988
|
+
"Error Focused",
|
|
3989
|
+
"Disabled",
|
|
3990
|
+
"Read Only",
|
|
3991
|
+
"AI Loading (Figma Only)"
|
|
3992
|
+
]
|
|
3993
|
+
}
|
|
3994
|
+
}
|
|
3995
|
+
};
|
|
3996
|
+
|
|
3997
|
+
export const componentTextarea = {
|
|
3998
|
+
"name": "componentTextarea",
|
|
3999
|
+
"key": "e20ec5b725e0fdbaca728cecdc72b0c485728b4d",
|
|
4000
|
+
"componentPropertyDefinitions": {
|
|
4001
|
+
"Auto Size (Figma Only)": {
|
|
4002
|
+
"type": "VARIANT",
|
|
4003
|
+
"variantOptions": [
|
|
4004
|
+
"true",
|
|
4005
|
+
"false"
|
|
4006
|
+
]
|
|
4007
|
+
},
|
|
4008
|
+
"State": {
|
|
4009
|
+
"type": "VARIANT",
|
|
4010
|
+
"variantOptions": [
|
|
4011
|
+
"Enabled",
|
|
4012
|
+
"Focused",
|
|
4013
|
+
"Error",
|
|
4014
|
+
"Error Focused",
|
|
4015
|
+
"Disabled",
|
|
4016
|
+
"Read Only",
|
|
4017
|
+
"AI Loading (Figma Only)"
|
|
4018
|
+
]
|
|
4019
|
+
}
|
|
4020
|
+
}
|
|
4021
|
+
};
|
|
4022
|
+
|
|
4023
|
+
export const componentUnderlineTextInput = {
|
|
4024
|
+
"name": "componentUnderlineTextInput",
|
|
4025
|
+
"key": "004c8591153865af3fe3efb9c552cd280b9fd31d",
|
|
4026
|
+
"componentPropertyDefinitions": {
|
|
4027
|
+
"Has Prefix#34125:0": {
|
|
4028
|
+
"type": "BOOLEAN"
|
|
4029
|
+
},
|
|
4030
|
+
"Has Suffix#34125:8": {
|
|
4031
|
+
"type": "BOOLEAN"
|
|
4032
|
+
},
|
|
4033
|
+
"State": {
|
|
4034
|
+
"type": "VARIANT",
|
|
4035
|
+
"variantOptions": [
|
|
4036
|
+
"Enabled",
|
|
4037
|
+
"Focused",
|
|
4038
|
+
"Error",
|
|
4039
|
+
"Error Focused",
|
|
4040
|
+
"Disabled",
|
|
4041
|
+
"Read Only",
|
|
4042
|
+
"AI Loading (Figma Only)"
|
|
4043
|
+
]
|
|
4044
|
+
}
|
|
4045
|
+
}
|
|
4046
|
+
};
|
|
4047
|
+
|
|
4048
|
+
export const componentActionButtonGhostButton = {
|
|
4049
|
+
"name": "componentActionButtonGhostButton",
|
|
4050
|
+
"key": "0dd8c776368619b13886924cd65974f821887753",
|
|
4051
|
+
"componentPropertyDefinitions": {
|
|
4052
|
+
"Label#30511:2": {
|
|
4053
|
+
"type": "TEXT"
|
|
4054
|
+
},
|
|
4055
|
+
"Prefix Icon#30511:3": {
|
|
4056
|
+
"type": "INSTANCE_SWAP"
|
|
4057
|
+
},
|
|
4058
|
+
"Suffix Icon#30525:0": {
|
|
4059
|
+
"type": "INSTANCE_SWAP"
|
|
4060
|
+
},
|
|
4061
|
+
"Icon#30525:15": {
|
|
4062
|
+
"type": "INSTANCE_SWAP"
|
|
4063
|
+
},
|
|
4064
|
+
"Bleed": {
|
|
4065
|
+
"type": "VARIANT",
|
|
4066
|
+
"variantOptions": [
|
|
4067
|
+
"true",
|
|
4068
|
+
"false"
|
|
4069
|
+
]
|
|
4070
|
+
},
|
|
4071
|
+
"Size": {
|
|
4072
|
+
"type": "VARIANT",
|
|
4073
|
+
"variantOptions": [
|
|
4074
|
+
"Xsmall",
|
|
4075
|
+
"Small",
|
|
4076
|
+
"Medium",
|
|
4077
|
+
"Large"
|
|
4078
|
+
]
|
|
4079
|
+
},
|
|
4080
|
+
"Layout": {
|
|
4081
|
+
"type": "VARIANT",
|
|
4082
|
+
"variantOptions": [
|
|
4083
|
+
"Text Only",
|
|
4084
|
+
"Icon First",
|
|
4085
|
+
"Icon Last",
|
|
4086
|
+
"Icon Only"
|
|
4087
|
+
]
|
|
4088
|
+
},
|
|
4089
|
+
"State": {
|
|
4090
|
+
"type": "VARIANT",
|
|
4091
|
+
"variantOptions": [
|
|
4092
|
+
"Enabled",
|
|
4093
|
+
"Pressed",
|
|
4094
|
+
"Loading",
|
|
4095
|
+
"Disabled"
|
|
4096
|
+
]
|
|
4097
|
+
}
|
|
4098
|
+
}
|
|
4099
|
+
};
|
|
4100
|
+
|
|
4101
|
+
export const componentBottomNavigationGlobal = {
|
|
4102
|
+
"name": "componentBottomNavigationGlobal",
|
|
4103
|
+
"key": "ca9af78189076ceaaf84c4d13f0426f28952e860",
|
|
4104
|
+
"componentPropertyDefinitions": {
|
|
4105
|
+
"Show Safe Area#25445:3": {
|
|
4106
|
+
"type": "BOOLEAN"
|
|
4107
|
+
},
|
|
4108
|
+
"OS": {
|
|
4109
|
+
"type": "VARIANT",
|
|
4110
|
+
"variantOptions": [
|
|
4111
|
+
"iOS",
|
|
4112
|
+
"Android"
|
|
4113
|
+
]
|
|
4114
|
+
},
|
|
4115
|
+
"Language": {
|
|
4116
|
+
"type": "VARIANT",
|
|
4117
|
+
"variantOptions": [
|
|
4118
|
+
"English",
|
|
4119
|
+
"Japanese"
|
|
4120
|
+
]
|
|
4121
|
+
}
|
|
4122
|
+
}
|
|
4123
|
+
};
|
|
4124
|
+
|
|
4125
|
+
export const componentBottomNavigationKr = {
|
|
4126
|
+
"name": "componentBottomNavigationKr",
|
|
4127
|
+
"key": "6c6004fe0093a3e73d84e8f4c5323e431ffed4cf",
|
|
4128
|
+
"componentPropertyDefinitions": {
|
|
4129
|
+
"Show Safe Area#25445:0": {
|
|
4130
|
+
"type": "BOOLEAN"
|
|
4131
|
+
},
|
|
4132
|
+
"OS": {
|
|
4133
|
+
"type": "VARIANT",
|
|
4134
|
+
"variantOptions": [
|
|
4135
|
+
"\biOS",
|
|
4136
|
+
"Android"
|
|
4137
|
+
]
|
|
4138
|
+
}
|
|
4139
|
+
}
|
|
4140
|
+
};
|
|
4141
|
+
|
|
4142
|
+
export const componentImageFrameReactionButton = {
|
|
4143
|
+
"name": "componentImageFrameReactionButton",
|
|
4144
|
+
"key": "559ac01a2ef202564821a5c7f0dbf46dcd61b3f9",
|
|
4145
|
+
"componentPropertyDefinitions": {
|
|
4146
|
+
"Selected": {
|
|
4147
|
+
"type": "VARIANT",
|
|
4148
|
+
"variantOptions": [
|
|
4149
|
+
"False",
|
|
4150
|
+
"True"
|
|
4151
|
+
]
|
|
4152
|
+
}
|
|
4153
|
+
}
|
|
4154
|
+
};
|
|
4155
|
+
|
|
4156
|
+
export const componentListItemSuffixActionButton = {
|
|
4157
|
+
"name": "componentListItemSuffixActionButton",
|
|
4158
|
+
"key": "80aa65281cbd6bfa613a0fc9fb68203922755ec3",
|
|
4159
|
+
"componentPropertyDefinitions": {
|
|
4160
|
+
"Number of Button": {
|
|
4161
|
+
"type": "VARIANT",
|
|
4162
|
+
"variantOptions": [
|
|
4163
|
+
"1",
|
|
4164
|
+
"2",
|
|
4165
|
+
"3"
|
|
4166
|
+
]
|
|
4167
|
+
}
|
|
4168
|
+
}
|
|
4169
|
+
};
|
|
4170
|
+
|
|
4171
|
+
export const componentListItemSuffixIconButton = {
|
|
4172
|
+
"name": "componentListItemSuffixIconButton",
|
|
4173
|
+
"key": "cd859e4da1bd5d9ceec73b288331bff4f36f1082",
|
|
4174
|
+
"componentPropertyDefinitions": {
|
|
4175
|
+
"Number of Button": {
|
|
4176
|
+
"type": "VARIANT",
|
|
4177
|
+
"variantOptions": [
|
|
4178
|
+
"1",
|
|
4179
|
+
"2",
|
|
4180
|
+
"3"
|
|
4181
|
+
]
|
|
4182
|
+
}
|
|
4183
|
+
}
|
|
4184
|
+
};
|
|
4185
|
+
|
|
4186
|
+
export const componentRootTopNavigationGlobal = {
|
|
4187
|
+
"name": "componentRootTopNavigationGlobal",
|
|
4188
|
+
"key": "9e0a6dce6285912819bb849802d91297ebb34add",
|
|
4189
|
+
"componentPropertyDefinitions": {
|
|
4190
|
+
"Title#6406:6": {
|
|
4191
|
+
"type": "TEXT"
|
|
4192
|
+
},
|
|
4193
|
+
"Button Label#6409:18": {
|
|
4194
|
+
"type": "TEXT"
|
|
4195
|
+
},
|
|
4196
|
+
"Show Button#52619:0": {
|
|
4197
|
+
"type": "BOOLEAN"
|
|
4198
|
+
},
|
|
4199
|
+
"Title Type": {
|
|
4200
|
+
"type": "VARIANT",
|
|
4201
|
+
"variantOptions": [
|
|
4202
|
+
"Text"
|
|
4203
|
+
]
|
|
4204
|
+
},
|
|
4205
|
+
"Variant": {
|
|
4206
|
+
"type": "VARIANT",
|
|
4207
|
+
"variantOptions": [
|
|
4208
|
+
"Layer Default"
|
|
4209
|
+
]
|
|
4210
|
+
}
|
|
4211
|
+
}
|
|
4212
|
+
};
|
|
4213
|
+
|
|
4214
|
+
export const componentRootTopNavigationKr = {
|
|
4215
|
+
"name": "componentRootTopNavigationKr",
|
|
4216
|
+
"key": "050cdca216df9c949912de2be038d197afebed50",
|
|
4217
|
+
"componentPropertyDefinitions": {
|
|
4218
|
+
"Title#6406:6": {
|
|
4219
|
+
"type": "TEXT"
|
|
4220
|
+
},
|
|
4221
|
+
"Title Type": {
|
|
4222
|
+
"type": "VARIANT",
|
|
4223
|
+
"variantOptions": [
|
|
4224
|
+
"Text",
|
|
4225
|
+
"Button"
|
|
4226
|
+
]
|
|
4227
|
+
}
|
|
4228
|
+
}
|
|
4229
|
+
};
|
|
4230
|
+
|
|
4231
|
+
export const componentSelectBoxItemHorizontal = {
|
|
4232
|
+
"name": "componentSelectBoxItemHorizontal",
|
|
4233
|
+
"key": "8174af8ef3654dad996723883f5b84f44f791513",
|
|
4234
|
+
"componentPropertyDefinitions": {
|
|
4235
|
+
"Title#28452:21": {
|
|
4236
|
+
"type": "TEXT"
|
|
4237
|
+
},
|
|
4238
|
+
"Has Prefix#28452:85": {
|
|
4239
|
+
"type": "BOOLEAN"
|
|
4240
|
+
},
|
|
4241
|
+
"Prefix Type#28452:106": {
|
|
4242
|
+
"type": "INSTANCE_SWAP"
|
|
4243
|
+
},
|
|
4244
|
+
"Show Description#28469:1": {
|
|
4245
|
+
"type": "BOOLEAN"
|
|
4246
|
+
},
|
|
4247
|
+
"Description#56540:0": {
|
|
4248
|
+
"type": "TEXT"
|
|
4249
|
+
},
|
|
4250
|
+
"Show Custom Content#56903:0": {
|
|
4251
|
+
"type": "BOOLEAN"
|
|
4252
|
+
},
|
|
4253
|
+
"Control": {
|
|
4254
|
+
"type": "VARIANT",
|
|
4255
|
+
"variantOptions": [
|
|
4256
|
+
"Checkmark",
|
|
4257
|
+
"Radiomark",
|
|
4258
|
+
"None"
|
|
4259
|
+
]
|
|
4260
|
+
},
|
|
4261
|
+
"Selected": {
|
|
4262
|
+
"type": "VARIANT",
|
|
4263
|
+
"variantOptions": [
|
|
4264
|
+
"False",
|
|
4265
|
+
"True"
|
|
4266
|
+
]
|
|
4267
|
+
},
|
|
4268
|
+
"State": {
|
|
4269
|
+
"type": "VARIANT",
|
|
4270
|
+
"variantOptions": [
|
|
4271
|
+
"Enabled",
|
|
4272
|
+
"Pressed",
|
|
4273
|
+
"Disabled"
|
|
4274
|
+
]
|
|
4275
|
+
}
|
|
4276
|
+
}
|
|
4277
|
+
};
|
|
4278
|
+
|
|
4279
|
+
export const componentSelectBoxItemVertical = {
|
|
4280
|
+
"name": "componentSelectBoxItemVertical",
|
|
4281
|
+
"key": "ccc88f0aae500c64e7d43be63c4f1a70baf76bfe",
|
|
4282
|
+
"componentPropertyDefinitions": {
|
|
4283
|
+
"Title#58766:114": {
|
|
4284
|
+
"type": "TEXT"
|
|
4285
|
+
},
|
|
4286
|
+
"Has Prefix#58766:115": {
|
|
4287
|
+
"type": "BOOLEAN"
|
|
4288
|
+
},
|
|
4289
|
+
"Prefix Type#58766:116": {
|
|
4290
|
+
"type": "INSTANCE_SWAP"
|
|
4291
|
+
},
|
|
4292
|
+
"Show Description#58766:117": {
|
|
4293
|
+
"type": "BOOLEAN"
|
|
4294
|
+
},
|
|
4295
|
+
"Description#58766:118": {
|
|
4296
|
+
"type": "TEXT"
|
|
4297
|
+
},
|
|
4298
|
+
"Show Custom Content#58766:119": {
|
|
4299
|
+
"type": "BOOLEAN"
|
|
4300
|
+
},
|
|
4301
|
+
"Control": {
|
|
4302
|
+
"type": "VARIANT",
|
|
4303
|
+
"variantOptions": [
|
|
4304
|
+
"Checkmark",
|
|
4305
|
+
"Radiomark",
|
|
4306
|
+
"None"
|
|
4307
|
+
]
|
|
4308
|
+
},
|
|
4309
|
+
"Selected": {
|
|
4310
|
+
"type": "VARIANT",
|
|
4311
|
+
"variantOptions": [
|
|
4312
|
+
"False",
|
|
4313
|
+
"True"
|
|
4314
|
+
]
|
|
4315
|
+
},
|
|
4316
|
+
"State": {
|
|
4317
|
+
"type": "VARIANT",
|
|
4318
|
+
"variantOptions": [
|
|
4319
|
+
"Enabled",
|
|
4320
|
+
"Pressed",
|
|
4321
|
+
"Disabled"
|
|
4322
|
+
]
|
|
4323
|
+
}
|
|
4324
|
+
}
|
|
4325
|
+
};
|