@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,378 @@
|
|
|
1
|
+
export const privateTemplateAddressPickerField = {
|
|
2
|
+
"name": "privateTemplateAddressPickerField",
|
|
3
|
+
"key": "4af06df28eca43fe2be5fe5ba5e6019587de9fac"
|
|
4
|
+
};
|
|
5
|
+
|
|
6
|
+
export const privateTemplateDatePickerField = {
|
|
7
|
+
"name": "privateTemplateDatePickerField",
|
|
8
|
+
"key": "c161d1326a1087258e4f762aa3c378c098308d98"
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export const privateTemplateSelectField = {
|
|
12
|
+
"name": "privateTemplateSelectField",
|
|
13
|
+
"key": "a2138764f60a9b5a35e22ff40bc6cd701c660260"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const privateTemplateTimePickerField = {
|
|
17
|
+
"name": "privateTemplateTimePickerField",
|
|
18
|
+
"key": "e38df17cf1e0f96e09774b015739dfde30d46115"
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export const privateComponentBottomSheetContentsPlaceholder = {
|
|
22
|
+
"name": "privateComponentBottomSheetContentsPlaceholder",
|
|
23
|
+
"key": "e68b006d572300d3c987776192c8ab387fa45e05"
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export 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 const privateComponentSelectBoxItemCustomContent = {
|
|
43
|
+
"name": "privateComponentSelectBoxItemCustomContent",
|
|
44
|
+
"key": "b327f8f0f74f9af3fded3f22fa4a64a08ed8d7cb"
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export const privateComponentSliderItemHandleSliderItemValueIndicator = {
|
|
48
|
+
"name": "privateComponentSliderItemHandleSliderItemValueIndicator",
|
|
49
|
+
"key": "cfe6acde9d78c5020d2c84a0fdbd54f75277d231"
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export const privateComponentSliderItemTrack = {
|
|
53
|
+
"name": "privateComponentSliderItemTrack",
|
|
54
|
+
"key": "dd6ea9f90ca6cabfb2f215155b77877adfaafdc9"
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
export const privateComponentTopNavigationLeftIconButton = {
|
|
58
|
+
"name": "privateComponentTopNavigationLeftIconButton",
|
|
59
|
+
"key": "c3e708bab11d8ea90a909b4539b6ba6b2a4e7b9c",
|
|
60
|
+
"componentPropertyDefinitions": {
|
|
61
|
+
"Icon#33580:0": {
|
|
62
|
+
"type": "INSTANCE_SWAP"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export const templateFilterBar = {
|
|
68
|
+
"name": "templateFilterBar",
|
|
69
|
+
"key": "325dcf7b1fb8354463fd3ed04f4ec77359311f19",
|
|
70
|
+
"componentPropertyDefinitions": {
|
|
71
|
+
"Show Clear Button#32562:362": {
|
|
72
|
+
"type": "BOOLEAN"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
export const componentIcon = {
|
|
78
|
+
"name": "componentIcon",
|
|
79
|
+
"key": "4a6fdb3425a44a8bc1fe1502d830fa6e82decef7"
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export const templateInformationList = {
|
|
83
|
+
"name": "templateInformationList",
|
|
84
|
+
"key": "ea1ff4070a5ef4ada5974dc7030e8f9a1b759cdb"
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
export const componentFigmaOnly = {
|
|
88
|
+
"name": "componentFigmaOnly",
|
|
89
|
+
"key": "a790da2ff1fb6f761abf202034920c1504b8f8f1"
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
export const componentBottomSheetContentsAgreement = {
|
|
93
|
+
"name": "componentBottomSheetContentsAgreement",
|
|
94
|
+
"key": "9d530235407646750ce8298b2815093dffcbbd83"
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
export const componentBottomSheetContentsFilter = {
|
|
98
|
+
"name": "componentBottomSheetContentsFilter",
|
|
99
|
+
"key": "9b50b222edac142fcce609da87250d7778e45ec4"
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
export const componentBottomSheetContentsImage = {
|
|
103
|
+
"name": "componentBottomSheetContentsImage",
|
|
104
|
+
"key": "b0b3e0f267ee67e93d6af524ce9d45764027507c"
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
export const componentBottomSheetContentsRange = {
|
|
108
|
+
"name": "componentBottomSheetContentsRange",
|
|
109
|
+
"key": "0e8d8770bacfb2567a054e9c2159fe5dad6a21ba"
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
export const componentBottomSheetContentsSorting = {
|
|
113
|
+
"name": "componentBottomSheetContentsSorting",
|
|
114
|
+
"key": "61f7b8ff0a1a374a10bb1a6a7a31f379863f2ac8"
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
export const componentChipSuffixIcon = {
|
|
118
|
+
"name": "componentChipSuffixIcon",
|
|
119
|
+
"key": "2f79e3c5a78315c854d7bd4499d142cfcc94548f",
|
|
120
|
+
"componentPropertyDefinitions": {
|
|
121
|
+
"Icon#33203:0": {
|
|
122
|
+
"type": "INSTANCE_SWAP"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
export const componentImageFrameBadge = {
|
|
128
|
+
"name": "componentImageFrameBadge",
|
|
129
|
+
"key": "6a1feb47139040d6f7522528f7c91bf4fe7bcc84"
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
export const componentImageFrameCustom = {
|
|
133
|
+
"name": "componentImageFrameCustom",
|
|
134
|
+
"key": "60900f1f80431faf16f78e0570848d4656076990"
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
export const componentImageFrameIcon = {
|
|
138
|
+
"name": "componentImageFrameIcon",
|
|
139
|
+
"key": "4f495448eeda5d10f41e6195e16b4eff49aaec17",
|
|
140
|
+
"componentPropertyDefinitions": {
|
|
141
|
+
"Icon#58686:297": {
|
|
142
|
+
"type": "INSTANCE_SWAP"
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
export const componentImageFrameOverlayIndicator = {
|
|
148
|
+
"name": "componentImageFrameOverlayIndicator",
|
|
149
|
+
"key": "e3e3596f8c535facae4d23c21bc1d62dd721fe23",
|
|
150
|
+
"componentPropertyDefinitions": {
|
|
151
|
+
"Text#58708:0": {
|
|
152
|
+
"type": "TEXT"
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
export const componentListItemDetailCustom = {
|
|
158
|
+
"name": "componentListItemDetailCustom",
|
|
159
|
+
"key": "d56900622b320739b5ce9dc9b12af1bcd1f6eeb4"
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
export const componentListItemDetailSubText_42a = {
|
|
163
|
+
"name": "componentListItemDetailSubText",
|
|
164
|
+
"key": "42ae9274fba94cb3b02c4e64b6584e5d03b73835"
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
export const componentListItemDetailSubText_07e = {
|
|
168
|
+
"name": "componentListItemDetailSubText",
|
|
169
|
+
"key": "07ea4a584c3fc5862e842efb5a151aff0059ee76"
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
export const componentListItemDetailTagGroup = {
|
|
173
|
+
"name": "componentListItemDetailTagGroup",
|
|
174
|
+
"key": "8e4743cce1ff6ac9e85269de6ce0ecff0ade06cb"
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
export const componentListItemPrefixAvatar = {
|
|
178
|
+
"name": "componentListItemPrefixAvatar",
|
|
179
|
+
"key": "27e33754113178be97e07195528c4ea020b3d3b7"
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
export const componentListItemPrefixCheckbox = {
|
|
183
|
+
"name": "componentListItemPrefixCheckbox",
|
|
184
|
+
"key": "563275de82ea1282cece0c35c0cd8d1625bc3a9d"
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
export const componentListItemPrefixCustom = {
|
|
188
|
+
"name": "componentListItemPrefixCustom",
|
|
189
|
+
"key": "b8059f5e0f85e0745fc61ff70f04571177c2cdfc"
|
|
190
|
+
};
|
|
191
|
+
|
|
192
|
+
export const componentListItemPrefixIcon = {
|
|
193
|
+
"name": "componentListItemPrefixIcon",
|
|
194
|
+
"key": "6c03690f1ce9f6c8b2fcdf4a7c57784f6cca12b9",
|
|
195
|
+
"componentPropertyDefinitions": {
|
|
196
|
+
"Icon#28452:111": {
|
|
197
|
+
"type": "INSTANCE_SWAP"
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
export const componentListItemPrefixImage = {
|
|
203
|
+
"name": "componentListItemPrefixImage",
|
|
204
|
+
"key": "d06216ff143a960844799c0b8f9212628f78c69d"
|
|
205
|
+
};
|
|
206
|
+
|
|
207
|
+
export const componentListItemPrefixRadiomark = {
|
|
208
|
+
"name": "componentListItemPrefixRadiomark",
|
|
209
|
+
"key": "51f7c0917ebc559d81e63d0639cb632a792f40de"
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
export const componentListItemSuffixCheckbox = {
|
|
213
|
+
"name": "componentListItemSuffixCheckbox",
|
|
214
|
+
"key": "385ba8d607029e15e0d38ab415f783016488b185"
|
|
215
|
+
};
|
|
216
|
+
|
|
217
|
+
export const componentListItemSuffixChevron = {
|
|
218
|
+
"name": "componentListItemSuffixChevron",
|
|
219
|
+
"key": "259054ad63bb89ca119c7f45ddad6452acc731f2",
|
|
220
|
+
"componentPropertyDefinitions": {
|
|
221
|
+
"Chevron#28217:9": {
|
|
222
|
+
"type": "INSTANCE_SWAP"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
};
|
|
226
|
+
|
|
227
|
+
export const componentListItemSuffixChevronWithText = {
|
|
228
|
+
"name": "componentListItemSuffixChevronWithText",
|
|
229
|
+
"key": "7bd907ab44dff56fb07317c7b74d7ad9377994f0",
|
|
230
|
+
"componentPropertyDefinitions": {
|
|
231
|
+
"Text#28469:0": {
|
|
232
|
+
"type": "TEXT"
|
|
233
|
+
},
|
|
234
|
+
"Chevron#28477:0": {
|
|
235
|
+
"type": "INSTANCE_SWAP"
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
};
|
|
239
|
+
|
|
240
|
+
export const componentListItemSuffixCustom = {
|
|
241
|
+
"name": "componentListItemSuffixCustom",
|
|
242
|
+
"key": "26b86c9f8965d38aa5a1181a5cdc89fa487988d1"
|
|
243
|
+
};
|
|
244
|
+
|
|
245
|
+
export const componentListItemSuffixIcon = {
|
|
246
|
+
"name": "componentListItemSuffixIcon",
|
|
247
|
+
"key": "b7582e74a4bae29df8bc3f81368e528701a75855",
|
|
248
|
+
"componentPropertyDefinitions": {
|
|
249
|
+
"Icon#28347:9": {
|
|
250
|
+
"type": "INSTANCE_SWAP"
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
};
|
|
254
|
+
|
|
255
|
+
export const componentListItemSuffixRadiomark = {
|
|
256
|
+
"name": "componentListItemSuffixRadiomark",
|
|
257
|
+
"key": "09871d64c5c30407da586fb34425c2e83e147c81"
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
export const componentListItemSuffixSwitch = {
|
|
261
|
+
"name": "componentListItemSuffixSwitch",
|
|
262
|
+
"key": "0c26bd64e117e168b06eea69be903e4be762a728"
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
export const componentPageBannerSuffixAction = {
|
|
266
|
+
"name": "componentPageBannerSuffixAction",
|
|
267
|
+
"key": "1bbd6fff9a32b4211bbe3eeb09fde4e12e87caed",
|
|
268
|
+
"componentPropertyDefinitions": {
|
|
269
|
+
"Label#39890:0": {
|
|
270
|
+
"type": "TEXT"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
export const componentPageBannerSuffixCustom = {
|
|
276
|
+
"name": "componentPageBannerSuffixCustom",
|
|
277
|
+
"key": "40f2b4754bf16fa268941d03499dea575baa7e26"
|
|
278
|
+
};
|
|
279
|
+
|
|
280
|
+
export const componentPageBannerSuffixDismiss = {
|
|
281
|
+
"name": "componentPageBannerSuffixDismiss",
|
|
282
|
+
"key": "7bdf687e01996f3582b4056954fcb65f0bc67b2f"
|
|
283
|
+
};
|
|
284
|
+
|
|
285
|
+
export const componentPageBannerSuffixChevron = {
|
|
286
|
+
"name": "componentPageBannerSuffixChevron",
|
|
287
|
+
"key": "6f570f3b2b50649b0fd81190ebb42604ae3aa3a5"
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
export const componentResultSectionAssetTown = {
|
|
291
|
+
"name": "componentResultSectionAssetTown",
|
|
292
|
+
"key": "fb790e6aac3dea61df651faeb68078835c3e59ab"
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
export const componentResultSectionBridgeLottie = {
|
|
296
|
+
"name": "componentResultSectionBridgeLottie",
|
|
297
|
+
"key": "340c0c7a24b5a4c215b9e699d7af44578939485d"
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
export const componentResultSectionCompleteLottie = {
|
|
301
|
+
"name": "componentResultSectionCompleteLottie",
|
|
302
|
+
"key": "8c337e54aa38b7eb1eec9281c4934c5f0f87124c"
|
|
303
|
+
};
|
|
304
|
+
|
|
305
|
+
export const componentResultSectionCustom = {
|
|
306
|
+
"name": "componentResultSectionCustom",
|
|
307
|
+
"key": "c99bcc071b3ec4243ecdc1502545f427250a7286"
|
|
308
|
+
};
|
|
309
|
+
|
|
310
|
+
export const componentResultSectionFailLottie = {
|
|
311
|
+
"name": "componentResultSectionFailLottie",
|
|
312
|
+
"key": "ebace2f76203529076734076af40fbd04146b724"
|
|
313
|
+
};
|
|
314
|
+
|
|
315
|
+
export const componentResultSectionIconEmptyChat = {
|
|
316
|
+
"name": "componentResultSectionIconEmptyChat",
|
|
317
|
+
"key": "ed86a05df0ddeea4a84008ace70f750f5d1e46c9"
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
export const componentResultSectionIconEmptyList = {
|
|
321
|
+
"name": "componentResultSectionIconEmptyList",
|
|
322
|
+
"key": "99daf8fa5e0eed82c2dab35963f3a8e2f55968a3"
|
|
323
|
+
};
|
|
324
|
+
|
|
325
|
+
export const componentResultSectionIconEmptyPeople = {
|
|
326
|
+
"name": "componentResultSectionIconEmptyPeople",
|
|
327
|
+
"key": "18623f2ffffe641d3f9876189699839f27d279ac"
|
|
328
|
+
};
|
|
329
|
+
|
|
330
|
+
export const componentResultSectionIconEmptySearch = {
|
|
331
|
+
"name": "componentResultSectionIconEmptySearch",
|
|
332
|
+
"key": "4aa9c04ae49806098872f7c856b1925843ca7f4c"
|
|
333
|
+
};
|
|
334
|
+
|
|
335
|
+
export const componentSelectBoxSuffixCustom = {
|
|
336
|
+
"name": "componentSelectBoxSuffixCustom",
|
|
337
|
+
"key": "2ba92fc0cd161281686bf04767e8f2322c8a17f4"
|
|
338
|
+
};
|
|
339
|
+
|
|
340
|
+
export const componentSelectBoxItemPrefixAvatar = {
|
|
341
|
+
"name": "componentSelectBoxItemPrefixAvatar",
|
|
342
|
+
"key": "3d1ea583297f35880d9ec588326d9b82608565cc"
|
|
343
|
+
};
|
|
344
|
+
|
|
345
|
+
export const componentSelectBoxItemPrefixBadge = {
|
|
346
|
+
"name": "componentSelectBoxItemPrefixBadge",
|
|
347
|
+
"key": "d8c60ae70dee3a35795d83a9fd68282c0a90b554"
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
export const componentSelectBoxItemPrefixCustom = {
|
|
351
|
+
"name": "componentSelectBoxItemPrefixCustom",
|
|
352
|
+
"key": "8129b7b7804c8b22cf67d42df2383c1f5152298e"
|
|
353
|
+
};
|
|
354
|
+
|
|
355
|
+
export const componentSelectBoxItemPrefixIcon = {
|
|
356
|
+
"name": "componentSelectBoxItemPrefixIcon",
|
|
357
|
+
"key": "7184053a74eef18503170d08a1bdb74d37cbb65f",
|
|
358
|
+
"componentPropertyDefinitions": {
|
|
359
|
+
"Icon#2475:0": {
|
|
360
|
+
"type": "INSTANCE_SWAP"
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
};
|
|
364
|
+
|
|
365
|
+
export const componentSelectBoxItemPrefixImage = {
|
|
366
|
+
"name": "componentSelectBoxItemPrefixImage",
|
|
367
|
+
"key": "d4a3d2da63f6da1552f5d8f947105390248c9018"
|
|
368
|
+
};
|
|
369
|
+
|
|
370
|
+
export const componentSelectBoxItemSuffixCheck = {
|
|
371
|
+
"name": "componentSelectBoxItemSuffixCheck",
|
|
372
|
+
"key": "7b4bdf92e6852f0ecf85c1f6e0350ffaf674a172"
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
export const componentSelectBoxItemSuffixRadiomark = {
|
|
376
|
+
"name": "componentSelectBoxItemSuffixRadiomark",
|
|
377
|
+
"key": "cfb712b12fe2805b5594f8c143147c8aa3de490e"
|
|
378
|
+
};
|