@seed-design/figma 1.2.0 → 1.3.2

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 (118) hide show
  1. package/lib/codegen/index.cjs +12318 -190
  2. package/lib/codegen/index.d.ts.map +1 -1
  3. package/lib/codegen/index.js +12318 -190
  4. package/lib/codegen/targets/react/index.cjs +17676 -3101
  5. package/lib/codegen/targets/react/index.d.ts.map +1 -1
  6. package/lib/codegen/targets/react/index.js +17676 -3101
  7. package/lib/index.cjs +12324 -196
  8. package/lib/index.d.ts.map +1 -1
  9. package/lib/index.js +12324 -196
  10. package/package.json +4 -4
  11. package/src/codegen/component-properties.archive.ts +1019 -0
  12. package/src/codegen/component-properties.ts +219 -893
  13. package/src/codegen/core/infer-layout.test.ts +1 -1
  14. package/src/codegen/index.ts +1 -1
  15. package/src/codegen/targets/react/component/handlers/action-button.ts +69 -66
  16. package/src/codegen/targets/react/component/handlers/alert-dialog.ts +2 -4
  17. package/src/codegen/targets/react/component/handlers/app-bar.ts +90 -87
  18. package/src/codegen/targets/react/component/handlers/archive/action-button.ts +144 -0
  19. package/src/codegen/targets/react/component/handlers/archive/alert-dialog.ts +122 -0
  20. package/src/codegen/targets/react/component/handlers/archive/app-bar.ts +149 -0
  21. package/src/codegen/targets/react/component/handlers/archive/avatar-stack.ts +35 -0
  22. package/src/codegen/targets/react/component/handlers/archive/avatar.ts +55 -0
  23. package/src/codegen/targets/react/component/handlers/archive/badge.ts +18 -0
  24. package/src/codegen/targets/react/component/handlers/archive/bottom-sheet.ts +70 -0
  25. package/src/codegen/targets/react/component/handlers/archive/callout.ts +88 -0
  26. package/src/codegen/targets/react/component/handlers/archive/checkbox.ts +43 -0
  27. package/src/codegen/targets/react/component/handlers/archive/checkmark.ts +29 -0
  28. package/src/codegen/targets/react/component/handlers/archive/chip.ts +90 -0
  29. package/src/codegen/targets/react/component/handlers/archive/contextual-floating-button.ts +52 -0
  30. package/src/codegen/targets/react/component/handlers/archive/divider.ts +25 -0
  31. package/src/codegen/targets/react/component/handlers/archive/field-button.ts +197 -0
  32. package/src/codegen/targets/react/component/handlers/archive/field.ts +167 -0
  33. package/src/codegen/targets/react/component/handlers/archive/floating-action-button.ts +48 -0
  34. package/src/codegen/targets/react/component/handlers/archive/help-bubble.ts +73 -0
  35. package/src/codegen/targets/react/component/handlers/archive/identity-placeholder.ts +21 -0
  36. package/src/codegen/targets/react/component/handlers/archive/index.ts +40 -0
  37. package/src/codegen/targets/react/component/handlers/archive/legacy-select-box.ts +89 -0
  38. package/src/codegen/targets/react/component/handlers/archive/legacy-text-field.ts +198 -0
  39. package/src/codegen/targets/react/component/handlers/archive/list-header.ts +20 -0
  40. package/src/codegen/targets/react/component/handlers/archive/list-item.ts +162 -0
  41. package/src/codegen/targets/react/component/handlers/archive/manner-temp-badge.ts +21 -0
  42. package/src/codegen/targets/react/component/handlers/archive/manner-temp.ts +18 -0
  43. package/src/codegen/targets/react/component/handlers/archive/menu-sheet.ts +108 -0
  44. package/src/codegen/targets/react/component/handlers/archive/page-banner.ts +101 -0
  45. package/src/codegen/targets/react/component/handlers/archive/progress-circle.ts +55 -0
  46. package/src/codegen/targets/react/component/handlers/archive/radio-group.ts +31 -0
  47. package/src/codegen/targets/react/component/handlers/archive/radiomark.ts +27 -0
  48. package/src/codegen/targets/react/component/handlers/archive/reaction-button.ts +37 -0
  49. package/src/codegen/targets/react/component/handlers/archive/result-section.ts +67 -0
  50. package/src/codegen/targets/react/component/handlers/archive/segmented-control.ts +64 -0
  51. package/src/codegen/targets/react/component/handlers/archive/skeleton.ts +26 -0
  52. package/src/codegen/targets/react/component/handlers/archive/slider.ts +114 -0
  53. package/src/codegen/targets/react/component/handlers/archive/snackbar.ts +25 -0
  54. package/src/codegen/targets/react/component/handlers/archive/switch.ts +39 -0
  55. package/src/codegen/targets/react/component/handlers/archive/switchmark.ts +26 -0
  56. package/src/codegen/targets/react/component/handlers/archive/tabs.ts +297 -0
  57. package/src/codegen/targets/react/component/handlers/archive/tag-group.ts +86 -0
  58. package/src/codegen/targets/react/component/handlers/archive/text-field.ts +264 -0
  59. package/src/codegen/targets/react/component/handlers/archive/toggle-button.ts +43 -0
  60. package/src/codegen/targets/react/component/handlers/avatar-stack.ts +5 -2
  61. package/src/codegen/targets/react/component/handlers/avatar.ts +42 -39
  62. package/src/codegen/targets/react/component/handlers/badge.ts +1 -1
  63. package/src/codegen/targets/react/component/handlers/bottom-sheet.ts +56 -51
  64. package/src/codegen/targets/react/component/handlers/callout.ts +1 -1
  65. package/src/codegen/targets/react/component/handlers/checkbox.ts +91 -3
  66. package/src/codegen/targets/react/component/handlers/checkmark.ts +1 -1
  67. package/src/codegen/targets/react/component/handlers/chip.ts +8 -5
  68. package/src/codegen/targets/react/component/handlers/contextual-floating-button.ts +1 -1
  69. package/src/codegen/targets/react/component/handlers/divider.ts +1 -1
  70. package/src/codegen/targets/react/component/handlers/field-button.ts +13 -18
  71. package/src/codegen/targets/react/component/handlers/field.ts +71 -74
  72. package/src/codegen/targets/react/component/handlers/floating-action-button.ts +3 -6
  73. package/src/codegen/targets/react/component/handlers/help-bubble.ts +1 -1
  74. package/src/codegen/targets/react/component/handlers/identity-placeholder.ts +10 -2
  75. package/src/codegen/targets/react/component/handlers/index.ts +41 -0
  76. package/src/codegen/targets/react/component/handlers/legacy-select-box.ts +4 -6
  77. package/src/codegen/targets/react/component/handlers/legacy-text-field.ts +3 -5
  78. package/src/codegen/targets/react/component/handlers/list-header.ts +1 -1
  79. package/src/codegen/targets/react/component/handlers/list-item.ts +24 -23
  80. package/src/codegen/targets/react/component/handlers/manner-temp-badge.ts +1 -1
  81. package/src/codegen/targets/react/component/handlers/manner-temp.ts +1 -1
  82. package/src/codegen/targets/react/component/handlers/menu-sheet.ts +45 -42
  83. package/src/codegen/targets/react/component/handlers/page-banner.ts +77 -72
  84. package/src/codegen/targets/react/component/handlers/progress-circle.ts +1 -1
  85. package/src/codegen/targets/react/component/handlers/radio-group.ts +98 -20
  86. package/src/codegen/targets/react/component/handlers/radiomark.ts +1 -1
  87. package/src/codegen/targets/react/component/handlers/reaction-button.ts +1 -1
  88. package/src/codegen/targets/react/component/handlers/result-section.ts +1 -1
  89. package/src/codegen/targets/react/component/handlers/segmented-control.ts +2 -3
  90. package/src/codegen/targets/react/component/handlers/select-box.ts +333 -0
  91. package/src/codegen/targets/react/component/handlers/skeleton.ts +1 -1
  92. package/src/codegen/targets/react/component/handlers/slider.ts +13 -10
  93. package/src/codegen/targets/react/component/handlers/snackbar.ts +1 -1
  94. package/src/codegen/targets/react/component/handlers/switch.ts +1 -1
  95. package/src/codegen/targets/react/component/handlers/switchmark.ts +1 -1
  96. package/src/codegen/targets/react/component/handlers/tabs.ts +39 -42
  97. package/src/codegen/targets/react/component/handlers/tag-group.ts +46 -42
  98. package/src/codegen/targets/react/component/handlers/text-field.ts +11 -22
  99. package/src/codegen/targets/react/component/handlers/toggle-button.ts +1 -1
  100. package/src/codegen/targets/react/component/index.ts +5 -115
  101. package/src/entities/data/__generated__/archive/component-sets/index.d.ts +2074 -0
  102. package/src/entities/data/__generated__/archive/component-sets/index.mjs +2074 -0
  103. package/src/entities/data/__generated__/archive/components/index.d.ts +116 -0
  104. package/src/entities/data/__generated__/archive/components/index.mjs +116 -0
  105. package/src/entities/data/__generated__/archive/styles/index.d.ts +3 -0
  106. package/src/entities/data/__generated__/archive/styles/index.mjs +429 -0
  107. package/src/entities/data/__generated__/archive/variable-collections/index.d.ts +3 -0
  108. package/src/entities/data/__generated__/archive/variable-collections/index.mjs +501 -0
  109. package/src/entities/data/__generated__/archive/variables/index.d.ts +3 -0
  110. package/src/entities/data/__generated__/archive/variables/index.mjs +7019 -0
  111. package/src/entities/data/__generated__/component-sets/index.d.ts +3439 -1265
  112. package/src/entities/data/__generated__/component-sets/index.mjs +3439 -1265
  113. package/src/entities/data/__generated__/components/index.d.ts +326 -64
  114. package/src/entities/data/__generated__/components/index.mjs +326 -64
  115. package/src/entities/data/__generated__/styles/index.mjs +9 -2
  116. package/src/entities/data/__generated__/variable-collections/index.mjs +150 -173
  117. package/src/entities/data/__generated__/variables/index.mjs +0 -74
  118. package/src/entities/index.ts +21 -7
