@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.
- package/lib/codegen/index.cjs +12318 -190
- package/lib/codegen/index.d.ts.map +1 -1
- package/lib/codegen/index.js +12318 -190
- package/lib/codegen/targets/react/index.cjs +17676 -3101
- package/lib/codegen/targets/react/index.d.ts.map +1 -1
- package/lib/codegen/targets/react/index.js +17676 -3101
- package/lib/index.cjs +12324 -196
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +12324 -196
- package/package.json +4 -4
- package/src/codegen/component-properties.archive.ts +1019 -0
- package/src/codegen/component-properties.ts +219 -893
- package/src/codegen/core/infer-layout.test.ts +1 -1
- package/src/codegen/index.ts +1 -1
- package/src/codegen/targets/react/component/handlers/action-button.ts +69 -66
- package/src/codegen/targets/react/component/handlers/alert-dialog.ts +2 -4
- package/src/codegen/targets/react/component/handlers/app-bar.ts +90 -87
- 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 +5 -2
- package/src/codegen/targets/react/component/handlers/avatar.ts +42 -39
- package/src/codegen/targets/react/component/handlers/badge.ts +1 -1
- package/src/codegen/targets/react/component/handlers/bottom-sheet.ts +56 -51
- package/src/codegen/targets/react/component/handlers/callout.ts +1 -1
- package/src/codegen/targets/react/component/handlers/checkbox.ts +91 -3
- package/src/codegen/targets/react/component/handlers/checkmark.ts +1 -1
- package/src/codegen/targets/react/component/handlers/chip.ts +8 -5
- package/src/codegen/targets/react/component/handlers/contextual-floating-button.ts +1 -1
- package/src/codegen/targets/react/component/handlers/divider.ts +1 -1
- package/src/codegen/targets/react/component/handlers/field-button.ts +13 -18
- package/src/codegen/targets/react/component/handlers/field.ts +71 -74
- package/src/codegen/targets/react/component/handlers/floating-action-button.ts +3 -6
- package/src/codegen/targets/react/component/handlers/help-bubble.ts +1 -1
- package/src/codegen/targets/react/component/handlers/identity-placeholder.ts +10 -2
- package/src/codegen/targets/react/component/handlers/index.ts +41 -0
- package/src/codegen/targets/react/component/handlers/legacy-select-box.ts +4 -6
- package/src/codegen/targets/react/component/handlers/legacy-text-field.ts +3 -5
- package/src/codegen/targets/react/component/handlers/list-header.ts +1 -1
- package/src/codegen/targets/react/component/handlers/list-item.ts +24 -23
- package/src/codegen/targets/react/component/handlers/manner-temp-badge.ts +1 -1
- package/src/codegen/targets/react/component/handlers/manner-temp.ts +1 -1
- package/src/codegen/targets/react/component/handlers/menu-sheet.ts +45 -42
- package/src/codegen/targets/react/component/handlers/page-banner.ts +77 -72
- package/src/codegen/targets/react/component/handlers/progress-circle.ts +1 -1
- package/src/codegen/targets/react/component/handlers/radio-group.ts +98 -20
- package/src/codegen/targets/react/component/handlers/radiomark.ts +1 -1
- package/src/codegen/targets/react/component/handlers/reaction-button.ts +1 -1
- package/src/codegen/targets/react/component/handlers/result-section.ts +1 -1
- package/src/codegen/targets/react/component/handlers/segmented-control.ts +2 -3
- package/src/codegen/targets/react/component/handlers/select-box.ts +333 -0
- package/src/codegen/targets/react/component/handlers/skeleton.ts +1 -1
- package/src/codegen/targets/react/component/handlers/slider.ts +13 -10
- package/src/codegen/targets/react/component/handlers/snackbar.ts +1 -1
- package/src/codegen/targets/react/component/handlers/switch.ts +1 -1
- package/src/codegen/targets/react/component/handlers/switchmark.ts +1 -1
- package/src/codegen/targets/react/component/handlers/tabs.ts +39 -42
- package/src/codegen/targets/react/component/handlers/tag-group.ts +46 -42
- package/src/codegen/targets/react/component/handlers/text-field.ts +11 -22
- package/src/codegen/targets/react/component/handlers/toggle-button.ts +1 -1
- package/src/codegen/targets/react/component/index.ts +5 -115
- 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 +3439 -1265
- package/src/entities/data/__generated__/component-sets/index.mjs +3439 -1265
- package/src/entities/data/__generated__/components/index.d.ts +326 -64
- package/src/entities/data/__generated__/components/index.mjs +326 -64
- package/src/entities/data/__generated__/styles/index.mjs +9 -2
- package/src/entities/data/__generated__/variable-collections/index.mjs +150 -173
- package/src/entities/data/__generated__/variables/index.mjs +0 -74
- package/src/entities/index.ts +21 -7
|
@@ -1,1019 +1,345 @@
|
|
|
1
1
|
import type { InferComponentDefinition } from "@/codegen/core";
|
|
2
2
|
import type * as sets from "@/entities/data/__generated__/component-sets";
|
|
3
|
+
import type * as components from "@/entities/data/__generated__/components";
|
|
3
4
|
|
|
4
5
|
export type ActionButtonProperties = InferComponentDefinition<
|
|
5
|
-
typeof sets.
|
|
6
|
+
typeof sets.componentActionButton.componentPropertyDefinitions
|
|
6
7
|
>;
|
|
7
8
|
|
|
8
9
|
export type ActionButtonGhostProperties = InferComponentDefinition<
|
|
9
|
-
typeof sets.
|
|
10
|
+
typeof sets.componentActionButtonGhostButton.componentPropertyDefinitions
|
|
10
11
|
>;
|
|
11
12
|
|
|
12
13
|
export type AlertDialogProperties = InferComponentDefinition<
|
|
13
|
-
typeof sets.
|
|
14
|
-
>;
|
|
15
|
-
|
|
16
|
-
export type AlertDialogFooterProperties = InferComponentDefinition<
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
defaultValue: "Single";
|
|
20
|
-
variantOptions: [
|
|
21
|
-
"Single",
|
|
22
|
-
"Neutral",
|
|
23
|
-
"Neutral (Overflow)",
|
|
24
|
-
"Critical",
|
|
25
|
-
"Critical (Overflow)",
|
|
26
|
-
"Nonpreferred",
|
|
27
|
-
];
|
|
28
|
-
};
|
|
29
|
-
}>;
|
|
14
|
+
typeof sets.componentAlertDialog.componentPropertyDefinitions
|
|
15
|
+
>;
|
|
16
|
+
|
|
17
|
+
export type AlertDialogFooterProperties = InferComponentDefinition<
|
|
18
|
+
typeof sets.privateComponentAlertDialogActions.componentPropertyDefinitions
|
|
19
|
+
>;
|
|
30
20
|
|
|
31
21
|
export type AvatarProperties = InferComponentDefinition<
|
|
32
|
-
typeof sets.
|
|
22
|
+
typeof sets.componentAvatar.componentPropertyDefinitions
|
|
33
23
|
>;
|
|
34
24
|
|
|
35
25
|
export type AvatarStackProperties = InferComponentDefinition<
|
|
36
|
-
typeof sets.
|
|
26
|
+
typeof sets.componentAvatarStack.componentPropertyDefinitions
|
|
37
27
|
>;
|
|
38
28
|
|
|
39
29
|
export type BadgeProperties = InferComponentDefinition<
|
|
40
|
-
typeof sets.
|
|
30
|
+
typeof sets.componentBadge.componentPropertyDefinitions
|
|
41
31
|
>;
|
|
42
32
|
|
|
43
33
|
export type BottomSheetProperties = InferComponentDefinition<
|
|
44
|
-
typeof sets.
|
|
34
|
+
typeof sets.componentBottomSheet.componentPropertyDefinitions
|
|
45
35
|
>;
|
|
46
36
|
|
|
47
37
|
export type CalloutProperties = InferComponentDefinition<
|
|
48
|
-
typeof sets.
|
|
38
|
+
typeof sets.componentCallout.componentPropertyDefinitions
|
|
49
39
|
>;
|
|
50
40
|
|
|
51
41
|
export type CheckboxProperties = InferComponentDefinition<
|
|
52
|
-
typeof sets.
|
|
42
|
+
typeof sets.componentCheckbox.componentPropertyDefinitions
|
|
43
|
+
>;
|
|
44
|
+
|
|
45
|
+
export type CheckboxGroupFieldProperties = InferComponentDefinition<
|
|
46
|
+
typeof sets.templateCheckboxField.componentPropertyDefinitions
|
|
53
47
|
>;
|
|
54
48
|
|
|
55
49
|
export type CheckmarkProperties = InferComponentDefinition<
|
|
56
|
-
typeof sets.
|
|
50
|
+
typeof sets.componentCheckmark.componentPropertyDefinitions
|
|
57
51
|
>;
|
|
58
52
|
|
|
59
53
|
export type ChipProperties = InferComponentDefinition<
|
|
60
|
-
typeof sets.
|
|
54
|
+
typeof sets.componentChip.componentPropertyDefinitions
|
|
61
55
|
>;
|
|
62
56
|
|
|
63
|
-
export type ChipIconSuffixProperties = InferComponentDefinition<
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
defaultValue: "26621:23250";
|
|
67
|
-
preferredValues: [];
|
|
68
|
-
};
|
|
69
|
-
}>;
|
|
57
|
+
export type ChipIconSuffixProperties = InferComponentDefinition<
|
|
58
|
+
typeof components.componentChipSuffixIcon.componentPropertyDefinitions
|
|
59
|
+
>;
|
|
70
60
|
|
|
71
61
|
export type ContextualFloatingButtonProperties = InferComponentDefinition<
|
|
72
|
-
typeof sets.
|
|
62
|
+
typeof sets.componentContextualFloatingButton.componentPropertyDefinitions
|
|
73
63
|
>;
|
|
74
64
|
|
|
75
65
|
export type DividerProperties = InferComponentDefinition<
|
|
76
|
-
typeof sets.
|
|
77
|
-
>;
|
|
78
|
-
|
|
79
|
-
export type FieldHeaderProperties = InferComponentDefinition<
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
defaultValue: "Medium";
|
|
95
|
-
variantOptions: ["Medium", "Bold"];
|
|
96
|
-
};
|
|
97
|
-
}>;
|
|
98
|
-
|
|
99
|
-
export type FieldIndicatorProperties = InferComponentDefinition<{
|
|
100
|
-
"Required Label#40606:3": {
|
|
101
|
-
type: "TEXT";
|
|
102
|
-
defaultValue: "선택";
|
|
103
|
-
};
|
|
104
|
-
Type: {
|
|
105
|
-
type: "VARIANT";
|
|
106
|
-
defaultValue: "Required Mark";
|
|
107
|
-
variantOptions: ["Required Mark", "Text"];
|
|
108
|
-
};
|
|
109
|
-
}>;
|
|
110
|
-
|
|
111
|
-
export type FieldFooterProperties = InferComponentDefinition<{
|
|
112
|
-
"Text#2770:0": {
|
|
113
|
-
type: "TEXT";
|
|
114
|
-
defaultValue: "도움말 텍스트 입력";
|
|
115
|
-
};
|
|
116
|
-
"Has Prefix#2778:13": {
|
|
117
|
-
type: "BOOLEAN";
|
|
118
|
-
defaultValue: false;
|
|
119
|
-
};
|
|
120
|
-
"Error Text#32821:0": {
|
|
121
|
-
type: "TEXT";
|
|
122
|
-
defaultValue: "에러 메시지 입력";
|
|
123
|
-
};
|
|
124
|
-
Type: {
|
|
125
|
-
type: "VARIANT";
|
|
126
|
-
defaultValue: "Description With Character Count";
|
|
127
|
-
variantOptions: ["Description", "Description With Character Count", "Character Count"];
|
|
128
|
-
};
|
|
129
|
-
Error: {
|
|
130
|
-
type: "VARIANT";
|
|
131
|
-
defaultValue: "false";
|
|
132
|
-
variantOptions: ["true", "false"];
|
|
133
|
-
};
|
|
134
|
-
}>;
|
|
135
|
-
|
|
136
|
-
export type FieldCharacterCountProperties = InferComponentDefinition<{
|
|
137
|
-
"Counter#40960:0": {
|
|
138
|
-
type: "TEXT";
|
|
139
|
-
defaultValue: "10";
|
|
140
|
-
};
|
|
141
|
-
"Max Count#40960:4": {
|
|
142
|
-
type: "TEXT";
|
|
143
|
-
defaultValue: "500";
|
|
144
|
-
};
|
|
145
|
-
State: {
|
|
146
|
-
type: "VARIANT";
|
|
147
|
-
defaultValue: "Null";
|
|
148
|
-
variantOptions: ["Null", "Has Value", "Error"];
|
|
149
|
-
};
|
|
150
|
-
}>;
|
|
66
|
+
typeof sets.componentDivider.componentPropertyDefinitions
|
|
67
|
+
>;
|
|
68
|
+
|
|
69
|
+
export type FieldHeaderProperties = InferComponentDefinition<
|
|
70
|
+
typeof sets.componentFieldHeader.componentPropertyDefinitions
|
|
71
|
+
>;
|
|
72
|
+
|
|
73
|
+
export type FieldIndicatorProperties = InferComponentDefinition<
|
|
74
|
+
typeof sets.privateComponentFieldHeaderIndicator.componentPropertyDefinitions
|
|
75
|
+
>;
|
|
76
|
+
|
|
77
|
+
export type FieldFooterProperties = InferComponentDefinition<
|
|
78
|
+
typeof sets.componentFieldFooter.componentPropertyDefinitions
|
|
79
|
+
>;
|
|
80
|
+
|
|
81
|
+
export type FieldCharacterCountProperties = InferComponentDefinition<
|
|
82
|
+
typeof sets.privateComponentFieldFooterCharacterCount.componentPropertyDefinitions
|
|
83
|
+
>;
|
|
151
84
|
|
|
152
85
|
export type MenuSheetProperties = InferComponentDefinition<
|
|
153
|
-
typeof sets.
|
|
154
|
-
>;
|
|
155
|
-
|
|
156
|
-
export type MenuSheetGroupProperties = InferComponentDefinition<
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
export type MenuSheetItemProperties = InferComponentDefinition<{
|
|
165
|
-
"Show Prefix Icon#17043:5": {
|
|
166
|
-
type: "BOOLEAN";
|
|
167
|
-
defaultValue: true;
|
|
168
|
-
};
|
|
169
|
-
"Sub Text#51411:0": {
|
|
170
|
-
type: "TEXT";
|
|
171
|
-
defaultValue: "설명을 입력해주세요.";
|
|
172
|
-
};
|
|
173
|
-
"Show Item Description#51411:19": {
|
|
174
|
-
type: "BOOLEAN";
|
|
175
|
-
defaultValue: false;
|
|
176
|
-
};
|
|
177
|
-
"Label#55905:8": {
|
|
178
|
-
type: "TEXT";
|
|
179
|
-
defaultValue: "라벨";
|
|
180
|
-
};
|
|
181
|
-
"Prefix Icon#55948:0": {
|
|
182
|
-
type: "INSTANCE_SWAP";
|
|
183
|
-
defaultValue: "26621:23245";
|
|
184
|
-
preferredValues: [];
|
|
185
|
-
};
|
|
186
|
-
Tone: {
|
|
187
|
-
type: "VARIANT";
|
|
188
|
-
defaultValue: "Neutral";
|
|
189
|
-
variantOptions: ["Neutral", "Critical"];
|
|
190
|
-
};
|
|
191
|
-
State: {
|
|
192
|
-
type: "VARIANT";
|
|
193
|
-
defaultValue: "Enabled";
|
|
194
|
-
variantOptions: ["Enabled", "Pressed", "Disabled"];
|
|
195
|
-
};
|
|
196
|
-
Layout: {
|
|
197
|
-
type: "VARIANT";
|
|
198
|
-
defaultValue: "Text Only";
|
|
199
|
-
variantOptions: ["Text Only", "Text with Icon"];
|
|
200
|
-
};
|
|
201
|
-
}>;
|
|
86
|
+
typeof sets.componentMenuSheet.componentPropertyDefinitions
|
|
87
|
+
>;
|
|
88
|
+
|
|
89
|
+
export type MenuSheetGroupProperties = InferComponentDefinition<
|
|
90
|
+
typeof sets.privateComponentMenuSheetMenuGroup.componentPropertyDefinitions
|
|
91
|
+
>;
|
|
92
|
+
|
|
93
|
+
export type MenuSheetItemProperties = InferComponentDefinition<
|
|
94
|
+
typeof sets.privateComponentMenuSheetMenuItem.componentPropertyDefinitions
|
|
95
|
+
>;
|
|
202
96
|
|
|
203
97
|
export type FloatingActionButtonProperties = InferComponentDefinition<
|
|
204
|
-
typeof sets.
|
|
205
|
-
>;
|
|
206
|
-
|
|
207
|
-
export type FloatingActionButtonButtonItemProperties = InferComponentDefinition<{
|
|
208
|
-
"Icon#29766:18": {
|
|
209
|
-
type: "INSTANCE_SWAP";
|
|
210
|
-
defaultValue: "26621:24681";
|
|
211
|
-
preferredValues: [];
|
|
212
|
-
};
|
|
213
|
-
"Label#29808:0": {
|
|
214
|
-
type: "TEXT";
|
|
215
|
-
defaultValue: "라벨";
|
|
216
|
-
};
|
|
217
|
-
State: {
|
|
218
|
-
type: "VARIANT";
|
|
219
|
-
defaultValue: "Enabled";
|
|
220
|
-
variantOptions: ["Enabled", "Pressed"];
|
|
221
|
-
};
|
|
222
|
-
Extended: {
|
|
223
|
-
type: "VARIANT";
|
|
224
|
-
defaultValue: "True";
|
|
225
|
-
variantOptions: ["True", "False"];
|
|
226
|
-
};
|
|
227
|
-
}>;
|
|
228
|
-
|
|
229
|
-
export type FloatingActionButtonMenuItemProperties = InferComponentDefinition<{
|
|
230
|
-
"Icon#29766:0": {
|
|
231
|
-
type: "INSTANCE_SWAP";
|
|
232
|
-
defaultValue: "26621:24681";
|
|
233
|
-
preferredValues: [];
|
|
234
|
-
};
|
|
235
|
-
"Label#29766:9": {
|
|
236
|
-
type: "TEXT";
|
|
237
|
-
defaultValue: "라벨";
|
|
238
|
-
};
|
|
239
|
-
State: {
|
|
240
|
-
type: "VARIANT";
|
|
241
|
-
defaultValue: "Enabled";
|
|
242
|
-
variantOptions: ["Pressed", "Enabled"];
|
|
243
|
-
};
|
|
244
|
-
Extended: {
|
|
245
|
-
type: "VARIANT";
|
|
246
|
-
defaultValue: "True";
|
|
247
|
-
variantOptions: ["True", "False"];
|
|
248
|
-
};
|
|
249
|
-
Open: {
|
|
250
|
-
type: "VARIANT";
|
|
251
|
-
defaultValue: "False";
|
|
252
|
-
variantOptions: ["True", "False"];
|
|
253
|
-
};
|
|
254
|
-
}>;
|
|
98
|
+
typeof sets.componentFloatingActionButton.componentPropertyDefinitions
|
|
99
|
+
>;
|
|
255
100
|
|
|
256
|
-
export type
|
|
257
|
-
typeof sets.
|
|
101
|
+
export type FloatingActionButtonButtonItemProperties = InferComponentDefinition<
|
|
102
|
+
typeof sets.privateComponentItemButtonType.componentPropertyDefinitions
|
|
103
|
+
>;
|
|
104
|
+
|
|
105
|
+
export type FloatingActionButtonMenuItemProperties = InferComponentDefinition<
|
|
106
|
+
typeof sets.privateComponentItemMenuType.componentPropertyDefinitions
|
|
258
107
|
>;
|
|
259
108
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
type: "VARIANT";
|
|
264
|
-
defaultValue: "Person";
|
|
265
|
-
variantOptions: ["Person", "Business"];
|
|
266
|
-
};
|
|
267
|
-
}>;
|
|
109
|
+
export type HelpBubbleProperties = InferComponentDefinition<
|
|
110
|
+
typeof sets.componentHelpBubble.componentPropertyDefinitions
|
|
111
|
+
>;
|
|
268
112
|
|
|
269
113
|
export type PageBannerProperties = InferComponentDefinition<
|
|
270
|
-
typeof sets.
|
|
114
|
+
typeof sets.componentPageBanner.componentPropertyDefinitions
|
|
271
115
|
>;
|
|
272
116
|
|
|
273
|
-
export type PageBannerButtonProperties = InferComponentDefinition<
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
defaultValue: "라벨";
|
|
277
|
-
};
|
|
278
|
-
}>;
|
|
117
|
+
export type PageBannerButtonProperties = InferComponentDefinition<
|
|
118
|
+
typeof components.componentPageBannerSuffixAction.componentPropertyDefinitions
|
|
119
|
+
>;
|
|
279
120
|
|
|
280
121
|
export type ListHeaderProperties = InferComponentDefinition<
|
|
281
|
-
typeof sets.
|
|
122
|
+
typeof sets.componentListHeader.componentPropertyDefinitions
|
|
282
123
|
>;
|
|
283
124
|
|
|
284
125
|
export type ListItemProperties = InferComponentDefinition<
|
|
285
|
-
typeof sets.
|
|
126
|
+
typeof sets.componentListItem.componentPropertyDefinitions
|
|
286
127
|
>;
|
|
287
128
|
|
|
288
|
-
export type ListItemPrefixIconProperties = InferComponentDefinition<
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
defaultValue: "34885:102336";
|
|
292
|
-
preferredValues: [{ type: "COMPONENT_SET"; key: "1449adc3a216979ac3e6a4a99183a9e9790b220c" }];
|
|
293
|
-
};
|
|
294
|
-
}>;
|
|
129
|
+
export type ListItemPrefixIconProperties = InferComponentDefinition<
|
|
130
|
+
typeof components.componentListItemPrefixIcon.componentPropertyDefinitions
|
|
131
|
+
>;
|
|
295
132
|
|
|
296
|
-
export type ListItemSuffixIconProperties = InferComponentDefinition<
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
defaultValue: "26621:23412";
|
|
300
|
-
preferredValues: [];
|
|
301
|
-
};
|
|
302
|
-
}>;
|
|
133
|
+
export type ListItemSuffixIconProperties = InferComponentDefinition<
|
|
134
|
+
typeof components.componentListItemSuffixIcon.componentPropertyDefinitions
|
|
135
|
+
>;
|
|
303
136
|
|
|
304
137
|
export type MannerTempProperties = InferComponentDefinition<
|
|
305
|
-
typeof sets.
|
|
138
|
+
typeof sets.componentMannerTemp.componentPropertyDefinitions
|
|
306
139
|
>;
|
|
307
140
|
|
|
308
141
|
export type MannerTempBadgeProperties = InferComponentDefinition<
|
|
309
|
-
typeof sets.
|
|
142
|
+
typeof sets.componentMannerTempBadge.componentPropertyDefinitions
|
|
310
143
|
>;
|
|
311
144
|
|
|
312
145
|
export type ProgressCircleProperties = InferComponentDefinition<
|
|
313
|
-
typeof sets.
|
|
146
|
+
typeof sets.componentProgressCircle.componentPropertyDefinitions
|
|
314
147
|
>;
|
|
315
148
|
|
|
316
149
|
export type RadioProperties = InferComponentDefinition<
|
|
317
|
-
typeof sets.
|
|
150
|
+
typeof sets.componentRadio.componentPropertyDefinitions
|
|
151
|
+
>;
|
|
152
|
+
|
|
153
|
+
export type RadioGroupFieldProperties = InferComponentDefinition<
|
|
154
|
+
typeof sets.templateRadioField.componentPropertyDefinitions
|
|
318
155
|
>;
|
|
319
156
|
|
|
320
157
|
export type RadiomarkProperties = InferComponentDefinition<
|
|
321
|
-
typeof sets.
|
|
158
|
+
typeof sets.componentRadiomark.componentPropertyDefinitions
|
|
322
159
|
>;
|
|
323
160
|
|
|
324
161
|
export type ReactionButtonProperties = InferComponentDefinition<
|
|
325
|
-
typeof sets.
|
|
162
|
+
typeof sets.componentReactionButton.componentPropertyDefinitions
|
|
326
163
|
>;
|
|
327
164
|
|
|
328
165
|
export type ResultSectionProperties = InferComponentDefinition<
|
|
329
|
-
typeof sets.
|
|
166
|
+
typeof sets.componentResultSection.componentPropertyDefinitions
|
|
330
167
|
>;
|
|
331
168
|
|
|
332
169
|
export type SegmentedControlProperties = InferComponentDefinition<
|
|
333
|
-
typeof sets.
|
|
170
|
+
typeof sets.componentSegmentedControl.componentPropertyDefinitions
|
|
171
|
+
>;
|
|
172
|
+
|
|
173
|
+
export type SegmentedControlItemProperties = InferComponentDefinition<
|
|
174
|
+
typeof sets.privateComponentSegmentedControlItem.componentPropertyDefinitions
|
|
334
175
|
>;
|
|
335
176
|
|
|
336
|
-
export type
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
177
|
+
export type SelectBoxGroupFieldProperties = InferComponentDefinition<
|
|
178
|
+
typeof sets.templateSelectBoxField.componentPropertyDefinitions
|
|
179
|
+
>;
|
|
180
|
+
|
|
181
|
+
export type SelectBoxGroupProperties = InferComponentDefinition<
|
|
182
|
+
typeof sets.componentSelectBoxGroup.componentPropertyDefinitions
|
|
183
|
+
>;
|
|
184
|
+
|
|
185
|
+
export type SelectBoxHorizontalProperties = InferComponentDefinition<
|
|
186
|
+
typeof sets.componentSelectBoxItemHorizontal.componentPropertyDefinitions
|
|
187
|
+
>;
|
|
188
|
+
|
|
189
|
+
export type SelectBoxVerticalProperties = InferComponentDefinition<
|
|
190
|
+
typeof sets.componentSelectBoxItemVertical.componentPropertyDefinitions
|
|
191
|
+
>;
|
|
192
|
+
|
|
193
|
+
export type SelectBoxPrefixIconProperties = InferComponentDefinition<
|
|
194
|
+
typeof components.componentSelectBoxItemPrefixIcon.componentPropertyDefinitions
|
|
195
|
+
>;
|
|
347
196
|
|
|
348
197
|
export type SkeletonProperties = InferComponentDefinition<
|
|
349
|
-
typeof sets.
|
|
198
|
+
typeof sets.componentSkeleton.componentPropertyDefinitions
|
|
350
199
|
>;
|
|
351
200
|
|
|
352
201
|
export type SliderProperties = InferComponentDefinition<
|
|
353
|
-
typeof sets.
|
|
354
|
-
>;
|
|
355
|
-
|
|
356
|
-
export type SliderTicksProperties = InferComponentDefinition<
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
defaultValue: "Continuous";
|
|
360
|
-
variantOptions: ["Continuous", "Discrete"];
|
|
361
|
-
};
|
|
362
|
-
Step: {
|
|
363
|
-
type: "VARIANT";
|
|
364
|
-
defaultValue: "2";
|
|
365
|
-
variantOptions: ["2", "3", "4", "5"];
|
|
366
|
-
};
|
|
367
|
-
}>;
|
|
202
|
+
typeof sets.componentSlider.componentPropertyDefinitions
|
|
203
|
+
>;
|
|
204
|
+
|
|
205
|
+
export type SliderTicksProperties = InferComponentDefinition<
|
|
206
|
+
typeof sets.privateComponentSliderItemTickMark.componentPropertyDefinitions
|
|
207
|
+
>;
|
|
368
208
|
|
|
369
209
|
export type SliderFieldProperties = InferComponentDefinition<
|
|
370
210
|
typeof sets.templateSliderField.componentPropertyDefinitions
|
|
371
211
|
>;
|
|
372
212
|
|
|
373
213
|
export type SnackbarProperties = InferComponentDefinition<
|
|
374
|
-
typeof sets.
|
|
214
|
+
typeof sets.componentSnackbar.componentPropertyDefinitions
|
|
375
215
|
>;
|
|
376
216
|
|
|
377
217
|
export type SwitchProperties = InferComponentDefinition<
|
|
378
|
-
typeof sets.
|
|
218
|
+
typeof sets.componentSwitch.componentPropertyDefinitions
|
|
379
219
|
>;
|
|
380
220
|
|
|
381
221
|
export type SwitchmarkProperties = InferComponentDefinition<
|
|
382
|
-
typeof sets.
|
|
222
|
+
typeof sets.componentSwitchmark.componentPropertyDefinitions
|
|
383
223
|
>;
|
|
384
224
|
|
|
385
225
|
export type ToggleButtonProperties = InferComponentDefinition<
|
|
386
|
-
typeof sets.
|
|
226
|
+
typeof sets.componentToggleButton.componentPropertyDefinitions
|
|
387
227
|
>;
|
|
388
228
|
|
|
389
229
|
export type AppBarProperties = InferComponentDefinition<
|
|
390
|
-
typeof sets.
|
|
391
|
-
>;
|
|
392
|
-
|
|
393
|
-
export type AppBarMainProperties = InferComponentDefinition<
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
key: "c7dab3f6d0df0a150564e696c0df00bd43ffef3f";
|
|
405
|
-
},
|
|
406
|
-
];
|
|
407
|
-
};
|
|
408
|
-
"Subtitle#16958:9": {
|
|
409
|
-
type: "TEXT";
|
|
410
|
-
defaultValue: "서브타이틀";
|
|
411
|
-
};
|
|
412
|
-
"Show Right#16958:13": {
|
|
413
|
-
type: "BOOLEAN";
|
|
414
|
-
defaultValue: false;
|
|
415
|
-
};
|
|
416
|
-
"Show Left#16958:17": {
|
|
417
|
-
type: "BOOLEAN";
|
|
418
|
-
defaultValue: false;
|
|
419
|
-
};
|
|
420
|
-
Type: {
|
|
421
|
-
type: "VARIANT";
|
|
422
|
-
defaultValue: "Title";
|
|
423
|
-
variantOptions: ["Title", "Title-Subtitle", "Logo (Figma Only)"];
|
|
424
|
-
};
|
|
425
|
-
}>;
|
|
426
|
-
|
|
427
|
-
export type AppBarLeftIconButtonProperties = InferComponentDefinition<{
|
|
428
|
-
"Icon#33580:0": {
|
|
429
|
-
type: "INSTANCE_SWAP";
|
|
430
|
-
defaultValue: "26621:23427";
|
|
431
|
-
preferredValues: [];
|
|
432
|
-
};
|
|
433
|
-
}>;
|
|
434
|
-
|
|
435
|
-
export type AppBarRightIconButtonProperties = InferComponentDefinition<{
|
|
436
|
-
"Icon#6406:3": {
|
|
437
|
-
type: "INSTANCE_SWAP";
|
|
438
|
-
defaultValue: "34885:102301";
|
|
439
|
-
preferredValues: [
|
|
440
|
-
{
|
|
441
|
-
type: "COMPONENT_SET";
|
|
442
|
-
key: "bc7bc98e19d8ffdd9efdc94b610c6af28156f867";
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
type: "COMPONENT_SET";
|
|
446
|
-
key: "d766c026e52ee6c78cbf1a474068264e831ddfe3";
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
type: "COMPONENT_SET";
|
|
450
|
-
key: "a4cb85e4d25a320d27a48c3e8132a6c01b45ab3c";
|
|
451
|
-
},
|
|
452
|
-
{
|
|
453
|
-
type: "COMPONENT_SET";
|
|
454
|
-
key: "e262d9b447adff63d15a6f1af60ae47cbc1ca47f";
|
|
455
|
-
},
|
|
456
|
-
{
|
|
457
|
-
type: "COMPONENT_SET";
|
|
458
|
-
key: "1d3918afcac320eff3aafc2719b98cf5141afa55";
|
|
459
|
-
},
|
|
460
|
-
{
|
|
461
|
-
type: "COMPONENT_SET";
|
|
462
|
-
key: "8ed05ef62a40f2dc034ee7eb6945bd0e63ad49aa";
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
type: "COMPONENT_SET";
|
|
466
|
-
key: "98ee886122c725ac9e3e682f31efd1d1a1bec90d";
|
|
467
|
-
},
|
|
468
|
-
{
|
|
469
|
-
type: "COMPONENT_SET";
|
|
470
|
-
key: "bf71b0c5c8664149298fe1b3c58905715a523e19";
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
type: "COMPONENT_SET";
|
|
474
|
-
key: "47a8df3d59bc52aef1c584d992c05771a8125965";
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
type: "COMPONENT_SET";
|
|
478
|
-
key: "0fcbc3c123d5c7ee7a5dd20e0860ee25bdc19e30";
|
|
479
|
-
},
|
|
480
|
-
];
|
|
481
|
-
};
|
|
482
|
-
Notification: {
|
|
483
|
-
type: "VARIANT";
|
|
484
|
-
defaultValue: "False";
|
|
485
|
-
variantOptions: ["False", "True"];
|
|
486
|
-
};
|
|
487
|
-
}>;
|
|
230
|
+
typeof sets.componentTopNavigation.componentPropertyDefinitions
|
|
231
|
+
>;
|
|
232
|
+
|
|
233
|
+
export type AppBarMainProperties = InferComponentDefinition<
|
|
234
|
+
typeof sets.privateComponentTopNavigationTitle.componentPropertyDefinitions
|
|
235
|
+
>;
|
|
236
|
+
|
|
237
|
+
export type AppBarLeftIconButtonProperties = InferComponentDefinition<
|
|
238
|
+
typeof components.privateComponentTopNavigationLeftIconButton.componentPropertyDefinitions
|
|
239
|
+
>;
|
|
240
|
+
|
|
241
|
+
export type AppBarRightIconButtonProperties = InferComponentDefinition<
|
|
242
|
+
typeof sets.privateComponentTopNavigationRightIconButton.componentPropertyDefinitions
|
|
243
|
+
>;
|
|
488
244
|
|
|
489
245
|
export type TabsProperties = InferComponentDefinition<
|
|
490
|
-
typeof sets.
|
|
491
|
-
>;
|
|
492
|
-
|
|
493
|
-
export type TabsLineWrapperProperties = InferComponentDefinition<
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
type: "BOOLEAN";
|
|
513
|
-
defaultValue: false;
|
|
514
|
-
};
|
|
515
|
-
Size: {
|
|
516
|
-
type: "VARIANT";
|
|
517
|
-
defaultValue: "Small";
|
|
518
|
-
variantOptions: ["Medium", "Small"];
|
|
519
|
-
};
|
|
520
|
-
State: {
|
|
521
|
-
type: "VARIANT";
|
|
522
|
-
defaultValue: "Selected";
|
|
523
|
-
variantOptions: ["Enabled", "Selected", "Disabled"];
|
|
524
|
-
};
|
|
525
|
-
}>;
|
|
526
|
-
|
|
527
|
-
export type TabsLineTriggerFillProperties = InferComponentDefinition<{
|
|
528
|
-
"Label#4478:2": {
|
|
529
|
-
type: "TEXT";
|
|
530
|
-
defaultValue: "라벨";
|
|
531
|
-
};
|
|
532
|
-
"Has Notification#32904:13": {
|
|
533
|
-
type: "BOOLEAN";
|
|
534
|
-
defaultValue: false;
|
|
535
|
-
};
|
|
536
|
-
Size: {
|
|
537
|
-
type: "VARIANT";
|
|
538
|
-
defaultValue: "Small";
|
|
539
|
-
variantOptions: ["Medium", "Small"];
|
|
540
|
-
};
|
|
541
|
-
State: {
|
|
542
|
-
type: "VARIANT";
|
|
543
|
-
defaultValue: "Selected";
|
|
544
|
-
variantOptions: ["Enabled", "Selected", "Disabled"];
|
|
545
|
-
};
|
|
546
|
-
}>;
|
|
547
|
-
|
|
548
|
-
export type TabsChipWrapperProperties = InferComponentDefinition<{
|
|
549
|
-
Size: {
|
|
550
|
-
type: "VARIANT";
|
|
551
|
-
defaultValue: "Large";
|
|
552
|
-
variantOptions: ["Medium", "Large"];
|
|
553
|
-
};
|
|
554
|
-
Variant: {
|
|
555
|
-
type: "VARIANT";
|
|
556
|
-
defaultValue: "Solid";
|
|
557
|
-
variantOptions: ["Solid", "Outline"];
|
|
558
|
-
};
|
|
559
|
-
}>;
|
|
560
|
-
|
|
561
|
-
export type ChipTabsTriggerProperties = InferComponentDefinition<{
|
|
562
|
-
Size: {
|
|
563
|
-
type: "VARIANT";
|
|
564
|
-
defaultValue: "Medium";
|
|
565
|
-
variantOptions: ["Medium", "Large"];
|
|
566
|
-
};
|
|
567
|
-
Variant: {
|
|
568
|
-
type: "VARIANT";
|
|
569
|
-
defaultValue: "Solid";
|
|
570
|
-
variantOptions: ["Outline", "Solid"];
|
|
571
|
-
};
|
|
572
|
-
State: {
|
|
573
|
-
type: "VARIANT";
|
|
574
|
-
defaultValue: "Selected";
|
|
575
|
-
variantOptions: ["Enabled", "Selected", "Disabled"];
|
|
576
|
-
};
|
|
577
|
-
"Has Notification": {
|
|
578
|
-
type: "VARIANT";
|
|
579
|
-
defaultValue: "False";
|
|
580
|
-
variantOptions: ["False", "True"];
|
|
581
|
-
};
|
|
582
|
-
}>;
|
|
246
|
+
typeof sets.componentTabs.componentPropertyDefinitions
|
|
247
|
+
>;
|
|
248
|
+
|
|
249
|
+
export type TabsLineWrapperProperties = InferComponentDefinition<
|
|
250
|
+
typeof sets.privateComponentTabsLine.componentPropertyDefinitions
|
|
251
|
+
>;
|
|
252
|
+
|
|
253
|
+
export type TabsLineTriggerHugProperties = InferComponentDefinition<
|
|
254
|
+
typeof sets.privateComponentTabItemLineHug.componentPropertyDefinitions
|
|
255
|
+
>;
|
|
256
|
+
|
|
257
|
+
export type TabsLineTriggerFillProperties = InferComponentDefinition<
|
|
258
|
+
typeof sets.privateComponentTabItemLineFill.componentPropertyDefinitions
|
|
259
|
+
>;
|
|
260
|
+
|
|
261
|
+
export type TabsChipWrapperProperties = InferComponentDefinition<
|
|
262
|
+
typeof sets.privateComponentTabsChip.componentPropertyDefinitions
|
|
263
|
+
>;
|
|
264
|
+
|
|
265
|
+
export type ChipTabsTriggerProperties = InferComponentDefinition<
|
|
266
|
+
typeof sets.privateComponentTabItemChip.componentPropertyDefinitions
|
|
267
|
+
>;
|
|
583
268
|
|
|
584
269
|
export type TagGroupProperties = InferComponentDefinition<
|
|
585
|
-
typeof sets.
|
|
586
|
-
>;
|
|
587
|
-
|
|
588
|
-
export type TagGroupItemProperties = InferComponentDefinition<
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
defaultValue: "라벨";
|
|
592
|
-
};
|
|
593
|
-
"Prefix Icon#47948:0": {
|
|
594
|
-
type: "INSTANCE_SWAP";
|
|
595
|
-
defaultValue: "26621:23540";
|
|
596
|
-
preferredValues: [];
|
|
597
|
-
};
|
|
598
|
-
"Suffix Icon#47948:55": {
|
|
599
|
-
type: "INSTANCE_SWAP";
|
|
600
|
-
defaultValue: "27053:2268";
|
|
601
|
-
preferredValues: [];
|
|
602
|
-
};
|
|
603
|
-
Size: {
|
|
604
|
-
type: "VARIANT";
|
|
605
|
-
defaultValue: "t2(12pt)";
|
|
606
|
-
variantOptions: ["t2(12pt)", "t3(13pt)", "t4(14pt)"];
|
|
607
|
-
};
|
|
608
|
-
Layout: {
|
|
609
|
-
type: "VARIANT";
|
|
610
|
-
defaultValue: "Text Only";
|
|
611
|
-
variantOptions: ["Text Only", "Icon First", "Icon Last"];
|
|
612
|
-
};
|
|
613
|
-
Tone: {
|
|
614
|
-
type: "VARIANT";
|
|
615
|
-
defaultValue: "Neutral Subtle";
|
|
616
|
-
variantOptions: ["Neutral Subtle", "Brand", "Neutral"];
|
|
617
|
-
};
|
|
618
|
-
Weight: {
|
|
619
|
-
type: "VARIANT";
|
|
620
|
-
defaultValue: "Regular";
|
|
621
|
-
variantOptions: ["Regular", "Bold"];
|
|
622
|
-
};
|
|
623
|
-
}>;
|
|
270
|
+
typeof sets.componentTagGroup.componentPropertyDefinitions
|
|
271
|
+
>;
|
|
272
|
+
|
|
273
|
+
export type TagGroupItemProperties = InferComponentDefinition<
|
|
274
|
+
typeof sets.privateComponentItemTag.componentPropertyDefinitions
|
|
275
|
+
>;
|
|
624
276
|
|
|
625
277
|
export type TextInputFieldProperties = InferComponentDefinition<
|
|
626
278
|
typeof sets.templateTextField.componentPropertyDefinitions
|
|
627
279
|
>;
|
|
628
280
|
|
|
629
|
-
export type TextInputOutlineProperties = InferComponentDefinition<
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
"AI Loading (Figma Only)",
|
|
653
|
-
];
|
|
654
|
-
};
|
|
655
|
-
}>;
|
|
656
|
-
|
|
657
|
-
export type TextInputOutlinePrefixProperties = InferComponentDefinition<{
|
|
658
|
-
"Icon#34021:2": {
|
|
659
|
-
type: "INSTANCE_SWAP";
|
|
660
|
-
defaultValue: "32633:80013";
|
|
661
|
-
preferredValues: [];
|
|
662
|
-
};
|
|
663
|
-
Type: {
|
|
664
|
-
type: "VARIANT";
|
|
665
|
-
defaultValue: "Icon";
|
|
666
|
-
variantOptions: ["Icon", "Custom (Figma Only)"];
|
|
667
|
-
};
|
|
668
|
-
}>;
|
|
669
|
-
|
|
670
|
-
export type TextInputOutlineSuffixProperties = InferComponentDefinition<{
|
|
671
|
-
"Suffix Text#34021:4": {
|
|
672
|
-
type: "TEXT";
|
|
673
|
-
defaultValue: "원";
|
|
674
|
-
};
|
|
675
|
-
"Icon#45391:0": {
|
|
676
|
-
type: "INSTANCE_SWAP";
|
|
677
|
-
defaultValue: "34885:102331";
|
|
678
|
-
preferredValues: [];
|
|
679
|
-
};
|
|
680
|
-
"Type (Figma Only)": {
|
|
681
|
-
type: "VARIANT";
|
|
682
|
-
defaultValue: "Text";
|
|
683
|
-
variantOptions: ["Text", "Icon", "Icon Button (Ghost Button)", "Custom"];
|
|
684
|
-
};
|
|
685
|
-
}>;
|
|
686
|
-
|
|
687
|
-
export type TextInputUnderlinePrefixProperties = InferComponentDefinition<{
|
|
688
|
-
"Icon#34021:2": {
|
|
689
|
-
type: "INSTANCE_SWAP";
|
|
690
|
-
defaultValue: "32633:80013";
|
|
691
|
-
preferredValues: [];
|
|
692
|
-
};
|
|
693
|
-
Type: {
|
|
694
|
-
type: "VARIANT";
|
|
695
|
-
defaultValue: "Icon";
|
|
696
|
-
variantOptions: ["Icon", "Custom (Figma Only)"];
|
|
697
|
-
};
|
|
698
|
-
}>;
|
|
699
|
-
|
|
700
|
-
export type TextInputUnderlineSuffixProperties = InferComponentDefinition<{
|
|
701
|
-
"Suffix Text#34021:4": {
|
|
702
|
-
type: "TEXT";
|
|
703
|
-
defaultValue: "원";
|
|
704
|
-
};
|
|
705
|
-
"Icon#45391:5": {
|
|
706
|
-
type: "INSTANCE_SWAP";
|
|
707
|
-
defaultValue: "34885:102331";
|
|
708
|
-
preferredValues: [];
|
|
709
|
-
};
|
|
710
|
-
"Type (Figma Only)": {
|
|
711
|
-
type: "VARIANT";
|
|
712
|
-
defaultValue: "Text";
|
|
713
|
-
variantOptions: ["Text", "Icon", "Icon Button (Ghost Button)", "Custom"];
|
|
714
|
-
};
|
|
715
|
-
}>;
|
|
716
|
-
|
|
717
|
-
export type TextInputUnderlineProperties = InferComponentDefinition<{
|
|
718
|
-
"Show Footer#33213:14": {
|
|
719
|
-
type: "BOOLEAN";
|
|
720
|
-
defaultValue: true;
|
|
721
|
-
};
|
|
722
|
-
"Has Prefix#34125:0": {
|
|
723
|
-
type: "BOOLEAN";
|
|
724
|
-
defaultValue: false;
|
|
725
|
-
};
|
|
726
|
-
"Has Suffix#34125:8": {
|
|
727
|
-
type: "BOOLEAN";
|
|
728
|
-
defaultValue: false;
|
|
729
|
-
};
|
|
730
|
-
"Show Header#34125:16": {
|
|
731
|
-
type: "BOOLEAN";
|
|
732
|
-
defaultValue: false;
|
|
733
|
-
};
|
|
734
|
-
State: {
|
|
735
|
-
type: "VARIANT";
|
|
736
|
-
defaultValue: "Enabled";
|
|
737
|
-
variantOptions: [
|
|
738
|
-
"Enabled",
|
|
739
|
-
"Focused",
|
|
740
|
-
"Error",
|
|
741
|
-
"Error Focused",
|
|
742
|
-
"Disabled",
|
|
743
|
-
"Read Only",
|
|
744
|
-
"AI Loading (Figma Only)",
|
|
745
|
-
];
|
|
746
|
-
};
|
|
747
|
-
}>;
|
|
281
|
+
export type TextInputOutlineProperties = InferComponentDefinition<
|
|
282
|
+
typeof sets.componentTextInput.componentPropertyDefinitions
|
|
283
|
+
>;
|
|
284
|
+
|
|
285
|
+
export type TextInputOutlinePrefixProperties = InferComponentDefinition<
|
|
286
|
+
typeof sets.privateComponentTextInputPrefix.componentPropertyDefinitions
|
|
287
|
+
>;
|
|
288
|
+
|
|
289
|
+
export type TextInputOutlineSuffixProperties = InferComponentDefinition<
|
|
290
|
+
typeof sets.privateComponentTextInputSuffix.componentPropertyDefinitions
|
|
291
|
+
>;
|
|
292
|
+
|
|
293
|
+
export type TextInputUnderlinePrefixProperties = InferComponentDefinition<
|
|
294
|
+
typeof sets.privateComponentUnderlineTextInputPrefix.componentPropertyDefinitions
|
|
295
|
+
>;
|
|
296
|
+
|
|
297
|
+
export type TextInputUnderlineSuffixProperties = InferComponentDefinition<
|
|
298
|
+
typeof sets.privateComponentUnderlineTextInputSuffix.componentPropertyDefinitions
|
|
299
|
+
>;
|
|
300
|
+
|
|
301
|
+
export type TextInputUnderlineProperties = InferComponentDefinition<
|
|
302
|
+
typeof sets.componentUnderlineTextInput.componentPropertyDefinitions
|
|
303
|
+
>;
|
|
748
304
|
|
|
749
305
|
export type TextareaFieldProperties = InferComponentDefinition<
|
|
750
306
|
typeof sets.templateTextareaField.componentPropertyDefinitions
|
|
751
307
|
>;
|
|
752
308
|
|
|
753
|
-
export type TextareaProperties = InferComponentDefinition<
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
defaultValue: "true";
|
|
757
|
-
variantOptions: ["true", "false"];
|
|
758
|
-
};
|
|
759
|
-
State: {
|
|
760
|
-
type: "VARIANT";
|
|
761
|
-
defaultValue: "Enabled";
|
|
762
|
-
variantOptions: [
|
|
763
|
-
"Enabled",
|
|
764
|
-
"Focused",
|
|
765
|
-
"Error",
|
|
766
|
-
"Error Focused",
|
|
767
|
-
"Disabled",
|
|
768
|
-
"Read Only",
|
|
769
|
-
"AI Loading (Figma Only)",
|
|
770
|
-
];
|
|
771
|
-
};
|
|
772
|
-
}>;
|
|
309
|
+
export type TextareaProperties = InferComponentDefinition<
|
|
310
|
+
typeof sets.componentTextarea.componentPropertyDefinitions
|
|
311
|
+
>;
|
|
773
312
|
|
|
774
313
|
export type FieldButtonProperties = InferComponentDefinition<
|
|
775
|
-
typeof sets.
|
|
776
|
-
>;
|
|
777
|
-
|
|
778
|
-
export type InputButtonProperties = InferComponentDefinition<
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
defaultValue: "Enabled";
|
|
790
|
-
variantOptions: ["Enabled", "Error", "Disabled", "Read Only", "Pressed", "Error Pressed"];
|
|
791
|
-
};
|
|
792
|
-
}>;
|
|
793
|
-
|
|
794
|
-
export type InputButtonPrefixProperties = InferComponentDefinition<{
|
|
795
|
-
"Icon#34021:2": {
|
|
796
|
-
type: "INSTANCE_SWAP";
|
|
797
|
-
defaultValue: "34885:102321";
|
|
798
|
-
preferredValues: [
|
|
799
|
-
{
|
|
800
|
-
type: "COMPONENT_SET";
|
|
801
|
-
key: "e6ff71538e21f2e117c72727e5e5cc526d2328ba";
|
|
802
|
-
},
|
|
803
|
-
{
|
|
804
|
-
type: "COMPONENT_SET";
|
|
805
|
-
key: "b4cad90025daa85c417154f8f61e09fbddb34fa7";
|
|
806
|
-
},
|
|
807
|
-
];
|
|
808
|
-
};
|
|
809
|
-
Type: {
|
|
810
|
-
type: "VARIANT";
|
|
811
|
-
defaultValue: "Icon";
|
|
812
|
-
variantOptions: ["Icon", "Custom (Figma Only)"];
|
|
813
|
-
};
|
|
814
|
-
}>;
|
|
815
|
-
|
|
816
|
-
export type InputButtonSuffixProperties = InferComponentDefinition<{
|
|
817
|
-
"Suffix Text#34021:4": {
|
|
818
|
-
type: "TEXT";
|
|
819
|
-
defaultValue: "원";
|
|
820
|
-
};
|
|
821
|
-
"Icon#37963:0": {
|
|
822
|
-
type: "INSTANCE_SWAP";
|
|
823
|
-
defaultValue: "43573:11862";
|
|
824
|
-
preferredValues: [
|
|
825
|
-
{
|
|
826
|
-
type: "COMPONENT_SET";
|
|
827
|
-
key: "422f4be7a88e2c41c079de9202e0b8e7da429971";
|
|
828
|
-
},
|
|
829
|
-
{
|
|
830
|
-
type: "COMPONENT_SET";
|
|
831
|
-
key: "5c704613ff444e38fe356e3991738965bd43fcec";
|
|
832
|
-
},
|
|
833
|
-
{
|
|
834
|
-
type: "COMPONENT_SET";
|
|
835
|
-
key: "29314e598cfae33d3b325feaaa39cb71449d521a";
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
type: "COMPONENT_SET";
|
|
839
|
-
key: "ffe429c229000d814017f87a62ff9746639e3bbb";
|
|
840
|
-
},
|
|
841
|
-
];
|
|
842
|
-
};
|
|
843
|
-
"Type (Figma Only)": {
|
|
844
|
-
type: "VARIANT";
|
|
845
|
-
defaultValue: "Icon";
|
|
846
|
-
variantOptions: ["Icon", "Text", "Custom"];
|
|
847
|
-
};
|
|
848
|
-
}>;
|
|
314
|
+
typeof sets.templateFieldButton.componentPropertyDefinitions
|
|
315
|
+
>;
|
|
316
|
+
|
|
317
|
+
export type InputButtonProperties = InferComponentDefinition<
|
|
318
|
+
typeof sets.componentInputButton.componentPropertyDefinitions
|
|
319
|
+
>;
|
|
320
|
+
|
|
321
|
+
export type InputButtonPrefixProperties = InferComponentDefinition<
|
|
322
|
+
typeof sets.privateComponentInputButtonPrefix.componentPropertyDefinitions
|
|
323
|
+
>;
|
|
324
|
+
|
|
325
|
+
export type InputButtonSuffixProperties = InferComponentDefinition<
|
|
326
|
+
typeof sets.privateComponentInputButtonSuffix.componentPropertyDefinitions
|
|
327
|
+
>;
|
|
849
328
|
|
|
850
329
|
export type GenericFieldButtonProps = InferComponentDefinition<{}>;
|
|
851
330
|
|
|
852
|
-
export type LegacyTextFieldProperties = InferComponentDefinition<
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
};
|
|
868
|
-
"Show Suffix#958:100": {
|
|
869
|
-
type: "BOOLEAN";
|
|
870
|
-
};
|
|
871
|
-
"Show Prefix#958:125": {
|
|
872
|
-
type: "BOOLEAN";
|
|
873
|
-
};
|
|
874
|
-
"Show Indicator#1259:0": {
|
|
875
|
-
type: "BOOLEAN";
|
|
876
|
-
};
|
|
877
|
-
"Show Prefix Text#1267:0": {
|
|
878
|
-
type: "BOOLEAN";
|
|
879
|
-
};
|
|
880
|
-
"Prefix Icon#1267:25": {
|
|
881
|
-
type: "INSTANCE_SWAP";
|
|
882
|
-
preferredValues: [];
|
|
883
|
-
};
|
|
884
|
-
"Show Prefix Icon#1267:50": {
|
|
885
|
-
type: "BOOLEAN";
|
|
886
|
-
};
|
|
887
|
-
"Show Suffix Icon#1267:75": {
|
|
888
|
-
type: "BOOLEAN";
|
|
889
|
-
};
|
|
890
|
-
"Suffix Icon #1267:100": {
|
|
891
|
-
type: "INSTANCE_SWAP";
|
|
892
|
-
preferredValues: [];
|
|
893
|
-
};
|
|
894
|
-
"Show Suffix Text#1267:125": {
|
|
895
|
-
type: "BOOLEAN";
|
|
896
|
-
};
|
|
897
|
-
"Filled Text#1304:0": {
|
|
898
|
-
type: "TEXT";
|
|
899
|
-
};
|
|
900
|
-
"Description#12626:5": {
|
|
901
|
-
type: "TEXT";
|
|
902
|
-
};
|
|
903
|
-
"Label#14964:0": {
|
|
904
|
-
type: "TEXT";
|
|
905
|
-
};
|
|
906
|
-
"Max Character Count#15327:27": {
|
|
907
|
-
type: "TEXT";
|
|
908
|
-
};
|
|
909
|
-
"Character Count#15327:64": {
|
|
910
|
-
type: "TEXT";
|
|
911
|
-
};
|
|
912
|
-
"Prefix Text#15327:101": {
|
|
913
|
-
type: "TEXT";
|
|
914
|
-
};
|
|
915
|
-
"Suffix Text#15327:138": {
|
|
916
|
-
type: "TEXT";
|
|
917
|
-
};
|
|
918
|
-
"Indicator#15327:249": {
|
|
919
|
-
type: "TEXT";
|
|
920
|
-
};
|
|
921
|
-
Size: {
|
|
922
|
-
type: "VARIANT";
|
|
923
|
-
variantOptions: ["Medium", "Large(Default)"];
|
|
924
|
-
};
|
|
925
|
-
State: {
|
|
926
|
-
type: "VARIANT";
|
|
927
|
-
variantOptions: ["Enabled", "Focused", "Invalid", "Invalid-Focused", "Disabled", "Read Only"];
|
|
928
|
-
};
|
|
929
|
-
Filled: {
|
|
930
|
-
type: "VARIANT";
|
|
931
|
-
variantOptions: ["True", "False"];
|
|
932
|
-
};
|
|
933
|
-
}>;
|
|
934
|
-
|
|
935
|
-
export type LegacyMultilineTextFieldProperties = InferComponentDefinition<{
|
|
936
|
-
"Show Header#870:0": {
|
|
937
|
-
type: "BOOLEAN";
|
|
938
|
-
};
|
|
939
|
-
"Placeholder#958:0": {
|
|
940
|
-
type: "TEXT";
|
|
941
|
-
};
|
|
942
|
-
"Show Footer#958:25": {
|
|
943
|
-
type: "BOOLEAN";
|
|
944
|
-
};
|
|
945
|
-
"Show Description#958:50": {
|
|
946
|
-
type: "BOOLEAN";
|
|
947
|
-
};
|
|
948
|
-
"Show Character count#958:75": {
|
|
949
|
-
type: "BOOLEAN";
|
|
950
|
-
};
|
|
951
|
-
"Show Indicator#1259:0": {
|
|
952
|
-
type: "BOOLEAN";
|
|
953
|
-
};
|
|
954
|
-
"Filled Text#1304:0": {
|
|
955
|
-
type: "TEXT";
|
|
956
|
-
};
|
|
957
|
-
"Max Character Count#15327:175": {
|
|
958
|
-
type: "TEXT";
|
|
959
|
-
};
|
|
960
|
-
"Description#15327:212": {
|
|
961
|
-
type: "TEXT";
|
|
962
|
-
};
|
|
963
|
-
"Indicator#15327:286": {
|
|
964
|
-
type: "TEXT";
|
|
965
|
-
};
|
|
966
|
-
"Label#15327:323": {
|
|
967
|
-
type: "TEXT";
|
|
968
|
-
};
|
|
969
|
-
"Character Count#15327:360": {
|
|
970
|
-
type: "TEXT";
|
|
971
|
-
};
|
|
972
|
-
Size: {
|
|
973
|
-
type: "VARIANT";
|
|
974
|
-
variantOptions: ["Medium", "Large", "XLarge"];
|
|
975
|
-
};
|
|
976
|
-
State: {
|
|
977
|
-
type: "VARIANT";
|
|
978
|
-
variantOptions: ["Enabled", "Focused", "Invalid", "Invalid-Focused", "Disabled", "Read Only"];
|
|
979
|
-
};
|
|
980
|
-
Filled: {
|
|
981
|
-
type: "VARIANT";
|
|
982
|
-
variantOptions: ["True", "False"];
|
|
983
|
-
};
|
|
984
|
-
}>;
|
|
985
|
-
|
|
986
|
-
export type LegacySelectBoxProperties = InferComponentDefinition<{
|
|
987
|
-
"Show Description#3033:0": {
|
|
988
|
-
type: "BOOLEAN";
|
|
989
|
-
};
|
|
990
|
-
"Description #3033:5": {
|
|
991
|
-
type: "TEXT";
|
|
992
|
-
};
|
|
993
|
-
"Label#3635:0": {
|
|
994
|
-
type: "TEXT";
|
|
995
|
-
};
|
|
996
|
-
Control: {
|
|
997
|
-
type: "VARIANT";
|
|
998
|
-
variantOptions: ["Checkbox", "Radio"];
|
|
999
|
-
};
|
|
1000
|
-
Selected: {
|
|
1001
|
-
type: "VARIANT";
|
|
1002
|
-
variantOptions: ["True", "False"];
|
|
1003
|
-
};
|
|
1004
|
-
State: {
|
|
1005
|
-
type: "VARIANT";
|
|
1006
|
-
variantOptions: ["Enabled", "Pressed"];
|
|
1007
|
-
};
|
|
1008
|
-
}>;
|
|
1009
|
-
|
|
1010
|
-
export type LegacySelectBoxGroupProperties = InferComponentDefinition<{
|
|
1011
|
-
Control: {
|
|
1012
|
-
type: "VARIANT";
|
|
1013
|
-
variantOptions: ["Checkbox", "Radio"];
|
|
1014
|
-
};
|
|
1015
|
-
"Item Count": {
|
|
1016
|
-
type: "VARIANT";
|
|
1017
|
-
variantOptions: ["1", "2", "3", "4", "5", "6"];
|
|
1018
|
-
};
|
|
1019
|
-
}>;
|
|
331
|
+
export type LegacyTextFieldProperties = InferComponentDefinition<
|
|
332
|
+
typeof sets.componentDeprecatedTextField.componentPropertyDefinitions
|
|
333
|
+
>;
|
|
334
|
+
|
|
335
|
+
export type LegacyMultilineTextFieldProperties = InferComponentDefinition<
|
|
336
|
+
typeof sets.componentDeprecatedMultilineTextField.componentPropertyDefinitions
|
|
337
|
+
>;
|
|
338
|
+
|
|
339
|
+
export type LegacySelectBoxProperties = InferComponentDefinition<
|
|
340
|
+
typeof sets.componentDeprecatedSelectBox.componentPropertyDefinitions
|
|
341
|
+
>;
|
|
342
|
+
|
|
343
|
+
export type LegacySelectBoxGroupProperties = InferComponentDefinition<
|
|
344
|
+
typeof sets.componentDeprecatedSelectBoxGroup.componentPropertyDefinitions
|
|
345
|
+
>;
|