@seed-design/figma 1.2.0 → 1.2.1

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.
Files changed (116) hide show
  1. package/lib/codegen/index.cjs +12280 -190
  2. package/lib/codegen/index.d.ts.map +1 -1
  3. package/lib/codegen/index.js +12280 -190
  4. package/lib/codegen/targets/react/index.cjs +17366 -3198
  5. package/lib/codegen/targets/react/index.d.ts.map +1 -1
  6. package/lib/codegen/targets/react/index.js +17366 -3198
  7. package/lib/index.cjs +12286 -196
  8. package/lib/index.d.ts.map +1 -1
  9. package/lib/index.js +12286 -196
  10. package/package.json +4 -4
  11. package/src/codegen/component-properties.archive.ts +1019 -0
  12. package/src/codegen/component-properties.ts +191 -893
  13. package/src/codegen/index.ts +1 -1
  14. package/src/codegen/targets/react/component/handlers/action-button.ts +69 -66
  15. package/src/codegen/targets/react/component/handlers/alert-dialog.ts +2 -4
  16. package/src/codegen/targets/react/component/handlers/app-bar.ts +90 -87
  17. package/src/codegen/targets/react/component/handlers/archive/action-button.ts +144 -0
  18. package/src/codegen/targets/react/component/handlers/archive/alert-dialog.ts +122 -0
  19. package/src/codegen/targets/react/component/handlers/archive/app-bar.ts +149 -0
  20. package/src/codegen/targets/react/component/handlers/archive/avatar-stack.ts +35 -0
  21. package/src/codegen/targets/react/component/handlers/archive/avatar.ts +55 -0
  22. package/src/codegen/targets/react/component/handlers/archive/badge.ts +18 -0
  23. package/src/codegen/targets/react/component/handlers/archive/bottom-sheet.ts +70 -0
  24. package/src/codegen/targets/react/component/handlers/archive/callout.ts +88 -0
  25. package/src/codegen/targets/react/component/handlers/archive/checkbox.ts +41 -0
  26. package/src/codegen/targets/react/component/handlers/archive/checkmark.ts +29 -0
  27. package/src/codegen/targets/react/component/handlers/archive/chip.ts +90 -0
  28. package/src/codegen/targets/react/component/handlers/archive/contextual-floating-button.ts +52 -0
  29. package/src/codegen/targets/react/component/handlers/archive/divider.ts +25 -0
  30. package/src/codegen/targets/react/component/handlers/archive/field-button.ts +197 -0
  31. package/src/codegen/targets/react/component/handlers/archive/field.ts +167 -0
  32. package/src/codegen/targets/react/component/handlers/archive/floating-action-button.ts +48 -0
  33. package/src/codegen/targets/react/component/handlers/archive/help-bubble.ts +73 -0
  34. package/src/codegen/targets/react/component/handlers/archive/identity-placeholder.ts +21 -0
  35. package/src/codegen/targets/react/component/handlers/archive/index.ts +41 -0
  36. package/src/codegen/targets/react/component/handlers/archive/legacy-select-box.ts +89 -0
  37. package/src/codegen/targets/react/component/handlers/archive/legacy-text-field.ts +198 -0
  38. package/src/codegen/targets/react/component/handlers/archive/list-header.ts +20 -0
  39. package/src/codegen/targets/react/component/handlers/archive/list-item.ts +162 -0
  40. package/src/codegen/targets/react/component/handlers/archive/manner-temp-badge.ts +21 -0
  41. package/src/codegen/targets/react/component/handlers/archive/manner-temp.ts +18 -0
  42. package/src/codegen/targets/react/component/handlers/archive/menu-sheet.ts +108 -0
  43. package/src/codegen/targets/react/component/handlers/archive/page-banner.ts +101 -0
  44. package/src/codegen/targets/react/component/handlers/archive/progress-circle.ts +55 -0
  45. package/src/codegen/targets/react/component/handlers/archive/radio-group.ts +31 -0
  46. package/src/codegen/targets/react/component/handlers/archive/radiomark.ts +27 -0
  47. package/src/codegen/targets/react/component/handlers/archive/reaction-button.ts +37 -0
  48. package/src/codegen/targets/react/component/handlers/archive/result-section.ts +67 -0
  49. package/src/codegen/targets/react/component/handlers/archive/segmented-control.ts +64 -0
  50. package/src/codegen/targets/react/component/handlers/archive/skeleton.ts +26 -0
  51. package/src/codegen/targets/react/component/handlers/archive/slider.ts +114 -0
  52. package/src/codegen/targets/react/component/handlers/archive/snackbar.ts +25 -0
  53. package/src/codegen/targets/react/component/handlers/archive/switch.ts +39 -0
  54. package/src/codegen/targets/react/component/handlers/archive/switchmark.ts +26 -0
  55. package/src/codegen/targets/react/component/handlers/archive/tabs.ts +297 -0
  56. package/src/codegen/targets/react/component/handlers/archive/tag-group.ts +86 -0
  57. package/src/codegen/targets/react/component/handlers/archive/text-field.ts +264 -0
  58. package/src/codegen/targets/react/component/handlers/archive/toggle-button.ts +43 -0
  59. package/src/codegen/targets/react/component/handlers/avatar-stack.ts +5 -2
  60. package/src/codegen/targets/react/component/handlers/avatar.ts +42 -39
  61. package/src/codegen/targets/react/component/handlers/badge.ts +1 -1
  62. package/src/codegen/targets/react/component/handlers/bottom-sheet.ts +56 -49
  63. package/src/codegen/targets/react/component/handlers/callout.ts +1 -1
  64. package/src/codegen/targets/react/component/handlers/checkbox.ts +1 -1
  65. package/src/codegen/targets/react/component/handlers/checkmark.ts +1 -1
  66. package/src/codegen/targets/react/component/handlers/chip.ts +8 -5
  67. package/src/codegen/targets/react/component/handlers/contextual-floating-button.ts +1 -1
  68. package/src/codegen/targets/react/component/handlers/divider.ts +1 -1
  69. package/src/codegen/targets/react/component/handlers/field-button.ts +18 -16
  70. package/src/codegen/targets/react/component/handlers/field.ts +71 -74
  71. package/src/codegen/targets/react/component/handlers/floating-action-button.ts +3 -6
  72. package/src/codegen/targets/react/component/handlers/help-bubble.ts +1 -1
  73. package/src/codegen/targets/react/component/handlers/identity-placeholder.ts +10 -2
  74. package/src/codegen/targets/react/component/handlers/index.ts +41 -0
  75. package/src/codegen/targets/react/component/handlers/legacy-select-box.ts +3 -5
  76. package/src/codegen/targets/react/component/handlers/legacy-text-field.ts +3 -5
  77. package/src/codegen/targets/react/component/handlers/list-header.ts +1 -1
  78. package/src/codegen/targets/react/component/handlers/list-item.ts +19 -18
  79. package/src/codegen/targets/react/component/handlers/manner-temp-badge.ts +1 -1
  80. package/src/codegen/targets/react/component/handlers/manner-temp.ts +1 -1
  81. package/src/codegen/targets/react/component/handlers/menu-sheet.ts +45 -42
  82. package/src/codegen/targets/react/component/handlers/page-banner.ts +77 -72
  83. package/src/codegen/targets/react/component/handlers/progress-circle.ts +1 -1
  84. package/src/codegen/targets/react/component/handlers/radio-group.ts +1 -1
  85. package/src/codegen/targets/react/component/handlers/radiomark.ts +1 -1
  86. package/src/codegen/targets/react/component/handlers/reaction-button.ts +1 -1
  87. package/src/codegen/targets/react/component/handlers/result-section.ts +1 -1
  88. package/src/codegen/targets/react/component/handlers/segmented-control.ts +2 -3
  89. package/src/codegen/targets/react/component/handlers/skeleton.ts +1 -1
  90. package/src/codegen/targets/react/component/handlers/slider.ts +11 -8
  91. package/src/codegen/targets/react/component/handlers/snackbar.ts +1 -1
  92. package/src/codegen/targets/react/component/handlers/switch.ts +1 -1
  93. package/src/codegen/targets/react/component/handlers/switchmark.ts +1 -1
  94. package/src/codegen/targets/react/component/handlers/tabs.ts +39 -42
  95. package/src/codegen/targets/react/component/handlers/tag-group.ts +45 -41
  96. package/src/codegen/targets/react/component/handlers/text-field.ts +11 -22
  97. package/src/codegen/targets/react/component/handlers/toggle-button.ts +1 -1
  98. package/src/codegen/targets/react/component/index.ts +5 -115
  99. package/src/entities/data/__generated__/archive/component-sets/index.d.ts +2074 -0
  100. package/src/entities/data/__generated__/archive/component-sets/index.mjs +2074 -0
  101. package/src/entities/data/__generated__/archive/components/index.d.ts +116 -0
  102. package/src/entities/data/__generated__/archive/components/index.mjs +116 -0
  103. package/src/entities/data/__generated__/archive/styles/index.d.ts +3 -0
  104. package/src/entities/data/__generated__/archive/styles/index.mjs +429 -0
  105. package/src/entities/data/__generated__/archive/variable-collections/index.d.ts +3 -0
  106. package/src/entities/data/__generated__/archive/variable-collections/index.mjs +501 -0
  107. package/src/entities/data/__generated__/archive/variables/index.d.ts +3 -0
  108. package/src/entities/data/__generated__/archive/variables/index.mjs +7019 -0
  109. package/src/entities/data/__generated__/component-sets/index.d.ts +3442 -1306
  110. package/src/entities/data/__generated__/component-sets/index.mjs +3442 -1306
  111. package/src/entities/data/__generated__/components/index.d.ts +87 -85
  112. package/src/entities/data/__generated__/components/index.mjs +87 -85
  113. package/src/entities/data/__generated__/styles/index.mjs +9 -2
  114. package/src/entities/data/__generated__/variable-collections/index.mjs +150 -173
  115. package/src/entities/data/__generated__/variables/index.mjs +0 -74
  116. package/src/entities/index.ts +21 -7