@@ -1,16 +1,72 @@
1
- export declare const templateAddressPickerField: {
2
- "name": "templateAddressPickerField",
3
- "key": "a6cb0e888094d95ca0e9862f4775b34407b3611d"
1
+ export declare const privateTemplateAddressPickerField: {
2
+ "name": "privateTemplateAddressPickerField",
3
+ "key": "4af06df28eca43fe2be5fe5ba5e6019587de9fac"
4
4
  };
5
5
 
6
- export declare const templateDatePickerField: {
7
- "name": "templateDatePickerField",
8
- "key": "9fac6c04140c81cdb2e446979952381f1afc0e1a"
6
+ export declare const privateTemplateDatePickerField: {
7
+ "name": "privateTemplateDatePickerField",
8
+ "key": "c161d1326a1087258e4f762aa3c378c098308d98"
9
+ };
10
+
11
+ export declare const privateTemplateSelectField: {
12
+ "name": "privateTemplateSelectField",
13
+ "key": "a2138764f60a9b5a35e22ff40bc6cd701c660260"
14
+ };
15
+
16
+ export declare const privateTemplateTimePickerField: {
17
+ "name": "privateTemplateTimePickerField",
18
+ "key": "e38df17cf1e0f96e09774b015739dfde30d46115"
19
+ };
20
+
21
+ export declare const privateComponentBottomSheetContentsPlaceholder: {
22
+ "name": "privateComponentBottomSheetContentsPlaceholder",
23
+ "key": "e68b006d572300d3c987776192c8ab387fa45e05"
24
+ };
25
+
26
+ export declare const privateComponentField: {
27
+ "name": "privateComponentField",
28
+ "key": "96f0d114c3ec7826b22531502f05e82404835df4",
29
+ "componentPropertyDefinitions": {
30
+ "Input#40606:0": {
31
+ "type": "INSTANCE_SWAP"
32
+ },
33
+ "Show Header#40606:1": {
34
+ "type": "BOOLEAN"
35
+ },
36
+ "Show Footer#40606:2": {
37
+ "type": "BOOLEAN"
38
+ }
39
+ }
40
+ };
41
+
42
+ export declare const privateComponentSelectBoxItemCustomContent: {
43
+ "name": "privateComponentSelectBoxItemCustomContent",
44
+ "key": "b327f8f0f74f9af3fded3f22fa4a64a08ed8d7cb"
45
+ };
46
+
47
+ export declare const privateComponentSliderItemHandleSliderItemValueIndicator: {
48
+ "name": "privateComponentSliderItemHandleSliderItemValueIndicator",
49
+ "key": "cfe6acde9d78c5020d2c84a0fdbd54f75277d231"
50
+ };
51
+
52
+ export declare const privateComponentSliderItemTrack: {
53
+ "name": "privateComponentSliderItemTrack",
54
+ "key": "dd6ea9f90ca6cabfb2f215155b77877adfaafdc9"
55
+ };
56
+
57
+ export declare const privateComponentTopNavigationLeftIconButton: {
58
+ "name": "privateComponentTopNavigationLeftIconButton",
59
+ "key": "c3e708bab11d8ea90a909b4539b6ba6b2a4e7b9c",
60
+ "componentPropertyDefinitions": {
61
+ "Icon#33580:0": {
62
+ "type": "INSTANCE_SWAP"
63
+ }
64
+ }
9
65
  };
10
66
 
11
67
  export declare const templateFilterBar: {
12
68
  "name": "templateFilterBar",
13
- "key": "52ffefa44ac247120a69d1787278d1d90b7f370d",
69
+ "key": "325dcf7b1fb8354463fd3ed04f4ec77359311f19",
14
70
  "componentPropertyDefinitions": {
15
71
  "Show Clear Button#32562:362": {
16
72
  "type": "BOOLEAN"
@@ -18,99 +74,305 @@ export declare const templateFilterBar: {
18
74
  }
19
75
  };
20
76
 
77
+ export declare const componentIcon: {
78
+ "name": "componentIcon",
79
+ "key": "4a6fdb3425a44a8bc1fe1502d830fa6e82decef7"
80
+ };
81
+
21
82
  export declare const templateInformationList: {
22
83
  "name": "templateInformationList",
23
- "key": "a111395555825f77d152f84e047e5e798fb53023"
84
+ "key": "ea1ff4070a5ef4ada5974dc7030e8f9a1b759cdb"
85
+ };
86
+
87
+ export declare const componentFigmaOnly: {
88
+ "name": "componentFigmaOnly",
89
+ "key": "a790da2ff1fb6f761abf202034920c1504b8f8f1"
90
+ };
91
+
92
+ export declare const componentBottomSheetContentsAgreement: {
93
+ "name": "componentBottomSheetContentsAgreement",
94
+ "key": "9d530235407646750ce8298b2815093dffcbbd83"
95
+ };
96
+
97
+ export declare const componentBottomSheetContentsFilter: {
98
+ "name": "componentBottomSheetContentsFilter",
99
+ "key": "9b50b222edac142fcce609da87250d7778e45ec4"
100
+ };
101
+
102
+ export declare const componentBottomSheetContentsImage: {
103
+ "name": "componentBottomSheetContentsImage",
104
+ "key": "b0b3e0f267ee67e93d6af524ce9d45764027507c"
105
+ };
106
+
107
+ export declare const componentBottomSheetContentsRange: {
108
+ "name": "componentBottomSheetContentsRange",
109
+ "key": "0e8d8770bacfb2567a054e9c2159fe5dad6a21ba"
110
+ };
111
+
112
+ export declare const componentBottomSheetContentsSorting: {
113
+ "name": "componentBottomSheetContentsSorting",
114
+ "key": "61f7b8ff0a1a374a10bb1a6a7a31f379863f2ac8"
115
+ };
116
+
117
+ export declare const componentChipSuffixIcon: {
118
+ "name": "componentChipSuffixIcon",
119
+ "key": "2f79e3c5a78315c854d7bd4499d142cfcc94548f",
120
+ "componentPropertyDefinitions": {
121
+ "Icon#33203:0": {
122
+ "type": "INSTANCE_SWAP"
123
+ }
124
+ }
24
125
  };
25
126
 
26
- export declare const templateSelectField: {
27
- "name": "templateSelectField",
28
- "key": "a43d16a5c3cbb5fe22ca230d6a28338da21c7562"
127
+ export declare const componentImageFrameBadge: {
128
+ "name": "componentImageFrameBadge",
129
+ "key": "6a1feb47139040d6f7522528f7c91bf4fe7bcc84"
29
130
  };
30
131
 
31
- export declare const templateTimePickerField: {
32
- "name": "templateTimePickerField",
33
- "key": "0ee0729eb92d55acfa557e8fe3f0a21a0e43f117"
132
+ export declare const componentImageFrameCustom: {
133
+ "name": "componentImageFrameCustom",
134
+ "key": "60900f1f80431faf16f78e0570848d4656076990"
34
135
  };
35
136
 
36
- export declare const bottomSheetContentsAgreement: {
37
- "name": "bottomSheetContentsAgreement",
38
- "key": "8670afb7520ac44dfed003e3e9c7cce359897d0c"
137
+ export declare const componentImageFrameIcon: {
138
+ "name": "componentImageFrameIcon",
139
+ "key": "4f495448eeda5d10f41e6195e16b4eff49aaec17",
140
+ "componentPropertyDefinitions": {
141
+ "Icon#58686:297": {
142
+ "type": "INSTANCE_SWAP"
143
+ }
144
+ }
145
+ };
146
+
147
+ export declare const componentImageFrameOverlayIndicator: {
148
+ "name": "componentImageFrameOverlayIndicator",
149
+ "key": "e3e3596f8c535facae4d23c21bc1d62dd721fe23",
150
+ "componentPropertyDefinitions": {
151
+ "Text#58708:0": {
152
+ "type": "TEXT"
153
+ }
154
+ }
39
155
  };
40
156
 
41
- export declare const bottomSheetContentsFilter: {
42
- "name": "bottomSheetContentsFilter",
43
- "key": "e3d337e6eddbe9ec025fe69520c1cff0bd697b60"
157
+ export declare const componentListItemDetailCustom: {
158
+ "name": "componentListItemDetailCustom",
159
+ "key": "d56900622b320739b5ce9dc9b12af1bcd1f6eeb4"
44
160
  };
45
161
 
46
- export declare const bottomSheetContentsImage: {
47
- "name": "bottomSheetContentsImage",
48
- "key": "5c5369d9c22115fd240d7b75ac2a334e9163ea57"
162
+ export declare const componentListItemDetailSubText_42a: {
163
+ "name": "componentListItemDetailSubText",
164
+ "key": "42ae9274fba94cb3b02c4e64b6584e5d03b73835"
49
165
  };
50
166
 
51
- export declare const bottomSheetContentsRange: {
52
- "name": "bottomSheetContentsRange",
53
- "key": "088624580ee501efed377bb4f42561a387db5699"
167
+ export declare const componentListItemDetailSubText_07e: {
168
+ "name": "componentListItemDetailSubText",
169
+ "key": "07ea4a584c3fc5862e842efb5a151aff0059ee76"
54
170
  };
55
171
 
56
- export declare const bottomSheetContentsSorting: {
57
- "name": "bottomSheetContentsSorting",
58
- "key": "0c6c58d5b7a159e7db1a0c1ccf32916ca8a51164"
172
+ export declare const componentListItemDetailTagGroup: {
173
+ "name": "componentListItemDetailTagGroup",
174
+ "key": "8e4743cce1ff6ac9e85269de6ce0ecff0ade06cb"
59
175
  };
60
176
 
61
- export declare const skeletonPreSetArticle: {
62
- "name": "skeletonPreSetArticle",
63
- "key": "b2eb24c235dbb3ceea3a13cc018a083e0707fe6b"
177
+ export declare const componentListItemPrefixAvatar: {
178
+ "name": "componentListItemPrefixAvatar",
179
+ "key": "27e33754113178be97e07195528c4ea020b3d3b7"
64
180
  };
65
181
 
66
- export declare const skeletonPreSetItemCard: {
67
- "name": "skeletonPreSetItemCard",
68
- "key": "72da2ecdc0f5f17fc0c59eac16ccf82960c70db9"
182
+ export declare const componentListItemPrefixCheckbox: {
183
+ "name": "componentListItemPrefixCheckbox",
184
+ "key": "563275de82ea1282cece0c35c0cd8d1625bc3a9d"
69
185
  };
70
186
 
71
- export declare const skeletonPreSetItemCarousel: {
72
- "name": "skeletonPreSetItemCarousel",
73
- "key": "d92b2942bc9e079cb31fa055a1628e497a8cda8c"
187
+ export declare const componentListItemPrefixCustom: {
188
+ "name": "componentListItemPrefixCustom",
189
+ "key": "b8059f5e0f85e0745fc61ff70f04571177c2cdfc"
74
190
  };
75
191
 
76
- export declare const skeletonPreSetList: {
77
- "name": "skeletonPreSetList",
78
- "key": "e03cc22ade0cf5db55d0ecea0a51c8424f05410c"
192
+ export declare const componentListItemPrefixIcon: {
193
+ "name": "componentListItemPrefixIcon",
194
+ "key": "6c03690f1ce9f6c8b2fcdf4a7c57784f6cca12b9",
195
+ "componentPropertyDefinitions": {
196
+ "Icon#28452:111": {
197
+ "type": "INSTANCE_SWAP"
198
+ }
199
+ }
79
200
  };
80
201
 
81
- export declare const skeletonPreSetProfileLarge: {
82
- "name": "skeletonPreSetProfileLarge",
83
- "key": "36103a3dedc41b788a381dc362e90cb19fa907ce"
202
+ export declare const componentListItemPrefixImage: {
203
+ "name": "componentListItemPrefixImage",
204
+ "key": "d06216ff143a960844799c0b8f9212628f78c69d"
84
205
  };
85
206
 
86
- export declare const skeletonPreSetProfileSmall: {
87
- "name": "skeletonPreSetProfileSmall",
88
- "key": "090506ac39352cfb1bee415a404fd3d306744c27"
207
+ export declare const componentListItemPrefixRadiomark: {
208
+ "name": "componentListItemPrefixRadiomark",
209
+ "key": "51f7c0917ebc559d81e63d0639cb632a792f40de"
89
210
  };
90
211
 
91
- export declare const skeletonPreSetReview: {
92
- "name": "skeletonPreSetReview",
93
- "key": "faf975727deaeab9e16ddd915e6a1bc48ddb5bca"
212
+ export declare const componentListItemSuffixCheckbox: {
213
+ "name": "componentListItemSuffixCheckbox",
214
+ "key": "385ba8d607029e15e0d38ab415f783016488b185"
94
215
  };
95
216
 
96
- export declare const field: {
97
- "name": "field",
98
- "key": "115bf75562fd6e434a8e22026f86bbc450902f18",
217
+ export declare const componentListItemSuffixChevron: {
218
+ "name": "componentListItemSuffixChevron",
219
+ "key": "259054ad63bb89ca119c7f45ddad6452acc731f2",
99
220
  "componentPropertyDefinitions": {
100
- "Input#40606:0": {
101
- "type": "INSTANCE_SWAP",
102
- "preferredValues": []
103
- },
104
- "Show Header#40606:1": {
105
- "type": "BOOLEAN"
221
+ "Chevron#28217:9": {
222
+ "type": "INSTANCE_SWAP"
223
+ }
224
+ }
225
+ };
226
+
227
+ export declare const componentListItemSuffixChevronWithText: {
228
+ "name": "componentListItemSuffixChevronWithText",
229
+ "key": "7bd907ab44dff56fb07317c7b74d7ad9377994f0",
230
+ "componentPropertyDefinitions": {
231
+ "Text#28469:0": {
232
+ "type": "TEXT"
106
233
  },
107
- "Show Footer#40606:2": {
108
- "type": "BOOLEAN"
234
+ "Chevron#28477:0": {
235
+ "type": "INSTANCE_SWAP"
236
+ }
237
+ }
238
+ };
239
+
240
+ export declare const componentListItemSuffixCustom: {
241
+ "name": "componentListItemSuffixCustom",
242
+ "key": "26b86c9f8965d38aa5a1181a5cdc89fa487988d1"
243
+ };
244
+
245
+ export declare const componentListItemSuffixIcon: {
246
+ "name": "componentListItemSuffixIcon",
247
+ "key": "b7582e74a4bae29df8bc3f81368e528701a75855",
248
+ "componentPropertyDefinitions": {
249
+ "Icon#28347:9": {
250
+ "type": "INSTANCE_SWAP"
251
+ }
252
+ }
253
+ };
254
+
255
+ export declare const componentListItemSuffixRadiomark: {
256
+ "name": "componentListItemSuffixRadiomark",
257
+ "key": "09871d64c5c30407da586fb34425c2e83e147c81"
258
+ };
259
+
260
+ export declare const componentListItemSuffixSwitch: {
261
+ "name": "componentListItemSuffixSwitch",
262
+ "key": "0c26bd64e117e168b06eea69be903e4be762a728"
263
+ };
264
+
265
+ export declare const componentPageBannerSuffixAction: {
266
+ "name": "componentPageBannerSuffixAction",
267
+ "key": "1bbd6fff9a32b4211bbe3eeb09fde4e12e87caed",
268
+ "componentPropertyDefinitions": {
269
+ "Label#39890:0": {
270
+ "type": "TEXT"
109
271
  }
110
272
  }
111
273
  };
112
274
 
113
- export declare const icon: {
114
- "name": "icon",
115
- "key": "598895dbeb853cbfff37bd50ddc65874375fc1b1"
275
+ export declare const componentPageBannerSuffixCustom: {
276
+ "name": "componentPageBannerSuffixCustom",
277
+ "key": "40f2b4754bf16fa268941d03499dea575baa7e26"
278
+ };
279
+
280
+ export declare const componentPageBannerSuffixDismiss: {
281
+ "name": "componentPageBannerSuffixDismiss",
282
+ "key": "7bdf687e01996f3582b4056954fcb65f0bc67b2f"
283
+ };
284
+
285
+ export declare const componentPageBannerSuffixChevron: {
286
+ "name": "componentPageBannerSuffixChevron",
287
+ "key": "6f570f3b2b50649b0fd81190ebb42604ae3aa3a5"
288
+ };
289
+
290
+ export declare const componentResultSectionAssetTown: {
291
+ "name": "componentResultSectionAssetTown",
292
+ "key": "fb790e6aac3dea61df651faeb68078835c3e59ab"
293
+ };
294
+
295
+ export declare const componentResultSectionBridgeLottie: {
296
+ "name": "componentResultSectionBridgeLottie",
297
+ "key": "340c0c7a24b5a4c215b9e699d7af44578939485d"
298
+ };
299
+
300
+ export declare const componentResultSectionCompleteLottie: {
301
+ "name": "componentResultSectionCompleteLottie",
302
+ "key": "8c337e54aa38b7eb1eec9281c4934c5f0f87124c"
303
+ };
304
+
305
+ export declare const componentResultSectionCustom: {
306
+ "name": "componentResultSectionCustom",
307
+ "key": "c99bcc071b3ec4243ecdc1502545f427250a7286"
308
+ };
309
+
310
+ export declare const componentResultSectionFailLottie: {
311
+ "name": "componentResultSectionFailLottie",
312
+ "key": "ebace2f76203529076734076af40fbd04146b724"
313
+ };
314
+
315
+ export declare const componentResultSectionIconEmptyChat: {
316
+ "name": "componentResultSectionIconEmptyChat",
317
+ "key": "ed86a05df0ddeea4a84008ace70f750f5d1e46c9"
318
+ };
319
+
320
+ export declare const componentResultSectionIconEmptyList: {
321
+ "name": "componentResultSectionIconEmptyList",
322
+ "key": "99daf8fa5e0eed82c2dab35963f3a8e2f55968a3"
323
+ };
324
+
325
+ export declare const componentResultSectionIconEmptyPeople: {
326
+ "name": "componentResultSectionIconEmptyPeople",
327
+ "key": "18623f2ffffe641d3f9876189699839f27d279ac"
328
+ };
329
+
330
+ export declare const componentResultSectionIconEmptySearch: {
331
+ "name": "componentResultSectionIconEmptySearch",
332
+ "key": "4aa9c04ae49806098872f7c856b1925843ca7f4c"
333
+ };
334
+
335
+ export declare const componentSelectBoxSuffixCustom: {
336
+ "name": "componentSelectBoxSuffixCustom",
337
+ "key": "2ba92fc0cd161281686bf04767e8f2322c8a17f4"
338
+ };
339
+
340
+ export declare const componentSelectBoxItemPrefixAvatar: {
341
+ "name": "componentSelectBoxItemPrefixAvatar",
342
+ "key": "3d1ea583297f35880d9ec588326d9b82608565cc"
343
+ };
344
+
345
+ export declare const componentSelectBoxItemPrefixBadge: {
346
+ "name": "componentSelectBoxItemPrefixBadge",
347
+ "key": "d8c60ae70dee3a35795d83a9fd68282c0a90b554"
348
+ };
349
+
350
+ export declare const componentSelectBoxItemPrefixCustom: {
351
+ "name": "componentSelectBoxItemPrefixCustom",
352
+ "key": "8129b7b7804c8b22cf67d42df2383c1f5152298e"
353
+ };
354
+
355
+ export declare const componentSelectBoxItemPrefixIcon: {
356
+ "name": "componentSelectBoxItemPrefixIcon",
357
+ "key": "7184053a74eef18503170d08a1bdb74d37cbb65f",
358
+ "componentPropertyDefinitions": {
359
+ "Icon#2475:0": {
360
+ "type": "INSTANCE_SWAP"
361
+ }
362
+ }
363
+ };
364
+
365
+ export declare const componentSelectBoxItemPrefixImage: {
366
+ "name": "componentSelectBoxItemPrefixImage",
367
+ "key": "d4a3d2da63f6da1552f5d8f947105390248c9018"
368
+ };
369
+
370
+ export declare const componentSelectBoxItemSuffixCheck: {
371
+ "name": "componentSelectBoxItemSuffixCheck",
372
+ "key": "7b4bdf92e6852f0ecf85c1f6e0350ffaf674a172"
373
+ };
374
+
375
+ export declare const componentSelectBoxItemSuffixRadiomark: {
376
+ "name": "componentSelectBoxItemSuffixRadiomark",
377
+ "key": "cfb712b12fe2805b5594f8c143147c8aa3de490e"
116
378
  };