@seed-design/figma 1.3.12 → 1.3.13
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 +1010 -258
- package/lib/codegen/index.js +1010 -258
- package/lib/codegen/targets/react/index.cjs +1103 -369
- package/lib/codegen/targets/react/index.js +1103 -369
- package/lib/index.cjs +1010 -258
- package/lib/index.js +1010 -258
- package/package.json +3 -3
- package/src/codegen/targets/react/component/handlers/list-item.ts +3 -3
- package/src/entities/data/__generated__/component-sets/index.d.ts +247 -159
- package/src/entities/data/__generated__/component-sets/index.mjs +247 -159
- package/src/entities/data/__generated__/components/index.d.ts +114 -57
- package/src/entities/data/__generated__/components/index.mjs +114 -57
- package/src/entities/data/__generated__/styles/index.mjs +252 -0
- package/src/entities/data/__generated__/variable-collections/index.mjs +25 -5
- package/src/entities/data/__generated__/variables/index.mjs +461 -69
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seed-design/figma",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.13",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/daangn/seed-design.git",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"sync-entities": "find src/entities/data/__generated__ -mindepth 1 -maxdepth 1 ! -name 'archive' -exec rm -rf {} + 2>/dev/null; bun figma-extractor src/entities/data/__generated__"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@seed-design/css": "1.2.
|
|
42
|
+
"@seed-design/css": "1.2.11",
|
|
43
43
|
"change-case": "^5.4.4",
|
|
44
44
|
"ts-pattern": "^5.7.0"
|
|
45
45
|
},
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@figma/rest-api-spec": "^0.36.0",
|
|
49
49
|
"@karrotmarket/icon-data": "^1.28.0",
|
|
50
50
|
"@seed-design/figma-extractor": "^1.1.1",
|
|
51
|
-
"typescript": "^
|
|
51
|
+
"typescript": "^6.0.0"
|
|
52
52
|
},
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
@@ -39,9 +39,9 @@ export const createListItemHandler = (ctx: ComponentHandlerDeps) =>
|
|
|
39
39
|
defineComponentHandler<ListItemProperties>(metadata.componentListItem.key, (node, traverse) => {
|
|
40
40
|
const { componentProperties: props } = node;
|
|
41
41
|
|
|
42
|
-
const { alignItems, title } = match(props.
|
|
43
|
-
.with("
|
|
44
|
-
.with("
|
|
42
|
+
const { alignItems, title } = match(props.Align.value)
|
|
43
|
+
.with("Center", () => ({ alignItems: undefined, title: props["Title#28452:21"].value }))
|
|
44
|
+
.with("Top", () => ({
|
|
45
45
|
alignItems: "flex-start",
|
|
46
46
|
title: props["Title #28487:0"].value,
|
|
47
47
|
}))
|
|
@@ -1,39 +1,3 @@
|
|
|
1
|
-
export declare const privateTemplateAttachmentField: {
|
|
2
|
-
"name": "privateTemplateAttachmentField",
|
|
3
|
-
"key": "5ba20e248e9cd0292fc285488b2ed3b3145d37b0",
|
|
4
|
-
"componentPropertyDefinitions": {
|
|
5
|
-
"Show Header#40606:8": {
|
|
6
|
-
"type": "BOOLEAN"
|
|
7
|
-
},
|
|
8
|
-
"Show Footer#40606:9": {
|
|
9
|
-
"type": "BOOLEAN"
|
|
10
|
-
},
|
|
11
|
-
"Type": {
|
|
12
|
-
"type": "VARIANT",
|
|
13
|
-
"variantOptions": [
|
|
14
|
-
"Media",
|
|
15
|
-
"File"
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
|
-
"State": {
|
|
19
|
-
"type": "VARIANT",
|
|
20
|
-
"variantOptions": [
|
|
21
|
-
"Enabled",
|
|
22
|
-
"Error",
|
|
23
|
-
"Disabled",
|
|
24
|
-
"Read Only"
|
|
25
|
-
]
|
|
26
|
-
},
|
|
27
|
-
"Has Value": {
|
|
28
|
-
"type": "VARIANT",
|
|
29
|
-
"variantOptions": [
|
|
30
|
-
"False",
|
|
31
|
-
"True"
|
|
32
|
-
]
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
};
|
|
36
|
-
|
|
37
1
|
export declare const privateTemplateChipGroupField: {
|
|
38
2
|
"name": "privateTemplateChipGroupField",
|
|
39
3
|
"key": "b6e9378d9ac76f812121d6aa7264cc38d2310e39",
|
|
@@ -282,6 +246,13 @@ export declare const privateComponentInputButtonPrefix: {
|
|
|
282
246
|
"Icon#34021:2": {
|
|
283
247
|
"type": "INSTANCE_SWAP"
|
|
284
248
|
},
|
|
249
|
+
"Size": {
|
|
250
|
+
"type": "VARIANT",
|
|
251
|
+
"variantOptions": [
|
|
252
|
+
"Large",
|
|
253
|
+
"Medium"
|
|
254
|
+
]
|
|
255
|
+
},
|
|
285
256
|
"Type": {
|
|
286
257
|
"type": "VARIANT",
|
|
287
258
|
"variantOptions": [
|
|
@@ -302,6 +273,13 @@ export declare const privateComponentInputButtonSuffix: {
|
|
|
302
273
|
"Icon#37963:0": {
|
|
303
274
|
"type": "INSTANCE_SWAP"
|
|
304
275
|
},
|
|
276
|
+
"Size": {
|
|
277
|
+
"type": "VARIANT",
|
|
278
|
+
"variantOptions": [
|
|
279
|
+
"Large",
|
|
280
|
+
"Medium"
|
|
281
|
+
]
|
|
282
|
+
},
|
|
305
283
|
"Type (Figma Only)": {
|
|
306
284
|
"type": "VARIANT",
|
|
307
285
|
"variantOptions": [
|
|
@@ -326,6 +304,13 @@ export declare const privateComponentInputButtonValue: {
|
|
|
326
304
|
"Placeholder Text#34067:2": {
|
|
327
305
|
"type": "TEXT"
|
|
328
306
|
},
|
|
307
|
+
"Size": {
|
|
308
|
+
"type": "VARIANT",
|
|
309
|
+
"variantOptions": [
|
|
310
|
+
"Large",
|
|
311
|
+
"Medium"
|
|
312
|
+
]
|
|
313
|
+
},
|
|
329
314
|
"Value": {
|
|
330
315
|
"type": "VARIANT",
|
|
331
316
|
"variantOptions": [
|
|
@@ -346,12 +331,16 @@ export declare const privateComponentInputButtonValueDisabled: {
|
|
|
346
331
|
"Value Text#34067:0": {
|
|
347
332
|
"type": "TEXT"
|
|
348
333
|
},
|
|
349
|
-
"Clear Button#34067:1": {
|
|
350
|
-
"type": "BOOLEAN"
|
|
351
|
-
},
|
|
352
334
|
"Placeholder Text#34067:2": {
|
|
353
335
|
"type": "TEXT"
|
|
354
336
|
},
|
|
337
|
+
"Size": {
|
|
338
|
+
"type": "VARIANT",
|
|
339
|
+
"variantOptions": [
|
|
340
|
+
"Large",
|
|
341
|
+
"Medium"
|
|
342
|
+
]
|
|
343
|
+
},
|
|
355
344
|
"Value": {
|
|
356
345
|
"type": "VARIANT",
|
|
357
346
|
"variantOptions": [
|
|
@@ -372,20 +361,24 @@ export declare const privateComponentInputButtonValueReadOnly: {
|
|
|
372
361
|
"Value Text#34067:0": {
|
|
373
362
|
"type": "TEXT"
|
|
374
363
|
},
|
|
375
|
-
"Clear Button#34067:1": {
|
|
376
|
-
"type": "BOOLEAN"
|
|
377
|
-
},
|
|
378
364
|
"Placeholder Text#34067:2": {
|
|
379
365
|
"type": "TEXT"
|
|
380
366
|
},
|
|
367
|
+
"Size": {
|
|
368
|
+
"type": "VARIANT",
|
|
369
|
+
"variantOptions": [
|
|
370
|
+
"Large",
|
|
371
|
+
"Medium"
|
|
372
|
+
]
|
|
373
|
+
},
|
|
381
374
|
"Value": {
|
|
382
375
|
"type": "VARIANT",
|
|
383
376
|
"variantOptions": [
|
|
384
|
-
"
|
|
385
|
-
"Chips-Overflow (Figma Only)",
|
|
386
|
-
"Chips-Scrollable (Figma Only)",
|
|
377
|
+
"Empty",
|
|
387
378
|
"Text",
|
|
388
|
-
"
|
|
379
|
+
"Chips-Scrollable (Figma Only)",
|
|
380
|
+
"Chips-Overflow (Figma Only)",
|
|
381
|
+
"Custom (Figma Only)"
|
|
389
382
|
]
|
|
390
383
|
}
|
|
391
384
|
}
|
|
@@ -1157,24 +1150,7 @@ export declare const privateComponentTabsLine: {
|
|
|
1157
1150
|
export declare const privateComponentTextInputCardNumberInput: {
|
|
1158
1151
|
"name": "privateComponentTextInputCardNumberInput",
|
|
1159
1152
|
"key": "60888e1eba691721f0ec6a41df43c1c075e5beac",
|
|
1160
|
-
"componentPropertyDefinitions": {
|
|
1161
|
-
"Clear Button#34067:1": {
|
|
1162
|
-
"type": "BOOLEAN"
|
|
1163
|
-
},
|
|
1164
|
-
"Has Value": {
|
|
1165
|
-
"type": "VARIANT",
|
|
1166
|
-
"variantOptions": [
|
|
1167
|
-
"false",
|
|
1168
|
-
"true"
|
|
1169
|
-
]
|
|
1170
|
-
},
|
|
1171
|
-
"Variant": {
|
|
1172
|
-
"type": "VARIANT",
|
|
1173
|
-
"variantOptions": [
|
|
1174
|
-
"Plain Text"
|
|
1175
|
-
]
|
|
1176
|
-
}
|
|
1177
|
-
}
|
|
1153
|
+
"componentPropertyDefinitions": {}
|
|
1178
1154
|
};
|
|
1179
1155
|
|
|
1180
1156
|
export declare const privateComponentTextInputIdNumberInput: {
|
|
@@ -1187,6 +1163,13 @@ export declare const privateComponentTextInputIdNumberInput: {
|
|
|
1187
1163
|
"Clear Button#34067:1": {
|
|
1188
1164
|
"type": "BOOLEAN"
|
|
1189
1165
|
},
|
|
1166
|
+
"Size": {
|
|
1167
|
+
"type": "VARIANT",
|
|
1168
|
+
"variantOptions": [
|
|
1169
|
+
"Large",
|
|
1170
|
+
"Medium"
|
|
1171
|
+
]
|
|
1172
|
+
},
|
|
1190
1173
|
"Has Value": {
|
|
1191
1174
|
"type": "VARIANT",
|
|
1192
1175
|
"variantOptions": [
|
|
@@ -1207,18 +1190,25 @@ export declare const privateComponentTextInputInput: {
|
|
|
1207
1190
|
"name": "privateComponentTextInputInput",
|
|
1208
1191
|
"key": "c030fb7107795ad42b4b2eea454b05fb4b4c9ac7",
|
|
1209
1192
|
"componentPropertyDefinitions": {
|
|
1193
|
+
"Show Clear Button#11049:0": {
|
|
1194
|
+
"type": "BOOLEAN"
|
|
1195
|
+
},
|
|
1210
1196
|
"Value Text#34067:0": {
|
|
1211
1197
|
"type": "TEXT"
|
|
1212
1198
|
},
|
|
1213
|
-
"Clear Button#34067:1": {
|
|
1214
|
-
"type": "BOOLEAN"
|
|
1215
|
-
},
|
|
1216
1199
|
"Placeholder Text#34067:2": {
|
|
1217
1200
|
"type": "TEXT"
|
|
1218
1201
|
},
|
|
1219
1202
|
"Show Cursor (Figma Only)#53584:0": {
|
|
1220
1203
|
"type": "BOOLEAN"
|
|
1221
1204
|
},
|
|
1205
|
+
"Size": {
|
|
1206
|
+
"type": "VARIANT",
|
|
1207
|
+
"variantOptions": [
|
|
1208
|
+
"Large",
|
|
1209
|
+
"Medium"
|
|
1210
|
+
]
|
|
1211
|
+
},
|
|
1222
1212
|
"Has Value": {
|
|
1223
1213
|
"type": "VARIANT",
|
|
1224
1214
|
"variantOptions": [
|
|
@@ -1236,12 +1226,16 @@ export declare const privateComponentTextInputInputDisabled: {
|
|
|
1236
1226
|
"Value Text#34067:0": {
|
|
1237
1227
|
"type": "TEXT"
|
|
1238
1228
|
},
|
|
1239
|
-
"Clear Button#34067:1": {
|
|
1240
|
-
"type": "BOOLEAN"
|
|
1241
|
-
},
|
|
1242
1229
|
"Placeholder Text#34067:2": {
|
|
1243
1230
|
"type": "TEXT"
|
|
1244
1231
|
},
|
|
1232
|
+
"Size": {
|
|
1233
|
+
"type": "VARIANT",
|
|
1234
|
+
"variantOptions": [
|
|
1235
|
+
"Large",
|
|
1236
|
+
"Medium"
|
|
1237
|
+
]
|
|
1238
|
+
},
|
|
1245
1239
|
"Has Value": {
|
|
1246
1240
|
"type": "VARIANT",
|
|
1247
1241
|
"variantOptions": [
|
|
@@ -1259,12 +1253,16 @@ export declare const privateComponentTextInputInputReadOnly: {
|
|
|
1259
1253
|
"Value Text#34067:0": {
|
|
1260
1254
|
"type": "TEXT"
|
|
1261
1255
|
},
|
|
1262
|
-
"Clear Button#34067:1": {
|
|
1263
|
-
"type": "BOOLEAN"
|
|
1264
|
-
},
|
|
1265
1256
|
"Placeholder Text#34067:2": {
|
|
1266
1257
|
"type": "TEXT"
|
|
1267
1258
|
},
|
|
1259
|
+
"Size": {
|
|
1260
|
+
"type": "VARIANT",
|
|
1261
|
+
"variantOptions": [
|
|
1262
|
+
"Large",
|
|
1263
|
+
"Medium"
|
|
1264
|
+
]
|
|
1265
|
+
},
|
|
1268
1266
|
"Has Value": {
|
|
1269
1267
|
"type": "VARIANT",
|
|
1270
1268
|
"variantOptions": [
|
|
@@ -1282,6 +1280,13 @@ export declare const privateComponentTextInputPrefix: {
|
|
|
1282
1280
|
"Icon#34021:2": {
|
|
1283
1281
|
"type": "INSTANCE_SWAP"
|
|
1284
1282
|
},
|
|
1283
|
+
"Size": {
|
|
1284
|
+
"type": "VARIANT",
|
|
1285
|
+
"variantOptions": [
|
|
1286
|
+
"Medium",
|
|
1287
|
+
"Large"
|
|
1288
|
+
]
|
|
1289
|
+
},
|
|
1285
1290
|
"Type": {
|
|
1286
1291
|
"type": "VARIANT",
|
|
1287
1292
|
"variantOptions": [
|
|
@@ -1302,6 +1307,13 @@ export declare const privateComponentTextInputSuffix: {
|
|
|
1302
1307
|
"Icon#45391:0": {
|
|
1303
1308
|
"type": "INSTANCE_SWAP"
|
|
1304
1309
|
},
|
|
1310
|
+
"Size": {
|
|
1311
|
+
"type": "VARIANT",
|
|
1312
|
+
"variantOptions": [
|
|
1313
|
+
"Medium",
|
|
1314
|
+
"Large"
|
|
1315
|
+
]
|
|
1316
|
+
},
|
|
1305
1317
|
"Type (Figma Only)": {
|
|
1306
1318
|
"type": "VARIANT",
|
|
1307
1319
|
"variantOptions": [
|
|
@@ -1324,6 +1336,13 @@ export declare const privateComponentTextareaInput: {
|
|
|
1324
1336
|
"Placeholder Text#34067:2": {
|
|
1325
1337
|
"type": "TEXT"
|
|
1326
1338
|
},
|
|
1339
|
+
"Size": {
|
|
1340
|
+
"type": "VARIANT",
|
|
1341
|
+
"variantOptions": [
|
|
1342
|
+
"Large",
|
|
1343
|
+
"Medium"
|
|
1344
|
+
]
|
|
1345
|
+
},
|
|
1327
1346
|
"Has Value": {
|
|
1328
1347
|
"type": "VARIANT",
|
|
1329
1348
|
"variantOptions": [
|
|
@@ -1341,12 +1360,16 @@ export declare const privateComponentTextareaInputDisabled: {
|
|
|
1341
1360
|
"Value Text#34067:0": {
|
|
1342
1361
|
"type": "TEXT"
|
|
1343
1362
|
},
|
|
1344
|
-
"Clear Button#34067:1": {
|
|
1345
|
-
"type": "BOOLEAN"
|
|
1346
|
-
},
|
|
1347
1363
|
"Placeholder Text#34067:2": {
|
|
1348
1364
|
"type": "TEXT"
|
|
1349
1365
|
},
|
|
1366
|
+
"Size": {
|
|
1367
|
+
"type": "VARIANT",
|
|
1368
|
+
"variantOptions": [
|
|
1369
|
+
"Large",
|
|
1370
|
+
"Medium"
|
|
1371
|
+
]
|
|
1372
|
+
},
|
|
1350
1373
|
"Has Value": {
|
|
1351
1374
|
"type": "VARIANT",
|
|
1352
1375
|
"variantOptions": [
|
|
@@ -1364,12 +1387,16 @@ export declare const privateComponentTextareaInputReadOnly: {
|
|
|
1364
1387
|
"Value Text#34067:0": {
|
|
1365
1388
|
"type": "TEXT"
|
|
1366
1389
|
},
|
|
1367
|
-
"Clear Button#34067:1": {
|
|
1368
|
-
"type": "BOOLEAN"
|
|
1369
|
-
},
|
|
1370
1390
|
"Placeholder Text#34067:2": {
|
|
1371
1391
|
"type": "TEXT"
|
|
1372
1392
|
},
|
|
1393
|
+
"Size": {
|
|
1394
|
+
"type": "VARIANT",
|
|
1395
|
+
"variantOptions": [
|
|
1396
|
+
"Large",
|
|
1397
|
+
"Medium"
|
|
1398
|
+
]
|
|
1399
|
+
},
|
|
1373
1400
|
"Has Value": {
|
|
1374
1401
|
"type": "VARIANT",
|
|
1375
1402
|
"variantOptions": [
|
|
@@ -1454,7 +1481,7 @@ export declare const privateComponentTopNavigationTitleLeft: {
|
|
|
1454
1481
|
"variantOptions": [
|
|
1455
1482
|
"Avatar",
|
|
1456
1483
|
"Custom",
|
|
1457
|
-
"
|
|
1484
|
+
"Custom Icon"
|
|
1458
1485
|
]
|
|
1459
1486
|
}
|
|
1460
1487
|
}
|
|
@@ -1483,6 +1510,9 @@ export declare const privateComponentUnderlineTextInputInput: {
|
|
|
1483
1510
|
"name": "privateComponentUnderlineTextInputInput",
|
|
1484
1511
|
"key": "a8a39cf124e7b4c3b873429e81b4278639a7031b",
|
|
1485
1512
|
"componentPropertyDefinitions": {
|
|
1513
|
+
"Show Clear Button#10972:0": {
|
|
1514
|
+
"type": "BOOLEAN"
|
|
1515
|
+
},
|
|
1486
1516
|
"Value Text#34067:0": {
|
|
1487
1517
|
"type": "TEXT"
|
|
1488
1518
|
},
|
|
@@ -1492,6 +1522,13 @@ export declare const privateComponentUnderlineTextInputInput: {
|
|
|
1492
1522
|
"Show Cursor (Figma Only)#53584:3": {
|
|
1493
1523
|
"type": "BOOLEAN"
|
|
1494
1524
|
},
|
|
1525
|
+
"Size": {
|
|
1526
|
+
"type": "VARIANT",
|
|
1527
|
+
"variantOptions": [
|
|
1528
|
+
"Large",
|
|
1529
|
+
"Medium"
|
|
1530
|
+
]
|
|
1531
|
+
},
|
|
1495
1532
|
"Has Value": {
|
|
1496
1533
|
"type": "VARIANT",
|
|
1497
1534
|
"variantOptions": [
|
|
@@ -1509,12 +1546,16 @@ export declare const privateComponentUnderlineTextInputInputDisabled: {
|
|
|
1509
1546
|
"Value Text#34067:0": {
|
|
1510
1547
|
"type": "TEXT"
|
|
1511
1548
|
},
|
|
1512
|
-
"Clear Button#34067:1": {
|
|
1513
|
-
"type": "BOOLEAN"
|
|
1514
|
-
},
|
|
1515
1549
|
"Placeholder Text#34067:2": {
|
|
1516
1550
|
"type": "TEXT"
|
|
1517
1551
|
},
|
|
1552
|
+
"Size": {
|
|
1553
|
+
"type": "VARIANT",
|
|
1554
|
+
"variantOptions": [
|
|
1555
|
+
"Large",
|
|
1556
|
+
"Medium"
|
|
1557
|
+
]
|
|
1558
|
+
},
|
|
1518
1559
|
"Has Value": {
|
|
1519
1560
|
"type": "VARIANT",
|
|
1520
1561
|
"variantOptions": [
|
|
@@ -1532,12 +1573,16 @@ export declare const privateComponentUnderlineTextInputInputReadOnly: {
|
|
|
1532
1573
|
"Value Text#34067:0": {
|
|
1533
1574
|
"type": "TEXT"
|
|
1534
1575
|
},
|
|
1535
|
-
"Clear Button#34067:1": {
|
|
1536
|
-
"type": "BOOLEAN"
|
|
1537
|
-
},
|
|
1538
1576
|
"Placeholder Text#34067:2": {
|
|
1539
1577
|
"type": "TEXT"
|
|
1540
1578
|
},
|
|
1579
|
+
"Size": {
|
|
1580
|
+
"type": "VARIANT",
|
|
1581
|
+
"variantOptions": [
|
|
1582
|
+
"Large",
|
|
1583
|
+
"Medium"
|
|
1584
|
+
]
|
|
1585
|
+
},
|
|
1541
1586
|
"Has Value": {
|
|
1542
1587
|
"type": "VARIANT",
|
|
1543
1588
|
"variantOptions": [
|
|
@@ -1555,6 +1600,13 @@ export declare const privateComponentUnderlineTextInputPrefix: {
|
|
|
1555
1600
|
"Icon#34021:2": {
|
|
1556
1601
|
"type": "INSTANCE_SWAP"
|
|
1557
1602
|
},
|
|
1603
|
+
"Size": {
|
|
1604
|
+
"type": "VARIANT",
|
|
1605
|
+
"variantOptions": [
|
|
1606
|
+
"Large",
|
|
1607
|
+
"Medium"
|
|
1608
|
+
]
|
|
1609
|
+
},
|
|
1558
1610
|
"Type": {
|
|
1559
1611
|
"type": "VARIANT",
|
|
1560
1612
|
"variantOptions": [
|
|
@@ -1575,6 +1627,13 @@ export declare const privateComponentUnderlineTextInputSuffix: {
|
|
|
1575
1627
|
"Icon#45391:5": {
|
|
1576
1628
|
"type": "INSTANCE_SWAP"
|
|
1577
1629
|
},
|
|
1630
|
+
"Size": {
|
|
1631
|
+
"type": "VARIANT",
|
|
1632
|
+
"variantOptions": [
|
|
1633
|
+
"Large",
|
|
1634
|
+
"Medium"
|
|
1635
|
+
]
|
|
1636
|
+
},
|
|
1578
1637
|
"Type (Figma Only)": {
|
|
1579
1638
|
"type": "VARIANT",
|
|
1580
1639
|
"variantOptions": [
|
|
@@ -1874,38 +1933,6 @@ export declare const componentDeprecatedMultilineTextField: {
|
|
|
1874
1933
|
}
|
|
1875
1934
|
};
|
|
1876
1935
|
|
|
1877
|
-
export declare const componentDeprecatedRangeSlider: {
|
|
1878
|
-
"name": "componentDeprecatedRangeSlider",
|
|
1879
|
-
"key": "acd9b25dba649748699d0a67f900857629d62e64",
|
|
1880
|
-
"componentPropertyDefinitions": {
|
|
1881
|
-
"Steps": {
|
|
1882
|
-
"type": "VARIANT",
|
|
1883
|
-
"variantOptions": [
|
|
1884
|
-
"0",
|
|
1885
|
-
"1",
|
|
1886
|
-
"2",
|
|
1887
|
-
"3",
|
|
1888
|
-
"4"
|
|
1889
|
-
]
|
|
1890
|
-
},
|
|
1891
|
-
"State": {
|
|
1892
|
-
"type": "VARIANT",
|
|
1893
|
-
"variantOptions": [
|
|
1894
|
-
"Enabled",
|
|
1895
|
-
"Disabled"
|
|
1896
|
-
]
|
|
1897
|
-
},
|
|
1898
|
-
"Marker": {
|
|
1899
|
-
"type": "VARIANT",
|
|
1900
|
-
"variantOptions": [
|
|
1901
|
-
"None",
|
|
1902
|
-
"Min Max",
|
|
1903
|
-
"All"
|
|
1904
|
-
]
|
|
1905
|
-
}
|
|
1906
|
-
}
|
|
1907
|
-
};
|
|
1908
|
-
|
|
1909
1936
|
export declare const componentDeprecatedSelectBox: {
|
|
1910
1937
|
"name": "componentDeprecatedSelectBox",
|
|
1911
1938
|
"key": "83d4bbb026d432c35f0b2c7b7b273eafdd28e1a1",
|
|
@@ -1968,38 +1995,6 @@ export declare const componentDeprecatedSelectBoxGroup: {
|
|
|
1968
1995
|
}
|
|
1969
1996
|
};
|
|
1970
1997
|
|
|
1971
|
-
export declare const componentDeprecatedSlider: {
|
|
1972
|
-
"name": "componentDeprecatedSlider",
|
|
1973
|
-
"key": "c103c0a6ec25de57bb41eb820648a467afc5788e",
|
|
1974
|
-
"componentPropertyDefinitions": {
|
|
1975
|
-
"Steps": {
|
|
1976
|
-
"type": "VARIANT",
|
|
1977
|
-
"variantOptions": [
|
|
1978
|
-
"0",
|
|
1979
|
-
"1",
|
|
1980
|
-
"2",
|
|
1981
|
-
"3",
|
|
1982
|
-
"4"
|
|
1983
|
-
]
|
|
1984
|
-
},
|
|
1985
|
-
"State": {
|
|
1986
|
-
"type": "VARIANT",
|
|
1987
|
-
"variantOptions": [
|
|
1988
|
-
"Enabled",
|
|
1989
|
-
"Disabled"
|
|
1990
|
-
]
|
|
1991
|
-
},
|
|
1992
|
-
"Marker": {
|
|
1993
|
-
"type": "VARIANT",
|
|
1994
|
-
"variantOptions": [
|
|
1995
|
-
"None",
|
|
1996
|
-
"Min Max",
|
|
1997
|
-
"All"
|
|
1998
|
-
]
|
|
1999
|
-
}
|
|
2000
|
-
}
|
|
2001
|
-
};
|
|
2002
|
-
|
|
2003
1998
|
export declare const componentDeprecatedTextField: {
|
|
2004
1999
|
"name": "componentDeprecatedTextField",
|
|
2005
2000
|
"key": "5e497fe23421ab30b245b7d7b6624be803cb4d67",
|
|
@@ -2227,6 +2222,36 @@ export declare const componentAndroidNowBarScreen: {
|
|
|
2227
2222
|
}
|
|
2228
2223
|
};
|
|
2229
2224
|
|
|
2225
|
+
export declare const templateAttachmentField: {
|
|
2226
|
+
"name": "templateAttachmentField",
|
|
2227
|
+
"key": "fadc2874d82258d8522bb240de58a2400738f05e",
|
|
2228
|
+
"componentPropertyDefinitions": {
|
|
2229
|
+
"Type": {
|
|
2230
|
+
"type": "VARIANT",
|
|
2231
|
+
"variantOptions": [
|
|
2232
|
+
"Media",
|
|
2233
|
+
"File"
|
|
2234
|
+
]
|
|
2235
|
+
},
|
|
2236
|
+
"State": {
|
|
2237
|
+
"type": "VARIANT",
|
|
2238
|
+
"variantOptions": [
|
|
2239
|
+
"Enabled",
|
|
2240
|
+
"Error",
|
|
2241
|
+
"Disabled",
|
|
2242
|
+
"Read Only"
|
|
2243
|
+
]
|
|
2244
|
+
},
|
|
2245
|
+
"Has Value": {
|
|
2246
|
+
"type": "VARIANT",
|
|
2247
|
+
"variantOptions": [
|
|
2248
|
+
"False",
|
|
2249
|
+
"True"
|
|
2250
|
+
]
|
|
2251
|
+
}
|
|
2252
|
+
}
|
|
2253
|
+
};
|
|
2254
|
+
|
|
2230
2255
|
export declare const componentAvatar: {
|
|
2231
2256
|
"name": "componentAvatar",
|
|
2232
2257
|
"key": "f17031afc2c71f35e5a147f6937a2b918029d334",
|
|
@@ -3010,8 +3035,8 @@ export declare const componentImageFrame: {
|
|
|
3010
3035
|
}
|
|
3011
3036
|
};
|
|
3012
3037
|
|
|
3013
|
-
export declare const
|
|
3014
|
-
"name": "
|
|
3038
|
+
export declare const componentIOsLiveActivityScreen: {
|
|
3039
|
+
"name": "componentIOsLiveActivityScreen",
|
|
3015
3040
|
"key": "3d7ff6cf68e769096237bcc0122be08caf8b6ce4",
|
|
3016
3041
|
"componentPropertyDefinitions": {
|
|
3017
3042
|
"Type": {
|
|
@@ -3122,11 +3147,11 @@ export declare const componentListItem: {
|
|
|
3122
3147
|
"Disabled"
|
|
3123
3148
|
]
|
|
3124
3149
|
},
|
|
3125
|
-
"
|
|
3150
|
+
"Align": {
|
|
3126
3151
|
"type": "VARIANT",
|
|
3127
3152
|
"variantOptions": [
|
|
3128
|
-
"
|
|
3129
|
-
"
|
|
3153
|
+
"Center",
|
|
3154
|
+
"Top"
|
|
3130
3155
|
]
|
|
3131
3156
|
},
|
|
3132
3157
|
"Highlighted": {
|
|
@@ -4235,6 +4260,41 @@ export declare const componentUserSelectionFigmaOnly: {
|
|
|
4235
4260
|
}
|
|
4236
4261
|
};
|
|
4237
4262
|
|
|
4263
|
+
export declare const componentAttachmentInput: {
|
|
4264
|
+
"name": "componentAttachmentInput",
|
|
4265
|
+
"key": "912d312b7a25ab698708e196a7d3f2f91d2bd2f5",
|
|
4266
|
+
"componentPropertyDefinitions": {
|
|
4267
|
+
"Type": {
|
|
4268
|
+
"type": "VARIANT",
|
|
4269
|
+
"variantOptions": [
|
|
4270
|
+
"Media",
|
|
4271
|
+
"File"
|
|
4272
|
+
]
|
|
4273
|
+
},
|
|
4274
|
+
"Trigger Type": {
|
|
4275
|
+
"type": "VARIANT",
|
|
4276
|
+
"variantOptions": [
|
|
4277
|
+
"Button",
|
|
4278
|
+
"Dropzone"
|
|
4279
|
+
]
|
|
4280
|
+
},
|
|
4281
|
+
"State": {
|
|
4282
|
+
"type": "VARIANT",
|
|
4283
|
+
"variantOptions": [
|
|
4284
|
+
"Enabled",
|
|
4285
|
+
"Disabled"
|
|
4286
|
+
]
|
|
4287
|
+
},
|
|
4288
|
+
"Has Value": {
|
|
4289
|
+
"type": "VARIANT",
|
|
4290
|
+
"variantOptions": [
|
|
4291
|
+
"False",
|
|
4292
|
+
"True"
|
|
4293
|
+
]
|
|
4294
|
+
}
|
|
4295
|
+
}
|
|
4296
|
+
};
|
|
4297
|
+
|
|
4238
4298
|
export declare const componentFieldFooter: {
|
|
4239
4299
|
"name": "componentFieldFooter",
|
|
4240
4300
|
"key": "a2e73c375b787756a11e84c5915f8251c621ee3a",
|
|
@@ -4299,15 +4359,22 @@ export declare const componentInputButton: {
|
|
|
4299
4359
|
"Has Suffix#32865:68": {
|
|
4300
4360
|
"type": "BOOLEAN"
|
|
4301
4361
|
},
|
|
4362
|
+
"Size": {
|
|
4363
|
+
"type": "VARIANT",
|
|
4364
|
+
"variantOptions": [
|
|
4365
|
+
"Large",
|
|
4366
|
+
"Medium (Desktop Only)"
|
|
4367
|
+
]
|
|
4368
|
+
},
|
|
4302
4369
|
"State": {
|
|
4303
4370
|
"type": "VARIANT",
|
|
4304
4371
|
"variantOptions": [
|
|
4305
4372
|
"Enabled",
|
|
4373
|
+
"Pressed",
|
|
4306
4374
|
"Error",
|
|
4375
|
+
"Error Pressed",
|
|
4307
4376
|
"Disabled",
|
|
4308
|
-
"Read Only"
|
|
4309
|
-
"Pressed",
|
|
4310
|
-
"Error Pressed"
|
|
4377
|
+
"Read Only"
|
|
4311
4378
|
]
|
|
4312
4379
|
}
|
|
4313
4380
|
}
|
|
@@ -4337,6 +4404,13 @@ export declare const componentTextInput: {
|
|
|
4337
4404
|
"Read Only",
|
|
4338
4405
|
"AI Loading (Figma Only)"
|
|
4339
4406
|
]
|
|
4407
|
+
},
|
|
4408
|
+
"Size": {
|
|
4409
|
+
"type": "VARIANT",
|
|
4410
|
+
"variantOptions": [
|
|
4411
|
+
"Large",
|
|
4412
|
+
"Medium (Desktop Only)"
|
|
4413
|
+
]
|
|
4340
4414
|
}
|
|
4341
4415
|
}
|
|
4342
4416
|
};
|
|
@@ -4345,6 +4419,13 @@ export declare const componentTextarea: {
|
|
|
4345
4419
|
"name": "componentTextarea",
|
|
4346
4420
|
"key": "e20ec5b725e0fdbaca728cecdc72b0c485728b4d",
|
|
4347
4421
|
"componentPropertyDefinitions": {
|
|
4422
|
+
"Size": {
|
|
4423
|
+
"type": "VARIANT",
|
|
4424
|
+
"variantOptions": [
|
|
4425
|
+
"Large",
|
|
4426
|
+
"Medium (Desktop Only)"
|
|
4427
|
+
]
|
|
4428
|
+
},
|
|
4348
4429
|
"Auto Size (Figma Only)": {
|
|
4349
4430
|
"type": "VARIANT",
|
|
4350
4431
|
"variantOptions": [
|
|
@@ -4388,6 +4469,13 @@ export declare const componentUnderlineTextInput: {
|
|
|
4388
4469
|
"Read Only",
|
|
4389
4470
|
"AI Loading (Figma Only)"
|
|
4390
4471
|
]
|
|
4472
|
+
},
|
|
4473
|
+
"Size": {
|
|
4474
|
+
"type": "VARIANT",
|
|
4475
|
+
"variantOptions": [
|
|
4476
|
+
"Medium (Desktop Only)",
|
|
4477
|
+
"Large"
|
|
4478
|
+
]
|
|
4391
4479
|
}
|
|
4392
4480
|
}
|
|
4393
4481
|
};
|
|
@@ -4418,7 +4506,7 @@ export declare const componentActionButtonGhostButton: {
|
|
|
4418
4506
|
"Size": {
|
|
4419
4507
|
"type": "VARIANT",
|
|
4420
4508
|
"variantOptions": [
|
|
4421
|
-
"
|
|
4509
|
+
"XSmall",
|
|
4422
4510
|
"Small",
|
|
4423
4511
|
"Medium",
|
|
4424
4512
|
"Large"
|