@seed-design/figma 1.3.12 → 1.3.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/lib/codegen/index.cjs +1297 -394
  2. package/lib/codegen/index.js +1297 -394
  3. package/lib/codegen/targets/react/index.cjs +1462 -511
  4. package/lib/codegen/targets/react/index.js +1462 -511
  5. package/lib/index.cjs +1415 -446
  6. package/lib/index.js +1415 -446
  7. package/package.json +4 -4
  8. package/src/codegen/component-properties.ts +9 -9
  9. package/src/codegen/targets/react/component/handlers/app-bar.ts +1 -1
  10. package/src/codegen/targets/react/component/handlers/checkbox.ts +1 -1
  11. package/src/codegen/targets/react/component/handlers/field-button.ts +5 -5
  12. package/src/codegen/targets/react/component/handlers/index.ts +1 -1
  13. package/src/codegen/targets/react/component/handlers/legacy-chip.ts +96 -0
  14. package/src/codegen/targets/react/component/handlers/list-item.ts +3 -3
  15. package/src/codegen/targets/react/component/handlers/radio-group.ts +1 -1
  16. package/src/codegen/targets/react/component/handlers/select-box.ts +1 -1
  17. package/src/codegen/targets/react/component/handlers/slider.ts +1 -1
  18. package/src/codegen/targets/react/component/handlers/tabs.ts +11 -5
  19. package/src/codegen/targets/react/component/handlers/text-field.ts +2 -2
  20. package/src/entities/data/__generated__/component-sets/index.d.ts +503 -264
  21. package/src/entities/data/__generated__/component-sets/index.mjs +503 -264
  22. package/src/entities/data/__generated__/components/index.d.ts +258 -96
  23. package/src/entities/data/__generated__/components/index.mjs +258 -96
  24. package/src/entities/data/__generated__/icons/index.mjs +66 -0
  25. package/src/entities/data/__generated__/styles/index.mjs +252 -0
  26. package/src/entities/data/__generated__/variable-collections/index.mjs +25 -5
  27. package/src/entities/data/__generated__/variables/index.mjs +461 -69
  28. package/src/codegen/targets/react/component/handlers/chip.ts +0 -93
@@ -8723,7 +8723,7 @@ const FIGMA_VARIABLES$1 = {
8723
8723
  }
8724
8724
  };
8725
8725
 