@@ -0,0 +1,2074 @@
1
+ export declare const templateButtonGroup: {
2
+ "name": "templateButtonGroup",
3
+ "key": "29109a34197f2eb5d390b1d9ebba270979a7b302",
4
+ "componentPropertyDefinitions": {
5
+ "Size": {
6
+ "type": "VARIANT",
7
+ "variantOptions": [
8
+ "Small",
9
+ "Medium"
10
+ ]
11
+ },
12
+ "Type": {
13
+ "type": "VARIANT",
14
+ "variantOptions": [
15
+ "horizontal Equal",
16
+ "Horizontal Ratio"
17
+ ]
18
+ },
19
+ "Item Count": {
20
+ "type": "VARIANT",
21
+ "variantOptions": [
22
+ "2",
23
+ "3"
24
+ ]
25
+ }
26
+ }
27
+ };
28
+
29
+ export declare const templateChipGroup: {
30
+ "name": "templateChipGroup",
31
+ "key": "5b1155aae0f90d1bce6a7499f53a547e88ec3b86",
32
+ "componentPropertyDefinitions": {
33
+ "Variant": {
34
+ "type": "VARIANT",
35
+ "variantOptions": [
36
+ "Solid",
37
+ "Outline Strong",
38
+ "Outline Weak"
39
+ ]
40
+ },
41
+ "Size": {
42
+ "type": "VARIANT",
43
+ "variantOptions": [
44
+ "Large",
45
+ "Medium",
46
+ "Small"
47
+ ]
48
+ },
49
+ "Layout": {
50
+ "type": "VARIANT",
51
+ "variantOptions": [
52
+ "Scrollable",
53
+ "Overflow"
54
+ ]
55
+ }
56
+ }
57
+ };
58
+
59
+ export declare const templateCustomPickerField: {
60
+ "name": "templateCustomPickerField",
61
+ "key": "91d73dfc297a467d78dc91ade6ff9be9a152619e",
62
+ "componentPropertyDefinitions": {
63
+ "Show Header#40606:8": {
64
+ "type": "BOOLEAN"
65
+ },
66
+ "Show Footer#40606:9": {
67
+ "type": "BOOLEAN"
68
+ },
69
+ "State": {
70
+ "type": "VARIANT",
71
+ "variantOptions": [
72
+ "Enabled",
73
+ "Error",
74
+ "Disabled",
75
+ "Read Only"
76
+ ]
77
+ },
78
+ "Has Value": {
79
+ "type": "VARIANT",
80
+ "variantOptions": [
81
+ "False",
82
+ "True"
83
+ ]
84
+ }
85
+ }
86
+ };
87
+
88
+ export declare const templateDisclaimer: {
89
+ "name": "templateDisclaimer",
90
+ "key": "e08d2594b76c6c0107e34c0071cab8ef844c8998",
91
+ "componentPropertyDefinitions": {
92
+ "Show Title#54910:2": {
93
+ "type": "BOOLEAN"
94
+ },
95
+ "Size": {
96
+ "type": "VARIANT",
97
+ "variantOptions": [
98
+ "t4(14pt)",
99
+ "t5(16pt)"
100
+ ]
101
+ }
102
+ }
103
+ };
104
+
105
+ export declare const templateResultPage: {
106
+ "name": "templateResultPage",
107
+ "key": "4cc94782abbe7e58f0401c29ad8880a62e512ae7",
108
+ "componentPropertyDefinitions": {
109
+ "Show Top Navigation#58717:0": {
110
+ "type": "BOOLEAN"
111
+ },
112
+ "Show Bottom Action Bar#59845:0": {
113
+ "type": "BOOLEAN"
114
+ },
115
+ "Show Bottom Action Bar": {
116
+ "type": "VARIANT",
117
+ "variantOptions": [
118
+ "True",
119
+ "False"
120
+ ]
121
+ }
122
+ }
123
+ };
124
+
125
+ export declare const templateSliderField: {
126
+ "name": "templateSliderField",
127
+ "key": "7d2b449bcfb28ebf3c509ed76a141511f7d955eb",
128
+ "componentPropertyDefinitions": {
129
+ "Show Header#40606:8": {
130
+ "type": "BOOLEAN"
131
+ },
132
+ "Show Footer#40606:9": {
133
+ "type": "BOOLEAN"
134
+ },
135
+ "State": {
136
+ "type": "VARIANT",
137
+ "variantOptions": [
138
+ "Enabled",
139
+ "Pressed",
140
+ "Error",
141
+ "Disabled",
142
+ "Read Only"
143
+ ]
144
+ }
145
+ }
146
+ };
147
+
148
+ export declare const templateTextField: {
149
+ "name": "templateTextField",
150
+ "key": "0a83a0ff9d18d98a14536b21aa5411622f9f0c05",
151
+ "componentPropertyDefinitions": {
152
+ "Show Header#40606:8": {
153
+ "type": "BOOLEAN"
154
+ },
155
+ "Show Footer#40606:9": {
156
+ "type": "BOOLEAN"
157
+ },
158
+ "Variant": {
159
+ "type": "VARIANT",
160
+ "variantOptions": [
161
+ "Outline",
162
+ "Underline"
163
+ ]
164
+ },
165
+ "State": {
166
+ "type": "VARIANT",
167
+ "variantOptions": [
168
+ "Enabled",
169
+ "Focused",
170
+ "Error",
171
+ "Error Focused",
172
+ "Disabled",
173
+ "Read Only",
174
+ "AI Loading (Figma Only)"
175
+ ]
176
+ }
177
+ }
178
+ };
179
+
180
+ export declare const templateTextareaField: {
181
+ "name": "templateTextareaField",
182
+ "key": "cdc688eccd78b947289e8089a620bdc494f6c809",
183
+ "componentPropertyDefinitions": {
184
+ "Show Header#40606:8": {
185
+ "type": "BOOLEAN"
186
+ },
187
+ "Show Footer#40606:9": {
188
+ "type": "BOOLEAN"
189
+ },
190
+ "State": {
191
+ "type": "VARIANT",
192
+ "variantOptions": [
193
+ "Enabled",
194
+ "Focused",
195
+ "Error",
196
+ "Error Focused",
197
+ "Disabled",
198
+ "Read Only",
199
+ "AI Loading (Figma Only)"
200
+ ]
201
+ }
202
+ }
203
+ };
204
+
205
+ export declare const templateTopNavigation: {
206
+ "name": "templateTopNavigation",
207
+ "key": "74f045c1972dc31d0fddd0a0027537b6779cd0e8",
208
+ "componentPropertyDefinitions": {
209
+ "Action Button#17406:0": {
210
+ "type": "BOOLEAN"
211
+ },
212
+ "Sub Title#20497:0": {
213
+ "type": "BOOLEAN"
214
+ },
215
+ "Large Title#20497:5": {
216
+ "type": "TEXT"
217
+ },
218
+ "Sub Title #20497:10": {
219
+ "type": "TEXT"
220
+ },
221
+ "Variants": {
222
+ "type": "VARIANT",
223
+ "variantOptions": [
224
+ "Root",
225
+ "Root Preset",
226
+ "Standard",
227
+ "Standard Transparent",
228
+ "Large Title"
229
+ ]
230
+ }
231
+ }
232
+ };
233
+
234
+ export declare const actionButton: {
235
+ "name": "actionButton",
236
+ "key": "450ede9d0bf42fc6ef14345c77e6e407d6d5ee89",
237
+ "componentPropertyDefinitions": {
238
+ "Label#5987:61": {
239
+ "type": "TEXT"
240
+ },
241
+ "Suffix Icon#5987:244": {
242
+ "type": "INSTANCE_SWAP",
243
+ "preferredValues": []
244
+ },
245
+ "Prefix Icon#5987:305": {
246
+ "type": "INSTANCE_SWAP",
247
+ "preferredValues": []
248
+ },
249
+ "Icon#7574:0": {
250
+ "type": "INSTANCE_SWAP",
251
+ "preferredValues": []
252
+ },
253
+ "Size": {
254
+ "type": "VARIANT",
255
+ "variantOptions": [
256
+ "XSmall",
257
+ "Small",
258
+ "Medium",
259
+ "Large"
260
+ ]
261
+ },
262
+ "Layout": {
263
+ "type": "VARIANT",
264
+ "variantOptions": [
265
+ "Text Only",
266
+ "Icon First",
267
+ "Icon Last",
268
+ "Icon Only"
269
+ ]
270
+ },
271
+ "Variant": {
272
+ "type": "VARIANT",
273
+ "variantOptions": [
274
+ "Neutral Solid",
275
+ "Brand Solid",
276
+ "Critical Solid",
277
+ "Neutral Weak",
278
+ "Brand Outline",
279
+ "Neutral Outline"
280
+ ]
281
+ },
282
+ "State": {
283
+ "type": "VARIANT",
284
+ "variantOptions": [
285
+ "Enabled",
286
+ "Pressed",
287
+ "Loading",
288
+ "Disabled"
289
+ ]
290
+ }
291
+ }
292
+ };
293
+
294
+ export declare const alertDialog: {
295
+ "name": "alertDialog",
296
+ "key": "e0c89524a554ca1bf95c016b7255f29e257624aa",
297
+ "componentPropertyDefinitions": {
298
+ "Title Text#20361:0": {
299
+ "type": "TEXT"
300
+ },
301
+ "Description Text#20361:7": {
302
+ "type": "TEXT"
303
+ },
304
+ "Show Title#20361:14": {
305
+ "type": "BOOLEAN"
306
+ },
307
+ "Layout": {
308
+ "type": "VARIANT",
309
+ "variantOptions": [
310
+ "Single",
311
+ "Neutral",
312
+ "Neutral (Overflow)",
313
+ "Critical",
314
+ "Critical (Overflow)",
315
+ "Nonpreferred"
316
+ ]
317
+ }
318
+ }
319
+ };
320
+
321
+ export declare const avatar: {
322
+ "name": "avatar",
323
+ "key": "4a8853c3068c08b69b13e71dd42ce186e968697e",
324
+ "componentPropertyDefinitions": {
325
+ "Has Image Contents#33407:0": {
326
+ "type": "BOOLEAN"
327
+ },
328
+ "Size": {
329
+ "type": "VARIANT",
330
+ "variantOptions": [
331
+ "20",
332
+ "24",
333
+ "36",
334
+ "42",
335
+ "48",
336
+ "64",
337
+ "80",
338
+ "96",
339
+ "108"
340
+ ]
341
+ },
342
+ "Badge": {
343
+ "type": "VARIANT",
344
+ "variantOptions": [
345
+ "None",
346
+ "Circle",
347
+ "Shield",
348
+ "Flower"
349
+ ]
350
+ }
351
+ }
352
+ };
353
+
354
+ export declare const avatarStack: {
355
+ "name": "avatarStack",
356
+ "key": "e8e91e01000d878742c55cd6e44b6786460440f7",
357
+ "componentPropertyDefinitions": {
358
+ "Size": {
359
+ "type": "VARIANT",
360
+ "variantOptions": [
361
+ "20",
362
+ "24",
363
+ "36",
364
+ "42",
365
+ "48",
366
+ "64",
367
+ "80",
368
+ "96",
369
+ "108"
370
+ ]
371
+ }
372
+ }
373
+ };
374
+
375
+ export declare const badge: {
376
+ "name": "badge",
377
+ "key": "04609a35d47a1a0ef4904b3c25f79451892a85a1",
378
+ "componentPropertyDefinitions": {
379
+ "Label#1584:0": {
380
+ "type": "TEXT"
381
+ },
382
+ "Size": {
383
+ "type": "VARIANT",
384
+ "variantOptions": [
385
+ "Medium",
386
+ "Large"
387
+ ]
388
+ },
389
+ "Tone": {
390
+ "type": "VARIANT",
391
+ "variantOptions": [
392
+ "Neutral",
393
+ "Brand",
394
+ "Informative",
395
+ "Positive",
396
+ "Critical",
397
+ "Warning"
398
+ ]
399
+ },
400
+ "Variant": {
401
+ "type": "VARIANT",
402
+ "variantOptions": [
403
+ "Weak",
404
+ "Outline",
405
+ "Solid"
406
+ ]
407
+ }
408
+ }
409
+ };
410
+
411
+ export declare const bottomNavigationGlobal: {
412
+ "name": "bottomNavigationGlobal",
413
+ "key": "983650a4dff639b38bf68ff6004efc8ec4fb5c20",
414
+ "componentPropertyDefinitions": {
415
+ "Show Safe Area#25445:3": {
416
+ "type": "BOOLEAN"
417
+ },
418
+ "OS": {
419
+ "type": "VARIANT",
420
+ "variantOptions": [
421
+ "iOS",
422
+ "Android"
423
+ ]
424
+ },
425
+ "Language": {
426
+ "type": "VARIANT",
427
+ "variantOptions": [
428
+ "English",
429
+ "Japanese"
430
+ ]
431
+ }
432
+ }
433
+ };
434
+
435
+ export declare const bottomNavigationKr: {
436
+ "name": "bottomNavigationKr",
437
+ "key": "accc7cea2d0250cdfbf0197ce00a677c6b9e0dae",
438
+ "componentPropertyDefinitions": {
439
+ "Show Safe Area#25445:0": {
440
+ "type": "BOOLEAN"
441
+ },
442
+ "OS": {
443
+ "type": "VARIANT",
444
+ "variantOptions": [
445
+ "\biOS",
446
+ "Android"
447
+ ]
448
+ }
449
+ }
450
+ };
451
+
452
+ export declare const bottomSheet: {
453
+ "name": "bottomSheet",
454
+ "key": "16bafa5d1155896fe18fb6f52f904f5cd2048686",
455
+ "componentPropertyDefinitions": {
456
+ "Title#19787:3": {
457
+ "type": "TEXT"
458
+ },
459
+ "Description#19787:7": {
460
+ "type": "TEXT"
461
+ },
462
+ "Show Close Button#19787:11": {
463
+ "type": "BOOLEAN"
464
+ },
465
+ "Show Footer#25162:14": {
466
+ "type": "BOOLEAN"
467
+ },
468
+ "Show Description#25192:0": {
469
+ "type": "BOOLEAN"
470
+ },
471
+ "Contents#25320:0": {
472
+ "type": "INSTANCE_SWAP",
473
+ "preferredValues": [
474
+ {
475
+ "type": "COMPONENT_SET",
476
+ "key": "ec1901cb37dc88360ae8fd2b61f71e630fda7924"
477
+ },
478
+ {
479
+ "type": "COMPONENT",
480
+ "key": "5c5369d9c22115fd240d7b75ac2a334e9163ea57"
481
+ },
482
+ {
483
+ "type": "COMPONENT",
484
+ "key": "8670afb7520ac44dfed003e3e9c7cce359897d0c"
485
+ },
486
+ {
487
+ "type": "COMPONENT",
488
+ "key": "e3d337e6eddbe9ec025fe69520c1cff0bd697b60"
489
+ },
490
+ {
491
+ "type": "COMPONENT",
492
+ "key": "0c6c58d5b7a159e7db1a0c1ccf32916ca8a51164"
493
+ },
494
+ {
495
+ "type": "COMPONENT",
496
+ "key": "088624580ee501efed377bb4f42561a387db5699"
497
+ }
498
+ ]
499
+ },
500
+ "Show Safe Area#25488:8": {
501
+ "type": "BOOLEAN"
502
+ },
503
+ "Show Handle#49774:6": {
504
+ "type": "BOOLEAN"
505
+ },
506
+ "Show Scroll Fog(Figma Only)#53171:3": {
507
+ "type": "BOOLEAN"
508
+ },
509
+ "Header Layout": {
510
+ "type": "VARIANT",
511
+ "variantOptions": [
512
+ "Bottom Left",
513
+ "None",
514
+ "Bottom Center",
515
+ "Top Center",
516
+ "Top Left"
517
+ ]
518
+ }
519
+ }
520
+ };
521
+
522
+ export declare const callout: {
523
+ "name": "callout",
524
+ "key": "ec46d38baac3c367c4a5ffa47a2110d51ba0a4fe",
525
+ "componentPropertyDefinitions": {
526
+ "Prefix Icon#35087:0": {
527
+ "type": "INSTANCE_SWAP",
528
+ "preferredValues": []
529
+ },
530
+ "Show Prefix Icon#35087:1": {
531
+ "type": "BOOLEAN"
532
+ },
533
+ "Pressed#35087:2": {
534
+ "type": "BOOLEAN"
535
+ },
536
+ "Interaction": {
537
+ "type": "VARIANT",
538
+ "variantOptions": [
539
+ "Display",
540
+ "Actionable",
541
+ "Dismissible"
542
+ ]
543
+ },
544
+ "Tone": {
545
+ "type": "VARIANT",
546
+ "variantOptions": [
547
+ "Neutral",
548
+ "Informative",
549
+ "Critical",
550
+ "Warning",
551
+ "Magic",
552
+ "Positive"
553
+ ]
554
+ },
555
+ "Show Title": {
556
+ "type": "VARIANT",
557
+ "variantOptions": [
558
+ "False",
559
+ "True"
560
+ ]
561
+ },
562
+ "Show Link Text": {
563
+ "type": "VARIANT",
564
+ "variantOptions": [
565
+ "False",
566
+ "True"
567
+ ]
568
+ }
569
+ }
570
+ };
571
+
572
+ export declare const checkbox: {
573
+ "name": "checkbox",
574
+ "key": "94a2f6957a86f8ae3b8c7ca200dfcd5e29f6075b",
575
+ "componentPropertyDefinitions": {
576
+ "Label#49990:0": {
577
+ "type": "TEXT"
578
+ },
579
+ "Size": {
580
+ "type": "VARIANT",
581
+ "variantOptions": [
582
+ "Medium",
583
+ "Large"
584
+ ]
585
+ },
586
+ "Tone": {
587
+ "type": "VARIANT",
588
+ "variantOptions": [
589
+ "🚫[Deprecated]Brand",
590
+ "Neutral"
591
+ ]
592
+ },
593
+ "Shape": {
594
+ "type": "VARIANT",
595
+ "variantOptions": [
596
+ "Square",
597
+ "Ghost"
598
+ ]
599
+ },
600
+ "Weight": {
601
+ "type": "VARIANT",
602
+ "variantOptions": [
603
+ "Bold",
604
+ "Regular"
605
+ ]
606
+ },
607
+ "Selected": {
608
+ "type": "VARIANT",
609
+ "variantOptions": [
610
+ "True",
611
+ "False",
612
+ "Indeterminate"
613
+ ]
614
+ },
615
+ "State": {
616
+ "type": "VARIANT",
617
+ "variantOptions": [
618
+ "Enabled",
619
+ "Pressed",
620
+ "Disabled"
621
+ ]
622
+ }
623
+ }
624
+ };
625
+
626
+ export declare const checkmark: {
627
+ "name": "checkmark",
628
+ "key": "fae60fb392f55bde60de1dbccb2f453320068805",
629
+ "componentPropertyDefinitions": {
630
+ "Size": {
631
+ "type": "VARIANT",
632
+ "variantOptions": [
633
+ "Medium",
634
+ "Large"
635
+ ]
636
+ },
637
+ "Tone": {
638
+ "type": "VARIANT",
639
+ "variantOptions": [
640
+ "🚫[Deprecated]Brand",
641
+ "Neutral"
642
+ ]
643
+ },
644
+ "Shape": {
645
+ "type": "VARIANT",
646
+ "variantOptions": [
647
+ "Square",
648
+ "Ghost"
649
+ ]
650
+ },
651
+ "Selected": {
652
+ "type": "VARIANT",
653
+ "variantOptions": [
654
+ "True",
655
+ "False",
656
+ "Indeterminate"
657
+ ]
658
+ },
659
+ "State": {
660
+ "type": "VARIANT",
661
+ "variantOptions": [
662
+ "Enabled",
663
+ "Pressed",
664
+ "Disabled"
665
+ ]
666
+ }
667
+ }
668
+ };
669
+
670
+ export declare const chip: {
671
+ "name": "chip",
672
+ "key": "8156ef08d9aaa2b0de1cc4a113ec0c9d0586f831",
673
+ "componentPropertyDefinitions": {
674
+ "Label#7185:0": {
675
+ "type": "TEXT"
676
+ },
677
+ "Prefix Icon#8722:0": {
678
+ "type": "INSTANCE_SWAP",
679
+ "preferredValues": [
680
+ {
681
+ "type": "COMPONENT_SET",
682
+ "key": "8ed05ef62a40f2dc034ee7eb6945bd0e63ad49aa"
683
+ }
684
+ ]
685
+ },
686
+ "Suffix Type#32538:0": {
687
+ "type": "INSTANCE_SWAP",
688
+ "preferredValues": [
689
+ {
690
+ "type": "COMPONENT",
691
+ "key": "27343e0e5ab2c66948e9b10fde03d58b5e037212"
692
+ },
693
+ {
694
+ "type": "COMPONENT",
695
+ "key": "5f0d74c959c49dadf5920b19c6267924982ab130"
696
+ },
697
+ {
698
+ "type": "COMPONENT",
699
+ "key": "a1233c35c4368aba2439d39bc8aedc37cf95bd86"
700
+ },
701
+ {
702
+ "type": "COMPONENT_SET",
703
+ "key": "43b6e51bc372e108a4ee17fbf4c75800d95f4b8c"
704
+ },
705
+ {
706
+ "type": "COMPONENT_SET",
707
+ "key": "df43b92004c850e7c6d2869e7a4ba1ef9a2d7db6"
708
+ },
709
+ {
710
+ "type": "COMPONENT_SET",
711
+ "key": "19923052d4152393ecdc6e2f5853ea0359849127"
712
+ }
713
+ ]
714
+ },
715
+ "Has Suffix#32538:181": {
716
+ "type": "BOOLEAN"
717
+ },
718
+ "Variant": {
719
+ "type": "VARIANT",
720
+ "variantOptions": [
721
+ "Solid",
722
+ "Outline Strong",
723
+ "Outline Weak"
724
+ ]
725
+ },
726
+ "Size": {
727
+ "type": "VARIANT",
728
+ "variantOptions": [
729
+ "Large",
730
+ "Medium",
731
+ "Small"
732
+ ]
733
+ },
734
+ "Selected": {
735
+ "type": "VARIANT",
736
+ "variantOptions": [
737
+ "False",
738
+ "True"
739
+ ]
740
+ },
741
+ "State": {
742
+ "type": "VARIANT",
743
+ "variantOptions": [
744
+ "Enabled",
745
+ "Pressed",
746
+ "Disabled"
747
+ ]
748
+ },
749
+ "Prefix Type": {
750
+ "type": "VARIANT",
751
+ "variantOptions": [
752
+ "None",
753
+ "Icon",
754
+ "Avatar",
755
+ "Image"
756
+ ]
757
+ }
758
+ }
759
+ };
760
+
761
+ export declare const chlid: {
762
+ "name": "chlid",
763
+ "key": "aa9ffdd60fbfdea42f0d11162cd64f4b4389ddcc",
764
+ "componentPropertyDefinitions": {
765
+ "Type": {
766
+ "type": "VARIANT",
767
+ "variantOptions": [
768
+ "Child",
769
+ "Text",
770
+ "Slot"
771
+ ]
772
+ }
773
+ }
774
+ };
775
+
776
+ export declare const contextualFloatingButton: {
777
+ "name": "contextualFloatingButton",
778
+ "key": "032f3fddaad0aa3fa5a7f680768c1f5d02fb463f",
779
+ "componentPropertyDefinitions": {
780
+ "Icon#28796:0": {
781
+ "type": "INSTANCE_SWAP",
782
+ "preferredValues": []
783
+ },
784
+ "Label#28936:0": {
785
+ "type": "TEXT"
786
+ },
787
+ "Layout": {
788
+ "type": "VARIANT",
789
+ "variantOptions": [
790
+ "Icon First",
791
+ "Icon Only"
792
+ ]
793
+ },
794
+ "Variant": {
795
+ "type": "VARIANT",
796
+ "variantOptions": [
797
+ "Solid",
798
+ "Layer"
799
+ ]
800
+ },
801
+ "State": {
802
+ "type": "VARIANT",
803
+ "variantOptions": [
804
+ "Enabled",
805
+ "Pressed",
806
+ "Loading",
807
+ "Disabled"
808
+ ]
809
+ }
810
+ }
811
+ };
812
+
813
+ export declare const divider: {
814
+ "name": "divider",
815
+ "key": "848e953725f757ea1a79e1fecc0b608a035032d3",
816
+ "componentPropertyDefinitions": {
817
+ "Inset (Figma-Only)#36435:0": {
818
+ "type": "BOOLEAN"
819
+ },
820
+ "Tone": {
821
+ "type": "VARIANT",
822
+ "variantOptions": [
823
+ "Neutral Muted",
824
+ "Neutral Subtle"
825
+ ]
826
+ },
827
+ "Orientation": {
828
+ "type": "VARIANT",
829
+ "variantOptions": [
830
+ "Vertical",
831
+ "Horizontal"
832
+ ]
833
+ }
834
+ }
835
+ };
836
+
837
+ export declare const floatingActionButton: {
838
+ "name": "floatingActionButton",
839
+ "key": "65f9e7eede627b893fb8ff94ed9a7d0db900c464",
840
+ "componentPropertyDefinitions": {
841
+ "Type": {
842
+ "type": "VARIANT",
843
+ "variantOptions": [
844
+ "Button",
845
+ "Menu"
846
+ ]
847
+ }
848
+ }
849
+ };
850
+
851
+ export declare const helpBubble: {
852
+ "name": "helpBubble",
853
+ "key": "804b327c091278a40d5891939eaed90bb2889659",
854
+ "componentPropertyDefinitions": {
855
+ "Show Close Button#40538:0": {
856
+ "type": "BOOLEAN"
857
+ },
858
+ "Show Description#62499:0": {
859
+ "type": "BOOLEAN"
860
+ },
861
+ "Title#62535:0": {
862
+ "type": "TEXT"
863
+ },
864
+ "Description#62535:98": {
865
+ "type": "TEXT"
866
+ },
867
+ "Placement": {
868
+ "type": "VARIANT",
869
+ "variantOptions": [
870
+ "Right-Top",
871
+ "Right-Center",
872
+ "Right-Bottom",
873
+ "Left-Top",
874
+ "Left-Center",
875
+ "Left-Bottom",
876
+ "Bottom-Left",
877
+ "Bottom-Center",
878
+ "Bottom-Right",
879
+ "Top-Left",
880
+ "Top-Center",
881
+ "Top-Right"
882
+ ]
883
+ }
884
+ }
885
+ };
886
+
887
+ export declare const imageFrame: {
888
+ "name": "imageFrame",
889
+ "key": "b12f0bdeb6c6a61e0d50fe7e0dfae8ecd323f0aa",
890
+ "componentPropertyDefinitions": {
891
+ "Has Image Contents#29729:0": {
892
+ "type": "BOOLEAN"
893
+ },
894
+ "Left Top#58686:0": {
895
+ "type": "INSTANCE_SWAP",
896
+ "preferredValues": [
897
+ {
898
+ "type": "COMPONENT",
899
+ "key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
900
+ },
901
+ {
902
+ "type": "COMPONENT",
903
+ "key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
904
+ },
905
+ {
906
+ "type": "COMPONENT",
907
+ "key": "146925b01e772269f042df51f8d2cd5b4e492111"
908
+ },
909
+ {
910
+ "type": "COMPONENT",
911
+ "key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
912
+ },
913
+ {
914
+ "type": "COMPONENT",
915
+ "key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
916
+ }
917
+ ]
918
+ },
919
+ "Show Overlay#58686:33": {
920
+ "type": "BOOLEAN"
921
+ },
922
+ "Right Top#58686:66": {
923
+ "type": "INSTANCE_SWAP",
924
+ "preferredValues": [
925
+ {
926
+ "type": "COMPONENT",
927
+ "key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
928
+ },
929
+ {
930
+ "type": "COMPONENT",
931
+ "key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
932
+ },
933
+ {
934
+ "type": "COMPONENT",
935
+ "key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
936
+ },
937
+ {
938
+ "type": "COMPONENT",
939
+ "key": "146925b01e772269f042df51f8d2cd5b4e492111"
940
+ },
941
+ {
942
+ "type": "COMPONENT",
943
+ "key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
944
+ }
945
+ ]
946
+ },
947
+ "Left Bottom#58686:99": {
948
+ "type": "INSTANCE_SWAP",
949
+ "preferredValues": [
950
+ {
951
+ "type": "COMPONENT",
952
+ "key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
953
+ },
954
+ {
955
+ "type": "COMPONENT",
956
+ "key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
957
+ },
958
+ {
959
+ "type": "COMPONENT",
960
+ "key": "146925b01e772269f042df51f8d2cd5b4e492111"
961
+ },
962
+ {
963
+ "type": "COMPONENT",
964
+ "key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
965
+ },
966
+ {
967
+ "type": "COMPONENT",
968
+ "key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
969
+ }
970
+ ]
971
+ },
972
+ "Right Bottom#58686:132": {
973
+ "type": "INSTANCE_SWAP",
974
+ "preferredValues": [
975
+ {
976
+ "type": "COMPONENT",
977
+ "key": "a711c13770db66a6a9d8dfec9205b301fb4abf4d"
978
+ },
979
+ {
980
+ "type": "COMPONENT",
981
+ "key": "00da9dcf0cc4e408d2e36da56d0701dce6cee6b0"
982
+ },
983
+ {
984
+ "type": "COMPONENT",
985
+ "key": "0135e13dd2ded277e5d024f2d9ccc37f9aa7cf38"
986
+ },
987
+ {
988
+ "type": "COMPONENT",
989
+ "key": "146925b01e772269f042df51f8d2cd5b4e492111"
990
+ },
991
+ {
992
+ "type": "COMPONENT",
993
+ "key": "4907a3a324539a374a81c8255ac8ae2fc6769622"
994
+ }
995
+ ]
996
+ },
997
+ "ㄴ Left Top#58686:165": {
998
+ "type": "BOOLEAN"
999
+ },
1000
+ "ㄴ Right Top#58686:198": {
1001
+ "type": "BOOLEAN"
1002
+ },
1003
+ "ㄴ Left Bottom#58686:231": {
1004
+ "type": "BOOLEAN"
1005
+ },
1006
+ "ㄴ Right Bottom#58686:264": {
1007
+ "type": "BOOLEAN"
1008
+ },
1009
+ "Ratio": {
1010
+ "type": "VARIANT",
1011
+ "variantOptions": [
1012
+ "1:1",
1013
+ "2:1",
1014
+ "16:9",
1015
+ "4:3",
1016
+ "6:7",
1017
+ "4:5",
1018
+ "2:3"
1019
+ ]
1020
+ },
1021
+ "Size": {
1022
+ "type": "VARIANT",
1023
+ "variantOptions": [
1024
+ "20",
1025
+ "24",
1026
+ "36",
1027
+ "42",
1028
+ "48",
1029
+ "64",
1030
+ "80",
1031
+ "96",
1032
+ "120",
1033
+ "\bFree"
1034
+ ]
1035
+ },
1036
+ "Rounded": {
1037
+ "type": "VARIANT",
1038
+ "variantOptions": [
1039
+ "True",
1040
+ "False"
1041
+ ]
1042
+ }
1043
+ }
1044
+ };
1045
+
1046
+ export declare const listHeader: {
1047
+ "name": "listHeader",
1048
+ "key": "609f93ed0608ef0a6d9a351e47595ad631bae0fa",
1049
+ "componentPropertyDefinitions": {
1050
+ "Title#28588:0": {
1051
+ "type": "TEXT"
1052
+ },
1053
+ "Suffix": {
1054
+ "type": "VARIANT",
1055
+ "variantOptions": [
1056
+ "None",
1057
+ "Custom",
1058
+ "Button"
1059
+ ]
1060
+ },
1061
+ "Variant": {
1062
+ "type": "VARIANT",
1063
+ "variantOptions": [
1064
+ "Medium Weak",
1065
+ "Bold Solid"
1066
+ ]
1067
+ }
1068
+ }
1069
+ };
1070
+
1071
+ export declare const listItem: {
1072
+ "name": "listItem",
1073
+ "key": "b51b7d07c659fee5d696565b8e1151636573b27c",
1074
+ "componentPropertyDefinitions": {
1075
+ "Divider#28441:0": {
1076
+ "type": "BOOLEAN"
1077
+ },
1078
+ "Suffix Type#28441:42": {
1079
+ "type": "INSTANCE_SWAP",
1080
+ "preferredValues": [
1081
+ {
1082
+ "type": "COMPONENT",
1083
+ "key": "8c52207687ffed15cd5931d71ed9d196b3358a68"
1084
+ },
1085
+ {
1086
+ "type": "COMPONENT",
1087
+ "key": "fe0e25f4fecda59d0a3730ead7c5bc0a66a41e7e"
1088
+ },
1089
+ {
1090
+ "type": "COMPONENT",
1091
+ "key": "abf9810103ae6e6afe8fa253ec5f05d6a7304b38"
1092
+ },
1093
+ {
1094
+ "type": "COMPONENT",
1095
+ "key": "0a9464ad270bfd7f56438f62bb0155a25ca146a9"
1096
+ },
1097
+ {
1098
+ "type": "COMPONENT",
1099
+ "key": "4cc7e9b84a8388a36cb3898c6c02e6110a3281b9"
1100
+ },
1101
+ {
1102
+ "type": "COMPONENT",
1103
+ "key": "1e933f75dd6bb4b21c3289b5c3b4402d2c623125"
1104
+ },
1105
+ {
1106
+ "type": "COMPONENT",
1107
+ "key": "11ba71b11b336199654cd2801967a44996705449"
1108
+ },
1109
+ {
1110
+ "type": "COMPONENT",
1111
+ "key": "c0eaee6146c6dc92bfd9b081d667f45ee611b1d2"
1112
+ },
1113
+ {
1114
+ "type": "COMPONENT_SET",
1115
+ "key": "3d788f28c785d1c60b937b253c39ce582dbe1ed3"
1116
+ },
1117
+ {
1118
+ "type": "COMPONENT_SET",
1119
+ "key": "5636566f6de6f58200dce388f7b1ac9f517b30e1"
1120
+ },
1121
+ {
1122
+ "type": "COMPONENT",
1123
+ "key": "3a70bf5bb9856c13893931b7a0df652bcf0be895"
1124
+ }
1125
+ ]
1126
+ },
1127
+ "Title#28452:21": {
1128
+ "type": "TEXT"
1129
+ },
1130
+ "Has Suffix#28452:64": {
1131
+ "type": "BOOLEAN"
1132
+ },
1133
+ "Has Prefix#28452:85": {
1134
+ "type": "BOOLEAN"
1135
+ },
1136
+ "Prefix Type#28452:106": {
1137
+ "type": "INSTANCE_SWAP",
1138
+ "preferredValues": [
1139
+ {
1140
+ "type": "COMPONENT",
1141
+ "key": "0e4c05f097d3fa2dc0cbfdbf8db2662bcf8439ca"
1142
+ },
1143
+ {
1144
+ "type": "COMPONENT",
1145
+ "key": "ef0e8bd6c2f92e620acf204bb9a8079ef25a1e5c"
1146
+ },
1147
+ {
1148
+ "type": "COMPONENT",
1149
+ "key": "82239325aa1cb65af7c649fc71a8f2b48fb9b9f3"
1150
+ },
1151
+ {
1152
+ "type": "COMPONENT",
1153
+ "key": "f24c9ef42ef08df79483fbae0fa7d9037e566748"
1154
+ },
1155
+ {
1156
+ "type": "COMPONENT",
1157
+ "key": "5a77ad37a2291989dfe77c44ddee9aa39e447f90"
1158
+ },
1159
+ {
1160
+ "type": "COMPONENT",
1161
+ "key": "81f201fc876e38f016ab7427a6b3da000ee919a2"
1162
+ }
1163
+ ]
1164
+ },
1165
+ "Has Detail#28469:1": {
1166
+ "type": "BOOLEAN"
1167
+ },
1168
+ "Detail Type#28469:11": {
1169
+ "type": "INSTANCE_SWAP",
1170
+ "preferredValues": [
1171
+ {
1172
+ "type": "COMPONENT",
1173
+ "key": "b27f70404d8f055ec39f9049a5a86920c11be979"
1174
+ },
1175
+ {
1176
+ "type": "COMPONENT",
1177
+ "key": "43795c2e3e507dc555f9ec08bf4bf1abf8c2051a"
1178
+ },
1179
+ {
1180
+ "type": "COMPONENT",
1181
+ "key": "73bcdff1b73998d1f440fb8827df2eafc4338c1d"
1182
+ }
1183
+ ]
1184
+ },
1185
+ "Title #28487:0": {
1186
+ "type": "TEXT"
1187
+ },
1188
+ "Detail Type #28487:11": {
1189
+ "type": "INSTANCE_SWAP",
1190
+ "preferredValues": [
1191
+ {
1192
+ "type": "COMPONENT",
1193
+ "key": "870d50d39feae5bcfd59d7fbf8ae510233a97a8b"
1194
+ },
1195
+ {
1196
+ "type": "COMPONENT",
1197
+ "key": "43795c2e3e507dc555f9ec08bf4bf1abf8c2051a"
1198
+ },
1199
+ {
1200
+ "type": "COMPONENT",
1201
+ "key": "73bcdff1b73998d1f440fb8827df2eafc4338c1d"
1202
+ }
1203
+ ]
1204
+ },
1205
+ "State": {
1206
+ "type": "VARIANT",
1207
+ "variantOptions": [
1208
+ "Enabled",
1209
+ "Pressed",
1210
+ "Disabled"
1211
+ ]
1212
+ },
1213
+ "Variants": {
1214
+ "type": "VARIANT",
1215
+ "variantOptions": [
1216
+ "Single Line",
1217
+ "Multi Line"
1218
+ ]
1219
+ },
1220
+ "Highlighted": {
1221
+ "type": "VARIANT",
1222
+ "variantOptions": [
1223
+ "True",
1224
+ "False"
1225
+ ]
1226
+ }
1227
+ }
1228
+ };
1229
+
1230
+ export declare const mannerTemp: {
1231
+ "name": "mannerTemp",
1232
+ "key": "37c0a35f73a730fdfba7929cea91a7590fc93733",
1233
+ "componentPropertyDefinitions": {
1234
+ "Level": {
1235
+ "type": "VARIANT",
1236
+ "variantOptions": [
1237
+ "L1",
1238
+ "L2",
1239
+ "L3",
1240
+ "L4",
1241
+ "L5",
1242
+ "L6",
1243
+ "L7",
1244
+ "L8",
1245
+ "L9",
1246
+ "L10"
1247
+ ]
1248
+ }
1249
+ }
1250
+ };
1251
+
1252
+ export declare const mannerTempBadge: {
1253
+ "name": "mannerTempBadge",
1254
+ "key": "3ef9a84d4d80046ff9a581136bd56269554a6e00",
1255
+ "componentPropertyDefinitions": {
1256
+ "Level": {
1257
+ "type": "VARIANT",
1258
+ "variantOptions": [
1259
+ "L1",
1260
+ "L2",
1261
+ "L3",
1262
+ "L4",
1263
+ "L5",
1264
+ "L6",
1265
+ "L7",
1266
+ "L8",
1267
+ "L9",
1268
+ "L10"
1269
+ ]
1270
+ }
1271
+ }
1272
+ };
1273
+
1274
+ export declare const menuSheet: {
1275
+ "name": "menuSheet",
1276
+ "key": "cd4cf8a850bf3de87b79080b36b421a649bf3fcb",
1277
+ "componentPropertyDefinitions": {
1278
+ "Title Text#14599:0": {
1279
+ "type": "TEXT"
1280
+ },
1281
+ "Show Header#17043:12": {
1282
+ "type": "BOOLEAN"
1283
+ },
1284
+ "Description Text#21827:0": {
1285
+ "type": "TEXT"
1286
+ },
1287
+ "Show Safe Area#25531:15": {
1288
+ "type": "BOOLEAN"
1289
+ },
1290
+ "Show Header Description#32984:0": {
1291
+ "type": "BOOLEAN"
1292
+ },
1293
+ "Menu Group Count": {
1294
+ "type": "VARIANT",
1295
+ "variantOptions": [
1296
+ "1",
1297
+ "2",
1298
+ "3"
1299
+ ]
1300
+ },
1301
+ "Layout": {
1302
+ "type": "VARIANT",
1303
+ "variantOptions": [
1304
+ "Text Only",
1305
+ "Text with Icon"
1306
+ ]
1307
+ }
1308
+ }
1309
+ };
1310
+
1311
+ export declare const pageBanner: {
1312
+ "name": "pageBanner",
1313
+ "key": "ce587d0f21754af05240cb32a4880227cb0ea1e1",
1314
+ "componentPropertyDefinitions": {
1315
+ "Show Prefix Icon#11840:27": {
1316
+ "type": "BOOLEAN"
1317
+ },
1318
+ "Prefix Icon#35433:45": {
1319
+ "type": "INSTANCE_SWAP",
1320
+ "preferredValues": []
1321
+ },
1322
+ "Pressed#36736:0": {
1323
+ "type": "BOOLEAN"
1324
+ },
1325
+ "Interaction": {
1326
+ "type": "VARIANT",
1327
+ "variantOptions": [
1328
+ "Display",
1329
+ "Display (With Action)",
1330
+ "Actionable",
1331
+ "Dismissible",
1332
+ "Actionable (Custom)"
1333
+ ]
1334
+ },
1335
+ "Tone": {
1336
+ "type": "VARIANT",
1337
+ "variantOptions": [
1338
+ "Neutral",
1339
+ "Informative",
1340
+ "Positive",
1341
+ "Warning",
1342
+ "Critical",
1343
+ "Magic"
1344
+ ]
1345
+ },
1346
+ "Variant": {
1347
+ "type": "VARIANT",
1348
+ "variantOptions": [
1349
+ "Weak",
1350
+ "Solid"
1351
+ ]
1352
+ },
1353
+ "Show Title": {
1354
+ "type": "VARIANT",
1355
+ "variantOptions": [
1356
+ "False",
1357
+ "True"
1358
+ ]
1359
+ }
1360
+ }
1361
+ };
1362
+
1363
+ export declare const progressCircle: {
1364
+ "name": "progressCircle",
1365
+ "key": "6e6779a372cab2485a0e25529bc4dbc9932a7346",
1366
+ "componentPropertyDefinitions": {
1367
+ "Size": {
1368
+ "type": "VARIANT",
1369
+ "variantOptions": [
1370
+ "24",
1371
+ "40"
1372
+ ]
1373
+ },
1374
+ "Tone": {
1375
+ "type": "VARIANT",
1376
+ "variantOptions": [
1377
+ "Neutral",
1378
+ "Brand",
1379
+ "Static White",
1380
+ "Custom(inherit)"
1381
+ ]
1382
+ },
1383
+ "Value": {
1384
+ "type": "VARIANT",
1385
+ "variantOptions": [
1386
+ "Indeterminate",
1387
+ "0%",
1388
+ "25%",
1389
+ "75%",
1390
+ "100%"
1391
+ ]
1392
+ }
1393
+ }
1394
+ };
1395
+
1396
+ export declare const radio: {
1397
+ "name": "radio",
1398
+ "key": "ac72d9e5ab04a1d59eaf77dffd380fd6e491ecf8",
1399
+ "componentPropertyDefinitions": {
1400
+ "Label#49990:171": {
1401
+ "type": "TEXT"
1402
+ },
1403
+ "Size": {
1404
+ "type": "VARIANT",
1405
+ "variantOptions": [
1406
+ "Medium",
1407
+ "Large"
1408
+ ]
1409
+ },
1410
+ "Tone": {
1411
+ "type": "VARIANT",
1412
+ "variantOptions": [
1413
+ "Neutral",
1414
+ "🚫[Deprecated]Brand"
1415
+ ]
1416
+ },
1417
+ "Weight": {
1418
+ "type": "VARIANT",
1419
+ "variantOptions": [
1420
+ "Regular",
1421
+ "Bold"
1422
+ ]
1423
+ },
1424
+ "Selected": {
1425
+ "type": "VARIANT",
1426
+ "variantOptions": [
1427
+ "True",
1428
+ "False"
1429
+ ]
1430
+ },
1431
+ "State": {
1432
+ "type": "VARIANT",
1433
+ "variantOptions": [
1434
+ "Enabled",
1435
+ "Pressed",
1436
+ "Disabled"
1437
+ ]
1438
+ }
1439
+ }
1440
+ };
1441
+
1442
+ export declare const radiomark: {
1443
+ "name": "radiomark",
1444
+ "key": "832d696d6e9566610968cd70f128f500ec009d6a",
1445
+ "componentPropertyDefinitions": {
1446
+ "Size": {
1447
+ "type": "VARIANT",
1448
+ "variantOptions": [
1449
+ "Medium",
1450
+ "Large"
1451
+ ]
1452
+ },
1453
+ "Tone": {
1454
+ "type": "VARIANT",
1455
+ "variantOptions": [
1456
+ "Neutral",
1457
+ "🚫[Deprecated]Brand"
1458
+ ]
1459
+ },
1460
+ "Selected": {
1461
+ "type": "VARIANT",
1462
+ "variantOptions": [
1463
+ "True",
1464
+ "False"
1465
+ ]
1466
+ },
1467
+ "State": {
1468
+ "type": "VARIANT",
1469
+ "variantOptions": [
1470
+ "Enabled",
1471
+ "Pressed",
1472
+ "Disabled"
1473
+ ]
1474
+ }
1475
+ }
1476
+ };
1477
+
1478
+ export declare const reactionButton: {
1479
+ "name": "reactionButton",
1480
+ "key": "ec43e4e881f7048e95601f8b58c01a0905a174e0",
1481
+ "componentPropertyDefinitions": {
1482
+ "Label#6397:0": {
1483
+ "type": "TEXT"
1484
+ },
1485
+ "Show Count#6397:33": {
1486
+ "type": "BOOLEAN"
1487
+ },
1488
+ "Icon#12379:0": {
1489
+ "type": "INSTANCE_SWAP",
1490
+ "preferredValues": []
1491
+ },
1492
+ "Count#15816:0": {
1493
+ "type": "TEXT"
1494
+ },
1495
+ "Size": {
1496
+ "type": "VARIANT",
1497
+ "variantOptions": [
1498
+ "XSmall",
1499
+ "Small"
1500
+ ]
1501
+ },
1502
+ "Selected": {
1503
+ "type": "VARIANT",
1504
+ "variantOptions": [
1505
+ "True",
1506
+ "False"
1507
+ ]
1508
+ },
1509
+ "State": {
1510
+ "type": "VARIANT",
1511
+ "variantOptions": [
1512
+ "Enabled",
1513
+ "Pressed",
1514
+ "Loading",
1515
+ "Disabled"
1516
+ ]
1517
+ }
1518
+ }
1519
+ };
1520
+
1521
+ export declare const resizableIcon: {
1522
+ "name": "resizableIcon",
1523
+ "key": "1f74eedb6fb186fd201d6ad5b2dbcd46a2bddf3e",
1524
+ "componentPropertyDefinitions": {
1525
+ "Size": {
1526
+ "type": "VARIANT",
1527
+ "variantOptions": [
1528
+ "12",
1529
+ "14",
1530
+ "16",
1531
+ "20",
1532
+ "24",
1533
+ "28",
1534
+ "32"
1535
+ ]
1536
+ }
1537
+ }
1538
+ };
1539
+
1540
+ export declare const resizableChild: {
1541
+ "name": "resizableChild",
1542
+ "key": "df43b92004c850e7c6d2869e7a4ba1ef9a2d7db6",
1543
+ "componentPropertyDefinitions": {
1544
+ "Size": {
1545
+ "type": "VARIANT",
1546
+ "variantOptions": [
1547
+ "12",
1548
+ "14",
1549
+ "16",
1550
+ "20",
1551
+ "24",
1552
+ "28",
1553
+ "32"
1554
+ ]
1555
+ }
1556
+ }
1557
+ };
1558
+
1559
+ export declare const resultSection: {
1560
+ "name": "resultSection",
1561
+ "key": "fabd52c41c63d921e37e0a1de373e4df2b496f30",
1562
+ "componentPropertyDefinitions": {
1563
+ "Title#16237:0": {
1564
+ "type": "TEXT"
1565
+ },
1566
+ "Description#16237:5": {
1567
+ "type": "TEXT"
1568
+ },
1569
+ "Asset Type#45154:9": {
1570
+ "type": "INSTANCE_SWAP",
1571
+ "preferredValues": [
1572
+ {
1573
+ "type": "COMPONENT",
1574
+ "key": "3f2ed06bd34fbaf24d371cefa973e09e2c2572bf"
1575
+ },
1576
+ {
1577
+ "type": "COMPONENT",
1578
+ "key": "bf1ad3ad5c45a2e94fd800f7f6ecbe52ba0667ab"
1579
+ },
1580
+ {
1581
+ "type": "COMPONENT",
1582
+ "key": "d357dcf0fbff80f3bfa70fe4fd5d48a9bddd1b49"
1583
+ },
1584
+ {
1585
+ "type": "COMPONENT",
1586
+ "key": "a53df434b562c1eeb04dab9abd88431989c5fc33"
1587
+ },
1588
+ {
1589
+ "type": "COMPONENT",
1590
+ "key": "5e53811a1e1444deccb5147b6a57196a3be467c9"
1591
+ },
1592
+ {
1593
+ "type": "COMPONENT",
1594
+ "key": "3ff3999d2d2bbed2c7656210793d4f083901f73b"
1595
+ },
1596
+ {
1597
+ "type": "COMPONENT",
1598
+ "key": "56fcf964b7784ca83eaf6c9b1531de6150d23a0d"
1599
+ },
1600
+ {
1601
+ "type": "COMPONENT",
1602
+ "key": "5652618ddd66c844ab977d083d0dc41cb98f98ae"
1603
+ }
1604
+ ]
1605
+ },
1606
+ "Show Asset#45154:14": {
1607
+ "type": "BOOLEAN"
1608
+ },
1609
+ "Show Buttons#53435:0": {
1610
+ "type": "BOOLEAN"
1611
+ },
1612
+ "ㄴShow First Button#53766:0": {
1613
+ "type": "BOOLEAN"
1614
+ },
1615
+ "ㄴShow Second Button#53766:3": {
1616
+ "type": "BOOLEAN"
1617
+ },
1618
+ "Size": {
1619
+ "type": "VARIANT",
1620
+ "variantOptions": [
1621
+ "Large",
1622
+ "Medium"
1623
+ ]
1624
+ }
1625
+ }
1626
+ };
1627
+
1628
+ export declare const rootTopNavigationGlobal: {
1629
+ "name": "rootTopNavigationGlobal",
1630
+ "key": "a694a1da14a5c1d7d5c66bc78218c0c61fb388ab",
1631
+ "componentPropertyDefinitions": {
1632
+ "Title#6406:6": {
1633
+ "type": "TEXT"
1634
+ },
1635
+ "Button Label#6409:18": {
1636
+ "type": "TEXT"
1637
+ },
1638
+ "Show Button#52619:0": {
1639
+ "type": "BOOLEAN"
1640
+ },
1641
+ "Title Type": {
1642
+ "type": "VARIANT",
1643
+ "variantOptions": [
1644
+ "Text"
1645
+ ]
1646
+ },
1647
+ "Variant": {
1648
+ "type": "VARIANT",
1649
+ "variantOptions": [
1650
+ "Layer Default"
1651
+ ]
1652
+ }
1653
+ }
1654
+ };
1655
+
1656
+ export declare const rootTopNavigationKr: {
1657
+ "name": "rootTopNavigationKr",
1658
+ "key": "41d3601e6b4c632a56cdc8fad485a76c026fdd8e",
1659
+ "componentPropertyDefinitions": {
1660
+ "Title#6406:6": {
1661
+ "type": "TEXT"
1662
+ },
1663
+ "Title Type": {
1664
+ "type": "VARIANT",
1665
+ "variantOptions": [
1666
+ "Text",
1667
+ "Button"
1668
+ ]
1669
+ }
1670
+ }
1671
+ };
1672
+
1673
+ export declare const segmentedControl: {
1674
+ "name": "segmentedControl",
1675
+ "key": "3ad7133ba52755867f42f9232375f75639e00d58",
1676
+ "componentPropertyDefinitions": {
1677
+ "Item Count": {
1678
+ "type": "VARIANT",
1679
+ "variantOptions": [
1680
+ "2",
1681
+ "3",
1682
+ "4"
1683
+ ]
1684
+ }
1685
+ }
1686
+ };
1687
+
1688
+ export declare const skeleton: {
1689
+ "name": "skeleton",
1690
+ "key": "ef22c3288722fbfa64a5ab73df397ade88f8e05a",
1691
+ "componentPropertyDefinitions": {
1692
+ "Radius": {
1693
+ "type": "VARIANT",
1694
+ "variantOptions": [
1695
+ "0",
1696
+ "8",
1697
+ "16",
1698
+ "Full"
1699
+ ]
1700
+ },
1701
+ "Tone": {
1702
+ "type": "VARIANT",
1703
+ "variantOptions": [
1704
+ "Magic",
1705
+ "Neutral"
1706
+ ]
1707
+ }
1708
+ }
1709
+ };
1710
+
1711
+ export declare const slider: {
1712
+ "name": "slider",
1713
+ "key": "14b3278452f03fa01ecc8012a07f124766714566",
1714
+ "componentPropertyDefinitions": {
1715
+ "Has Tick Mark#47921:0": {
1716
+ "type": "BOOLEAN"
1717
+ },
1718
+ "Show Active Track#48156:0": {
1719
+ "type": "BOOLEAN"
1720
+ },
1721
+ "Show Markers#49596:0": {
1722
+ "type": "BOOLEAN"
1723
+ },
1724
+ "Value": {
1725
+ "type": "VARIANT",
1726
+ "variantOptions": [
1727
+ "Single",
1728
+ "Range"
1729
+ ]
1730
+ },
1731
+ "State": {
1732
+ "type": "VARIANT",
1733
+ "variantOptions": [
1734
+ "Enabled",
1735
+ "Pressed",
1736
+ "Disabled"
1737
+ ]
1738
+ }
1739
+ }
1740
+ };
1741
+
1742
+ export declare const snackbar: {
1743
+ "name": "snackbar",
1744
+ "key": "81b17fb8c7d731a19cf8d36a8605559d41414eca",
1745
+ "componentPropertyDefinitions": {
1746
+ "Show Action#1528:0": {
1747
+ "type": "BOOLEAN"
1748
+ },
1749
+ "Message#1528:4": {
1750
+ "type": "TEXT"
1751
+ },
1752
+ "Action Label#1528:8": {
1753
+ "type": "TEXT"
1754
+ },
1755
+ "Variant": {
1756
+ "type": "VARIANT",
1757
+ "variantOptions": [
1758
+ "Default",
1759
+ "Positive",
1760
+ "Critical"
1761
+ ]
1762
+ }
1763
+ }
1764
+ };
1765
+
1766
+ export declare const superscriptChild: {
1767
+ "name": "superscriptChild",
1768
+ "key": "19923052d4152393ecdc6e2f5853ea0359849127",
1769
+ "componentPropertyDefinitions": {
1770
+ "Icon#37641:0": {
1771
+ "type": "INSTANCE_SWAP",
1772
+ "preferredValues": []
1773
+ },
1774
+ "Type": {
1775
+ "type": "VARIANT",
1776
+ "variantOptions": [
1777
+ "Icon",
1778
+ "Notification Badge",
1779
+ "Custom"
1780
+ ]
1781
+ }
1782
+ }
1783
+ };
1784
+
1785
+ export declare const _switch: {
1786
+ "name": "_switch",
1787
+ "key": "65e0e7ba1a0c13b42e5fd0ceb17d5f756128dd6b",
1788
+ "componentPropertyDefinitions": {
1789
+ "Label#36578:0": {
1790
+ "type": "TEXT"
1791
+ },
1792
+ "Size": {
1793
+ "type": "VARIANT",
1794
+ "variantOptions": [
1795
+ "16",
1796
+ "24",
1797
+ "32"
1798
+ ]
1799
+ },
1800
+ "Tone": {
1801
+ "type": "VARIANT",
1802
+ "variantOptions": [
1803
+ "Neutral",
1804
+ "🚫[Deprecated] Brand"
1805
+ ]
1806
+ },
1807
+ "Selected": {
1808
+ "type": "VARIANT",
1809
+ "variantOptions": [
1810
+ "True",
1811
+ "False"
1812
+ ]
1813
+ },
1814
+ "State": {
1815
+ "type": "VARIANT",
1816
+ "variantOptions": [
1817
+ "Enabled",
1818
+ "Disabled"
1819
+ ]
1820
+ },
1821
+ "Layout(Figma Only)": {
1822
+ "type": "VARIANT",
1823
+ "variantOptions": [
1824
+ "Label Last",
1825
+ "Label First",
1826
+ "🚫[Switch Mark 사용] Switch Only"
1827
+ ]
1828
+ }
1829
+ }
1830
+ };
1831
+
1832
+ export declare const switchmark: {
1833
+ "name": "switchmark",
1834
+ "key": "bc53f269089e02a1d241e2a21ac7631bfa49834e",
1835
+ "componentPropertyDefinitions": {
1836
+ "Size": {
1837
+ "type": "VARIANT",
1838
+ "variantOptions": [
1839
+ "16",
1840
+ "24",
1841
+ "32"
1842
+ ]
1843
+ },
1844
+ "Tone": {
1845
+ "type": "VARIANT",
1846
+ "variantOptions": [
1847
+ "Neutral",
1848
+ "🚫[Deprecated] Brand"
1849
+ ]
1850
+ },
1851
+ "Selected": {
1852
+ "type": "VARIANT",
1853
+ "variantOptions": [
1854
+ "True",
1855
+ "False"
1856
+ ]
1857
+ },
1858
+ "State": {
1859
+ "type": "VARIANT",
1860
+ "variantOptions": [
1861
+ "Enabled",
1862
+ "Disabled"
1863
+ ]
1864
+ }
1865
+ }
1866
+ };
1867
+
1868
+ export declare const tabs: {
1869
+ "name": "tabs",
1870
+ "key": "3e3af9f7f235cbcbbe862d5da552ab23e16ff34e",
1871
+ "componentPropertyDefinitions": {
1872
+ "Variant": {
1873
+ "type": "VARIANT",
1874
+ "variantOptions": [
1875
+ "Line",
1876
+ "Chip"
1877
+ ]
1878
+ }
1879
+ }
1880
+ };
1881
+
1882
+ export declare const tagGroup: {
1883
+ "name": "tagGroup",
1884
+ "key": "30d4c37f3bc5f292633cf0aba9a0b640d31ec301",
1885
+ "componentPropertyDefinitions": {
1886
+ "Size": {
1887
+ "type": "VARIANT",
1888
+ "variantOptions": [
1889
+ "t2(12pt)",
1890
+ "t3(13pt)",
1891
+ "t4(14pt)"
1892
+ ]
1893
+ },
1894
+ "Tag Count": {
1895
+ "type": "VARIANT",
1896
+ "variantOptions": [
1897
+ "1",
1898
+ "2",
1899
+ "3",
1900
+ "4"
1901
+ ]
1902
+ }
1903
+ }
1904
+ };
1905
+
1906
+ export declare const toggleButton: {
1907
+ "name": "toggleButton",
1908
+ "key": "1d240ee5fd7a56879713e69cbea1b6f006f0ea22",
1909
+ "componentPropertyDefinitions": {
1910
+ "Label#6122:49": {
1911
+ "type": "TEXT"
1912
+ },
1913
+ "Prefix Icon#6122:98": {
1914
+ "type": "INSTANCE_SWAP",
1915
+ "preferredValues": []
1916
+ },
1917
+ "Show Suffix Icon#6122:147": {
1918
+ "type": "BOOLEAN"
1919
+ },
1920
+ "Suffix Icon#6122:343": {
1921
+ "type": "INSTANCE_SWAP",
1922
+ "preferredValues": []
1923
+ },
1924
+ "Show Prefix Icon#6122:392": {
1925
+ "type": "BOOLEAN"
1926
+ },
1927
+ "Size": {
1928
+ "type": "VARIANT",
1929
+ "variantOptions": [
1930
+ "Small",
1931
+ "XSmall"
1932
+ ]
1933
+ },
1934
+ "Variant": {
1935
+ "type": "VARIANT",
1936
+ "variantOptions": [
1937
+ "Neutral Weak",
1938
+ "Brand Solid"
1939
+ ]
1940
+ },
1941
+ "Selected": {
1942
+ "type": "VARIANT",
1943
+ "variantOptions": [
1944
+ "True",
1945
+ "False"
1946
+ ]
1947
+ },
1948
+ "State": {
1949
+ "type": "VARIANT",
1950
+ "variantOptions": [
1951
+ "Enabled",
1952
+ "Pressed",
1953
+ "Loading",
1954
+ "Disabled"
1955
+ ]
1956
+ }
1957
+ }
1958
+ };
1959
+
1960
+ export declare const topNavigation: {
1961
+ "name": "topNavigation",
1962
+ "key": "f6d069d65f8ffc8b430fd8f3013910557f36e9da",
1963
+ "componentPropertyDefinitions": {
1964
+ "Show Title#33588:82": {
1965
+ "type": "BOOLEAN"
1966
+ },
1967
+ "OS (Figma Only)": {
1968
+ "type": "VARIANT",
1969
+ "variantOptions": [
1970
+ "iOS",
1971
+ "Android"
1972
+ ]
1973
+ },
1974
+ "Variant": {
1975
+ "type": "VARIANT",
1976
+ "variantOptions": [
1977
+ "Layer Default",
1978
+ "Transparent"
1979
+ ]
1980
+ },
1981
+ "Left": {
1982
+ "type": "VARIANT",
1983
+ "variantOptions": [
1984
+ "Back",
1985
+ "Close",
1986
+ "Custom",
1987
+ "None"
1988
+ ]
1989
+ },
1990
+ "Right": {
1991
+ "type": "VARIANT",
1992
+ "variantOptions": [
1993
+ "1 Icon Button",
1994
+ "2 Icon Button",
1995
+ "3 Icon Button",
1996
+ "Text Button",
1997
+ "None"
1998
+ ]
1999
+ }
2000
+ }
2001
+ };
2002
+
2003
+ export declare const actionButtonGhostButton: {
2004
+ "name": "actionButtonGhostButton",
2005
+ "key": "ea69291fb4d76217419f3d9613ae16aadafb56a5",
2006
+ "componentPropertyDefinitions": {
2007
+ "Label#30511:2": {
2008
+ "type": "TEXT"
2009
+ },
2010
+ "Prefix Icon#30511:3": {
2011
+ "type": "INSTANCE_SWAP",
2012
+ "preferredValues": []
2013
+ },
2014
+ "Suffix Icon#30525:0": {
2015
+ "type": "INSTANCE_SWAP",
2016
+ "preferredValues": [
2017
+ {
2018
+ "type": "COMPONENT_SET",
2019
+ "key": "c8415f85843e5aea5a1d3620d03d16b643bf86cd"
2020
+ },
2021
+ {
2022
+ "type": "COMPONENT_SET",
2023
+ "key": "0d0a2bc648a2c4e1f06a56a30ef16299b6e91037"
2024
+ },
2025
+ {
2026
+ "type": "COMPONENT_SET",
2027
+ "key": "8f28ae559baf8f388d84ccc3ad65a282966e1b05"
2028
+ },
2029
+ {
2030
+ "type": "COMPONENT_SET",
2031
+ "key": "57341e8a9961bf31590240dd288e57c76969098d"
2032
+ }
2033
+ ]
2034
+ },
2035
+ "Icon#30525:15": {
2036
+ "type": "INSTANCE_SWAP",
2037
+ "preferredValues": []
2038
+ },
2039
+ "Bleed": {
2040
+ "type": "VARIANT",
2041
+ "variantOptions": [
2042
+ "true",
2043
+ "false"
2044
+ ]
2045
+ },
2046
+ "Size": {
2047
+ "type": "VARIANT",
2048
+ "variantOptions": [
2049
+ "Xsmall",
2050
+ "Small",
2051
+ "Medium",
2052
+ "Large"
2053
+ ]
2054
+ },
2055
+ "Layout": {
2056
+ "type": "VARIANT",
2057
+ "variantOptions": [
2058
+ "Text Only",
2059
+ "Icon First",
2060
+ "Icon Last",
2061
+ "Icon Only"
2062
+ ]
2063
+ },
2064
+ "State": {
2065
+ "type": "VARIANT",
2066
+ "variantOptions": [
2067
+ "Enabled",
2068
+ "Pressed",
2069
+ "Loading",
2070
+ "Disabled"
2071
+ ]
2072
+ }
2073
+ }
2074
+ };