8726
- const templateButtonGroup$1 = {
8726
+ const templateButtonGroup = {
8727
8727
  "name": "templateButtonGroup",
8728
8728
  "key": "29109a34197f2eb5d390b1d9ebba270979a7b302",
8729
8729
  "componentPropertyDefinitions": {
@@ -8750,7 +8750,7 @@ const templateButtonGroup$1 = {
8750
8750
  }
8751
8751
  }
8752
8752
  };
8753
- const templateChipGroup$1 = {
8753
+ const templateChipGroup = {
8754
8754
  "name": "templateChipGroup",
8755
8755
  "key": "5b1155aae0f90d1bce6a7499f53a547e88ec3b86",
8756
8756
  "componentPropertyDefinitions": {
@@ -8807,7 +8807,7 @@ const templateCustomPickerField = {
8807
8807
  }
8808
8808
  }
8809
8809
  };
8810
- const templateDisclaimer$1 = {
8810
+ const templateDisclaimer = {
8811
8811
  "name": "templateDisclaimer",
8812
8812
  "key": "e08d2594b76c6c0107e34c0071cab8ef844c8998",
8813
8813
  "componentPropertyDefinitions": {
@@ -8842,7 +8842,7 @@ const templateResultPage$1 = {
8842
8842
  }
8843
8843
  }
8844
8844
  };
8845
- const templateSliderField$1 = {
8845
+ const templateSliderField = {
8846
8846
  "name": "templateSliderField",
8847
8847
  "key": "7d2b449bcfb28ebf3c509ed76a141511f7d955eb",
8848
8848
  "componentPropertyDefinitions": {
@@ -8864,7 +8864,7 @@ const templateSliderField$1 = {
8864
8864
  }
8865
8865
  }
8866
8866
  };
8867
- const templateTextField$1 = {
8867
+ const templateTextField = {
8868
8868
  "name": "templateTextField",
8869
8869
  "key": "0a83a0ff9d18d98a14536b21aa5411622f9f0c05",
8870
8870
  "componentPropertyDefinitions": {
@@ -8895,7 +8895,7 @@ const templateTextField$1 = {
8895
8895
  }
8896
8896
  }
8897
8897
  };
8898
- const templateTextareaField$1 = {
8898
+ const templateTextareaField = {
8899
8899
  "name": "templateTextareaField",
8900
8900
  "key": "cdc688eccd78b947289e8089a620bdc494f6c809",
8901
8901
  "componentPropertyDefinitions": {
@@ -10790,14 +10790,14 @@ var FIGMA_COMPONENTS_ARCHIVE = {
10790
10790
  switchmark: switchmark,
10791
10791
  tabs: tabs,
10792
10792
  tagGroup: tagGroup,
10793
- templateButtonGroup: templateButtonGroup$1,
10794
- templateChipGroup: templateChipGroup$1,
10793
+ templateButtonGroup: templateButtonGroup,
10794
+ templateChipGroup: templateChipGroup,
10795
10795
  templateCustomPickerField: templateCustomPickerField,
10796
- templateDisclaimer: templateDisclaimer$1,
10796
+ templateDisclaimer: templateDisclaimer,
10797
10797
  templateResultPage: templateResultPage$1,
10798
- templateSliderField: templateSliderField$1,
10799
- templateTextField: templateTextField$1,
10800
- templateTextareaField: templateTextareaField$1,
10798
+ templateSliderField: templateSliderField,
10799
+ templateTextField: templateTextField,
10800
+ templateTextareaField: templateTextareaField,
10801
10801
  templateTopNavigation: templateTopNavigation,
10802
10802
  toggleButton: toggleButton,
10803
10803
  topNavigation: topNavigation
@@ -10909,6 +10909,20 @@ const FIGMA_STYLES = [
10909
10909
  "description": "26",
10910
10910
  "remote": false
10911
10911
  },
10912
+ {
10913
+ "styleType": "TEXT",
10914
+ "key": "f1b075bf372e390817956ac334349f42ec368ccd",
10915
+ "name": "scale/t10-medium",
10916
+ "description": "26",
10917
+ "remote": false
10918
+ },
10919
+ {
10920
+ "styleType": "TEXT",
10921
+ "key": "58575457da24cac686bda44738f925bf7fb1000f",
10922
+ "name": "scale/t10-regular",
10923
+ "description": "26",
10924
+ "remote": false
10925
+ },
10912
10926
  {
10913
10927
  "styleType": "TEXT",
10914
10928
  "key": "08861e25c3f74a29c2ae4ce007fe50b63e302392",
@@ -10916,6 +10930,188 @@ const FIGMA_STYLES = [
10916
10930
  "description": "26",
10917
10931
  "remote": false
10918
10932
  },
10933
+ {
10934
+ "styleType": "TEXT",
10935
+ "key": "7b382c6819df53c004f4bb6464cc1159437d28f4",
10936
+ "name": "scale/t10-static-medium",
10937
+ "description": "26",
10938
+ "remote": false
10939
+ },
10940
+ {
10941
+ "styleType": "TEXT",
10942
+ "key": "7ac0425bf2720501638e207801bdc83188776606",
10943
+ "name": "scale/t10-static-regular",
10944
+ "description": "26",
10945
+ "remote": false
10946
+ },
10947
+ {
10948
+ "styleType": "TEXT",
10949
+ "key": "c4098caa6dadf9d0313a5cd3bf1954aa428806bc",
10950
+ "name": "scale/t11-bold",
10951
+ "description": "28",
10952
+ "remote": false
10953
+ },
10954
+ {
10955
+ "styleType": "TEXT",
10956
+ "key": "7f9079e1462525cba38c2bf1eef30868a3604c1f",
10957
+ "name": "scale/t11-medium",
10958
+ "description": "28",
10959
+ "remote": false
10960
+ },
10961
+ {
10962
+ "styleType": "TEXT",
10963
+ "key": "ea8f44eb90bc314a4afffcb2cd01df65e62e71ac",
10964
+ "name": "scale/t11-regular",
10965
+ "description": "28",
10966
+ "remote": false
10967
+ },
10968
+ {
10969
+ "styleType": "TEXT",
10970
+ "key": "3fe2b88e352b6983ca3f1ba3564116c9df17d1f4",
10971
+ "name": "scale/t11-static-bold",
10972
+ "description": "28",
10973
+ "remote": false
10974
+ },
10975
+ {
10976
+ "styleType": "TEXT",
10977
+ "key": "d75f42739e281be648feeba353a88a2beb6cd6b3",
10978
+ "name": "scale/t11-static-medium",
10979
+ "description": "28",
10980
+ "remote": false
10981
+ },
10982
+ {
10983
+ "styleType": "TEXT",
10984
+ "key": "2ec7180151eb92cf7dda82e2e9d44e17db597aa7",
10985
+ "name": "scale/t11-static-regular",
10986
+ "description": "28",
10987
+ "remote": false
10988
+ },
10989
+ {
10990
+ "styleType": "TEXT",
10991
+ "key": "8848230f95a4b768c3fb4586d6cf00c4b7871597",
10992
+ "name": "scale/t12-bold",
10993
+ "description": "32",
10994
+ "remote": false
10995
+ },
10996
+ {
10997
+ "styleType": "TEXT",
10998
+ "key": "d03833cfa1fc42209eaaf75ac4ac7563c3ce05db",
10999
+ "name": "scale/t12-medium",
11000
+ "description": "32",
11001
+ "remote": false
11002
+ },
11003
+ {
11004
+ "styleType": "TEXT",
11005
+ "key": "f520df58299347b765369130e1cc35c4d5777ee5",
11006
+ "name": "scale/t12-regular",
11007
+ "description": "32",
11008
+ "remote": false
11009
+ },
11010
+ {
11011
+ "styleType": "TEXT",
11012
+ "key": "078207b0210a5e730107f7e9434ccf73fe4aa037",
11013
+ "name": "scale/t12-static-bold",
11014
+ "description": "32",
11015
+ "remote": false
11016
+ },
11017
+ {
11018
+ "styleType": "TEXT",
11019
+ "key": "0bbb0b5109594a030af1b31fa4a2fec97c888898",
11020
+ "name": "scale/t12-static-medium",
11021
+ "description": "32",
11022
+ "remote": false
11023
+ },
11024
+ {
11025
+ "styleType": "TEXT",
11026
+ "key": "7b5c555d3b6b442c7c2560d40687ad511fccd2bf",
11027
+ "name": "scale/t12-static-regular",
11028
+ "description": "32",
11029
+ "remote": false
11030
+ },
11031
+ {
11032
+ "styleType": "TEXT",
11033
+ "key": "f8246d0f7aac99e4bedf442e7705eb8c6fbd287f",
11034
+ "name": "scale/t13-large",
11035
+ "description": "40",
11036
+ "remote": false
11037
+ },
11038
+ {
11039
+ "styleType": "TEXT",
11040
+ "key": "aa030de3cc69647ac9261dde645751902cb034fa",
11041
+ "name": "scale/t13-medium",
11042
+ "description": "40",
11043
+ "remote": false
11044
+ },
11045
+ {
11046
+ "styleType": "TEXT",
11047
+ "key": "5f319de1ecd415b8046b8104dee700d68276f591",
11048
+ "name": "scale/t13-regular",
11049
+ "description": "40",
11050
+ "remote": false
11051
+ },
11052
+ {
11053
+ "styleType": "TEXT",
11054
+ "key": "c431b4007e9dc95ca040323d7bfbfc93506dcb1b",
11055
+ "name": "scale/t13-static-bold",
11056
+ "description": "40",
11057
+ "remote": false
11058
+ },
11059
+ {
11060
+ "styleType": "TEXT",
11061
+ "key": "f27b6a9f531a34f06cc33c6f051f178b78d7b42a",
11062
+ "name": "scale/t13-static-medium",
11063
+ "description": "40",
11064
+ "remote": false
11065
+ },
11066
+ {
11067
+ "styleType": "TEXT",
11068
+ "key": "25aafb51bb53e8ad6a4fd3888c4cd0fe22fe1484",
11069
+ "name": "scale/t13-static-regular",
11070
+ "description": "40",
11071
+ "remote": false
11072
+ },
11073
+ {
11074
+ "styleType": "TEXT",
11075
+ "key": "cb4871a19bfe5793fb62e8cb2af414077dbb554f",
11076
+ "name": "scale/t14-bold",
11077
+ "description": "48",
11078
+ "remote": false
11079
+ },
11080
+ {
11081
+ "styleType": "TEXT",
11082
+ "key": "7a65a36ff5664459014003876f7e008f7f9a29ac",
11083
+ "name": "scale/t14-medium",
11084
+ "description": "48",
11085
+ "remote": false
11086
+ },
11087
+ {
11088
+ "styleType": "TEXT",
11089
+ "key": "319ce219a9a7d266cdc86525f6a9d15d33d3fbc5",
11090
+ "name": "scale/t14-regular",
11091
+ "description": "48",
11092
+ "remote": false
11093
+ },
11094
+ {
11095
+ "styleType": "TEXT",
11096
+ "key": "a901e969dec12e78cc4e12e2dedd49490d3f9b6c",
11097
+ "name": "scale/t14-static-bold",
11098
+ "description": "48",
11099
+ "remote": false
11100
+ },
11101
+ {
11102
+ "styleType": "TEXT",
11103
+ "key": "a8b4a10427f553ab3675471396389a0aab9cba74",
11104
+ "name": "scale/t14-static-medium",
11105
+ "description": "48",
11106
+ "remote": false
11107
+ },
11108
+ {
11109
+ "styleType": "TEXT",
11110
+ "key": "cdcbb93f6e2c0785bd3bb0e9f7ecad7568c1be5e",
11111
+ "name": "scale/t14-static-regular",
11112
+ "description": "48",
11113
+ "remote": false
11114
+ },
10919
11115
  {
10920
11116
  "styleType": "TEXT",
10921
11117
  "key": "8378bd59b14f5682dcaf20110efde4b7a1fb18e3",
@@ -11175,6 +11371,20 @@ const FIGMA_STYLES = [
11175
11371
  "description": "22",
11176
11372
  "remote": false
11177
11373
  },
11374
+ {
11375
+ "styleType": "TEXT",
11376
+ "key": "6e0e3a4652ac72a7bdf4f6ca5e3b3e88e6e91a1f",
11377
+ "name": "scale/t8-medium",
11378
+ "description": "22",
11379
+ "remote": false
11380
+ },
11381
+ {
11382
+ "styleType": "TEXT",
11383
+ "key": "ba43d7fc601a61769f623e1ec54a569fcf80d0d2",
11384
+ "name": "scale/t8-regular",
11385
+ "description": "22",
11386
+ "remote": false
11387
+ },
11178
11388
  {
11179
11389
  "styleType": "TEXT",
11180
11390
  "key": "37821f18bc4416d7a81fa429d89240317a8f17e6",
@@ -11182,6 +11392,20 @@ const FIGMA_STYLES = [
11182
11392
  "description": "22",
11183
11393
  "remote": false
11184
11394
  },
11395
+ {
11396
+ "styleType": "TEXT",
11397
+ "key": "759499dc9fc172011297eee2b8b96c3b369708c9",
11398
+ "name": "scale/t8-static-medium",
11399
+ "description": "22",
11400
+ "remote": false
11401
+ },
11402
+ {
11403
+ "styleType": "TEXT",
11404
+ "key": "2643414348304d2a7f712f321a7ee07c3f20cff6",
11405
+ "name": "scale/t8-static-regular",
11406
+ "description": "22",
11407
+ "remote": false
11408
+ },
11185
11409
  {
11186
11410
  "styleType": "TEXT",
11187
11411
  "key": "b146e1317c67db787834f1890493225bdbba4e48",
@@ -11189,6 +11413,20 @@ const FIGMA_STYLES = [
11189
11413
  "description": "24",
11190
11414
  "remote": false
11191
11415
  },
11416
+ {
11417
+ "styleType": "TEXT",
11418
+ "key": "2c069c359d4d880a09a0ff025ae70e56e5e6cfda",
11419
+ "name": "scale/t9-medium",
11420
+ "description": "24",
11421
+ "remote": false
11422
+ },
11423
+ {
11424
+ "styleType": "TEXT",
11425
+ "key": "9e695936bfe469d21c072346744f0ce73c808336",
11426
+ "name": "scale/t9-regular",
11427
+ "description": "24",
11428
+ "remote": false
11429
+ },
11192
11430
  {
11193
11431
  "styleType": "TEXT",
11194
11432
  "key": "c06e147e98440109199e2e3fa2a63390d19afb0c",
@@ -11196,6 +11434,20 @@ const FIGMA_STYLES = [
11196
11434
  "description": "24",
11197
11435
  "remote": false
11198
11436
  },
11437
+ {
11438
+ "styleType": "TEXT",
11439
+ "key": "6e6b4cd794df40335e9f3f6ec3ba519e71e5db5d",
11440
+ "name": "scale/t9-static-medium",
11441
+ "description": "24",
11442
+ "remote": false
11443
+ },
11444
+ {
11445
+ "styleType": "TEXT",
11446
+ "key": "25fd249f85598595696ee12df23f3c0209287199",
11447
+ "name": "scale/t9-static-regular",
11448
+ "description": "24",
11449
+ "remote": false
11450
+ },
11199
11451
  {
11200
11452
  "styleType": "TEXT",
11201
11453
  "key": "85422ef9f0230f821f1a9e6d2f8f86b3ba87f20d",
@@ -11609,20 +11861,24 @@ const FIGMA_VARIABLE_COLLECTIONS = {
11609
11861
  "name": "iOS"
11610
11862
  },
11611
11863
  {
11612
- "modeId": "1:6",
11613
- "name": "iOS-xxxlarge"
11864
+ "modeId": "1:7",
11865
+ "name": "iOS (80%)"
11614
11866
  },
11615
11867
  {
11616
- "modeId": "1:7",
11617
- "name": "iOS-xsmall"
11868
+ "modeId": "1:6",
11869
+ "name": "iOS (135%)"
11618
11870
  },
11619
11871
  {
11620
11872
  "modeId": "1:8",
11621
11873
  "name": "Android"
11622
11874
  },
11875
+ {
11876
+ "modeId": "62468:0",
11877
+ "name": "Android (80%)"
11878
+ },
11623
11879
  {
11624
11880
  "modeId": "51907:0",
11625
- "name": "Android-xlarge"
11881
+ "name": "Android (150%)"
11626
11882
  }
11627
11883
  ],
11628
11884
  "key": "75a9a164e0f9d49ba07e82176cbc7240569928a5",
@@ -11688,6 +11944,22 @@ const FIGMA_VARIABLE_COLLECTIONS = {
11688
11944
  "VariableID:58766:15457",
11689
11945
  "VariableID:58766:15458",
11690
11946
  "VariableID:58766:15459",
11947
+ "VariableID:62466:5",
11948
+ "VariableID:62472:10",
11949
+ "VariableID:62472:11",
11950
+ "VariableID:62472:12",
11951
+ "VariableID:62472:6",
11952
+ "VariableID:62472:7",
11953
+ "VariableID:62472:8",
11954
+ "VariableID:62472:9",
11955
+ "VariableID:62476:13",
11956
+ "VariableID:62476:14",
11957
+ "VariableID:62476:15",
11958
+ "VariableID:62476:16",
11959
+ "VariableID:62476:17",
11960
+ "VariableID:62476:18",
11961
+ "VariableID:62476:19",
11962
+ "VariableID:62476:20",
11691
11963
  "VariableID:796:4448"
11692
11964
  ]
11693
11965
  },
@@ -12419,7 +12691,9 @@ const FIGMA_VARIABLES = {
12419
12691
  },
12420
12692
  "scopes": [
12421
12693
  "FRAME_FILL",
12422
- "SHAPE_FILL"
12694
+ "SHAPE_FILL",
12695
+ "STROKE_COLOR",
12696
+ "EFFECT_COLOR"
12423
12697
  ],
12424
12698
  "codeSyntax": {}
12425
12699
  },
@@ -12471,7 +12745,9 @@ const FIGMA_VARIABLES = {
12471
12745
  },
12472
12746
  "scopes": [
12473
12747
  "FRAME_FILL",
12474
- "SHAPE_FILL"
12748
+ "SHAPE_FILL",
12749
+ "STROKE_COLOR",
12750
+ "EFFECT_COLOR"
12475
12751
  ],
12476
12752
  "codeSyntax": {}
12477
12753
  },
@@ -12522,7 +12798,9 @@ const FIGMA_VARIABLES = {
12522
12798
  },
12523
12799
  "scopes": [
12524
12800
  "FRAME_FILL",
12525
- "SHAPE_FILL"
12801
+ "SHAPE_FILL",
12802
+ "STROKE_COLOR",
12803
+ "EFFECT_COLOR"
12526
12804
  ],
12527
12805
  "codeSyntax": {}
12528
12806
  },
@@ -12547,7 +12825,9 @@ const FIGMA_VARIABLES = {
12547
12825
  },
12548
12826
  "scopes": [
12549
12827
  "FRAME_FILL",
12550
- "SHAPE_FILL"
12828
+ "SHAPE_FILL",
12829
+ "STROKE_COLOR",
12830
+ "EFFECT_COLOR"
12551
12831
  ],
12552
12832
  "codeSyntax": {}
12553
12833
  },
@@ -13162,7 +13442,8 @@ const FIGMA_VARIABLES = {
13162
13442
  "1:6": 358,
13163
13443
  "1:7": 358,
13164
13444
  "1:8": 358,
13165
- "51907:0": 358
13445
+ "51907:0": 358,
13446
+ "62468:0": 358
13166
13447
  },
13167
13448
  "scopes": [
13168
13449
  "WIDTH_HEIGHT"
@@ -13183,7 +13464,8 @@ const FIGMA_VARIABLES = {
13183
13464
  "1:6": 173,
13184
13465
  "1:7": 173,
13185
13466
  "1:8": 173,
13186
- "51907:0": 173
13467
+ "51907:0": 173,
13468
+ "62468:0": 173
13187
13469
  },
13188
13470
  "scopes": [
13189
13471
  "WIDTH_HEIGHT"
@@ -13204,7 +13486,8 @@ const FIGMA_VARIABLES = {
13204
13486
  "1:6": 111.33000183105469,
13205
13487
  "1:7": 111.33000183105469,
13206
13488
  "1:8": 111.33000183105469,
13207
- "51907:0": 111.33000183105469
13489
+ "51907:0": 111.33000183105469,
13490
+ "62468:0": 111.33000183105469
13208
13491
  },
13209
13492
  "scopes": [
13210
13493
  "WIDTH_HEIGHT"
@@ -14162,7 +14445,8 @@ const FIGMA_VARIABLES = {
14162
14445
  "1:6": "Figma Only iOS",
14163
14446
  "1:7": "Figma Only iOS",
14164
14447
  "1:8": "Roboto",
14165
- "51907:0": "Roboto"
14448
+ "51907:0": "Roboto",
14449
+ "62468:0": "Roboto"
14166
14450
  },
14167
14451
  "scopes": [
14168
14452
  "FONT_FAMILY"
@@ -14183,7 +14467,8 @@ const FIGMA_VARIABLES = {
14183
14467
  "1:6": "Figma Only iOS Text",
14184
14468
  "1:7": "Figma Only iOS Text",
14185
14469
  "1:8": "Roboto",
14186
- "51907:0": "Roboto"
14470
+ "51907:0": "Roboto",
14471
+ "62468:0": "Roboto"
14187
14472
  },
14188
14473
  "scopes": [
14189
14474
  "FONT_FAMILY"
@@ -14201,10 +14486,11 @@ const FIGMA_VARIABLES = {
14201
14486
  "hiddenFromPublishing": false,
14202
14487
  "valuesByMode": {
14203
14488
  "1:5": 11,
14204
- "1:6": 17,
14205
- "1:7": 8,
14489
+ "1:6": 15,
14490
+ "1:7": 10,
14206
14491
  "1:8": 11,
14207
- "51907:0": 16.5
14492
+ "51907:0": 16.5,
14493
+ "62468:0": 10
14208
14494
  },
14209
14495
  "scopes": [
14210
14496
  "FONT_SIZE"
@@ -14222,10 +14508,11 @@ const FIGMA_VARIABLES = {
14222
14508
  "hiddenFromPublishing": false,
14223
14509
  "valuesByMode": {
14224
14510
  "1:5": 26,
14225
- "1:6": 32,
14226
- "1:7": 23,
14511
+ "1:6": 34,
14512
+ "1:7": 22,
14227
14513
  "1:8": 26,
14228
- "51907:0": 39
14514
+ "51907:0": 28.700000762939453,
14515
+ "62468:0": 22
14229
14516
  },
14230
14517
  "scopes": [
14231
14518
  "FONT_SIZE"
@@ -14246,70 +14533,250 @@ const FIGMA_VARIABLES = {
14246
14533
  "1:6": 26,
14247
14534
  "1:7": 26,
14248
14535
  "1:8": 26,
14249
- "51907:0": 26
14536
+ "51907:0": 26,
14537
+ "62468:0": 26
14250
14538
  },
14251
14539
  "scopes": [
14252
14540
  "FONT_SIZE"
14253
14541
  ],
14254
14542
  "codeSyntax": {}
14255
14543
  },
14256
- "VariableID:1:203": {
14257
- "name": "font-size/t2",
14258
- "id": "VariableID:1:203",
14544
+ "VariableID:62466:5": {
14545
+ "name": "font-size/t11",
14546
+ "id": "VariableID:62466:5",
14259
14547
  "remote": false,
14260
- "key": "ea3f6b0284e7ffc3e0a6e1ef6d9968ccbacf5f00",
14548
+ "key": "3563ead0527fe20304f480fdf272d3cbaeef6e5b",
14261
14549
  "variableCollectionId": "VariableCollectionId:1:197",
14262
14550
  "resolvedType": "FLOAT",
14263
14551
  "description": "",
14264
14552
  "hiddenFromPublishing": false,
14265
14553
  "valuesByMode": {
14266
- "1:5": 12,
14267
- "1:6": 18,
14268
- "1:7": 9,
14269
- "1:8": 12,
14270
- "51907:0": 18
14554
+ "1:5": 28,
14555
+ "1:6": 37,
14556
+ "1:7": 24,
14557
+ "1:8": 28,
14558
+ "51907:0": 29.299999237060547,
14559
+ "62468:0": 24
14271
14560
  },
14272
14561
  "scopes": [
14273
14562
  "FONT_SIZE"
14274
14563
  ],
14275
14564
  "codeSyntax": {}
14276
14565
  },
14277
- "VariableID:1:204": {
14278
- "name": "font-size/t3",
14279
- "id": "VariableID:1:204",
14566
+ "VariableID:62476:13": {
14567
+ "name": "font-size/t11-static",
14568
+ "id": "VariableID:62476:13",
14280
14569
  "remote": false,
14281
- "key": "bc6d4dc5395f878019227868a7921448342cf7a7",
14570
+ "key": "7cc056f6a2fac299e9ceacafcfb254fdb944f253",
14282
14571
  "variableCollectionId": "VariableCollectionId:1:197",
14283
14572
  "resolvedType": "FLOAT",
14284
- "description": "",
14573
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14285
14574
  "hiddenFromPublishing": false,
14286
14575
  "valuesByMode": {
14287
- "1:5": 13,
14288
- "1:6": 19,
14289
- "1:7": 10,
14290
- "1:8": 13,
14291
- "51907:0": 19.5
14576
+ "1:5": 28,
14577
+ "1:6": 28,
14578
+ "1:7": 28,
14579
+ "1:8": 28,
14580
+ "51907:0": 28,
14581
+ "62468:0": 28
14292
14582
  },
14293
14583
  "scopes": [
14294
14584
  "FONT_SIZE"
14295
14585
  ],
14296
14586
  "codeSyntax": {}
14297
14587
  },
14298
- "VariableID:1:205": {
14299
- "name": "font-size/t4",
14300
- "id": "VariableID:1:205",
14588
+ "VariableID:62472:6": {
14589
+ "name": "font-size/t12",
14590
+ "id": "VariableID:62472:6",
14301
14591
  "remote": false,
14302
- "key": "3e6ac961714d3bb5f576520364c90a2058cafdf0",
14592
+ "key": "aca82384301101930a35313139af734732889256",
14303
14593
  "variableCollectionId": "VariableCollectionId:1:197",
14304
14594
  "resolvedType": "FLOAT",
14305
14595
  "description": "",
14306
14596
  "hiddenFromPublishing": false,
14307
14597
  "valuesByMode": {
14308
- "1:5": 14,
14309
- "1:6": 20,
14598
+ "1:5": 32,
14599
+ "1:6": 42,
14600
+ "1:7": 28,
14601
+ "1:8": 32,
14602
+ "51907:0": 32,
14603
+ "62468:0": 28
14604
+ },
14605
+ "scopes": [
14606
+ "FONT_SIZE"
14607
+ ],
14608
+ "codeSyntax": {}
14609
+ },
14610
+ "VariableID:62476:14": {
14611
+ "name": "font-size/t12-static",
14612
+ "id": "VariableID:62476:14",
14613
+ "remote": false,
14614
+ "key": "9f630e581a9e3088abfb03affa31df636abf4775",
14615
+ "variableCollectionId": "VariableCollectionId:1:197",
14616
+ "resolvedType": "FLOAT",
14617
+ "description": "",
14618
+ "hiddenFromPublishing": false,
14619
+ "valuesByMode": {
14620
+ "1:5": 32,
14621
+ "1:6": 32,
14622
+ "1:7": 32,
14623
+ "1:8": 32,
14624
+ "51907:0": 32,
14625
+ "62468:0": 32
14626
+ },
14627
+ "scopes": [
14628
+ "FONT_SIZE"
14629
+ ],
14630
+ "codeSyntax": {}
14631
+ },
14632
+ "VariableID:62472:7": {
14633
+ "name": "font-size/t13",
14634
+ "id": "VariableID:62472:7",
14635
+ "remote": false,
14636
+ "key": "59e47f16abe04be510a235a69014b408e154ff3a",
14637
+ "variableCollectionId": "VariableCollectionId:1:197",
14638
+ "resolvedType": "FLOAT",
14639
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14640
+ "hiddenFromPublishing": false,
14641
+ "valuesByMode": {
14642
+ "1:5": 40,
14643
+ "1:6": 53,
14644
+ "1:7": 35,
14645
+ "1:8": 40,
14646
+ "51907:0": 40,
14647
+ "62468:0": 35
14648
+ },
14649
+ "scopes": [
14650
+ "FONT_SIZE"
14651
+ ],
14652
+ "codeSyntax": {}
14653
+ },
14654
+ "VariableID:62476:15": {
14655
+ "name": "font-size/t13-static",
14656
+ "id": "VariableID:62476:15",
14657
+ "remote": false,
14658
+ "key": "b96e169bb2bee076af0a08323544e561f49c04e1",
14659
+ "variableCollectionId": "VariableCollectionId:1:197",
14660
+ "resolvedType": "FLOAT",
14661
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14662
+ "hiddenFromPublishing": false,
14663
+ "valuesByMode": {
14664
+ "1:5": 40,
14665
+ "1:6": 40,
14666
+ "1:7": 40,
14667
+ "1:8": 40,
14668
+ "51907:0": 40,
14669
+ "62468:0": 40
14670
+ },
14671
+ "scopes": [
14672
+ "FONT_SIZE"
14673
+ ],
14674
+ "codeSyntax": {}
14675
+ },
14676
+ "VariableID:62472:8": {
14677
+ "name": "font-size/t14",
14678
+ "id": "VariableID:62472:8",
14679
+ "remote": false,
14680
+ "key": "b5f8c29e5c6634fdb76775de9b17f3f8dd133d7b",
14681
+ "variableCollectionId": "VariableCollectionId:1:197",
14682
+ "resolvedType": "FLOAT",
14683
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14684
+ "hiddenFromPublishing": false,
14685
+ "valuesByMode": {
14686
+ "1:5": 48,
14687
+ "1:6": 63,
14688
+ "1:7": 41,
14689
+ "1:8": 48,
14690
+ "51907:0": 48,
14691
+ "62468:0": 41
14692
+ },
14693
+ "scopes": [
14694
+ "FONT_SIZE"
14695
+ ],
14696
+ "codeSyntax": {}
14697
+ },
14698
+ "VariableID:62476:16": {
14699
+ "name": "font-size/t14-static",
14700
+ "id": "VariableID:62476:16",
14701
+ "remote": false,
14702
+ "key": "6cc1ef8cf0a807be4a7765a5387a1d1efa1cb732",
14703
+ "variableCollectionId": "VariableCollectionId:1:197",
14704
+ "resolvedType": "FLOAT",
14705
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14706
+ "hiddenFromPublishing": false,
14707
+ "valuesByMode": {
14708
+ "1:5": 48,
14709
+ "1:6": 48,
14710
+ "1:7": 48,
14711
+ "1:8": 48,
14712
+ "51907:0": 48,
14713
+ "62468:0": 48
14714
+ },
14715
+ "scopes": [
14716
+ "FONT_SIZE"
14717
+ ],
14718
+ "codeSyntax": {}
14719
+ },
14720
+ "VariableID:1:203": {
14721
+ "name": "font-size/t2",
14722
+ "id": "VariableID:1:203",
14723
+ "remote": false,
14724
+ "key": "ea3f6b0284e7ffc3e0a6e1ef6d9968ccbacf5f00",
14725
+ "variableCollectionId": "VariableCollectionId:1:197",
14726
+ "resolvedType": "FLOAT",
14727
+ "description": "",
14728
+ "hiddenFromPublishing": false,
14729
+ "valuesByMode": {
14730
+ "1:5": 12,
14731
+ "1:6": 16,
14732
+ "1:7": 10,
14733
+ "1:8": 12,
14734
+ "51907:0": 18,
14735
+ "62468:0": 10
14736
+ },
14737
+ "scopes": [
14738
+ "FONT_SIZE"
14739
+ ],
14740
+ "codeSyntax": {}
14741
+ },
14742
+ "VariableID:1:204": {
14743
+ "name": "font-size/t3",
14744
+ "id": "VariableID:1:204",
14745
+ "remote": false,
14746
+ "key": "bc6d4dc5395f878019227868a7921448342cf7a7",
14747
+ "variableCollectionId": "VariableCollectionId:1:197",
14748
+ "resolvedType": "FLOAT",
14749
+ "description": "",
14750
+ "hiddenFromPublishing": false,
14751
+ "valuesByMode": {
14752
+ "1:5": 13,
14753
+ "1:6": 17,
14310
14754
  "1:7": 11,
14755
+ "1:8": 13,
14756
+ "51907:0": 20,
14757
+ "62468:0": 11
14758
+ },
14759
+ "scopes": [
14760
+ "FONT_SIZE"
14761
+ ],
14762
+ "codeSyntax": {}
14763
+ },
14764
+ "VariableID:1:205": {
14765
+ "name": "font-size/t4",
14766
+ "id": "VariableID:1:205",
14767
+ "remote": false,
14768
+ "key": "3e6ac961714d3bb5f576520364c90a2058cafdf0",
14769
+ "variableCollectionId": "VariableCollectionId:1:197",
14770
+ "resolvedType": "FLOAT",
14771
+ "description": "",
14772
+ "hiddenFromPublishing": false,
14773
+ "valuesByMode": {
14774
+ "1:5": 14,
14775
+ "1:6": 18,
14776
+ "1:7": 12,
14311
14777
  "1:8": 14,
14312
- "51907:0": 21
14778
+ "51907:0": 22,
14779
+ "62468:0": 12
14313
14780
  },
14314
14781
  "scopes": [
14315
14782
  "FONT_SIZE"
@@ -14327,10 +14794,11 @@ const FIGMA_VARIABLES = {
14327
14794
  "hiddenFromPublishing": false,
14328
14795
  "valuesByMode": {
14329
14796
  "1:5": 16,
14330
- "1:6": 22,
14331
- "1:7": 13,
14797
+ "1:6": 21,
14798
+ "1:7": 14,
14332
14799
  "1:8": 16,
14333
- "51907:0": 24
14800
+ "51907:0": 23,
14801
+ "62468:0": 14
14334
14802
  },
14335
14803
  "scopes": [
14336
14804
  "FONT_SIZE"
@@ -14349,9 +14817,10 @@ const FIGMA_VARIABLES = {
14349
14817
  "valuesByMode": {
14350
14818
  "1:5": 18,
14351
14819
  "1:6": 24,
14352
- "1:7": 15,
14820
+ "1:7": 16,
14353
14821
  "1:8": 18,
14354
- "51907:0": 27
14822
+ "51907:0": 24,
14823
+ "62468:0": 16
14355
14824
  },
14356
14825
  "scopes": [
14357
14826
  "FONT_SIZE"
@@ -14372,7 +14841,8 @@ const FIGMA_VARIABLES = {
14372
14841
  "1:6": 26,
14373
14842
  "1:7": 17,
14374
14843
  "1:8": 20,
14375
- "51907:0": 30
14844
+ "51907:0": 26,
14845
+ "62468:0": 17
14376
14846
  },
14377
14847
  "scopes": [
14378
14848
  "FONT_SIZE"
@@ -14390,10 +14860,11 @@ const FIGMA_VARIABLES = {
14390
14860
  "hiddenFromPublishing": false,
14391
14861
  "valuesByMode": {
14392
14862
  "1:5": 22,
14393
- "1:6": 28,
14863
+ "1:6": 29,
14394
14864
  "1:7": 19,
14395
14865
  "1:8": 22,
14396
- "51907:0": 33
14866
+ "51907:0": 27,
14867
+ "62468:0": 19
14397
14868
  },
14398
14869
  "scopes": [
14399
14870
  "FONT_SIZE"
@@ -14411,10 +14882,11 @@ const FIGMA_VARIABLES = {
14411
14882
  "hiddenFromPublishing": false,
14412
14883
  "valuesByMode": {
14413
14884
  "1:5": 24,
14414
- "1:6": 30,
14885
+ "1:6": 32,
14415
14886
  "1:7": 21,
14416
14887
  "1:8": 24,
14417
- "51907:0": 36
14888
+ "51907:0": 28,
14889
+ "62468:0": 21
14418
14890
  },
14419
14891
  "scopes": [
14420
14892
  "FONT_SIZE"
@@ -14435,7 +14907,8 @@ const FIGMA_VARIABLES = {
14435
14907
  "1:6": "bold",
14436
14908
  "1:7": "bold",
14437
14909
  "1:8": "bold",
14438
- "51907:0": "bold"
14910
+ "51907:0": "bold",
14911
+ "62468:0": "bold"
14439
14912
  },
14440
14913
  "scopes": [
14441
14914
  "FONT_STYLE"
@@ -14456,7 +14929,8 @@ const FIGMA_VARIABLES = {
14456
14929
  "1:6": "medium",
14457
14930
  "1:7": "medium",
14458
14931
  "1:8": "medium",
14459
- "51907:0": "medium"
14932
+ "51907:0": "medium",
14933
+ "62468:0": "medium"
14460
14934
  },
14461
14935
  "scopes": [
14462
14936
  "FONT_STYLE"
@@ -14477,7 +14951,8 @@ const FIGMA_VARIABLES = {
14477
14951
  "1:6": "regular",
14478
14952
  "1:7": "regular",
14479
14953
  "1:8": "regular",
14480
- "51907:0": "regular"
14954
+ "51907:0": "regular",
14955
+ "62468:0": "regular"
14481
14956
  },
14482
14957
  "scopes": [
14483
14958
  "FONT_STYLE"
@@ -14498,7 +14973,8 @@ const FIGMA_VARIABLES = {
14498
14973
  "1:6": 36,
14499
14974
  "1:7": 27,
14500
14975
  "1:8": 30,
14501
- "51907:0": 30
14976
+ "51907:0": 30,
14977
+ "62468:0": 30
14502
14978
  },
14503
14979
  "scopes": [
14504
14980
  "LINE_HEIGHT"
@@ -14517,10 +14993,11 @@ const FIGMA_VARIABLES = {
14517
14993
  "hiddenFromPublishing": false,
14518
14994
  "valuesByMode": {
14519
14995
  "1:5": 15,
14520
- "1:6": 19,
14521
- "1:7": 10,
14996
+ "1:6": 20,
14997
+ "1:7": 13,
14522
14998
  "1:8": 15,
14523
- "51907:0": 22.5
14999
+ "51907:0": 22.5,
15000
+ "62468:0": 13
14524
15001
  },
14525
15002
  "scopes": [
14526
15003
  "LINE_HEIGHT"
@@ -14538,10 +15015,11 @@ const FIGMA_VARIABLES = {
14538
15015
  "hiddenFromPublishing": false,
14539
15016
  "valuesByMode": {
14540
15017
  "1:5": 35,
14541
- "1:6": 40,
14542
- "1:7": 31,
15018
+ "1:6": 46,
15019
+ "1:7": 30,
14543
15020
  "1:8": 35,
14544
- "51907:0": 52.5
15021
+ "51907:0": 35,
15022
+ "62468:0": 30
14545
15023
  },
14546
15024
  "scopes": [
14547
15025
  "LINE_HEIGHT"
@@ -14562,10 +15040,187 @@ const FIGMA_VARIABLES = {
14562
15040
  "1:6": 35,
14563
15041
  "1:7": 35,
14564
15042
  "1:8": 35,
14565
- "51907:0": 35
15043
+ "51907:0": 35,
15044
+ "62468:0": 35
14566
15045
  },
14567
15046
  "scopes": [
14568
- "FONT_SIZE"
15047
+ "LINE_HEIGHT"
15048
+ ],
15049
+ "codeSyntax": {}
15050
+ },
15051
+ "VariableID:62472:9": {
15052
+ "name": "line-height/t11",
15053
+ "id": "VariableID:62472:9",
15054
+ "remote": false,
15055
+ "key": "89e04793b4b7e39331fedb38362d822718c87acd",
15056
+ "variableCollectionId": "VariableCollectionId:1:197",
15057
+ "resolvedType": "FLOAT",
15058
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15059
+ "hiddenFromPublishing": false,
15060
+ "valuesByMode": {
15061
+ "1:5": 38,
15062
+ "1:6": 50,
15063
+ "1:7": 33,
15064
+ "1:8": 38,
15065
+ "51907:0": 38,
15066
+ "62468:0": 33
15067
+ },
15068
+ "scopes": [
15069
+ "LINE_HEIGHT"
15070
+ ],
15071
+ "codeSyntax": {}
15072
+ },
15073
+ "VariableID:62476:17": {
15074
+ "name": "line-height/t11-static",
15075
+ "id": "VariableID:62476:17",
15076
+ "remote": false,
15077
+ "key": "acc664c45622b6656965d7211f556484a93f3169",
15078
+ "variableCollectionId": "VariableCollectionId:1:197",
15079
+ "resolvedType": "FLOAT",
15080
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15081
+ "hiddenFromPublishing": false,
15082
+ "valuesByMode": {
15083
+ "1:5": 38,
15084
+ "1:6": 38,
15085
+ "1:7": 38,
15086
+ "1:8": 38,
15087
+ "51907:0": 38,
15088
+ "62468:0": 38
15089
+ },
15090
+ "scopes": [
15091
+ "LINE_HEIGHT"
15092
+ ],
15093
+ "codeSyntax": {}
15094
+ },
15095
+ "VariableID:62472:10": {
15096
+ "name": "line-height/t12",
15097
+ "id": "VariableID:62472:10",
15098
+ "remote": false,
15099
+ "key": "e2270c2ee82cb86f8128de21a66e52112b646f2c",
15100
+ "variableCollectionId": "VariableCollectionId:1:197",
15101
+ "resolvedType": "FLOAT",
15102
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15103
+ "hiddenFromPublishing": false,
15104
+ "valuesByMode": {
15105
+ "1:5": 42,
15106
+ "1:6": 55,
15107
+ "1:7": 36,
15108
+ "1:8": 42,
15109
+ "51907:0": 42,
15110
+ "62468:0": 36
15111
+ },
15112
+ "scopes": [
15113
+ "LINE_HEIGHT"
15114
+ ],
15115
+ "codeSyntax": {}
15116
+ },
15117
+ "VariableID:62476:18": {
15118
+ "name": "line-height/t12-static",
15119
+ "id": "VariableID:62476:18",
15120
+ "remote": false,
15121
+ "key": "d07735edf82009980756985967ba030d2cb4122f",
15122
+ "variableCollectionId": "VariableCollectionId:1:197",
15123
+ "resolvedType": "FLOAT",
15124
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15125
+ "hiddenFromPublishing": false,
15126
+ "valuesByMode": {
15127
+ "1:5": 42,
15128
+ "1:6": 42,
15129
+ "1:7": 42,
15130
+ "1:8": 42,
15131
+ "51907:0": 42,
15132
+ "62468:0": 42
15133
+ },
15134
+ "scopes": [
15135
+ "LINE_HEIGHT"
15136
+ ],
15137
+ "codeSyntax": {}
15138
+ },
15139
+ "VariableID:62472:11": {
15140
+ "name": "line-height/t13",
15141
+ "id": "VariableID:62472:11",
15142
+ "remote": false,
15143
+ "key": "b210b31f1274150a48b1874db4c076a39fee3d3e",
15144
+ "variableCollectionId": "VariableCollectionId:1:197",
15145
+ "resolvedType": "FLOAT",
15146
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15147
+ "hiddenFromPublishing": false,
15148
+ "valuesByMode": {
15149
+ "1:5": 52,
15150
+ "1:6": 69,
15151
+ "1:7": 45,
15152
+ "1:8": 52,
15153
+ "51907:0": 52,
15154
+ "62468:0": 45
15155
+ },
15156
+ "scopes": [
15157
+ "LINE_HEIGHT"
15158
+ ],
15159
+ "codeSyntax": {}
15160
+ },
15161
+ "VariableID:62476:19": {
15162
+ "name": "line-height/t13-static",
15163
+ "id": "VariableID:62476:19",
15164
+ "remote": false,
15165
+ "key": "8715c03818edfadb6048ac375e7f9ca13e8e5efa",
15166
+ "variableCollectionId": "VariableCollectionId:1:197",
15167
+ "resolvedType": "FLOAT",
15168
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15169
+ "hiddenFromPublishing": false,
15170
+ "valuesByMode": {
15171
+ "1:5": 52,
15172
+ "1:6": 52,
15173
+ "1:7": 52,
15174
+ "1:8": 52,
15175
+ "51907:0": 52,
15176
+ "62468:0": 52
15177
+ },
15178
+ "scopes": [
15179
+ "LINE_HEIGHT"
15180
+ ],
15181
+ "codeSyntax": {}
15182
+ },
15183
+ "VariableID:62472:12": {
15184
+ "name": "line-height/t14",
15185
+ "id": "VariableID:62472:12",
15186
+ "remote": false,
15187
+ "key": "5ea22e5d70b679313c0cb0a09d445f1157b0a7d7",
15188
+ "variableCollectionId": "VariableCollectionId:1:197",
15189
+ "resolvedType": "FLOAT",
15190
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15191
+ "hiddenFromPublishing": false,
15192
+ "valuesByMode": {
15193
+ "1:5": 60,
15194
+ "1:6": 79,
15195
+ "1:7": 52,
15196
+ "1:8": 60,
15197
+ "51907:0": 60,
15198
+ "62468:0": 52
15199
+ },
15200
+ "scopes": [
15201
+ "LINE_HEIGHT"
15202
+ ],
15203
+ "codeSyntax": {}
15204
+ },
15205
+ "VariableID:62476:20": {
15206
+ "name": "line-height/t14-static",
15207
+ "id": "VariableID:62476:20",
15208
+ "remote": false,
15209
+ "key": "65bf38bfd71e74b161767b5a665028eaad679bb1",
15210
+ "variableCollectionId": "VariableCollectionId:1:197",
15211
+ "resolvedType": "FLOAT",
15212
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15213
+ "hiddenFromPublishing": false,
15214
+ "valuesByMode": {
15215
+ "1:5": 60,
15216
+ "1:6": 60,
15217
+ "1:7": 60,
15218
+ "1:8": 60,
15219
+ "51907:0": 60,
15220
+ "62468:0": 60
15221
+ },
15222
+ "scopes": [
15223
+ "LINE_HEIGHT"
14569
15224
  ],
14570
15225
  "codeSyntax": {}
14571
15226
  },
@@ -14580,10 +15235,11 @@ const FIGMA_VARIABLES = {
14580
15235
  "hiddenFromPublishing": false,
14581
15236
  "valuesByMode": {
14582
15237
  "1:5": 16,
14583
- "1:6": 22,
14584
- "1:7": 13,
15238
+ "1:6": 21,
15239
+ "1:7": 14,
14585
15240
  "1:8": 16,
14586
- "51907:0": 24
15241
+ "51907:0": 23,
15242
+ "62468:0": 14
14587
15243
  },
14588
15244
  "scopes": [
14589
15245
  "LINE_HEIGHT"
@@ -14602,9 +15258,10 @@ const FIGMA_VARIABLES = {
14602
15258
  "valuesByMode": {
14603
15259
  "1:5": 18,
14604
15260
  "1:6": 24,
14605
- "1:7": 15,
15261
+ "1:7": 16,
14606
15262
  "1:8": 18,
14607
- "51907:0": 27
15263
+ "51907:0": 24,
15264
+ "62468:0": 16
14608
15265
  },
14609
15266
  "scopes": [
14610
15267
  "LINE_HEIGHT"
@@ -14625,7 +15282,8 @@ const FIGMA_VARIABLES = {
14625
15282
  "1:6": 25,
14626
15283
  "1:7": 16,
14627
15284
  "1:8": 19,
14628
- "51907:0": 28.5
15285
+ "51907:0": 25,
15286
+ "62468:0": 16
14629
15287
  },
14630
15288
  "scopes": [
14631
15289
  "LINE_HEIGHT"
@@ -14643,10 +15301,11 @@ const FIGMA_VARIABLES = {
14643
15301
  "hiddenFromPublishing": false,
14644
15302
  "valuesByMode": {
14645
15303
  "1:5": 22,
14646
- "1:6": 27,
14647
- "1:7": 18,
15304
+ "1:6": 29,
15305
+ "1:7": 19,
14648
15306
  "1:8": 22,
14649
- "51907:0": 33
15307
+ "51907:0": 27,
15308
+ "62468:0": 19
14650
15309
  },
14651
15310
  "scopes": [
14652
15311
  "LINE_HEIGHT"
@@ -14664,10 +15323,11 @@ const FIGMA_VARIABLES = {
14664
15323
  "hiddenFromPublishing": false,
14665
15324
  "valuesByMode": {
14666
15325
  "1:5": 24,
14667
- "1:6": 29,
14668
- "1:7": 20,
15326
+ "1:6": 32,
15327
+ "1:7": 21,
14669
15328
  "1:8": 24,
14670
- "51907:0": 36
15329
+ "51907:0": 28,
15330
+ "62468:0": 21
14671
15331
  },
14672
15332
  "scopes": [
14673
15333
  "LINE_HEIGHT"
@@ -14685,10 +15345,11 @@ const FIGMA_VARIABLES = {
14685
15345
  "hiddenFromPublishing": false,
14686
15346
  "valuesByMode": {
14687
15347
  "1:5": 27,
14688
- "1:6": 31,
14689
- "1:7": 22,
15348
+ "1:6": 36,
15349
+ "1:7": 23,
14690
15350
  "1:8": 27,
14691
- "51907:0": 40.5
15351
+ "51907:0": 29,
15352
+ "62468:0": 23
14692
15353
  },
14693
15354
  "scopes": [
14694
15355
  "LINE_HEIGHT"
@@ -14706,10 +15367,11 @@ const FIGMA_VARIABLES = {
14706
15367
  "hiddenFromPublishing": false,
14707
15368
  "valuesByMode": {
14708
15369
  "1:5": 30,
14709
- "1:6": 34,
14710
- "1:7": 25,
15370
+ "1:6": 40,
15371
+ "1:7": 26,
14711
15372
  "1:8": 30,
14712
- "51907:0": 45
15373
+ "51907:0": 30,
15374
+ "62468:0": 26
14713
15375
  },
14714
15376
  "scopes": [
14715
15377
  "LINE_HEIGHT"
@@ -14727,10 +15389,11 @@ const FIGMA_VARIABLES = {
14727
15389
  "hiddenFromPublishing": false,
14728
15390
  "valuesByMode": {
14729
15391
  "1:5": 32,
14730
- "1:6": 38,
14731
- "1:7": 29,
15392
+ "1:6": 42,
15393
+ "1:7": 28,
14732
15394
  "1:8": 32,
14733
- "51907:0": 48
15395
+ "51907:0": 32,
15396
+ "62468:0": 28
14734
15397
  },
14735
15398
  "scopes": [
14736
15399
  "LINE_HEIGHT"
@@ -15311,7 +15974,8 @@ const FIGMA_VARIABLES = {
15311
15974
  "1:6": "iOS",
15312
15975
  "1:7": "iOS",
15313
15976
  "1:8": "Android",
15314
- "51907:0": "Android"
15977
+ "51907:0": "Android",
15978
+ "62468:0": "Android"
15315
15979
  },
15316
15980
  "scopes": [
15317
15981
  "ALL_SCOPES"
@@ -18700,44 +19364,9 @@ const FIGMA_VARIABLES = {
18700
19364
  }
18701
19365
  };
18702
19366
 
18703
- const privateTemplateAttachmentField = {
18704
- "name": "privateTemplateAttachmentField",
18705
- "key": "5ba20e248e9cd0292fc285488b2ed3b3145d37b0",
18706
- "componentPropertyDefinitions": {
18707
- "Show Header#40606:8": {
18708
- "type": "BOOLEAN"
18709
- },
18710
- "Show Footer#40606:9": {
18711
- "type": "BOOLEAN"
18712
- },
18713
- "Type": {
18714
- "type": "VARIANT",
18715
- "variantOptions": [
18716
- "Media",
18717
- "File"
18718
- ]
18719
- },
18720
- "State": {
18721
- "type": "VARIANT",
18722
- "variantOptions": [
18723
- "Enabled",
18724
- "Error",
18725
- "Disabled",
18726
- "Read Only"
18727
- ]
18728
- },
18729
- "Has Value": {
18730
- "type": "VARIANT",
18731
- "variantOptions": [
18732
- "False",
18733
- "True"
18734
- ]
18735
- }
18736
- }
18737
- };
18738
- const privateTemplateChipGroupField = {
18739
- "name": "privateTemplateChipGroupField",
18740
- "key": "b6e9378d9ac76f812121d6aa7264cc38d2310e39",
19367
+ const privateComponentChipGroupField = {
19368
+ "name": "privateComponentChipGroupField",
19369
+ "key": "3b202396b4eb4486b5f2181c97d6576ebae94250",
18741
19370
  "componentPropertyDefinitions": {
18742
19371
  "Show Header#40606:8": {
18743
19372
  "type": "BOOLEAN"
@@ -18756,9 +19385,9 @@ const privateTemplateChipGroupField = {
18756
19385
  }
18757
19386
  }
18758
19387
  };
18759
- const privateTemplatePhoneNumberField = {
18760
- "name": "privateTemplatePhoneNumberField",
18761
- "key": "b9c5726a5d6d25938fcc2b84281a3a0f513c7495",
19388
+ const privateComponentPhoneNumberField = {
19389
+ "name": "privateComponentPhoneNumberField",
19390
+ "key": "1aa9cf6ca847087540f16568c9ca86a07fafaf9b",
18762
19391
  "componentPropertyDefinitions": {
18763
19392
  "Show Header#40606:8": {
18764
19393
  "type": "BOOLEAN"
@@ -18785,9 +19414,9 @@ const privateTemplatePhoneNumberField = {
18785
19414
  }
18786
19415
  }
18787
19416
  };
18788
- const privateTemplatePinField = {
18789
- "name": "privateTemplatePinField",
18790
- "key": "0abee679553f912b4cbe9839d048cc64494a3b51",
19417
+ const privateComponentPinField = {
19418
+ "name": "privateComponentPinField",
19419
+ "key": "7e11c6342399819db16b85e947c6d1aae4e8a442",
18791
19420
  "componentPropertyDefinitions": {
18792
19421
  "Show Header#40606:8": {
18793
19422
  "type": "BOOLEAN"
@@ -18851,10 +19480,13 @@ const privateComponentBottomSheetHandle = {
18851
19480
  }
18852
19481
  }
18853
19482
  };
18854
- const privateTemplateChipGroup = {
18855
- "name": "privateTemplateChipGroup",
18856
- "key": "a6819019971fb8f472a4c07f6952014393da1859",
19483
+ const privateComponentChipGroup = {
19484
+ "name": "privateComponentChipGroup",
19485
+ "key": "3838d772ac3c7504d976b2f386ce521efe69d08f",
18857
19486
  "componentPropertyDefinitions": {
19487
+ "Chip Group#12261:81": {
19488
+ "type": "SLOT"
19489
+ },
18858
19490
  "Layout": {
18859
19491
  "type": "VARIANT",
18860
19492
  "variantOptions": [
@@ -18970,6 +19602,13 @@ const privateComponentInputButtonPrefix = {
18970
19602
  "Icon#34021:2": {
18971
19603
  "type": "INSTANCE_SWAP"
18972
19604
  },
19605
+ "Size": {
19606
+ "type": "VARIANT",
19607
+ "variantOptions": [
19608
+ "Large",
19609
+ "Medium"
19610
+ ]
19611
+ },
18973
19612
  "Type": {
18974
19613
  "type": "VARIANT",
18975
19614
  "variantOptions": [
@@ -18989,6 +19628,13 @@ const privateComponentInputButtonSuffix = {
18989
19628
  "Icon#37963:0": {
18990
19629
  "type": "INSTANCE_SWAP"
18991
19630
  },
19631
+ "Size": {
19632
+ "type": "VARIANT",
19633
+ "variantOptions": [
19634
+ "Large",
19635
+ "Medium"
19636
+ ]
19637
+ },
18992
19638
  "Type (Figma Only)": {
18993
19639
  "type": "VARIANT",
18994
19640
  "variantOptions": [
@@ -19012,6 +19658,13 @@ const privateComponentInputButtonValue = {
19012
19658
  "Placeholder Text#34067:2": {
19013
19659
  "type": "TEXT"
19014
19660
  },
19661
+ "Size": {
19662
+ "type": "VARIANT",
19663
+ "variantOptions": [
19664
+ "Large",
19665
+ "Medium"
19666
+ ]
19667
+ },
19015
19668
  "Value": {
19016
19669
  "type": "VARIANT",
19017
19670
  "variantOptions": [
@@ -19031,12 +19684,16 @@ const privateComponentInputButtonValueDisabled = {
19031
19684
  "Value Text#34067:0": {
19032
19685
  "type": "TEXT"
19033
19686
  },
19034
- "Clear Button#34067:1": {
19035
- "type": "BOOLEAN"
19036
- },
19037
19687
  "Placeholder Text#34067:2": {
19038
19688
  "type": "TEXT"
19039
19689
  },
19690
+ "Size": {
19691
+ "type": "VARIANT",
19692
+ "variantOptions": [
19693
+ "Large",
19694
+ "Medium"
19695
+ ]
19696
+ },
19040
19697
  "Value": {
19041
19698
  "type": "VARIANT",
19042
19699
  "variantOptions": [
@@ -19056,20 +19713,24 @@ const privateComponentInputButtonValueReadOnly = {
19056
19713
  "Value Text#34067:0": {
19057
19714
  "type": "TEXT"
19058
19715
  },
19059
- "Clear Button#34067:1": {
19060
- "type": "BOOLEAN"
19061
- },
19062
19716
  "Placeholder Text#34067:2": {
19063
19717
  "type": "TEXT"
19064
19718
  },
19719
+ "Size": {
19720
+ "type": "VARIANT",
19721
+ "variantOptions": [
19722
+ "Large",
19723
+ "Medium"
19724
+ ]
19725
+ },
19065
19726
  "Value": {
19066
19727
  "type": "VARIANT",
19067
19728
  "variantOptions": [
19068
- "Custom (Figma Only)",
19069
- "Chips-Overflow (Figma Only)",
19070
- "Chips-Scrollable (Figma Only)",
19729
+ "Empty",
19071
19730
  "Text",
19072
- "Empty"
19731
+ "Chips-Scrollable (Figma Only)",
19732
+ "Chips-Overflow (Figma Only)",
19733
+ "Custom (Figma Only)"
19073
19734
  ]
19074
19735
  }
19075
19736
  }
@@ -19413,9 +20074,9 @@ const privateComponentRootTopNavigationIconButton = {
19413
20074
  }
19414
20075
  }
19415
20076
  };
19416
- const privateTemplateRootTopNavigationPreset = {
19417
- "name": "privateTemplateRootTopNavigationPreset",
19418
- "key": "524bbc05ea9fb5910d36618720ea82d96d8f211f",
20077
+ const privateComponentRootTopNavigationPreset = {
20078
+ "name": "privateComponentRootTopNavigationPreset",
20079
+ "key": "26e1de69cbbed91a577b0c962a92ebab2621bf5f",
19419
20080
  "componentPropertyDefinitions": {
19420
20081
  "Tab": {
19421
20082
  "type": "VARIANT",
@@ -19766,8 +20427,8 @@ const privateComponentTabsChip = {
19766
20427
  "name": "privateComponentTabsChip",
19767
20428
  "key": "16bd9efbd95f4b5fa3dfe31c2e1acf4e8a88f6a5",
19768
20429
  "componentPropertyDefinitions": {
19769
- "Show Scroll Fog(Figma Only)#53171:9": {
19770
- "type": "BOOLEAN"
20430
+ "Container#12286:101": {
20431
+ "type": "SLOT"
19771
20432
  },
19772
20433
  "Size": {
19773
20434
  "type": "VARIANT",
@@ -19789,8 +20450,8 @@ const privateComponentTabsLine = {
19789
20450
  "name": "privateComponentTabsLine",
19790
20451
  "key": "e5bf0d2582100280b410415b9d8742202edbb45c",
19791
20452
  "componentPropertyDefinitions": {
19792
- "Show Scroll Fog(Figma Only)#53171:14": {
19793
- "type": "BOOLEAN"
20453
+ "Container#12286:96": {
20454
+ "type": "SLOT"
19794
20455
  },
19795
20456
  "Size": {
19796
20457
  "type": "VARIANT",
@@ -19811,24 +20472,7 @@ const privateComponentTabsLine = {
19811
20472
  const privateComponentTextInputCardNumberInput = {
19812
20473
  "name": "privateComponentTextInputCardNumberInput",
19813
20474
  "key": "60888e1eba691721f0ec6a41df43c1c075e5beac",
19814
- "componentPropertyDefinitions": {
19815
- "Clear Button#34067:1": {
19816
- "type": "BOOLEAN"
19817
- },
19818
- "Has Value": {
19819
- "type": "VARIANT",
19820
- "variantOptions": [
19821
- "false",
19822
- "true"
19823
- ]
19824
- },
19825
- "Variant": {
19826
- "type": "VARIANT",
19827
- "variantOptions": [
19828
- "Plain Text"
19829
- ]
19830
- }
19831
- }
20475
+ "componentPropertyDefinitions": {}
19832
20476
  };
19833
20477
  const privateComponentTextInputIdNumberInput = {
19834
20478
  "name": "privateComponentTextInputIdNumberInput",
@@ -19840,6 +20484,13 @@ const privateComponentTextInputIdNumberInput = {
19840
20484
  "Clear Button#34067:1": {
19841
20485
  "type": "BOOLEAN"
19842
20486
  },
20487
+ "Size": {
20488
+ "type": "VARIANT",
20489
+ "variantOptions": [
20490
+ "Large",
20491
+ "Medium"
20492
+ ]
20493
+ },
19843
20494
  "Has Value": {
19844
20495
  "type": "VARIANT",
19845
20496
  "variantOptions": [
@@ -19859,18 +20510,25 @@ const privateComponentTextInputInput = {
19859
20510
  "name": "privateComponentTextInputInput",
19860
20511
  "key": "c030fb7107795ad42b4b2eea454b05fb4b4c9ac7",
19861
20512
  "componentPropertyDefinitions": {
20513
+ "Show Clear Button#11049:0": {
20514
+ "type": "BOOLEAN"
20515
+ },
19862
20516
  "Value Text#34067:0": {
19863
20517
  "type": "TEXT"
19864
20518
  },
19865
- "Clear Button#34067:1": {
19866
- "type": "BOOLEAN"
19867
- },
19868
20519
  "Placeholder Text#34067:2": {
19869
20520
  "type": "TEXT"
19870
20521
  },
19871
20522
  "Show Cursor (Figma Only)#53584:0": {
19872
20523
  "type": "BOOLEAN"
19873
20524
  },
20525
+ "Size": {
20526
+ "type": "VARIANT",
20527
+ "variantOptions": [
20528
+ "Large",
20529
+ "Medium"
20530
+ ]
20531
+ },
19874
20532
  "Has Value": {
19875
20533
  "type": "VARIANT",
19876
20534
  "variantOptions": [
@@ -19887,12 +20545,16 @@ const privateComponentTextInputInputDisabled = {
19887
20545
  "Value Text#34067:0": {
19888
20546
  "type": "TEXT"
19889
20547
  },
19890
- "Clear Button#34067:1": {
19891
- "type": "BOOLEAN"
19892
- },
19893
20548
  "Placeholder Text#34067:2": {
19894
20549
  "type": "TEXT"
19895
20550
  },
20551
+ "Size": {
20552
+ "type": "VARIANT",
20553
+ "variantOptions": [
20554
+ "Large",
20555
+ "Medium"
20556
+ ]
20557
+ },
19896
20558
  "Has Value": {
19897
20559
  "type": "VARIANT",
19898
20560
  "variantOptions": [
@@ -19909,12 +20571,16 @@ const privateComponentTextInputInputReadOnly = {
19909
20571
  "Value Text#34067:0": {
19910
20572
  "type": "TEXT"
19911
20573
  },
19912
- "Clear Button#34067:1": {
19913
- "type": "BOOLEAN"
19914
- },
19915
20574
  "Placeholder Text#34067:2": {
19916
20575
  "type": "TEXT"
19917
20576
  },
20577
+ "Size": {
20578
+ "type": "VARIANT",
20579
+ "variantOptions": [
20580
+ "Large",
20581
+ "Medium"
20582
+ ]
20583
+ },
19918
20584
  "Has Value": {
19919
20585
  "type": "VARIANT",
19920
20586
  "variantOptions": [
@@ -19931,6 +20597,13 @@ const privateComponentTextInputPrefix = {
19931
20597
  "Icon#34021:2": {
19932
20598
  "type": "INSTANCE_SWAP"
19933
20599
  },
20600
+ "Size": {
20601
+ "type": "VARIANT",
20602
+ "variantOptions": [
20603
+ "Medium",
20604
+ "Large"
20605
+ ]
20606
+ },
19934
20607
  "Type": {
19935
20608
  "type": "VARIANT",
19936
20609
  "variantOptions": [
@@ -19950,6 +20623,13 @@ const privateComponentTextInputSuffix = {
19950
20623
  "Icon#45391:0": {
19951
20624
  "type": "INSTANCE_SWAP"
19952
20625
  },
20626
+ "Size": {
20627
+ "type": "VARIANT",
20628
+ "variantOptions": [
20629
+ "Medium",
20630
+ "Large"
20631
+ ]
20632
+ },
19953
20633
  "Type (Figma Only)": {
19954
20634
  "type": "VARIANT",
19955
20635
  "variantOptions": [
@@ -19971,6 +20651,13 @@ const privateComponentTextareaInput = {
19971
20651
  "Placeholder Text#34067:2": {
19972
20652
  "type": "TEXT"
19973
20653
  },
20654
+ "Size": {
20655
+ "type": "VARIANT",
20656
+ "variantOptions": [
20657
+ "Large",
20658
+ "Medium"
20659
+ ]
20660
+ },
19974
20661
  "Has Value": {
19975
20662
  "type": "VARIANT",
19976
20663
  "variantOptions": [
@@ -19987,12 +20674,16 @@ const privateComponentTextareaInputDisabled = {
19987
20674
  "Value Text#34067:0": {
19988
20675
  "type": "TEXT"
19989
20676
  },
19990
- "Clear Button#34067:1": {
19991
- "type": "BOOLEAN"
19992
- },
19993
20677
  "Placeholder Text#34067:2": {
19994
20678
  "type": "TEXT"
19995
20679
  },
20680
+ "Size": {
20681
+ "type": "VARIANT",
20682
+ "variantOptions": [
20683
+ "Large",
20684
+ "Medium"
20685
+ ]
20686
+ },
19996
20687
  "Has Value": {
19997
20688
  "type": "VARIANT",
19998
20689
  "variantOptions": [
@@ -20009,12 +20700,16 @@ const privateComponentTextareaInputReadOnly = {
20009
20700
  "Value Text#34067:0": {
20010
20701
  "type": "TEXT"
20011
20702
  },
20012
- "Clear Button#34067:1": {
20013
- "type": "BOOLEAN"
20014
- },
20015
20703
  "Placeholder Text#34067:2": {
20016
20704
  "type": "TEXT"
20017
20705
  },
20706
+ "Size": {
20707
+ "type": "VARIANT",
20708
+ "variantOptions": [
20709
+ "Large",
20710
+ "Medium"
20711
+ ]
20712
+ },
20018
20713
  "Has Value": {
20019
20714
  "type": "VARIANT",
20020
20715
  "variantOptions": [
@@ -20095,7 +20790,7 @@ const privateComponentTopNavigationTitleLeft = {
20095
20790
  "variantOptions": [
20096
20791
  "Avatar",
20097
20792
  "Custom",
20098
- "Cutom Icon"
20793
+ "Custom Icon"
20099
20794
  ]
20100
20795
  }
20101
20796
  }
@@ -20122,6 +20817,9 @@ const privateComponentUnderlineTextInputInput = {
20122
20817
  "name": "privateComponentUnderlineTextInputInput",
20123
20818
  "key": "a8a39cf124e7b4c3b873429e81b4278639a7031b",
20124
20819
  "componentPropertyDefinitions": {
20820
+ "Show Clear Button#10972:0": {
20821
+ "type": "BOOLEAN"
20822
+ },
20125
20823
  "Value Text#34067:0": {
20126
20824
  "type": "TEXT"
20127
20825
  },
@@ -20131,6 +20829,13 @@ const privateComponentUnderlineTextInputInput = {
20131
20829
  "Show Cursor (Figma Only)#53584:3": {
20132
20830
  "type": "BOOLEAN"
20133
20831
  },
20832
+ "Size": {
20833
+ "type": "VARIANT",
20834
+ "variantOptions": [
20835
+ "Large",
20836
+ "Medium"
20837
+ ]
20838
+ },
20134
20839
  "Has Value": {
20135
20840
  "type": "VARIANT",
20136
20841
  "variantOptions": [
@@ -20147,12 +20852,16 @@ const privateComponentUnderlineTextInputInputDisabled = {
20147
20852
  "Value Text#34067:0": {
20148
20853
  "type": "TEXT"
20149
20854
  },
20150
- "Clear Button#34067:1": {
20151
- "type": "BOOLEAN"
20152
- },
20153
20855
  "Placeholder Text#34067:2": {
20154
20856
  "type": "TEXT"
20155
20857
  },
20858
+ "Size": {
20859
+ "type": "VARIANT",
20860
+ "variantOptions": [
20861
+ "Large",
20862
+ "Medium"
20863
+ ]
20864
+ },
20156
20865
  "Has Value": {
20157
20866
  "type": "VARIANT",
20158
20867
  "variantOptions": [
@@ -20169,12 +20878,16 @@ const privateComponentUnderlineTextInputInputReadOnly = {
20169
20878
  "Value Text#34067:0": {
20170
20879
  "type": "TEXT"
20171
20880
  },
20172
- "Clear Button#34067:1": {
20173
- "type": "BOOLEAN"
20174
- },
20175
20881
  "Placeholder Text#34067:2": {
20176
20882
  "type": "TEXT"
20177
20883
  },
20884
+ "Size": {
20885
+ "type": "VARIANT",
20886
+ "variantOptions": [
20887
+ "Large",
20888
+ "Medium"
20889
+ ]
20890
+ },
20178
20891
  "Has Value": {
20179
20892
  "type": "VARIANT",
20180
20893
  "variantOptions": [
@@ -20191,6 +20904,13 @@ const privateComponentUnderlineTextInputPrefix = {
20191
20904
  "Icon#34021:2": {
20192
20905
  "type": "INSTANCE_SWAP"
20193
20906
  },
20907
+ "Size": {
20908
+ "type": "VARIANT",
20909
+ "variantOptions": [
20910
+ "Large",
20911
+ "Medium"
20912
+ ]
20913
+ },
20194
20914
  "Type": {
20195
20915
  "type": "VARIANT",
20196
20916
  "variantOptions": [
@@ -20210,6 +20930,13 @@ const privateComponentUnderlineTextInputSuffix = {
20210
20930
  "Icon#45391:5": {
20211
20931
  "type": "INSTANCE_SWAP"
20212
20932
  },
20933
+ "Size": {
20934
+ "type": "VARIANT",
20935
+ "variantOptions": [
20936
+ "Large",
20937
+ "Medium"
20938
+ ]
20939
+ },
20213
20940
  "Type (Figma Only)": {
20214
20941
  "type": "VARIANT",
20215
20942
  "variantOptions": [
@@ -20295,9 +21022,67 @@ const componentDeprecatedActionSheet = {
20295
21022
  }
20296
21023
  }
20297
21024
  };
20298
- const templateDeprecatedChipGroup = {
20299
- "name": "templateDeprecatedChipGroup",
20300
- "key": "c6b8406eed754f43da93e17a1887ea331d168bdc",
21025
+ const componentDeprecatedChip = {
21026
+ "name": "componentDeprecatedChip",
21027
+ "key": "c947a926605cfd181998ddbb46554da84eebaab2",
21028
+ "componentPropertyDefinitions": {
21029
+ "Label#7185:0": {
21030
+ "type": "TEXT"
21031
+ },
21032
+ "Prefix Icon#8722:0": {
21033
+ "type": "INSTANCE_SWAP"
21034
+ },
21035
+ "Suffix Type#32538:0": {
21036
+ "type": "INSTANCE_SWAP"
21037
+ },
21038
+ "Has Suffix#32538:181": {
21039
+ "type": "BOOLEAN"
21040
+ },
21041
+ "Variant": {
21042
+ "type": "VARIANT",
21043
+ "variantOptions": [
21044
+ "Solid",
21045
+ "Outline Strong",
21046
+ "Outline Weak"
21047
+ ]
21048
+ },
21049
+ "Size": {
21050
+ "type": "VARIANT",
21051
+ "variantOptions": [
21052
+ "Large",
21053
+ "Medium",
21054
+ "Small"
21055
+ ]
21056
+ },
21057
+ "Selected": {
21058
+ "type": "VARIANT",
21059
+ "variantOptions": [
21060
+ "False",
21061
+ "True"
21062
+ ]
21063
+ },
21064
+ "State": {
21065
+ "type": "VARIANT",
21066
+ "variantOptions": [
21067
+ "Enabled",
21068
+ "Pressed",
21069
+ "Disabled"
21070
+ ]
21071
+ },
21072
+ "Prefix Type": {
21073
+ "type": "VARIANT",
21074
+ "variantOptions": [
21075
+ "None",
21076
+ "Icon",
21077
+ "Avatar",
21078
+ "Image"
21079
+ ]
21080
+ }
21081
+ }
21082
+ };
21083
+ const componentDeprecatedChipGroup = {
21084
+ "name": "componentDeprecatedChipGroup",
21085
+ "key": "0f2bfd4ee01f2bce58ebd7f4cc9332d0420e50fd",
20301
21086
  "componentPropertyDefinitions": {
20302
21087
  "Refresh Button#15888:2": {
20303
21088
  "type": "BOOLEAN"
@@ -20501,37 +21286,6 @@ const componentDeprecatedMultilineTextField = {
20501
21286
  }
20502
21287
  }
20503
21288
  };
20504
- const componentDeprecatedRangeSlider = {
20505
- "name": "componentDeprecatedRangeSlider",
20506
- "key": "acd9b25dba649748699d0a67f900857629d62e64",
20507
- "componentPropertyDefinitions": {
20508
- "Steps": {
20509
- "type": "VARIANT",
20510
- "variantOptions": [
20511
- "0",
20512
- "1",
20513
- "2",
20514
- "3",
20515
- "4"
20516
- ]
20517
- },
20518
- "State": {
20519
- "type": "VARIANT",
20520
- "variantOptions": [
20521
- "Enabled",
20522
- "Disabled"
20523
- ]
20524
- },
20525
- "Marker": {
20526
- "type": "VARIANT",
20527
- "variantOptions": [
20528
- "None",
20529
- "Min Max",
20530
- "All"
20531
- ]
20532
- }
20533
- }
20534
- };
20535
21289
  const componentDeprecatedSelectBox = {
20536
21290
  "name": "componentDeprecatedSelectBox",
20537
21291
  "key": "83d4bbb026d432c35f0b2c7b7b273eafdd28e1a1",
@@ -20569,56 +21323,25 @@ const componentDeprecatedSelectBox = {
20569
21323
  }
20570
21324
  };
20571
21325
  const componentDeprecatedSelectBoxGroup = {
20572
- "name": "componentDeprecatedSelectBoxGroup",
20573
- "key": "558248a78625c79a55953956531738e490bf38fd",
20574
- "componentPropertyDefinitions": {
20575
- "Control": {
20576
- "type": "VARIANT",
20577
- "variantOptions": [
20578
- "Checkbox",
20579
- "Radio"
20580
- ]
20581
- },
20582
- "Item Count": {
20583
- "type": "VARIANT",
20584
- "variantOptions": [
20585
- "1",
20586
- "2",
20587
- "3",
20588
- "4",
20589
- "5",
20590
- "6"
20591
- ]
20592
- }
20593
- }
20594
- };
20595
- const componentDeprecatedSlider = {
20596
- "name": "componentDeprecatedSlider",
20597
- "key": "c103c0a6ec25de57bb41eb820648a467afc5788e",
20598
- "componentPropertyDefinitions": {
20599
- "Steps": {
20600
- "type": "VARIANT",
20601
- "variantOptions": [
20602
- "0",
20603
- "1",
20604
- "2",
20605
- "3",
20606
- "4"
20607
- ]
20608
- },
20609
- "State": {
21326
+ "name": "componentDeprecatedSelectBoxGroup",
21327
+ "key": "558248a78625c79a55953956531738e490bf38fd",
21328
+ "componentPropertyDefinitions": {
21329
+ "Control": {
20610
21330
  "type": "VARIANT",
20611
21331
  "variantOptions": [
20612
- "Enabled",
20613
- "Disabled"
21332
+ "Checkbox",
21333
+ "Radio"
20614
21334
  ]
20615
21335
  },
20616
- "Marker": {
21336
+ "Item Count": {
20617
21337
  "type": "VARIANT",
20618
21338
  "variantOptions": [
20619
- "None",
20620
- "Min Max",
20621
- "All"
21339
+ "1",
21340
+ "2",
21341
+ "3",
21342
+ "4",
21343
+ "5",
21344
+ "6"
20622
21345
  ]
20623
21346
  }
20624
21347
  }
@@ -20749,6 +21472,29 @@ const componentDerpecatedTopNavigation = {
20749
21472
  }
20750
21473
  }
20751
21474
  };
21475
+ const componentAccordion = {
21476
+ "name": "componentAccordion",
21477
+ "key": "0686a42b92941f42561f73e95ecff0699b86e3a9",
21478
+ "componentPropertyDefinitions": {
21479
+ "Accordion Group#10588:0": {
21480
+ "type": "SLOT"
21481
+ },
21482
+ "Size": {
21483
+ "type": "VARIANT",
21484
+ "variantOptions": [
21485
+ "Medium",
21486
+ "Large (Desktop)"
21487
+ ]
21488
+ },
21489
+ "Variants": {
21490
+ "type": "VARIANT",
21491
+ "variantOptions": [
21492
+ "Inline",
21493
+ "Separated"
21494
+ ]
21495
+ }
21496
+ }
21497
+ };
20752
21498
  const componentActionButton = {
20753
21499
  "name": "componentActionButton",
20754
21500
  "key": "cd70496145efd7f5ffdb5413fb4db8e918561ffa",
@@ -20845,6 +21591,41 @@ const componentAndroidNowBarScreen = {
20845
21591
  }
20846
21592
  }
20847
21593
  };
21594
+ const componentAttachmentField = {
21595
+ "name": "componentAttachmentField",
21596
+ "key": "7a1711f401793fb33ca9ceb599916a7440ef60b4",
21597
+ "componentPropertyDefinitions": {
21598
+ "Show Header#11576:30": {
21599
+ "type": "BOOLEAN"
21600
+ },
21601
+ "Show Footer#11576:47": {
21602
+ "type": "BOOLEAN"
21603
+ },
21604
+ "Type": {
21605
+ "type": "VARIANT",
21606
+ "variantOptions": [
21607
+ "Media",
21608
+ "File"
21609
+ ]
21610
+ },
21611
+ "State": {
21612
+ "type": "VARIANT",
21613
+ "variantOptions": [
21614
+ "Enabled",
21615
+ "Error",
21616
+ "Disabled",
21617
+ "Read Only"
21618
+ ]
21619
+ },
21620
+ "Has Value": {
21621
+ "type": "VARIANT",
21622
+ "variantOptions": [
21623
+ "False",
21624
+ "True"
21625
+ ]
21626
+ }
21627
+ }
21628
+ };
20848
21629
  const componentAvatar = {
20849
21630
  "name": "componentAvatar",
20850
21631
  "key": "f17031afc2c71f35e5a147f6937a2b918029d334",
@@ -20878,9 +21659,9 @@ const componentAvatar = {
20878
21659
  }
20879
21660
  }
20880
21661
  };
20881
- const templateAvatarPreset = {
20882
- "name": "templateAvatarPreset",
20883
- "key": "42eefce6a1ab0d45780d2be5346d8ec5f6bace6e",
21662
+ const componentAvatarPreset = {
21663
+ "name": "componentAvatarPreset",
21664
+ "key": "539a0546169fb966bed1b07aa98db4b070206fc1",
20884
21665
  "componentPropertyDefinitions": {
20885
21666
  "Image": {
20886
21667
  "type": "VARIANT",
@@ -21046,9 +21827,9 @@ const componentBottomSheet = {
21046
21827
  }
21047
21828
  }
21048
21829
  };
21049
- const templateButtonGroup = {
21050
- "name": "templateButtonGroup",
21051
- "key": "c36b74a90e2321ac498f59ed8bf9ce4b365a5547",
21830
+ const componentButtonGroup = {
21831
+ "name": "componentButtonGroup",
21832
+ "key": "2acf5a3240876b2b82e3e42f267856b8582c07f6",
21052
21833
  "componentPropertyDefinitions": {
21053
21834
  "Size": {
21054
21835
  "type": "VARIANT",
@@ -21196,10 +21977,13 @@ const componentCheckbox = {
21196
21977
  }
21197
21978
  }
21198
21979
  };
21199
- const templateCheckboxField = {
21200
- "name": "templateCheckboxField",
21201
- "key": "214dd0fc8a3c5bc1e0c90cce29936f1ec6a26c3c",
21980
+ const componentCheckboxField = {
21981
+ "name": "componentCheckboxField",
21982
+ "key": "c157db7fe8d812716f2ed3f520b8bacfb9fb8416",
21202
21983
  "componentPropertyDefinitions": {
21984
+ "Checkbox Group#12261:0": {
21985
+ "type": "SLOT"
21986
+ },
21203
21987
  "Show Header#40606:8": {
21204
21988
  "type": "BOOLEAN"
21205
21989
  },
@@ -21262,27 +22046,34 @@ const componentCheckmark = {
21262
22046
  };
21263
22047
  const componentChip = {
21264
22048
  "name": "componentChip",
21265
- "key": "c947a926605cfd181998ddbb46554da84eebaab2",
22049
+ "key": "f23dfd7f48dd6fc6fbbdae95a091fd7a06a942e1",
21266
22050
  "componentPropertyDefinitions": {
21267
- "Label#7185:0": {
21268
- "type": "TEXT"
22051
+ "Has Prefix#9822:0": {
22052
+ "type": "BOOLEAN"
21269
22053
  },
21270
- "Prefix Icon#8722:0": {
22054
+ "Prefix Type#9965:0": {
21271
22055
  "type": "INSTANCE_SWAP"
21272
22056
  },
21273
- "Suffix Type#32538:0": {
22057
+ "Suffix Type#9965:109": {
21274
22058
  "type": "INSTANCE_SWAP"
21275
22059
  },
21276
- "Has Suffix#32538:181": {
22060
+ "Suffix Type Small#9981:218": {
22061
+ "type": "INSTANCE_SWAP"
22062
+ },
22063
+ "Prefix Type Small#9981:327": {
22064
+ "type": "INSTANCE_SWAP"
22065
+ },
22066
+ "Icon#10111:0": {
22067
+ "type": "INSTANCE_SWAP"
22068
+ },
22069
+ "Has Notification#10111:109": {
21277
22070
  "type": "BOOLEAN"
21278
22071
  },
21279
- "Variant": {
21280
- "type": "VARIANT",
21281
- "variantOptions": [
21282
- "Solid",
21283
- "Outline Strong",
21284
- "Outline Weak"
21285
- ]
22072
+ "Label#12217:0": {
22073
+ "type": "TEXT"
22074
+ },
22075
+ "Has Suffix#32538:181": {
22076
+ "type": "BOOLEAN"
21286
22077
  },
21287
22078
  "Size": {
21288
22079
  "type": "VARIANT",
@@ -21292,6 +22083,21 @@ const componentChip = {
21292
22083
  "Small"
21293
22084
  ]
21294
22085
  },
22086
+ "Layout": {
22087
+ "type": "VARIANT",
22088
+ "variantOptions": [
22089
+ "With Text",
22090
+ "Icon Only"
22091
+ ]
22092
+ },
22093
+ "Variant": {
22094
+ "type": "VARIANT",
22095
+ "variantOptions": [
22096
+ "Solid",
22097
+ "Outline Strong",
22098
+ "Outline Weak"
22099
+ ]
22100
+ },
21295
22101
  "Selected": {
21296
22102
  "type": "VARIANT",
21297
22103
  "variantOptions": [
@@ -21306,22 +22112,16 @@ const componentChip = {
21306
22112
  "Pressed",
21307
22113
  "Disabled"
21308
22114
  ]
21309
- },
21310
- "Prefix Type": {
21311
- "type": "VARIANT",
21312
- "variantOptions": [
21313
- "None",
21314
- "Icon",
21315
- "Avatar",
21316
- "Image"
21317
- ]
21318
22115
  }
21319
22116
  }
21320
22117
  };
21321
- const templateChipGroup = {
21322
- "name": "templateChipGroup",
21323
- "key": "cb2a0fa6e04cf2099baeced91ee74f9d93d36069",
22118
+ const componentChipGroup = {
22119
+ "name": "componentChipGroup",
22120
+ "key": "dbef4539572f056c6a90c332299d9b9febd212de",
21324
22121
  "componentPropertyDefinitions": {
22122
+ "Chip Group#12261:62": {
22123
+ "type": "SLOT"
22124
+ },
21325
22125
  "Variant": {
21326
22126
  "type": "VARIANT",
21327
22127
  "variantOptions": [
@@ -21399,9 +22199,9 @@ const componentContextualFloatingButton = {
21399
22199
  }
21400
22200
  }
21401
22201
  };
21402
- const templateDisclaimer = {
21403
- "name": "templateDisclaimer",
21404
- "key": "c56cb5f18959ad92f6638b588e8d248335dcc03b",
22202
+ const componentDisclaimer = {
22203
+ "name": "componentDisclaimer",
22204
+ "key": "9532514879fc59d5b221b8cc4b85a569ed15d265",
21405
22205
  "componentPropertyDefinitions": {
21406
22206
  "Show Title#54910:2": {
21407
22207
  "type": "BOOLEAN"
@@ -21459,9 +22259,9 @@ const componentEditorToolbarFigmaOnly = {
21459
22259
  }
21460
22260
  }
21461
22261
  };
21462
- const templateFieldButton = {
21463
- "name": "templateFieldButton",
21464
- "key": "e706abd7be0d1a2ea0aeeb656b47d3b03aa5cda8",
22262
+ const componentFieldButton = {
22263
+ "name": "componentFieldButton",
22264
+ "key": "a9f6a5ee2d52881b87e22ef1a18fac67e92558f4",
21465
22265
  "componentPropertyDefinitions": {
21466
22266
  "Show Header#40606:8": {
21467
22267
  "type": "BOOLEAN"
@@ -21469,6 +22269,13 @@ const templateFieldButton = {
21469
22269
  "Show Footer#40606:9": {
21470
22270
  "type": "BOOLEAN"
21471
22271
  },
22272
+ "Size": {
22273
+ "type": "VARIANT",
22274
+ "variantOptions": [
22275
+ "Large",
22276
+ "Medium (Desktop Only)"
22277
+ ]
22278
+ },
21472
22279
  "State": {
21473
22280
  "type": "VARIANT",
21474
22281
  "variantOptions": [
@@ -21605,8 +22412,8 @@ const componentImageFrame = {
21605
22412
  }
21606
22413
  }
21607
22414
  };
21608
- const componentIOsLiveAcitivityScreen = {
21609
- "name": "componentIOsLiveAcitivityScreen",
22415
+ const componentIOsLiveActivityScreen = {
22416
+ "name": "componentIOsLiveActivityScreen",
21610
22417
  "key": "3d7ff6cf68e769096237bcc0122be08caf8b6ce4",
21611
22418
  "componentPropertyDefinitions": {
21612
22419
  "Type": {
@@ -21714,11 +22521,11 @@ const componentListItem = {
21714
22521
  "Disabled"
21715
22522
  ]
21716
22523
  },
21717
- "Variants": {
22524
+ "Align": {
21718
22525
  "type": "VARIANT",
21719
22526
  "variantOptions": [
21720
- "Single Line",
21721
- "Multi Line"
22527
+ "Center",
22528
+ "Top"
21722
22529
  ]
21723
22530
  },
21724
22531
  "Highlighted": {
@@ -21824,6 +22631,37 @@ const componentMenuSheet = {
21824
22631
  }
21825
22632
  }
21826
22633
  };
22634
+ const componentMultilineTextField = {
22635
+ "name": "componentMultilineTextField",
22636
+ "key": "e1b7b5bfa5ff6a633cecc5110b958520a9e79ddf",
22637
+ "componentPropertyDefinitions": {
22638
+ "Show Header#11576:0": {
22639
+ "type": "BOOLEAN"
22640
+ },
22641
+ "Show Footer#11576:15": {
22642
+ "type": "BOOLEAN"
22643
+ },
22644
+ "Size": {
22645
+ "type": "VARIANT",
22646
+ "variantOptions": [
22647
+ "Large",
22648
+ "Medium (Desktop Only)"
22649
+ ]
22650
+ },
22651
+ "State": {
22652
+ "type": "VARIANT",
22653
+ "variantOptions": [
22654
+ "AI Loading (Figma Only)",
22655
+ "Disabled",
22656
+ "Read Only",
22657
+ "Error Focused",
22658
+ "Error",
22659
+ "Focused",
22660
+ "Enabled"
22661
+ ]
22662
+ }
22663
+ }
22664
+ };
21827
22665
  const componentOsBottomIndicatorFigmaOnly = {
21828
22666
  "name": "componentOsBottomIndicatorFigmaOnly",
21829
22667
  "key": "291fcfece0247fd59a6ef14312347267523a5152",
@@ -22015,10 +22853,13 @@ const componentRadio = {
22015
22853
  }
22016
22854
  }
22017
22855
  };
22018
- const templateRadioField = {
22019
- "name": "templateRadioField",
22020
- "key": "a3f159c223e3a0888fc48098c1580793297f82e9",
22856
+ const componentRadioField = {
22857
+ "name": "componentRadioField",
22858
+ "key": "7a1c06315434813d0c4256366e2f478954cd6f14",
22021
22859
  "componentPropertyDefinitions": {
22860
+ "Radio Group#12285:87": {
22861
+ "type": "SLOT"
22862
+ },
22022
22863
  "Show Header#40606:8": {
22023
22864
  "type": "BOOLEAN"
22024
22865
  },
@@ -22248,9 +23089,9 @@ const componentSegmentedControl = {
22248
23089
  }
22249
23090
  }
22250
23091
  };
22251
- const templateSelectBoxField = {
22252
- "name": "templateSelectBoxField",
22253
- "key": "cddac54129eed15830319d1e30480f42ea80d4d3",
23092
+ const componentSelectBoxField = {
23093
+ "name": "componentSelectBoxField",
23094
+ "key": "a4202b1d4bbb185f25f937dd6a71cfc580e58cb5",
22254
23095
  "componentPropertyDefinitions": {
22255
23096
  "Show Header#40606:8": {
22256
23097
  "type": "BOOLEAN"
@@ -22273,6 +23114,9 @@ const componentSelectBoxGroup = {
22273
23114
  "name": "componentSelectBoxGroup",
22274
23115
  "key": "cbf6ddeb6d6f889e983399291ec8b60ee3390177",
22275
23116
  "componentPropertyDefinitions": {
23117
+ "Select Box Group#12285:92": {
23118
+ "type": "SLOT"
23119
+ },
22276
23120
  "Column": {
22277
23121
  "type": "VARIANT",
22278
23122
  "variantOptions": [
@@ -22375,9 +23219,9 @@ const componentSkeleton = {
22375
23219
  }
22376
23220
  }
22377
23221
  };
22378
- const templateSkeletonPreset = {
22379
- "name": "templateSkeletonPreset",
22380
- "key": "6ef44f7c25caf577c58486f7dd9a6d2dbccdbae2",
23222
+ const componentSkeletonPreset = {
23223
+ "name": "componentSkeletonPreset",
23224
+ "key": "f59d479beaf5d5d73da2ff8984778a40dd2e65bd",
22381
23225
  "componentPropertyDefinitions": {
22382
23226
  "Preset (Figma-Only)": {
22383
23227
  "type": "VARIANT",
@@ -22423,9 +23267,9 @@ const componentSlider = {
22423
23267
  }
22424
23268
  }
22425
23269
  };
22426
- const templateSliderField = {
22427
- "name": "templateSliderField",
22428
- "key": "28779a6663ce9d43b08050f128a925513e36a2e6",
23270
+ const componentSliderField = {
23271
+ "name": "componentSliderField",
23272
+ "key": "a0d06d2084b3ab2d0dc4a9dc23fa3500043dddc4",
22429
23273
  "componentPropertyDefinitions": {
22430
23274
  "Show Header#40606:8": {
22431
23275
  "type": "BOOLEAN"
@@ -22601,9 +23445,9 @@ const componentTagGroup = {
22601
23445
  }
22602
23446
  }
22603
23447
  };
22604
- const templateTextField = {
22605
- "name": "templateTextField",
22606
- "key": "d23c5e730ba19fe6ba3c376a5abbf3df7a54672e",
23448
+ const componentTextField = {
23449
+ "name": "componentTextField",
23450
+ "key": "8b134244cb1038a13e6365aa9664a3fcb8b7e352",
22607
23451
  "componentPropertyDefinitions": {
22608
23452
  "Show Header#40606:8": {
22609
23453
  "type": "BOOLEAN"
@@ -22611,6 +23455,13 @@ const templateTextField = {
22611
23455
  "Show Footer#40606:9": {
22612
23456
  "type": "BOOLEAN"
22613
23457
  },
23458
+ "Size": {
23459
+ "type": "VARIANT",
23460
+ "variantOptions": [
23461
+ "Large",
23462
+ "Medium (Desktop Only)"
23463
+ ]
23464
+ },
22614
23465
  "Variant": {
22615
23466
  "type": "VARIANT",
22616
23467
  "variantOptions": [
@@ -22632,24 +23483,6 @@ const templateTextField = {
22632
23483
  }
22633
23484
  }
22634
23485
  };
22635
- const templateTextareaField = {
22636
- "name": "templateTextareaField",
22637
- "key": "1e0375ed8a5dc490008d6e0dcc20b812b6e39114",
22638
- "componentPropertyDefinitions": {
22639
- "State": {
22640
- "type": "VARIANT",
22641
- "variantOptions": [
22642
- "AI Loading (Figma Only)",
22643
- "Disabled",
22644
- "Read Only",
22645
- "Error Focused",
22646
- "Error",
22647
- "Focused",
22648
- "Enabled"
22649
- ]
22650
- }
22651
- }
22652
- };
22653
23486
  const componentToggleButton = {
22654
23487
  "name": "componentToggleButton",
22655
23488
  "key": "eb1eac49eb281c1029e659821f4091619d0b74e4",
@@ -22743,9 +23576,9 @@ const componentTopNavigation = {
22743
23576
  }
22744
23577
  }
22745
23578
  };
22746
- const templateTopNavigationPreset = {
22747
- "name": "templateTopNavigationPreset",
22748
- "key": "392ae70c701b8f657d3114498801c5672decc547",
23579
+ const componentTopNavigationPreset = {
23580
+ "name": "componentTopNavigationPreset",
23581
+ "key": "0dd628c49a9e02b1a5f3208a0b870b567cff59a7",
22749
23582
  "componentPropertyDefinitions": {
22750
23583
  "Action Button#17406:0": {
22751
23584
  "type": "BOOLEAN"
@@ -22784,6 +23617,40 @@ const componentUserSelectionFigmaOnly = {
22784
23617
  }
22785
23618
  }
22786
23619
  };
23620
+ const componentAttachmentInput = {
23621
+ "name": "componentAttachmentInput",
23622
+ "key": "912d312b7a25ab698708e196a7d3f2f91d2bd2f5",
23623
+ "componentPropertyDefinitions": {
23624
+ "Type": {
23625
+ "type": "VARIANT",
23626
+ "variantOptions": [
23627
+ "Media",
23628
+ "File"
23629
+ ]
23630
+ },
23631
+ "Trigger Type": {
23632
+ "type": "VARIANT",
23633
+ "variantOptions": [
23634
+ "Button",
23635
+ "Dropzone"
23636
+ ]
23637
+ },
23638
+ "State": {
23639
+ "type": "VARIANT",
23640
+ "variantOptions": [
23641
+ "Enabled",
23642
+ "Disabled"
23643
+ ]
23644
+ },
23645
+ "Has Value": {
23646
+ "type": "VARIANT",
23647
+ "variantOptions": [
23648
+ "False",
23649
+ "True"
23650
+ ]
23651
+ }
23652
+ }
23653
+ };
22787
23654
  const componentFieldFooter = {
22788
23655
  "name": "componentFieldFooter",
22789
23656
  "key": "a2e73c375b787756a11e84c5915f8251c621ee3a",
@@ -22827,6 +23694,13 @@ const componentFieldHeader = {
22827
23694
  "Has Suffix#34796:2": {
22828
23695
  "type": "BOOLEAN"
22829
23696
  },
23697
+ "Size": {
23698
+ "type": "VARIANT",
23699
+ "variantOptions": [
23700
+ "Large",
23701
+ "Medium (Desktop Only)"
23702
+ ]
23703
+ },
22830
23704
  "Weight": {
22831
23705
  "type": "VARIANT",
22832
23706
  "variantOptions": [
@@ -22846,15 +23720,22 @@ const componentInputButton = {
22846
23720
  "Has Suffix#32865:68": {
22847
23721
  "type": "BOOLEAN"
22848
23722
  },
23723
+ "Size": {
23724
+ "type": "VARIANT",
23725
+ "variantOptions": [
23726
+ "Large",
23727
+ "Medium (Desktop Only)"
23728
+ ]
23729
+ },
22849
23730
  "State": {
22850
23731
  "type": "VARIANT",
22851
23732
  "variantOptions": [
22852
23733
  "Enabled",
23734
+ "Pressed",
22853
23735
  "Error",
23736
+ "Error Pressed",
22854
23737
  "Disabled",
22855
- "Read Only",
22856
- "Pressed",
22857
- "Error Pressed"
23738
+ "Read Only"
22858
23739
  ]
22859
23740
  }
22860
23741
  }
@@ -22872,6 +23753,13 @@ const componentTextInput = {
22872
23753
  "Has Suffix#32865:68": {
22873
23754
  "type": "BOOLEAN"
22874
23755
  },
23756
+ "Size": {
23757
+ "type": "VARIANT",
23758
+ "variantOptions": [
23759
+ "Large",
23760
+ "Medium (Desktop Only)"
23761
+ ]
23762
+ },
22875
23763
  "State": {
22876
23764
  "type": "VARIANT",
22877
23765
  "variantOptions": [
@@ -22890,6 +23778,13 @@ const componentTextarea = {
22890
23778
  "name": "componentTextarea",
22891
23779
  "key": "e20ec5b725e0fdbaca728cecdc72b0c485728b4d",
22892
23780
  "componentPropertyDefinitions": {
23781
+ "Size": {
23782
+ "type": "VARIANT",
23783
+ "variantOptions": [
23784
+ "Large",
23785
+ "Medium (Desktop Only)"
23786
+ ]
23787
+ },
22893
23788
  "Auto Size (Figma Only)": {
22894
23789
  "type": "VARIANT",
22895
23790
  "variantOptions": [
@@ -22932,6 +23827,13 @@ const componentUnderlineTextInput = {
22932
23827
  "Read Only",
22933
23828
  "AI Loading (Figma Only)"
22934
23829
  ]
23830
+ },
23831
+ "Size": {
23832
+ "type": "VARIANT",
23833
+ "variantOptions": [
23834
+ "Medium (Desktop Only)",
23835
+ "Large"
23836
+ ]
22935
23837
  }
22936
23838
  }
22937
23839
  };
@@ -22961,7 +23863,7 @@ const componentActionButtonGhostButton = {
22961
23863
  "Size": {
22962
23864
  "type": "VARIANT",
22963
23865
  "variantOptions": [
22964
- "Xsmall",
23866
+ "XSmall",
22965
23867
  "Small",
22966
23868
  "Medium",
22967
23869
  "Large"
@@ -23299,42 +24201,51 @@ const templateShareSheet = {
23299
24201
 
23300
24202
  var FIGMA_COMPONENTS = {
23301
24203
  __proto__: null,
24204
+ componentAccordion: componentAccordion,
23302
24205
  componentActionButton: componentActionButton,
23303
24206
  componentActionButtonGhostButton: componentActionButtonGhostButton,
23304
24207
  componentAlertDialog: componentAlertDialog,
23305
24208
  componentAndroidNowBarScreen: componentAndroidNowBarScreen,
24209
+ componentAttachmentField: componentAttachmentField,
24210
+ componentAttachmentInput: componentAttachmentInput,
23306
24211
  componentAvatar: componentAvatar,
24212
+ componentAvatarPreset: componentAvatarPreset,
23307
24213
  componentAvatarStack: componentAvatarStack,
23308
24214
  componentBadge: componentBadge,
23309
24215
  componentBottomActionBarFigmaOnly: componentBottomActionBarFigmaOnly,
23310
24216
  componentBottomNavigationGlobal: componentBottomNavigationGlobal,
23311
24217
  componentBottomNavigationKr: componentBottomNavigationKr,
23312
24218
  componentBottomSheet: componentBottomSheet,
24219
+ componentButtonGroup: componentButtonGroup,
23313
24220
  componentCallout: componentCallout,
23314
24221
  componentCheckbox: componentCheckbox,
24222
+ componentCheckboxField: componentCheckboxField,
23315
24223
  componentCheckmark: componentCheckmark,
23316
24224
  componentChip: componentChip,
24225
+ componentChipGroup: componentChipGroup,
23317
24226
  componentChlid: componentChlid,
23318
24227
  componentContextualFloatingButton: componentContextualFloatingButton,
23319
24228
  componentDeprecatedActionChip: componentDeprecatedActionChip,
23320
24229
  componentDeprecatedActionSheet: componentDeprecatedActionSheet,
24230
+ componentDeprecatedChip: componentDeprecatedChip,
24231
+ componentDeprecatedChipGroup: componentDeprecatedChipGroup,
23321
24232
  componentDeprecatedCompletion: componentDeprecatedCompletion,
23322
24233
  componentDeprecatedControlChip: componentDeprecatedControlChip,
23323
24234
  componentDeprecatedErrorState: componentDeprecatedErrorState,
23324
24235
  componentDeprecatedMultilineTextField: componentDeprecatedMultilineTextField,
23325
- componentDeprecatedRangeSlider: componentDeprecatedRangeSlider,
23326
24236
  componentDeprecatedSelectBox: componentDeprecatedSelectBox,
23327
24237
  componentDeprecatedSelectBoxGroup: componentDeprecatedSelectBoxGroup,
23328
- componentDeprecatedSlider: componentDeprecatedSlider,
23329
24238
  componentDeprecatedTextField: componentDeprecatedTextField,
23330
24239
  componentDerpecatedTopNavigation: componentDerpecatedTopNavigation,
24240
+ componentDisclaimer: componentDisclaimer,
23331
24241
  componentDivider: componentDivider,
23332
24242
  componentEditorToolbarFigmaOnly: componentEditorToolbarFigmaOnly,
24243
+ componentFieldButton: componentFieldButton,
23333
24244
  componentFieldFooter: componentFieldFooter,
23334
24245
  componentFieldHeader: componentFieldHeader,
23335
24246
  componentFloatingActionButton: componentFloatingActionButton,
23336
24247
  componentHelpBubble: componentHelpBubble,
23337
- componentIOsLiveAcitivityScreen: componentIOsLiveAcitivityScreen,
24248
+ componentIOsLiveActivityScreen: componentIOsLiveActivityScreen,
23338
24249
  componentImageFrame: componentImageFrame,
23339
24250
  componentImageFrameReactionButton: componentImageFrameReactionButton,
23340
24251
  componentInputButton: componentInputButton,
@@ -23347,6 +24258,7 @@ var FIGMA_COMPONENTS = {
23347
24258
  componentMannerTempBadge: componentMannerTempBadge,
23348
24259
  componentMenu: componentMenu,
23349
24260
  componentMenuSheet: componentMenuSheet,
24261
+ componentMultilineTextField: componentMultilineTextField,
23350
24262
  componentOsBottomIndicatorFigmaOnly: componentOsBottomIndicatorFigmaOnly,
23351
24263
  componentOsKeyboardFigmaOnly: componentOsKeyboardFigmaOnly,
23352
24264
  componentOsPushScreenFigmaOnly: componentOsPushScreenFigmaOnly,
@@ -23354,6 +24266,7 @@ var FIGMA_COMPONENTS = {
23354
24266
  componentPageBanner: componentPageBanner,
23355
24267
  componentProgressCircle: componentProgressCircle,
23356
24268
  componentRadio: componentRadio,
24269
+ componentRadioField: componentRadioField,
23357
24270
  componentRadiomark: componentRadiomark,
23358
24271
  componentReactionButton: componentReactionButton,
23359
24272
  componentResizableChild: componentResizableChild,
@@ -23364,6 +24277,7 @@ var FIGMA_COMPONENTS = {
23364
24277
  componentScrollFog: componentScrollFog,
23365
24278
  componentSearchBarFigmaOnly: componentSearchBarFigmaOnly,
23366
24279
  componentSegmentedControl: componentSegmentedControl,
24280
+ componentSelectBoxField: componentSelectBoxField,
23367
24281
  componentSelectBoxGroup: componentSelectBoxGroup,
23368
24282
  componentSelectBoxItemHorizontal: componentSelectBoxItemHorizontal,
23369
24283
  componentSelectBoxItemVertical: componentSelectBoxItemVertical,
@@ -23371,22 +24285,28 @@ var FIGMA_COMPONENTS = {
23371
24285
  componentSideNavigation: componentSideNavigation,
23372
24286
  componentSideNavigationPreset: componentSideNavigationPreset,
23373
24287
  componentSkeleton: componentSkeleton,
24288
+ componentSkeletonPreset: componentSkeletonPreset,
23374
24289
  componentSlider: componentSlider,
24290
+ componentSliderField: componentSliderField,
23375
24291
  componentSnackbar: componentSnackbar,
23376
24292
  componentSuperscriptChild: componentSuperscriptChild,
23377
24293
  componentSwitch: componentSwitch,
23378
24294
  componentSwitchmark: componentSwitchmark,
23379
24295
  componentTabs: componentTabs,
23380
24296
  componentTagGroup: componentTagGroup,
24297
+ componentTextField: componentTextField,
23381
24298
  componentTextInput: componentTextInput,
23382
24299
  componentTextarea: componentTextarea,
23383
24300
  componentToggleButton: componentToggleButton,
23384
24301
  componentTopNavigation: componentTopNavigation,
24302
+ componentTopNavigationPreset: componentTopNavigationPreset,
23385
24303
  componentUnderlineTextInput: componentUnderlineTextInput,
23386
24304
  componentUserSelectionFigmaOnly: componentUserSelectionFigmaOnly,
23387
24305
  privateComponentAlertDialogActions: privateComponentAlertDialogActions,
23388
24306
  privateComponentBottomSheetCloseButton: privateComponentBottomSheetCloseButton,
23389
24307
  privateComponentBottomSheetHandle: privateComponentBottomSheetHandle,
24308
+ privateComponentChipGroup: privateComponentChipGroup,
24309
+ privateComponentChipGroupField: privateComponentChipGroupField,
23390
24310
  privateComponentContentPlaceholder: privateComponentContentPlaceholder,
23391
24311
  privateComponentFieldFooterCharacterCount: privateComponentFieldFooterCharacterCount,
23392
24312
  privateComponentFieldHeaderIndicator: privateComponentFieldHeaderIndicator,
@@ -23409,8 +24329,11 @@ var FIGMA_COMPONENTS = {
23409
24329
  privateComponentMenuSheetCloseButton: privateComponentMenuSheetCloseButton,
23410
24330
  privateComponentMenuSheetMenuGroup: privateComponentMenuSheetMenuGroup,
23411
24331
  privateComponentMenuSheetMenuItem: privateComponentMenuSheetMenuItem,
24332
+ privateComponentPhoneNumberField: privateComponentPhoneNumberField,
24333
+ privateComponentPinField: privateComponentPinField,
23412
24334
  privateComponentRootTopNavigationActionList: privateComponentRootTopNavigationActionList,
23413
24335
  privateComponentRootTopNavigationIconButton: privateComponentRootTopNavigationIconButton,
24336
+ privateComponentRootTopNavigationPreset: privateComponentRootTopNavigationPreset,
23414
24337
  privateComponentSegmentedControlItem: privateComponentSegmentedControlItem,
23415
24338
  privateComponentSelectBoxItemCheckmark: privateComponentSelectBoxItemCheckmark,
23416
24339
  privateComponentSidebarMenuItem: privateComponentSidebarMenuItem,
@@ -23444,32 +24367,12 @@ var FIGMA_COMPONENTS = {
23444
24367
  privateComponentUnderlineTextInputInputReadOnly: privateComponentUnderlineTextInputInputReadOnly,
23445
24368
  privateComponentUnderlineTextInputPrefix: privateComponentUnderlineTextInputPrefix,
23446
24369
  privateComponentUnderlineTextInputSuffix: privateComponentUnderlineTextInputSuffix,
23447
- privateTemplateAttachmentField: privateTemplateAttachmentField,
23448
- privateTemplateChipGroup: privateTemplateChipGroup,
23449
- privateTemplateChipGroupField: privateTemplateChipGroupField,
23450
- privateTemplatePhoneNumberField: privateTemplatePhoneNumberField,
23451
- privateTemplatePinField: privateTemplatePinField,
23452
- privateTemplateRootTopNavigationPreset: privateTemplateRootTopNavigationPreset,
23453
24370
  privateTemplateShareSheetMenuGroup: privateTemplateShareSheetMenuGroup,
23454
24371
  privateTemplateShareSheetMenuItem: privateTemplateShareSheetMenuItem,
23455
- templateAvatarPreset: templateAvatarPreset,
23456
- templateButtonGroup: templateButtonGroup,
23457
24372
  templateChatScreenPreset: templateChatScreenPreset,
23458
- templateCheckboxField: templateCheckboxField,
23459
- templateChipGroup: templateChipGroup,
23460
- templateDeprecatedChipGroup: templateDeprecatedChipGroup,
23461
- templateDisclaimer: templateDisclaimer,
23462
24373
  templateEmbedViewType: templateEmbedViewType,
23463
- templateFieldButton: templateFieldButton,
23464
- templateRadioField: templateRadioField,
23465
24374
  templateResultPage: templateResultPage,
23466
- templateSelectBoxField: templateSelectBoxField,
23467
- templateShareSheet: templateShareSheet,
23468
- templateSkeletonPreset: templateSkeletonPreset,
23469
- templateSliderField: templateSliderField,
23470
- templateTextField: templateTextField,
23471
- templateTextareaField: templateTextareaField,
23472
- templateTopNavigationPreset: templateTopNavigationPreset
24375
+ templateShareSheet: templateShareSheet
23473
24376
  };
23474
24377
 
23475
24378
  // TODO: inferStyleName 추가해야 함, rest api에서 style value가 제공되지 않고 있어 보류