@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
@@ -8742,7 +8742,7 @@ const FIGMA_VARIABLES$1 = {
8742
8742
  }
8743
8743
  };
8744
8744
 
8745
- const templateButtonGroup$1 = {
8745
+ const templateButtonGroup = {
8746
8746
  "name": "templateButtonGroup",
8747
8747
  "key": "29109a34197f2eb5d390b1d9ebba270979a7b302",
8748
8748
  "componentPropertyDefinitions": {
@@ -8769,7 +8769,7 @@ const templateButtonGroup$1 = {
8769
8769
  }
8770
8770
  }
8771
8771
  };
8772
- const templateChipGroup$1 = {
8772
+ const templateChipGroup = {
8773
8773
  "name": "templateChipGroup",
8774
8774
  "key": "5b1155aae0f90d1bce6a7499f53a547e88ec3b86",
8775
8775
  "componentPropertyDefinitions": {
@@ -8826,7 +8826,7 @@ const templateCustomPickerField = {
8826
8826
  }
8827
8827
  }
8828
8828
  };
8829
- const templateDisclaimer$1 = {
8829
+ const templateDisclaimer = {
8830
8830
  "name": "templateDisclaimer",
8831
8831
  "key": "e08d2594b76c6c0107e34c0071cab8ef844c8998",
8832
8832
  "componentPropertyDefinitions": {
@@ -8861,7 +8861,7 @@ const templateResultPage$1 = {
8861
8861
  }
8862
8862
  }
8863
8863
  };
8864
- const templateSliderField$1 = {
8864
+ const templateSliderField = {
8865
8865
  "name": "templateSliderField",
8866
8866
  "key": "7d2b449bcfb28ebf3c509ed76a141511f7d955eb",
8867
8867
  "componentPropertyDefinitions": {
@@ -8883,7 +8883,7 @@ const templateSliderField$1 = {
8883
8883
  }
8884
8884
  }
8885
8885
  };
8886
- const templateTextField$1 = {
8886
+ const templateTextField = {
8887
8887
  "name": "templateTextField",
8888
8888
  "key": "0a83a0ff9d18d98a14536b21aa5411622f9f0c05",
8889
8889
  "componentPropertyDefinitions": {
@@ -8914,7 +8914,7 @@ const templateTextField$1 = {
8914
8914
  }
8915
8915
  }
8916
8916
  };
8917
- const templateTextareaField$1 = {
8917
+ const templateTextareaField = {
8918
8918
  "name": "templateTextareaField",
8919
8919
  "key": "cdc688eccd78b947289e8089a620bdc494f6c809",
8920
8920
  "componentPropertyDefinitions": {
@@ -10809,14 +10809,14 @@ var FIGMA_COMPONENTS_ARCHIVE = {
10809
10809
  switchmark: switchmark,
10810
10810
  tabs: tabs,
10811
10811
  tagGroup: tagGroup,
10812
- templateButtonGroup: templateButtonGroup$1,
10813
- templateChipGroup: templateChipGroup$1,
10812
+ templateButtonGroup: templateButtonGroup,
10813
+ templateChipGroup: templateChipGroup,
10814
10814
  templateCustomPickerField: templateCustomPickerField,
10815
- templateDisclaimer: templateDisclaimer$1,
10815
+ templateDisclaimer: templateDisclaimer,
10816
10816
  templateResultPage: templateResultPage$1,
10817
- templateSliderField: templateSliderField$1,
10818
- templateTextField: templateTextField$1,
10819
- templateTextareaField: templateTextareaField$1,
10817
+ templateSliderField: templateSliderField,
10818
+ templateTextField: templateTextField,
10819
+ templateTextareaField: templateTextareaField,
10820
10820
  templateTopNavigation: templateTopNavigation,
10821
10821
  toggleButton: toggleButton,
10822
10822
  topNavigation: topNavigation
@@ -10928,6 +10928,20 @@ const FIGMA_STYLES = [
10928
10928
  "description": "26",
10929
10929
  "remote": false
10930
10930
  },
10931
+ {
10932
+ "styleType": "TEXT",
10933
+ "key": "f1b075bf372e390817956ac334349f42ec368ccd",
10934
+ "name": "scale/t10-medium",
10935
+ "description": "26",
10936
+ "remote": false
10937
+ },
10938
+ {
10939
+ "styleType": "TEXT",
10940
+ "key": "58575457da24cac686bda44738f925bf7fb1000f",
10941
+ "name": "scale/t10-regular",
10942
+ "description": "26",
10943
+ "remote": false
10944
+ },
10931
10945
  {
10932
10946
  "styleType": "TEXT",
10933
10947
  "key": "08861e25c3f74a29c2ae4ce007fe50b63e302392",
@@ -10935,6 +10949,188 @@ const FIGMA_STYLES = [
10935
10949
  "description": "26",
10936
10950
  "remote": false
10937
10951
  },
10952
+ {
10953
+ "styleType": "TEXT",
10954
+ "key": "7b382c6819df53c004f4bb6464cc1159437d28f4",
10955
+ "name": "scale/t10-static-medium",
10956
+ "description": "26",
10957
+ "remote": false
10958
+ },
10959
+ {
10960
+ "styleType": "TEXT",
10961
+ "key": "7ac0425bf2720501638e207801bdc83188776606",
10962
+ "name": "scale/t10-static-regular",
10963
+ "description": "26",
10964
+ "remote": false
10965
+ },
10966
+ {
10967
+ "styleType": "TEXT",
10968
+ "key": "c4098caa6dadf9d0313a5cd3bf1954aa428806bc",
10969
+ "name": "scale/t11-bold",
10970
+ "description": "28",
10971
+ "remote": false
10972
+ },
10973
+ {
10974
+ "styleType": "TEXT",
10975
+ "key": "7f9079e1462525cba38c2bf1eef30868a3604c1f",
10976
+ "name": "scale/t11-medium",
10977
+ "description": "28",
10978
+ "remote": false
10979
+ },
10980
+ {
10981
+ "styleType": "TEXT",
10982
+ "key": "ea8f44eb90bc314a4afffcb2cd01df65e62e71ac",
10983
+ "name": "scale/t11-regular",
10984
+ "description": "28",
10985
+ "remote": false
10986
+ },
10987
+ {
10988
+ "styleType": "TEXT",
10989
+ "key": "3fe2b88e352b6983ca3f1ba3564116c9df17d1f4",
10990
+ "name": "scale/t11-static-bold",
10991
+ "description": "28",
10992
+ "remote": false
10993
+ },
10994
+ {
10995
+ "styleType": "TEXT",
10996
+ "key": "d75f42739e281be648feeba353a88a2beb6cd6b3",
10997
+ "name": "scale/t11-static-medium",
10998
+ "description": "28",
10999
+ "remote": false
11000
+ },
11001
+ {
11002
+ "styleType": "TEXT",
11003
+ "key": "2ec7180151eb92cf7dda82e2e9d44e17db597aa7",
11004
+ "name": "scale/t11-static-regular",
11005
+ "description": "28",
11006
+ "remote": false
11007
+ },
11008
+ {
11009
+ "styleType": "TEXT",
11010
+ "key": "8848230f95a4b768c3fb4586d6cf00c4b7871597",
11011
+ "name": "scale/t12-bold",
11012
+ "description": "32",
11013
+ "remote": false
11014
+ },
11015
+ {
11016
+ "styleType": "TEXT",
11017
+ "key": "d03833cfa1fc42209eaaf75ac4ac7563c3ce05db",
11018
+ "name": "scale/t12-medium",
11019
+ "description": "32",
11020
+ "remote": false
11021
+ },
11022
+ {
11023
+ "styleType": "TEXT",
11024
+ "key": "f520df58299347b765369130e1cc35c4d5777ee5",
11025
+ "name": "scale/t12-regular",
11026
+ "description": "32",
11027
+ "remote": false
11028
+ },
11029
+ {
11030
+ "styleType": "TEXT",
11031
+ "key": "078207b0210a5e730107f7e9434ccf73fe4aa037",
11032
+ "name": "scale/t12-static-bold",
11033
+ "description": "32",
11034
+ "remote": false
11035
+ },
11036
+ {
11037
+ "styleType": "TEXT",
11038
+ "key": "0bbb0b5109594a030af1b31fa4a2fec97c888898",
11039
+ "name": "scale/t12-static-medium",
11040
+ "description": "32",
11041
+ "remote": false
11042
+ },
11043
+ {
11044
+ "styleType": "TEXT",
11045
+ "key": "7b5c555d3b6b442c7c2560d40687ad511fccd2bf",
11046
+ "name": "scale/t12-static-regular",
11047
+ "description": "32",
11048
+ "remote": false
11049
+ },
11050
+ {
11051
+ "styleType": "TEXT",
11052
+ "key": "f8246d0f7aac99e4bedf442e7705eb8c6fbd287f",
11053
+ "name": "scale/t13-large",
11054
+ "description": "40",
11055
+ "remote": false
11056
+ },
11057
+ {
11058
+ "styleType": "TEXT",
11059
+ "key": "aa030de3cc69647ac9261dde645751902cb034fa",
11060
+ "name": "scale/t13-medium",
11061
+ "description": "40",
11062
+ "remote": false
11063
+ },
11064
+ {
11065
+ "styleType": "TEXT",
11066
+ "key": "5f319de1ecd415b8046b8104dee700d68276f591",
11067
+ "name": "scale/t13-regular",
11068
+ "description": "40",
11069
+ "remote": false
11070
+ },
11071
+ {
11072
+ "styleType": "TEXT",
11073
+ "key": "c431b4007e9dc95ca040323d7bfbfc93506dcb1b",
11074
+ "name": "scale/t13-static-bold",
11075
+ "description": "40",
11076
+ "remote": false
11077
+ },
11078
+ {
11079
+ "styleType": "TEXT",
11080
+ "key": "f27b6a9f531a34f06cc33c6f051f178b78d7b42a",
11081
+ "name": "scale/t13-static-medium",
11082
+ "description": "40",
11083
+ "remote": false
11084
+ },
11085
+ {
11086
+ "styleType": "TEXT",
11087
+ "key": "25aafb51bb53e8ad6a4fd3888c4cd0fe22fe1484",
11088
+ "name": "scale/t13-static-regular",
11089
+ "description": "40",
11090
+ "remote": false
11091
+ },
11092
+ {
11093
+ "styleType": "TEXT",
11094
+ "key": "cb4871a19bfe5793fb62e8cb2af414077dbb554f",
11095
+ "name": "scale/t14-bold",
11096
+ "description": "48",
11097
+ "remote": false
11098
+ },
11099
+ {
11100
+ "styleType": "TEXT",
11101
+ "key": "7a65a36ff5664459014003876f7e008f7f9a29ac",
11102
+ "name": "scale/t14-medium",
11103
+ "description": "48",
11104
+ "remote": false
11105
+ },
11106
+ {
11107
+ "styleType": "TEXT",
11108
+ "key": "319ce219a9a7d266cdc86525f6a9d15d33d3fbc5",
11109
+ "name": "scale/t14-regular",
11110
+ "description": "48",
11111
+ "remote": false
11112
+ },
11113
+ {
11114
+ "styleType": "TEXT",
11115
+ "key": "a901e969dec12e78cc4e12e2dedd49490d3f9b6c",
11116
+ "name": "scale/t14-static-bold",
11117
+ "description": "48",
11118
+ "remote": false
11119
+ },
11120
+ {
11121
+ "styleType": "TEXT",
11122
+ "key": "a8b4a10427f553ab3675471396389a0aab9cba74",
11123
+ "name": "scale/t14-static-medium",
11124
+ "description": "48",
11125
+ "remote": false
11126
+ },
11127
+ {
11128
+ "styleType": "TEXT",
11129
+ "key": "cdcbb93f6e2c0785bd3bb0e9f7ecad7568c1be5e",
11130
+ "name": "scale/t14-static-regular",
11131
+ "description": "48",
11132
+ "remote": false
11133
+ },
10938
11134
  {
10939
11135
  "styleType": "TEXT",
10940
11136
  "key": "8378bd59b14f5682dcaf20110efde4b7a1fb18e3",
@@ -11194,6 +11390,20 @@ const FIGMA_STYLES = [
11194
11390
  "description": "22",
11195
11391
  "remote": false
11196
11392
  },
11393
+ {
11394
+ "styleType": "TEXT",
11395
+ "key": "6e0e3a4652ac72a7bdf4f6ca5e3b3e88e6e91a1f",
11396
+ "name": "scale/t8-medium",
11397
+ "description": "22",
11398
+ "remote": false
11399
+ },
11400
+ {
11401
+ "styleType": "TEXT",
11402
+ "key": "ba43d7fc601a61769f623e1ec54a569fcf80d0d2",
11403
+ "name": "scale/t8-regular",
11404
+ "description": "22",
11405
+ "remote": false
11406
+ },
11197
11407
  {
11198
11408
  "styleType": "TEXT",
11199
11409
  "key": "37821f18bc4416d7a81fa429d89240317a8f17e6",
@@ -11201,6 +11411,20 @@ const FIGMA_STYLES = [
11201
11411
  "description": "22",
11202
11412
  "remote": false
11203
11413
  },
11414
+ {
11415
+ "styleType": "TEXT",
11416
+ "key": "759499dc9fc172011297eee2b8b96c3b369708c9",
11417
+ "name": "scale/t8-static-medium",
11418
+ "description": "22",
11419
+ "remote": false
11420
+ },
11421
+ {
11422
+ "styleType": "TEXT",
11423
+ "key": "2643414348304d2a7f712f321a7ee07c3f20cff6",
11424
+ "name": "scale/t8-static-regular",
11425
+ "description": "22",
11426
+ "remote": false
11427
+ },
11204
11428
  {
11205
11429
  "styleType": "TEXT",
11206
11430
  "key": "b146e1317c67db787834f1890493225bdbba4e48",
@@ -11208,6 +11432,20 @@ const FIGMA_STYLES = [
11208
11432
  "description": "24",
11209
11433
  "remote": false
11210
11434
  },
11435
+ {
11436
+ "styleType": "TEXT",
11437
+ "key": "2c069c359d4d880a09a0ff025ae70e56e5e6cfda",
11438
+ "name": "scale/t9-medium",
11439
+ "description": "24",
11440
+ "remote": false
11441
+ },
11442
+ {
11443
+ "styleType": "TEXT",
11444
+ "key": "9e695936bfe469d21c072346744f0ce73c808336",
11445
+ "name": "scale/t9-regular",
11446
+ "description": "24",
11447
+ "remote": false
11448
+ },
11211
11449
  {
11212
11450
  "styleType": "TEXT",
11213
11451
  "key": "c06e147e98440109199e2e3fa2a63390d19afb0c",
@@ -11215,6 +11453,20 @@ const FIGMA_STYLES = [
11215
11453
  "description": "24",
11216
11454
  "remote": false
11217
11455
  },
11456
+ {
11457
+ "styleType": "TEXT",
11458
+ "key": "6e6b4cd794df40335e9f3f6ec3ba519e71e5db5d",
11459
+ "name": "scale/t9-static-medium",
11460
+ "description": "24",
11461
+ "remote": false
11462
+ },
11463
+ {
11464
+ "styleType": "TEXT",
11465
+ "key": "25fd249f85598595696ee12df23f3c0209287199",
11466
+ "name": "scale/t9-static-regular",
11467
+ "description": "24",
11468
+ "remote": false
11469
+ },
11218
11470
  {
11219
11471
  "styleType": "TEXT",
11220
11472
  "key": "85422ef9f0230f821f1a9e6d2f8f86b3ba87f20d",
@@ -11628,20 +11880,24 @@ const FIGMA_VARIABLE_COLLECTIONS = {
11628
11880
  "name": "iOS"
11629
11881
  },
11630
11882
  {
11631
- "modeId": "1:6",
11632
- "name": "iOS-xxxlarge"
11883
+ "modeId": "1:7",
11884
+ "name": "iOS (80%)"
11633
11885
  },
11634
11886
  {
11635
- "modeId": "1:7",
11636
- "name": "iOS-xsmall"
11887
+ "modeId": "1:6",
11888
+ "name": "iOS (135%)"
11637
11889
  },
11638
11890
  {
11639
11891
  "modeId": "1:8",
11640
11892
  "name": "Android"
11641
11893
  },
11894
+ {
11895
+ "modeId": "62468:0",
11896
+ "name": "Android (80%)"
11897
+ },
11642
11898
  {
11643
11899
  "modeId": "51907:0",
11644
- "name": "Android-xlarge"
11900
+ "name": "Android (150%)"
11645
11901
  }
11646
11902
  ],
11647
11903
  "key": "75a9a164e0f9d49ba07e82176cbc7240569928a5",
@@ -11707,6 +11963,22 @@ const FIGMA_VARIABLE_COLLECTIONS = {
11707
11963
  "VariableID:58766:15457",
11708
11964
  "VariableID:58766:15458",
11709
11965
  "VariableID:58766:15459",
11966
+ "VariableID:62466:5",
11967
+ "VariableID:62472:10",
11968
+ "VariableID:62472:11",
11969
+ "VariableID:62472:12",
11970
+ "VariableID:62472:6",
11971
+ "VariableID:62472:7",
11972
+ "VariableID:62472:8",
11973
+ "VariableID:62472:9",
11974
+ "VariableID:62476:13",
11975
+ "VariableID:62476:14",
11976
+ "VariableID:62476:15",
11977
+ "VariableID:62476:16",
11978
+ "VariableID:62476:17",
11979
+ "VariableID:62476:18",
11980
+ "VariableID:62476:19",
11981
+ "VariableID:62476:20",
11710
11982
  "VariableID:796:4448"
11711
11983
  ]
11712
11984
  },
@@ -12438,7 +12710,9 @@ const FIGMA_VARIABLES = {
12438
12710
  },
12439
12711
  "scopes": [
12440
12712
  "FRAME_FILL",
12441
- "SHAPE_FILL"
12713
+ "SHAPE_FILL",
12714
+ "STROKE_COLOR",
12715
+ "EFFECT_COLOR"
12442
12716
  ],
12443
12717
  "codeSyntax": {}
12444
12718
  },
@@ -12490,7 +12764,9 @@ const FIGMA_VARIABLES = {
12490
12764
  },
12491
12765
  "scopes": [
12492
12766
  "FRAME_FILL",
12493
- "SHAPE_FILL"
12767
+ "SHAPE_FILL",
12768
+ "STROKE_COLOR",
12769
+ "EFFECT_COLOR"
12494
12770
  ],
12495
12771
  "codeSyntax": {}
12496
12772
  },
@@ -12541,7 +12817,9 @@ const FIGMA_VARIABLES = {
12541
12817
  },
12542
12818
  "scopes": [
12543
12819
  "FRAME_FILL",
12544
- "SHAPE_FILL"
12820
+ "SHAPE_FILL",
12821
+ "STROKE_COLOR",
12822
+ "EFFECT_COLOR"
12545
12823
  ],
12546
12824
  "codeSyntax": {}
12547
12825
  },
@@ -12566,7 +12844,9 @@ const FIGMA_VARIABLES = {
12566
12844
  },
12567
12845
  "scopes": [
12568
12846
  "FRAME_FILL",
12569
- "SHAPE_FILL"
12847
+ "SHAPE_FILL",
12848
+ "STROKE_COLOR",
12849
+ "EFFECT_COLOR"
12570
12850
  ],
12571
12851
  "codeSyntax": {}
12572
12852
  },
@@ -13181,7 +13461,8 @@ const FIGMA_VARIABLES = {
13181
13461
  "1:6": 358,
13182
13462
  "1:7": 358,
13183
13463
  "1:8": 358,
13184
- "51907:0": 358
13464
+ "51907:0": 358,
13465
+ "62468:0": 358
13185
13466
  },
13186
13467
  "scopes": [
13187
13468
  "WIDTH_HEIGHT"
@@ -13202,7 +13483,8 @@ const FIGMA_VARIABLES = {
13202
13483
  "1:6": 173,
13203
13484
  "1:7": 173,
13204
13485
  "1:8": 173,
13205
- "51907:0": 173
13486
+ "51907:0": 173,
13487
+ "62468:0": 173
13206
13488
  },
13207
13489
  "scopes": [
13208
13490
  "WIDTH_HEIGHT"
@@ -13223,7 +13505,8 @@ const FIGMA_VARIABLES = {
13223
13505
  "1:6": 111.33000183105469,
13224
13506
  "1:7": 111.33000183105469,
13225
13507
  "1:8": 111.33000183105469,
13226
- "51907:0": 111.33000183105469
13508
+ "51907:0": 111.33000183105469,
13509
+ "62468:0": 111.33000183105469
13227
13510
  },
13228
13511
  "scopes": [
13229
13512
  "WIDTH_HEIGHT"
@@ -14181,7 +14464,8 @@ const FIGMA_VARIABLES = {
14181
14464
  "1:6": "Figma Only iOS",
14182
14465
  "1:7": "Figma Only iOS",
14183
14466
  "1:8": "Roboto",
14184
- "51907:0": "Roboto"
14467
+ "51907:0": "Roboto",
14468
+ "62468:0": "Roboto"
14185
14469
  },
14186
14470
  "scopes": [
14187
14471
  "FONT_FAMILY"
@@ -14202,7 +14486,8 @@ const FIGMA_VARIABLES = {
14202
14486
  "1:6": "Figma Only iOS Text",
14203
14487
  "1:7": "Figma Only iOS Text",
14204
14488
  "1:8": "Roboto",
14205
- "51907:0": "Roboto"
14489
+ "51907:0": "Roboto",
14490
+ "62468:0": "Roboto"
14206
14491
  },
14207
14492
  "scopes": [
14208
14493
  "FONT_FAMILY"
@@ -14220,10 +14505,11 @@ const FIGMA_VARIABLES = {
14220
14505
  "hiddenFromPublishing": false,
14221
14506
  "valuesByMode": {
14222
14507
  "1:5": 11,
14223
- "1:6": 17,
14224
- "1:7": 8,
14508
+ "1:6": 15,
14509
+ "1:7": 10,
14225
14510
  "1:8": 11,
14226
- "51907:0": 16.5
14511
+ "51907:0": 16.5,
14512
+ "62468:0": 10
14227
14513
  },
14228
14514
  "scopes": [
14229
14515
  "FONT_SIZE"
@@ -14241,10 +14527,11 @@ const FIGMA_VARIABLES = {
14241
14527
  "hiddenFromPublishing": false,
14242
14528
  "valuesByMode": {
14243
14529
  "1:5": 26,
14244
- "1:6": 32,
14245
- "1:7": 23,
14530
+ "1:6": 34,
14531
+ "1:7": 22,
14246
14532
  "1:8": 26,
14247
- "51907:0": 39
14533
+ "51907:0": 28.700000762939453,
14534
+ "62468:0": 22
14248
14535
  },
14249
14536
  "scopes": [
14250
14537
  "FONT_SIZE"
@@ -14265,70 +14552,250 @@ const FIGMA_VARIABLES = {
14265
14552
  "1:6": 26,
14266
14553
  "1:7": 26,
14267
14554
  "1:8": 26,
14268
- "51907:0": 26
14555
+ "51907:0": 26,
14556
+ "62468:0": 26
14269
14557
  },
14270
14558
  "scopes": [
14271
14559
  "FONT_SIZE"
14272
14560
  ],
14273
14561
  "codeSyntax": {}
14274
14562
  },
14275
- "VariableID:1:203": {
14276
- "name": "font-size/t2",
14277
- "id": "VariableID:1:203",
14563
+ "VariableID:62466:5": {
14564
+ "name": "font-size/t11",
14565
+ "id": "VariableID:62466:5",
14278
14566
  "remote": false,
14279
- "key": "ea3f6b0284e7ffc3e0a6e1ef6d9968ccbacf5f00",
14567
+ "key": "3563ead0527fe20304f480fdf272d3cbaeef6e5b",
14280
14568
  "variableCollectionId": "VariableCollectionId:1:197",
14281
14569
  "resolvedType": "FLOAT",
14282
14570
  "description": "",
14283
14571
  "hiddenFromPublishing": false,
14284
14572
  "valuesByMode": {
14285
- "1:5": 12,
14286
- "1:6": 18,
14287
- "1:7": 9,
14288
- "1:8": 12,
14289
- "51907:0": 18
14573
+ "1:5": 28,
14574
+ "1:6": 37,
14575
+ "1:7": 24,
14576
+ "1:8": 28,
14577
+ "51907:0": 29.299999237060547,
14578
+ "62468:0": 24
14290
14579
  },
14291
14580
  "scopes": [
14292
14581
  "FONT_SIZE"
14293
14582
  ],
14294
14583
  "codeSyntax": {}
14295
14584
  },
14296
- "VariableID:1:204": {
14297
- "name": "font-size/t3",
14298
- "id": "VariableID:1:204",
14585
+ "VariableID:62476:13": {
14586
+ "name": "font-size/t11-static",
14587
+ "id": "VariableID:62476:13",
14299
14588
  "remote": false,
14300
- "key": "bc6d4dc5395f878019227868a7921448342cf7a7",
14589
+ "key": "7cc056f6a2fac299e9ceacafcfb254fdb944f253",
14301
14590
  "variableCollectionId": "VariableCollectionId:1:197",
14302
14591
  "resolvedType": "FLOAT",
14303
- "description": "",
14592
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14304
14593
  "hiddenFromPublishing": false,
14305
14594
  "valuesByMode": {
14306
- "1:5": 13,
14307
- "1:6": 19,
14308
- "1:7": 10,
14309
- "1:8": 13,
14310
- "51907:0": 19.5
14595
+ "1:5": 28,
14596
+ "1:6": 28,
14597
+ "1:7": 28,
14598
+ "1:8": 28,
14599
+ "51907:0": 28,
14600
+ "62468:0": 28
14311
14601
  },
14312
14602
  "scopes": [
14313
14603
  "FONT_SIZE"
14314
14604
  ],
14315
14605
  "codeSyntax": {}
14316
14606
  },
14317
- "VariableID:1:205": {
14318
- "name": "font-size/t4",
14319
- "id": "VariableID:1:205",
14607
+ "VariableID:62472:6": {
14608
+ "name": "font-size/t12",
14609
+ "id": "VariableID:62472:6",
14320
14610
  "remote": false,
14321
- "key": "3e6ac961714d3bb5f576520364c90a2058cafdf0",
14611
+ "key": "aca82384301101930a35313139af734732889256",
14322
14612
  "variableCollectionId": "VariableCollectionId:1:197",
14323
14613
  "resolvedType": "FLOAT",
14324
14614
  "description": "",
14325
14615
  "hiddenFromPublishing": false,
14326
14616
  "valuesByMode": {
14327
- "1:5": 14,
14328
- "1:6": 20,
14617
+ "1:5": 32,
14618
+ "1:6": 42,
14619
+ "1:7": 28,
14620
+ "1:8": 32,
14621
+ "51907:0": 32,
14622
+ "62468:0": 28
14623
+ },
14624
+ "scopes": [
14625
+ "FONT_SIZE"
14626
+ ],
14627
+ "codeSyntax": {}
14628
+ },
14629
+ "VariableID:62476:14": {
14630
+ "name": "font-size/t12-static",
14631
+ "id": "VariableID:62476:14",
14632
+ "remote": false,
14633
+ "key": "9f630e581a9e3088abfb03affa31df636abf4775",
14634
+ "variableCollectionId": "VariableCollectionId:1:197",
14635
+ "resolvedType": "FLOAT",
14636
+ "description": "",
14637
+ "hiddenFromPublishing": false,
14638
+ "valuesByMode": {
14639
+ "1:5": 32,
14640
+ "1:6": 32,
14641
+ "1:7": 32,
14642
+ "1:8": 32,
14643
+ "51907:0": 32,
14644
+ "62468:0": 32
14645
+ },
14646
+ "scopes": [
14647
+ "FONT_SIZE"
14648
+ ],
14649
+ "codeSyntax": {}
14650
+ },
14651
+ "VariableID:62472:7": {
14652
+ "name": "font-size/t13",
14653
+ "id": "VariableID:62472:7",
14654
+ "remote": false,
14655
+ "key": "59e47f16abe04be510a235a69014b408e154ff3a",
14656
+ "variableCollectionId": "VariableCollectionId:1:197",
14657
+ "resolvedType": "FLOAT",
14658
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14659
+ "hiddenFromPublishing": false,
14660
+ "valuesByMode": {
14661
+ "1:5": 40,
14662
+ "1:6": 53,
14663
+ "1:7": 35,
14664
+ "1:8": 40,
14665
+ "51907:0": 40,
14666
+ "62468:0": 35
14667
+ },
14668
+ "scopes": [
14669
+ "FONT_SIZE"
14670
+ ],
14671
+ "codeSyntax": {}
14672
+ },
14673
+ "VariableID:62476:15": {
14674
+ "name": "font-size/t13-static",
14675
+ "id": "VariableID:62476:15",
14676
+ "remote": false,
14677
+ "key": "b96e169bb2bee076af0a08323544e561f49c04e1",
14678
+ "variableCollectionId": "VariableCollectionId:1:197",
14679
+ "resolvedType": "FLOAT",
14680
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14681
+ "hiddenFromPublishing": false,
14682
+ "valuesByMode": {
14683
+ "1:5": 40,
14684
+ "1:6": 40,
14685
+ "1:7": 40,
14686
+ "1:8": 40,
14687
+ "51907:0": 40,
14688
+ "62468:0": 40
14689
+ },
14690
+ "scopes": [
14691
+ "FONT_SIZE"
14692
+ ],
14693
+ "codeSyntax": {}
14694
+ },
14695
+ "VariableID:62472:8": {
14696
+ "name": "font-size/t14",
14697
+ "id": "VariableID:62472:8",
14698
+ "remote": false,
14699
+ "key": "b5f8c29e5c6634fdb76775de9b17f3f8dd133d7b",
14700
+ "variableCollectionId": "VariableCollectionId:1:197",
14701
+ "resolvedType": "FLOAT",
14702
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14703
+ "hiddenFromPublishing": false,
14704
+ "valuesByMode": {
14705
+ "1:5": 48,
14706
+ "1:6": 63,
14707
+ "1:7": 41,
14708
+ "1:8": 48,
14709
+ "51907:0": 48,
14710
+ "62468:0": 41
14711
+ },
14712
+ "scopes": [
14713
+ "FONT_SIZE"
14714
+ ],
14715
+ "codeSyntax": {}
14716
+ },
14717
+ "VariableID:62476:16": {
14718
+ "name": "font-size/t14-static",
14719
+ "id": "VariableID:62476:16",
14720
+ "remote": false,
14721
+ "key": "6cc1ef8cf0a807be4a7765a5387a1d1efa1cb732",
14722
+ "variableCollectionId": "VariableCollectionId:1:197",
14723
+ "resolvedType": "FLOAT",
14724
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
14725
+ "hiddenFromPublishing": false,
14726
+ "valuesByMode": {
14727
+ "1:5": 48,
14728
+ "1:6": 48,
14729
+ "1:7": 48,
14730
+ "1:8": 48,
14731
+ "51907:0": 48,
14732
+ "62468:0": 48
14733
+ },
14734
+ "scopes": [
14735
+ "FONT_SIZE"
14736
+ ],
14737
+ "codeSyntax": {}
14738
+ },
14739
+ "VariableID:1:203": {
14740
+ "name": "font-size/t2",
14741
+ "id": "VariableID:1:203",
14742
+ "remote": false,
14743
+ "key": "ea3f6b0284e7ffc3e0a6e1ef6d9968ccbacf5f00",
14744
+ "variableCollectionId": "VariableCollectionId:1:197",
14745
+ "resolvedType": "FLOAT",
14746
+ "description": "",
14747
+ "hiddenFromPublishing": false,
14748
+ "valuesByMode": {
14749
+ "1:5": 12,
14750
+ "1:6": 16,
14751
+ "1:7": 10,
14752
+ "1:8": 12,
14753
+ "51907:0": 18,
14754
+ "62468:0": 10
14755
+ },
14756
+ "scopes": [
14757
+ "FONT_SIZE"
14758
+ ],
14759
+ "codeSyntax": {}
14760
+ },
14761
+ "VariableID:1:204": {
14762
+ "name": "font-size/t3",
14763
+ "id": "VariableID:1:204",
14764
+ "remote": false,
14765
+ "key": "bc6d4dc5395f878019227868a7921448342cf7a7",
14766
+ "variableCollectionId": "VariableCollectionId:1:197",
14767
+ "resolvedType": "FLOAT",
14768
+ "description": "",
14769
+ "hiddenFromPublishing": false,
14770
+ "valuesByMode": {
14771
+ "1:5": 13,
14772
+ "1:6": 17,
14329
14773
  "1:7": 11,
14774
+ "1:8": 13,
14775
+ "51907:0": 20,
14776
+ "62468:0": 11
14777
+ },
14778
+ "scopes": [
14779
+ "FONT_SIZE"
14780
+ ],
14781
+ "codeSyntax": {}
14782
+ },
14783
+ "VariableID:1:205": {
14784
+ "name": "font-size/t4",
14785
+ "id": "VariableID:1:205",
14786
+ "remote": false,
14787
+ "key": "3e6ac961714d3bb5f576520364c90a2058cafdf0",
14788
+ "variableCollectionId": "VariableCollectionId:1:197",
14789
+ "resolvedType": "FLOAT",
14790
+ "description": "",
14791
+ "hiddenFromPublishing": false,
14792
+ "valuesByMode": {
14793
+ "1:5": 14,
14794
+ "1:6": 18,
14795
+ "1:7": 12,
14330
14796
  "1:8": 14,
14331
- "51907:0": 21
14797
+ "51907:0": 22,
14798
+ "62468:0": 12
14332
14799
  },
14333
14800
  "scopes": [
14334
14801
  "FONT_SIZE"
@@ -14346,10 +14813,11 @@ const FIGMA_VARIABLES = {
14346
14813
  "hiddenFromPublishing": false,
14347
14814
  "valuesByMode": {
14348
14815
  "1:5": 16,
14349
- "1:6": 22,
14350
- "1:7": 13,
14816
+ "1:6": 21,
14817
+ "1:7": 14,
14351
14818
  "1:8": 16,
14352
- "51907:0": 24
14819
+ "51907:0": 23,
14820
+ "62468:0": 14
14353
14821
  },
14354
14822
  "scopes": [
14355
14823
  "FONT_SIZE"
@@ -14368,9 +14836,10 @@ const FIGMA_VARIABLES = {
14368
14836
  "valuesByMode": {
14369
14837
  "1:5": 18,
14370
14838
  "1:6": 24,
14371
- "1:7": 15,
14839
+ "1:7": 16,
14372
14840
  "1:8": 18,
14373
- "51907:0": 27
14841
+ "51907:0": 24,
14842
+ "62468:0": 16
14374
14843
  },
14375
14844
  "scopes": [
14376
14845
  "FONT_SIZE"
@@ -14391,7 +14860,8 @@ const FIGMA_VARIABLES = {
14391
14860
  "1:6": 26,
14392
14861
  "1:7": 17,
14393
14862
  "1:8": 20,
14394
- "51907:0": 30
14863
+ "51907:0": 26,
14864
+ "62468:0": 17
14395
14865
  },
14396
14866
  "scopes": [
14397
14867
  "FONT_SIZE"
@@ -14409,10 +14879,11 @@ const FIGMA_VARIABLES = {
14409
14879
  "hiddenFromPublishing": false,
14410
14880
  "valuesByMode": {
14411
14881
  "1:5": 22,
14412
- "1:6": 28,
14882
+ "1:6": 29,
14413
14883
  "1:7": 19,
14414
14884
  "1:8": 22,
14415
- "51907:0": 33
14885
+ "51907:0": 27,
14886
+ "62468:0": 19
14416
14887
  },
14417
14888
  "scopes": [
14418
14889
  "FONT_SIZE"
@@ -14430,10 +14901,11 @@ const FIGMA_VARIABLES = {
14430
14901
  "hiddenFromPublishing": false,
14431
14902
  "valuesByMode": {
14432
14903
  "1:5": 24,
14433
- "1:6": 30,
14904
+ "1:6": 32,
14434
14905
  "1:7": 21,
14435
14906
  "1:8": 24,
14436
- "51907:0": 36
14907
+ "51907:0": 28,
14908
+ "62468:0": 21
14437
14909
  },
14438
14910
  "scopes": [
14439
14911
  "FONT_SIZE"
@@ -14454,7 +14926,8 @@ const FIGMA_VARIABLES = {
14454
14926
  "1:6": "bold",
14455
14927
  "1:7": "bold",
14456
14928
  "1:8": "bold",
14457
- "51907:0": "bold"
14929
+ "51907:0": "bold",
14930
+ "62468:0": "bold"
14458
14931
  },
14459
14932
  "scopes": [
14460
14933
  "FONT_STYLE"
@@ -14475,7 +14948,8 @@ const FIGMA_VARIABLES = {
14475
14948
  "1:6": "medium",
14476
14949
  "1:7": "medium",
14477
14950
  "1:8": "medium",
14478
- "51907:0": "medium"
14951
+ "51907:0": "medium",
14952
+ "62468:0": "medium"
14479
14953
  },
14480
14954
  "scopes": [
14481
14955
  "FONT_STYLE"
@@ -14496,7 +14970,8 @@ const FIGMA_VARIABLES = {
14496
14970
  "1:6": "regular",
14497
14971
  "1:7": "regular",
14498
14972
  "1:8": "regular",
14499
- "51907:0": "regular"
14973
+ "51907:0": "regular",
14974
+ "62468:0": "regular"
14500
14975
  },
14501
14976
  "scopes": [
14502
14977
  "FONT_STYLE"
@@ -14517,7 +14992,8 @@ const FIGMA_VARIABLES = {
14517
14992
  "1:6": 36,
14518
14993
  "1:7": 27,
14519
14994
  "1:8": 30,
14520
- "51907:0": 30
14995
+ "51907:0": 30,
14996
+ "62468:0": 30
14521
14997
  },
14522
14998
  "scopes": [
14523
14999
  "LINE_HEIGHT"
@@ -14536,10 +15012,11 @@ const FIGMA_VARIABLES = {
14536
15012
  "hiddenFromPublishing": false,
14537
15013
  "valuesByMode": {
14538
15014
  "1:5": 15,
14539
- "1:6": 19,
14540
- "1:7": 10,
15015
+ "1:6": 20,
15016
+ "1:7": 13,
14541
15017
  "1:8": 15,
14542
- "51907:0": 22.5
15018
+ "51907:0": 22.5,
15019
+ "62468:0": 13
14543
15020
  },
14544
15021
  "scopes": [
14545
15022
  "LINE_HEIGHT"
@@ -14557,10 +15034,11 @@ const FIGMA_VARIABLES = {
14557
15034
  "hiddenFromPublishing": false,
14558
15035
  "valuesByMode": {
14559
15036
  "1:5": 35,
14560
- "1:6": 40,
14561
- "1:7": 31,
15037
+ "1:6": 46,
15038
+ "1:7": 30,
14562
15039
  "1:8": 35,
14563
- "51907:0": 52.5
15040
+ "51907:0": 35,
15041
+ "62468:0": 30
14564
15042
  },
14565
15043
  "scopes": [
14566
15044
  "LINE_HEIGHT"
@@ -14581,10 +15059,187 @@ const FIGMA_VARIABLES = {
14581
15059
  "1:6": 35,
14582
15060
  "1:7": 35,
14583
15061
  "1:8": 35,
14584
- "51907:0": 35
15062
+ "51907:0": 35,
15063
+ "62468:0": 35
14585
15064
  },
14586
15065
  "scopes": [
14587
- "FONT_SIZE"
15066
+ "LINE_HEIGHT"
15067
+ ],
15068
+ "codeSyntax": {}
15069
+ },
15070
+ "VariableID:62472:9": {
15071
+ "name": "line-height/t11",
15072
+ "id": "VariableID:62472:9",
15073
+ "remote": false,
15074
+ "key": "89e04793b4b7e39331fedb38362d822718c87acd",
15075
+ "variableCollectionId": "VariableCollectionId:1:197",
15076
+ "resolvedType": "FLOAT",
15077
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15078
+ "hiddenFromPublishing": false,
15079
+ "valuesByMode": {
15080
+ "1:5": 38,
15081
+ "1:6": 50,
15082
+ "1:7": 33,
15083
+ "1:8": 38,
15084
+ "51907:0": 38,
15085
+ "62468:0": 33
15086
+ },
15087
+ "scopes": [
15088
+ "LINE_HEIGHT"
15089
+ ],
15090
+ "codeSyntax": {}
15091
+ },
15092
+ "VariableID:62476:17": {
15093
+ "name": "line-height/t11-static",
15094
+ "id": "VariableID:62476:17",
15095
+ "remote": false,
15096
+ "key": "acc664c45622b6656965d7211f556484a93f3169",
15097
+ "variableCollectionId": "VariableCollectionId:1:197",
15098
+ "resolvedType": "FLOAT",
15099
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15100
+ "hiddenFromPublishing": false,
15101
+ "valuesByMode": {
15102
+ "1:5": 38,
15103
+ "1:6": 38,
15104
+ "1:7": 38,
15105
+ "1:8": 38,
15106
+ "51907:0": 38,
15107
+ "62468:0": 38
15108
+ },
15109
+ "scopes": [
15110
+ "LINE_HEIGHT"
15111
+ ],
15112
+ "codeSyntax": {}
15113
+ },
15114
+ "VariableID:62472:10": {
15115
+ "name": "line-height/t12",
15116
+ "id": "VariableID:62472:10",
15117
+ "remote": false,
15118
+ "key": "e2270c2ee82cb86f8128de21a66e52112b646f2c",
15119
+ "variableCollectionId": "VariableCollectionId:1:197",
15120
+ "resolvedType": "FLOAT",
15121
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15122
+ "hiddenFromPublishing": false,
15123
+ "valuesByMode": {
15124
+ "1:5": 42,
15125
+ "1:6": 55,
15126
+ "1:7": 36,
15127
+ "1:8": 42,
15128
+ "51907:0": 42,
15129
+ "62468:0": 36
15130
+ },
15131
+ "scopes": [
15132
+ "LINE_HEIGHT"
15133
+ ],
15134
+ "codeSyntax": {}
15135
+ },
15136
+ "VariableID:62476:18": {
15137
+ "name": "line-height/t12-static",
15138
+ "id": "VariableID:62476:18",
15139
+ "remote": false,
15140
+ "key": "d07735edf82009980756985967ba030d2cb4122f",
15141
+ "variableCollectionId": "VariableCollectionId:1:197",
15142
+ "resolvedType": "FLOAT",
15143
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15144
+ "hiddenFromPublishing": false,
15145
+ "valuesByMode": {
15146
+ "1:5": 42,
15147
+ "1:6": 42,
15148
+ "1:7": 42,
15149
+ "1:8": 42,
15150
+ "51907:0": 42,
15151
+ "62468:0": 42
15152
+ },
15153
+ "scopes": [
15154
+ "LINE_HEIGHT"
15155
+ ],
15156
+ "codeSyntax": {}
15157
+ },
15158
+ "VariableID:62472:11": {
15159
+ "name": "line-height/t13",
15160
+ "id": "VariableID:62472:11",
15161
+ "remote": false,
15162
+ "key": "b210b31f1274150a48b1874db4c076a39fee3d3e",
15163
+ "variableCollectionId": "VariableCollectionId:1:197",
15164
+ "resolvedType": "FLOAT",
15165
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15166
+ "hiddenFromPublishing": false,
15167
+ "valuesByMode": {
15168
+ "1:5": 52,
15169
+ "1:6": 69,
15170
+ "1:7": 45,
15171
+ "1:8": 52,
15172
+ "51907:0": 52,
15173
+ "62468:0": 45
15174
+ },
15175
+ "scopes": [
15176
+ "LINE_HEIGHT"
15177
+ ],
15178
+ "codeSyntax": {}
15179
+ },
15180
+ "VariableID:62476:19": {
15181
+ "name": "line-height/t13-static",
15182
+ "id": "VariableID:62476:19",
15183
+ "remote": false,
15184
+ "key": "8715c03818edfadb6048ac375e7f9ca13e8e5efa",
15185
+ "variableCollectionId": "VariableCollectionId:1:197",
15186
+ "resolvedType": "FLOAT",
15187
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15188
+ "hiddenFromPublishing": false,
15189
+ "valuesByMode": {
15190
+ "1:5": 52,
15191
+ "1:6": 52,
15192
+ "1:7": 52,
15193
+ "1:8": 52,
15194
+ "51907:0": 52,
15195
+ "62468:0": 52
15196
+ },
15197
+ "scopes": [
15198
+ "LINE_HEIGHT"
15199
+ ],
15200
+ "codeSyntax": {}
15201
+ },
15202
+ "VariableID:62472:12": {
15203
+ "name": "line-height/t14",
15204
+ "id": "VariableID:62472:12",
15205
+ "remote": false,
15206
+ "key": "5ea22e5d70b679313c0cb0a09d445f1157b0a7d7",
15207
+ "variableCollectionId": "VariableCollectionId:1:197",
15208
+ "resolvedType": "FLOAT",
15209
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15210
+ "hiddenFromPublishing": false,
15211
+ "valuesByMode": {
15212
+ "1:5": 60,
15213
+ "1:6": 79,
15214
+ "1:7": 52,
15215
+ "1:8": 60,
15216
+ "51907:0": 60,
15217
+ "62468:0": 52
15218
+ },
15219
+ "scopes": [
15220
+ "LINE_HEIGHT"
15221
+ ],
15222
+ "codeSyntax": {}
15223
+ },
15224
+ "VariableID:62476:20": {
15225
+ "name": "line-height/t14-static",
15226
+ "id": "VariableID:62476:20",
15227
+ "remote": false,
15228
+ "key": "65bf38bfd71e74b161767b5a665028eaad679bb1",
15229
+ "variableCollectionId": "VariableCollectionId:1:197",
15230
+ "resolvedType": "FLOAT",
15231
+ "description": "데스크탑 화면에서 사용을 권장합니다.",
15232
+ "hiddenFromPublishing": false,
15233
+ "valuesByMode": {
15234
+ "1:5": 60,
15235
+ "1:6": 60,
15236
+ "1:7": 60,
15237
+ "1:8": 60,
15238
+ "51907:0": 60,
15239
+ "62468:0": 60
15240
+ },
15241
+ "scopes": [
15242
+ "LINE_HEIGHT"
14588
15243
  ],
14589
15244
  "codeSyntax": {}
14590
15245
  },
@@ -14599,10 +15254,11 @@ const FIGMA_VARIABLES = {
14599
15254
  "hiddenFromPublishing": false,
14600
15255
  "valuesByMode": {
14601
15256
  "1:5": 16,
14602
- "1:6": 22,
14603
- "1:7": 13,
15257
+ "1:6": 21,
15258
+ "1:7": 14,
14604
15259
  "1:8": 16,
14605
- "51907:0": 24
15260
+ "51907:0": 23,
15261
+ "62468:0": 14
14606
15262
  },
14607
15263
  "scopes": [
14608
15264
  "LINE_HEIGHT"
@@ -14621,9 +15277,10 @@ const FIGMA_VARIABLES = {
14621
15277
  "valuesByMode": {
14622
15278
  "1:5": 18,
14623
15279
  "1:6": 24,
14624
- "1:7": 15,
15280
+ "1:7": 16,
14625
15281
  "1:8": 18,
14626
- "51907:0": 27
15282
+ "51907:0": 24,
15283
+ "62468:0": 16
14627
15284
  },
14628
15285
  "scopes": [
14629
15286
  "LINE_HEIGHT"
@@ -14644,7 +15301,8 @@ const FIGMA_VARIABLES = {
14644
15301
  "1:6": 25,
14645
15302
  "1:7": 16,
14646
15303
  "1:8": 19,
14647
- "51907:0": 28.5
15304
+ "51907:0": 25,
15305
+ "62468:0": 16
14648
15306
  },
14649
15307
  "scopes": [
14650
15308
  "LINE_HEIGHT"
@@ -14662,10 +15320,11 @@ const FIGMA_VARIABLES = {
14662
15320
  "hiddenFromPublishing": false,
14663
15321
  "valuesByMode": {
14664
15322
  "1:5": 22,
14665
- "1:6": 27,
14666
- "1:7": 18,
15323
+ "1:6": 29,
15324
+ "1:7": 19,
14667
15325
  "1:8": 22,
14668
- "51907:0": 33
15326
+ "51907:0": 27,
15327
+ "62468:0": 19
14669
15328
  },
14670
15329
  "scopes": [
14671
15330
  "LINE_HEIGHT"
@@ -14683,10 +15342,11 @@ const FIGMA_VARIABLES = {
14683
15342
  "hiddenFromPublishing": false,
14684
15343
  "valuesByMode": {
14685
15344
  "1:5": 24,
14686
- "1:6": 29,
14687
- "1:7": 20,
15345
+ "1:6": 32,
15346
+ "1:7": 21,
14688
15347
  "1:8": 24,
14689
- "51907:0": 36
15348
+ "51907:0": 28,
15349
+ "62468:0": 21
14690
15350
  },
14691
15351
  "scopes": [
14692
15352
  "LINE_HEIGHT"
@@ -14704,10 +15364,11 @@ const FIGMA_VARIABLES = {
14704
15364
  "hiddenFromPublishing": false,
14705
15365
  "valuesByMode": {
14706
15366
  "1:5": 27,
14707
- "1:6": 31,
14708
- "1:7": 22,
15367
+ "1:6": 36,
15368
+ "1:7": 23,
14709
15369
  "1:8": 27,
14710
- "51907:0": 40.5
15370
+ "51907:0": 29,
15371
+ "62468:0": 23
14711
15372
  },
14712
15373
  "scopes": [
14713
15374
  "LINE_HEIGHT"
@@ -14725,10 +15386,11 @@ const FIGMA_VARIABLES = {
14725
15386
  "hiddenFromPublishing": false,
14726
15387
  "valuesByMode": {
14727
15388
  "1:5": 30,
14728
- "1:6": 34,
14729
- "1:7": 25,
15389
+ "1:6": 40,
15390
+ "1:7": 26,
14730
15391
  "1:8": 30,
14731
- "51907:0": 45
15392
+ "51907:0": 30,
15393
+ "62468:0": 26
14732
15394
  },
14733
15395
  "scopes": [
14734
15396
  "LINE_HEIGHT"
@@ -14746,10 +15408,11 @@ const FIGMA_VARIABLES = {
14746
15408
  "hiddenFromPublishing": false,
14747
15409
  "valuesByMode": {
14748
15410
  "1:5": 32,
14749
- "1:6": 38,
14750
- "1:7": 29,
15411
+ "1:6": 42,
15412
+ "1:7": 28,
14751
15413
  "1:8": 32,
14752
- "51907:0": 48
15414
+ "51907:0": 32,
15415
+ "62468:0": 28
14753
15416
  },
14754
15417
  "scopes": [
14755
15418
  "LINE_HEIGHT"
@@ -15330,7 +15993,8 @@ const FIGMA_VARIABLES = {
15330
15993
  "1:6": "iOS",
15331
15994
  "1:7": "iOS",
15332
15995
  "1:8": "Android",
15333
- "51907:0": "Android"
15996
+ "51907:0": "Android",
15997
+ "62468:0": "Android"
15334
15998
  },
15335
15999
  "scopes": [
15336
16000
  "ALL_SCOPES"
@@ -18719,44 +19383,9 @@ const FIGMA_VARIABLES = {
18719
19383
  }
18720
19384
  };
18721
19385
 
18722
- const privateTemplateAttachmentField = {
18723
- "name": "privateTemplateAttachmentField",
18724
- "key": "5ba20e248e9cd0292fc285488b2ed3b3145d37b0",
18725
- "componentPropertyDefinitions": {
18726
- "Show Header#40606:8": {
18727
- "type": "BOOLEAN"
18728
- },
18729
- "Show Footer#40606:9": {
18730
- "type": "BOOLEAN"
18731
- },
18732
- "Type": {
18733
- "type": "VARIANT",
18734
- "variantOptions": [
18735
- "Media",
18736
- "File"
18737
- ]
18738
- },
18739
- "State": {
18740
- "type": "VARIANT",
18741
- "variantOptions": [
18742
- "Enabled",
18743
- "Error",
18744
- "Disabled",
18745
- "Read Only"
18746
- ]
18747
- },
18748
- "Has Value": {
18749
- "type": "VARIANT",
18750
- "variantOptions": [
18751
- "False",
18752
- "True"
18753
- ]
18754
- }
18755
- }
18756
- };
18757
- const privateTemplateChipGroupField = {
18758
- "name": "privateTemplateChipGroupField",
18759
- "key": "b6e9378d9ac76f812121d6aa7264cc38d2310e39",
19386
+ const privateComponentChipGroupField = {
19387
+ "name": "privateComponentChipGroupField",
19388
+ "key": "3b202396b4eb4486b5f2181c97d6576ebae94250",
18760
19389
  "componentPropertyDefinitions": {
18761
19390
  "Show Header#40606:8": {
18762
19391
  "type": "BOOLEAN"
@@ -18775,9 +19404,9 @@ const privateTemplateChipGroupField = {
18775
19404
  }
18776
19405
  }
18777
19406
  };
18778
- const privateTemplatePhoneNumberField = {
18779
- "name": "privateTemplatePhoneNumberField",
18780
- "key": "b9c5726a5d6d25938fcc2b84281a3a0f513c7495",
19407
+ const privateComponentPhoneNumberField = {
19408
+ "name": "privateComponentPhoneNumberField",
19409
+ "key": "1aa9cf6ca847087540f16568c9ca86a07fafaf9b",
18781
19410
  "componentPropertyDefinitions": {
18782
19411
  "Show Header#40606:8": {
18783
19412
  "type": "BOOLEAN"
@@ -18804,9 +19433,9 @@ const privateTemplatePhoneNumberField = {
18804
19433
  }
18805
19434
  }
18806
19435
  };
18807
- const privateTemplatePinField = {
18808
- "name": "privateTemplatePinField",
18809
- "key": "0abee679553f912b4cbe9839d048cc64494a3b51",
19436
+ const privateComponentPinField = {
19437
+ "name": "privateComponentPinField",
19438
+ "key": "7e11c6342399819db16b85e947c6d1aae4e8a442",
18810
19439
  "componentPropertyDefinitions": {
18811
19440
  "Show Header#40606:8": {
18812
19441
  "type": "BOOLEAN"
@@ -18870,10 +19499,13 @@ const privateComponentBottomSheetHandle = {
18870
19499
  }
18871
19500
  }
18872
19501
  };
18873
- const privateTemplateChipGroup = {
18874
- "name": "privateTemplateChipGroup",
18875
- "key": "a6819019971fb8f472a4c07f6952014393da1859",
19502
+ const privateComponentChipGroup = {
19503
+ "name": "privateComponentChipGroup",
19504
+ "key": "3838d772ac3c7504d976b2f386ce521efe69d08f",
18876
19505
  "componentPropertyDefinitions": {
19506
+ "Chip Group#12261:81": {
19507
+ "type": "SLOT"
19508
+ },
18877
19509
  "Layout": {
18878
19510
  "type": "VARIANT",
18879
19511
  "variantOptions": [
@@ -18989,6 +19621,13 @@ const privateComponentInputButtonPrefix = {
18989
19621
  "Icon#34021:2": {
18990
19622
  "type": "INSTANCE_SWAP"
18991
19623
  },
19624
+ "Size": {
19625
+ "type": "VARIANT",
19626
+ "variantOptions": [
19627
+ "Large",
19628
+ "Medium"
19629
+ ]
19630
+ },
18992
19631
  "Type": {
18993
19632
  "type": "VARIANT",
18994
19633
  "variantOptions": [
@@ -19008,6 +19647,13 @@ const privateComponentInputButtonSuffix = {
19008
19647
  "Icon#37963:0": {
19009
19648
  "type": "INSTANCE_SWAP"
19010
19649
  },
19650
+ "Size": {
19651
+ "type": "VARIANT",
19652
+ "variantOptions": [
19653
+ "Large",
19654
+ "Medium"
19655
+ ]
19656
+ },
19011
19657
  "Type (Figma Only)": {
19012
19658
  "type": "VARIANT",
19013
19659
  "variantOptions": [
@@ -19031,6 +19677,13 @@ const privateComponentInputButtonValue = {
19031
19677
  "Placeholder Text#34067:2": {
19032
19678
  "type": "TEXT"
19033
19679
  },
19680
+ "Size": {
19681
+ "type": "VARIANT",
19682
+ "variantOptions": [
19683
+ "Large",
19684
+ "Medium"
19685
+ ]
19686
+ },
19034
19687
  "Value": {
19035
19688
  "type": "VARIANT",
19036
19689
  "variantOptions": [
@@ -19050,12 +19703,16 @@ const privateComponentInputButtonValueDisabled = {
19050
19703
  "Value Text#34067:0": {
19051
19704
  "type": "TEXT"
19052
19705
  },
19053
- "Clear Button#34067:1": {
19054
- "type": "BOOLEAN"
19055
- },
19056
19706
  "Placeholder Text#34067:2": {
19057
19707
  "type": "TEXT"
19058
19708
  },
19709
+ "Size": {
19710
+ "type": "VARIANT",
19711
+ "variantOptions": [
19712
+ "Large",
19713
+ "Medium"
19714
+ ]
19715
+ },
19059
19716
  "Value": {
19060
19717
  "type": "VARIANT",
19061
19718
  "variantOptions": [
@@ -19075,20 +19732,24 @@ const privateComponentInputButtonValueReadOnly = {
19075
19732
  "Value Text#34067:0": {
19076
19733
  "type": "TEXT"
19077
19734
  },
19078
- "Clear Button#34067:1": {
19079
- "type": "BOOLEAN"
19080
- },
19081
19735
  "Placeholder Text#34067:2": {
19082
19736
  "type": "TEXT"
19083
19737
  },
19738
+ "Size": {
19739
+ "type": "VARIANT",
19740
+ "variantOptions": [
19741
+ "Large",
19742
+ "Medium"
19743
+ ]
19744
+ },
19084
19745
  "Value": {
19085
19746
  "type": "VARIANT",
19086
19747
  "variantOptions": [
19087
- "Custom (Figma Only)",
19088
- "Chips-Overflow (Figma Only)",
19089
- "Chips-Scrollable (Figma Only)",
19748
+ "Empty",
19090
19749
  "Text",
19091
- "Empty"
19750
+ "Chips-Scrollable (Figma Only)",
19751
+ "Chips-Overflow (Figma Only)",
19752
+ "Custom (Figma Only)"
19092
19753
  ]
19093
19754
  }
19094
19755
  }
@@ -19432,9 +20093,9 @@ const privateComponentRootTopNavigationIconButton = {
19432
20093
  }
19433
20094
  }
19434
20095
  };
19435
- const privateTemplateRootTopNavigationPreset = {
19436
- "name": "privateTemplateRootTopNavigationPreset",
19437
- "key": "524bbc05ea9fb5910d36618720ea82d96d8f211f",
20096
+ const privateComponentRootTopNavigationPreset = {
20097
+ "name": "privateComponentRootTopNavigationPreset",
20098
+ "key": "26e1de69cbbed91a577b0c962a92ebab2621bf5f",
19438
20099
  "componentPropertyDefinitions": {
19439
20100
  "Tab": {
19440
20101
  "type": "VARIANT",
@@ -19785,8 +20446,8 @@ const privateComponentTabsChip = {
19785
20446
  "name": "privateComponentTabsChip",
19786
20447
  "key": "16bd9efbd95f4b5fa3dfe31c2e1acf4e8a88f6a5",
19787
20448
  "componentPropertyDefinitions": {
19788
- "Show Scroll Fog(Figma Only)#53171:9": {
19789
- "type": "BOOLEAN"
20449
+ "Container#12286:101": {
20450
+ "type": "SLOT"
19790
20451
  },
19791
20452
  "Size": {
19792
20453
  "type": "VARIANT",
@@ -19808,8 +20469,8 @@ const privateComponentTabsLine = {
19808
20469
  "name": "privateComponentTabsLine",
19809
20470
  "key": "e5bf0d2582100280b410415b9d8742202edbb45c",
19810
20471
  "componentPropertyDefinitions": {
19811
- "Show Scroll Fog(Figma Only)#53171:14": {
19812
- "type": "BOOLEAN"
20472
+ "Container#12286:96": {
20473
+ "type": "SLOT"
19813
20474
  },
19814
20475
  "Size": {
19815
20476
  "type": "VARIANT",
@@ -19830,24 +20491,7 @@ const privateComponentTabsLine = {
19830
20491
  const privateComponentTextInputCardNumberInput = {
19831
20492
  "name": "privateComponentTextInputCardNumberInput",
19832
20493
  "key": "60888e1eba691721f0ec6a41df43c1c075e5beac",
19833
- "componentPropertyDefinitions": {
19834
- "Clear Button#34067:1": {
19835
- "type": "BOOLEAN"
19836
- },
19837
- "Has Value": {
19838
- "type": "VARIANT",
19839
- "variantOptions": [
19840
- "false",
19841
- "true"
19842
- ]
19843
- },
19844
- "Variant": {
19845
- "type": "VARIANT",
19846
- "variantOptions": [
19847
- "Plain Text"
19848
- ]
19849
- }
19850
- }
20494
+ "componentPropertyDefinitions": {}
19851
20495
  };
19852
20496
  const privateComponentTextInputIdNumberInput = {
19853
20497
  "name": "privateComponentTextInputIdNumberInput",
@@ -19859,6 +20503,13 @@ const privateComponentTextInputIdNumberInput = {
19859
20503
  "Clear Button#34067:1": {
19860
20504
  "type": "BOOLEAN"
19861
20505
  },
20506
+ "Size": {
20507
+ "type": "VARIANT",
20508
+ "variantOptions": [
20509
+ "Large",
20510
+ "Medium"
20511
+ ]
20512
+ },
19862
20513
  "Has Value": {
19863
20514
  "type": "VARIANT",
19864
20515
  "variantOptions": [
@@ -19878,18 +20529,25 @@ const privateComponentTextInputInput = {
19878
20529
  "name": "privateComponentTextInputInput",
19879
20530
  "key": "c030fb7107795ad42b4b2eea454b05fb4b4c9ac7",
19880
20531
  "componentPropertyDefinitions": {
20532
+ "Show Clear Button#11049:0": {
20533
+ "type": "BOOLEAN"
20534
+ },
19881
20535
  "Value Text#34067:0": {
19882
20536
  "type": "TEXT"
19883
20537
  },
19884
- "Clear Button#34067:1": {
19885
- "type": "BOOLEAN"
19886
- },
19887
20538
  "Placeholder Text#34067:2": {
19888
20539
  "type": "TEXT"
19889
20540
  },
19890
20541
  "Show Cursor (Figma Only)#53584:0": {
19891
20542
  "type": "BOOLEAN"
19892
20543
  },
20544
+ "Size": {
20545
+ "type": "VARIANT",
20546
+ "variantOptions": [
20547
+ "Large",
20548
+ "Medium"
20549
+ ]
20550
+ },
19893
20551
  "Has Value": {
19894
20552
  "type": "VARIANT",
19895
20553
  "variantOptions": [
@@ -19906,12 +20564,16 @@ const privateComponentTextInputInputDisabled = {
19906
20564
  "Value Text#34067:0": {
19907
20565
  "type": "TEXT"
19908
20566
  },
19909
- "Clear Button#34067:1": {
19910
- "type": "BOOLEAN"
19911
- },
19912
20567
  "Placeholder Text#34067:2": {
19913
20568
  "type": "TEXT"
19914
20569
  },
20570
+ "Size": {
20571
+ "type": "VARIANT",
20572
+ "variantOptions": [
20573
+ "Large",
20574
+ "Medium"
20575
+ ]
20576
+ },
19915
20577
  "Has Value": {
19916
20578
  "type": "VARIANT",
19917
20579
  "variantOptions": [
@@ -19928,12 +20590,16 @@ const privateComponentTextInputInputReadOnly = {
19928
20590
  "Value Text#34067:0": {
19929
20591
  "type": "TEXT"
19930
20592
  },
19931
- "Clear Button#34067:1": {
19932
- "type": "BOOLEAN"
19933
- },
19934
20593
  "Placeholder Text#34067:2": {
19935
20594
  "type": "TEXT"
19936
20595
  },
20596
+ "Size": {
20597
+ "type": "VARIANT",
20598
+ "variantOptions": [
20599
+ "Large",
20600
+ "Medium"
20601
+ ]
20602
+ },
19937
20603
  "Has Value": {
19938
20604
  "type": "VARIANT",
19939
20605
  "variantOptions": [
@@ -19950,6 +20616,13 @@ const privateComponentTextInputPrefix = {
19950
20616
  "Icon#34021:2": {
19951
20617
  "type": "INSTANCE_SWAP"
19952
20618
  },
20619
+ "Size": {
20620
+ "type": "VARIANT",
20621
+ "variantOptions": [
20622
+ "Medium",
20623
+ "Large"
20624
+ ]
20625
+ },
19953
20626
  "Type": {
19954
20627
  "type": "VARIANT",
19955
20628
  "variantOptions": [
@@ -19969,6 +20642,13 @@ const privateComponentTextInputSuffix = {
19969
20642
  "Icon#45391:0": {
19970
20643
  "type": "INSTANCE_SWAP"
19971
20644
  },
20645
+ "Size": {
20646
+ "type": "VARIANT",
20647
+ "variantOptions": [
20648
+ "Medium",
20649
+ "Large"
20650
+ ]
20651
+ },
19972
20652
  "Type (Figma Only)": {
19973
20653
  "type": "VARIANT",
19974
20654
  "variantOptions": [
@@ -19990,6 +20670,13 @@ const privateComponentTextareaInput = {
19990
20670
  "Placeholder Text#34067:2": {
19991
20671
  "type": "TEXT"
19992
20672
  },
20673
+ "Size": {
20674
+ "type": "VARIANT",
20675
+ "variantOptions": [
20676
+ "Large",
20677
+ "Medium"
20678
+ ]
20679
+ },
19993
20680
  "Has Value": {
19994
20681
  "type": "VARIANT",
19995
20682
  "variantOptions": [
@@ -20006,12 +20693,16 @@ const privateComponentTextareaInputDisabled = {
20006
20693
  "Value Text#34067:0": {
20007
20694
  "type": "TEXT"
20008
20695
  },
20009
- "Clear Button#34067:1": {
20010
- "type": "BOOLEAN"
20011
- },
20012
20696
  "Placeholder Text#34067:2": {
20013
20697
  "type": "TEXT"
20014
20698
  },
20699
+ "Size": {
20700
+ "type": "VARIANT",
20701
+ "variantOptions": [
20702
+ "Large",
20703
+ "Medium"
20704
+ ]
20705
+ },
20015
20706
  "Has Value": {
20016
20707
  "type": "VARIANT",
20017
20708
  "variantOptions": [
@@ -20028,12 +20719,16 @@ const privateComponentTextareaInputReadOnly = {
20028
20719
  "Value Text#34067:0": {
20029
20720
  "type": "TEXT"
20030
20721
  },
20031
- "Clear Button#34067:1": {
20032
- "type": "BOOLEAN"
20033
- },
20034
20722
  "Placeholder Text#34067:2": {
20035
20723
  "type": "TEXT"
20036
20724
  },
20725
+ "Size": {
20726
+ "type": "VARIANT",
20727
+ "variantOptions": [
20728
+ "Large",
20729
+ "Medium"
20730
+ ]
20731
+ },
20037
20732
  "Has Value": {
20038
20733
  "type": "VARIANT",
20039
20734
  "variantOptions": [
@@ -20114,7 +20809,7 @@ const privateComponentTopNavigationTitleLeft = {
20114
20809
  "variantOptions": [
20115
20810
  "Avatar",
20116
20811
  "Custom",
20117
- "Cutom Icon"
20812
+ "Custom Icon"
20118
20813
  ]
20119
20814
  }
20120
20815
  }
@@ -20141,6 +20836,9 @@ const privateComponentUnderlineTextInputInput = {
20141
20836
  "name": "privateComponentUnderlineTextInputInput",
20142
20837
  "key": "a8a39cf124e7b4c3b873429e81b4278639a7031b",
20143
20838
  "componentPropertyDefinitions": {
20839
+ "Show Clear Button#10972:0": {
20840
+ "type": "BOOLEAN"
20841
+ },
20144
20842
  "Value Text#34067:0": {
20145
20843
  "type": "TEXT"
20146
20844
  },
@@ -20150,6 +20848,13 @@ const privateComponentUnderlineTextInputInput = {
20150
20848
  "Show Cursor (Figma Only)#53584:3": {
20151
20849
  "type": "BOOLEAN"
20152
20850
  },
20851
+ "Size": {
20852
+ "type": "VARIANT",
20853
+ "variantOptions": [
20854
+ "Large",
20855
+ "Medium"
20856
+ ]
20857
+ },
20153
20858
  "Has Value": {
20154
20859
  "type": "VARIANT",
20155
20860
  "variantOptions": [
@@ -20166,12 +20871,16 @@ const privateComponentUnderlineTextInputInputDisabled = {
20166
20871
  "Value Text#34067:0": {
20167
20872
  "type": "TEXT"
20168
20873
  },
20169
- "Clear Button#34067:1": {
20170
- "type": "BOOLEAN"
20171
- },
20172
20874
  "Placeholder Text#34067:2": {
20173
20875
  "type": "TEXT"
20174
20876
  },
20877
+ "Size": {
20878
+ "type": "VARIANT",
20879
+ "variantOptions": [
20880
+ "Large",
20881
+ "Medium"
20882
+ ]
20883
+ },
20175
20884
  "Has Value": {
20176
20885
  "type": "VARIANT",
20177
20886
  "variantOptions": [
@@ -20188,12 +20897,16 @@ const privateComponentUnderlineTextInputInputReadOnly = {
20188
20897
  "Value Text#34067:0": {
20189
20898
  "type": "TEXT"
20190
20899
  },
20191
- "Clear Button#34067:1": {
20192
- "type": "BOOLEAN"
20193
- },
20194
20900
  "Placeholder Text#34067:2": {
20195
20901
  "type": "TEXT"
20196
20902
  },
20903
+ "Size": {
20904
+ "type": "VARIANT",
20905
+ "variantOptions": [
20906
+ "Large",
20907
+ "Medium"
20908
+ ]
20909
+ },
20197
20910
  "Has Value": {
20198
20911
  "type": "VARIANT",
20199
20912
  "variantOptions": [
@@ -20210,6 +20923,13 @@ const privateComponentUnderlineTextInputPrefix = {
20210
20923
  "Icon#34021:2": {
20211
20924
  "type": "INSTANCE_SWAP"
20212
20925
  },
20926
+ "Size": {
20927
+ "type": "VARIANT",
20928
+ "variantOptions": [
20929
+ "Large",
20930
+ "Medium"
20931
+ ]
20932
+ },
20213
20933
  "Type": {
20214
20934
  "type": "VARIANT",
20215
20935
  "variantOptions": [
@@ -20229,6 +20949,13 @@ const privateComponentUnderlineTextInputSuffix = {
20229
20949
  "Icon#45391:5": {
20230
20950
  "type": "INSTANCE_SWAP"
20231
20951
  },
20952
+ "Size": {
20953
+ "type": "VARIANT",
20954
+ "variantOptions": [
20955
+ "Large",
20956
+ "Medium"
20957
+ ]
20958
+ },
20232
20959
  "Type (Figma Only)": {
20233
20960
  "type": "VARIANT",
20234
20961
  "variantOptions": [
@@ -20314,9 +21041,67 @@ const componentDeprecatedActionSheet = {
20314
21041
  }
20315
21042
  }
20316
21043
  };
20317
- const templateDeprecatedChipGroup = {
20318
- "name": "templateDeprecatedChipGroup",
20319
- "key": "c6b8406eed754f43da93e17a1887ea331d168bdc",
21044
+ const componentDeprecatedChip = {
21045
+ "name": "componentDeprecatedChip",
21046
+ "key": "c947a926605cfd181998ddbb46554da84eebaab2",
21047
+ "componentPropertyDefinitions": {
21048
+ "Label#7185:0": {
21049
+ "type": "TEXT"
21050
+ },
21051
+ "Prefix Icon#8722:0": {
21052
+ "type": "INSTANCE_SWAP"
21053
+ },
21054
+ "Suffix Type#32538:0": {
21055
+ "type": "INSTANCE_SWAP"
21056
+ },
21057
+ "Has Suffix#32538:181": {
21058
+ "type": "BOOLEAN"
21059
+ },
21060
+ "Variant": {
21061
+ "type": "VARIANT",
21062
+ "variantOptions": [
21063
+ "Solid",
21064
+ "Outline Strong",
21065
+ "Outline Weak"
21066
+ ]
21067
+ },
21068
+ "Size": {
21069
+ "type": "VARIANT",
21070
+ "variantOptions": [
21071
+ "Large",
21072
+ "Medium",
21073
+ "Small"
21074
+ ]
21075
+ },
21076
+ "Selected": {
21077
+ "type": "VARIANT",
21078
+ "variantOptions": [
21079
+ "False",
21080
+ "True"
21081
+ ]
21082
+ },
21083
+ "State": {
21084
+ "type": "VARIANT",
21085
+ "variantOptions": [
21086
+ "Enabled",
21087
+ "Pressed",
21088
+ "Disabled"
21089
+ ]
21090
+ },
21091
+ "Prefix Type": {
21092
+ "type": "VARIANT",
21093
+ "variantOptions": [
21094
+ "None",
21095
+ "Icon",
21096
+ "Avatar",
21097
+ "Image"
21098
+ ]
21099
+ }
21100
+ }
21101
+ };
21102
+ const componentDeprecatedChipGroup = {
21103
+ "name": "componentDeprecatedChipGroup",
21104
+ "key": "0f2bfd4ee01f2bce58ebd7f4cc9332d0420e50fd",
20320
21105
  "componentPropertyDefinitions": {
20321
21106
  "Refresh Button#15888:2": {
20322
21107
  "type": "BOOLEAN"
@@ -20520,37 +21305,6 @@ const componentDeprecatedMultilineTextField = {
20520
21305
  }
20521
21306
  }
20522
21307
  };
20523
- const componentDeprecatedRangeSlider = {
20524
- "name": "componentDeprecatedRangeSlider",
20525
- "key": "acd9b25dba649748699d0a67f900857629d62e64",
20526
- "componentPropertyDefinitions": {
20527
- "Steps": {
20528
- "type": "VARIANT",
20529
- "variantOptions": [
20530
- "0",
20531
- "1",
20532
- "2",
20533
- "3",
20534
- "4"
20535
- ]
20536
- },
20537
- "State": {
20538
- "type": "VARIANT",
20539
- "variantOptions": [
20540
- "Enabled",
20541
- "Disabled"
20542
- ]
20543
- },
20544
- "Marker": {
20545
- "type": "VARIANT",
20546
- "variantOptions": [
20547
- "None",
20548
- "Min Max",
20549
- "All"
20550
- ]
20551
- }
20552
- }
20553
- };
20554
21308
  const componentDeprecatedSelectBox = {
20555
21309
  "name": "componentDeprecatedSelectBox",
20556
21310
  "key": "83d4bbb026d432c35f0b2c7b7b273eafdd28e1a1",
@@ -20588,56 +21342,25 @@ const componentDeprecatedSelectBox = {
20588
21342
  }
20589
21343
  };
20590
21344
  const componentDeprecatedSelectBoxGroup = {
20591
- "name": "componentDeprecatedSelectBoxGroup",
20592
- "key": "558248a78625c79a55953956531738e490bf38fd",
20593
- "componentPropertyDefinitions": {
20594
- "Control": {
20595
- "type": "VARIANT",
20596
- "variantOptions": [
20597
- "Checkbox",
20598
- "Radio"
20599
- ]
20600
- },
20601
- "Item Count": {
20602
- "type": "VARIANT",
20603
- "variantOptions": [
20604
- "1",
20605
- "2",
20606
- "3",
20607
- "4",
20608
- "5",
20609
- "6"
20610
- ]
20611
- }
20612
- }
20613
- };
20614
- const componentDeprecatedSlider = {
20615
- "name": "componentDeprecatedSlider",
20616
- "key": "c103c0a6ec25de57bb41eb820648a467afc5788e",
20617
- "componentPropertyDefinitions": {
20618
- "Steps": {
20619
- "type": "VARIANT",
20620
- "variantOptions": [
20621
- "0",
20622
- "1",
20623
- "2",
20624
- "3",
20625
- "4"
20626
- ]
20627
- },
20628
- "State": {
21345
+ "name": "componentDeprecatedSelectBoxGroup",
21346
+ "key": "558248a78625c79a55953956531738e490bf38fd",
21347
+ "componentPropertyDefinitions": {
21348
+ "Control": {
20629
21349
  "type": "VARIANT",
20630
21350
  "variantOptions": [
20631
- "Enabled",
20632
- "Disabled"
21351
+ "Checkbox",
21352
+ "Radio"
20633
21353
  ]
20634
21354
  },
20635
- "Marker": {
21355
+ "Item Count": {
20636
21356
  "type": "VARIANT",
20637
21357
  "variantOptions": [
20638
- "None",
20639
- "Min Max",
20640
- "All"
21358
+ "1",
21359
+ "2",
21360
+ "3",
21361
+ "4",
21362
+ "5",
21363
+ "6"
20641
21364
  ]
20642
21365
  }
20643
21366
  }
@@ -20768,6 +21491,29 @@ const componentDerpecatedTopNavigation = {
20768
21491
  }
20769
21492
  }
20770
21493
  };
21494
+ const componentAccordion = {
21495
+ "name": "componentAccordion",
21496
+ "key": "0686a42b92941f42561f73e95ecff0699b86e3a9",
21497
+ "componentPropertyDefinitions": {
21498
+ "Accordion Group#10588:0": {
21499
+ "type": "SLOT"
21500
+ },
21501
+ "Size": {
21502
+ "type": "VARIANT",
21503
+ "variantOptions": [
21504
+ "Medium",
21505
+ "Large (Desktop)"
21506
+ ]
21507
+ },
21508
+ "Variants": {
21509
+ "type": "VARIANT",
21510
+ "variantOptions": [
21511
+ "Inline",
21512
+ "Separated"
21513
+ ]
21514
+ }
21515
+ }
21516
+ };
20771
21517
  const componentActionButton = {
20772
21518
  "name": "componentActionButton",
20773
21519
  "key": "cd70496145efd7f5ffdb5413fb4db8e918561ffa",
@@ -20864,6 +21610,41 @@ const componentAndroidNowBarScreen = {
20864
21610
  }
20865
21611
  }
20866
21612
  };
21613
+ const componentAttachmentField = {
21614
+ "name": "componentAttachmentField",
21615
+ "key": "7a1711f401793fb33ca9ceb599916a7440ef60b4",
21616
+ "componentPropertyDefinitions": {
21617
+ "Show Header#11576:30": {
21618
+ "type": "BOOLEAN"
21619
+ },
21620
+ "Show Footer#11576:47": {
21621
+ "type": "BOOLEAN"
21622
+ },
21623
+ "Type": {
21624
+ "type": "VARIANT",
21625
+ "variantOptions": [
21626
+ "Media",
21627
+ "File"
21628
+ ]
21629
+ },
21630
+ "State": {
21631
+ "type": "VARIANT",
21632
+ "variantOptions": [
21633
+ "Enabled",
21634
+ "Error",
21635
+ "Disabled",
21636
+ "Read Only"
21637
+ ]
21638
+ },
21639
+ "Has Value": {
21640
+ "type": "VARIANT",
21641
+ "variantOptions": [
21642
+ "False",
21643
+ "True"
21644
+ ]
21645
+ }
21646
+ }
21647
+ };
20867
21648
  const componentAvatar = {
20868
21649
  "name": "componentAvatar",
20869
21650
  "key": "f17031afc2c71f35e5a147f6937a2b918029d334",
@@ -20897,9 +21678,9 @@ const componentAvatar = {
20897
21678
  }
20898
21679
  }
20899
21680
  };
20900
- const templateAvatarPreset = {
20901
- "name": "templateAvatarPreset",
20902
- "key": "42eefce6a1ab0d45780d2be5346d8ec5f6bace6e",
21681
+ const componentAvatarPreset = {
21682
+ "name": "componentAvatarPreset",
21683
+ "key": "539a0546169fb966bed1b07aa98db4b070206fc1",
20903
21684
  "componentPropertyDefinitions": {
20904
21685
  "Image": {
20905
21686
  "type": "VARIANT",
@@ -21065,9 +21846,9 @@ const componentBottomSheet = {
21065
21846
  }
21066
21847
  }
21067
21848
  };
21068
- const templateButtonGroup = {
21069
- "name": "templateButtonGroup",
21070
- "key": "c36b74a90e2321ac498f59ed8bf9ce4b365a5547",
21849
+ const componentButtonGroup = {
21850
+ "name": "componentButtonGroup",
21851
+ "key": "2acf5a3240876b2b82e3e42f267856b8582c07f6",
21071
21852
  "componentPropertyDefinitions": {
21072
21853
  "Size": {
21073
21854
  "type": "VARIANT",
@@ -21215,10 +21996,13 @@ const componentCheckbox = {
21215
21996
  }
21216
21997
  }
21217
21998
  };
21218
- const templateCheckboxField = {
21219
- "name": "templateCheckboxField",
21220
- "key": "214dd0fc8a3c5bc1e0c90cce29936f1ec6a26c3c",
21999
+ const componentCheckboxField = {
22000
+ "name": "componentCheckboxField",
22001
+ "key": "c157db7fe8d812716f2ed3f520b8bacfb9fb8416",
21221
22002
  "componentPropertyDefinitions": {
22003
+ "Checkbox Group#12261:0": {
22004
+ "type": "SLOT"
22005
+ },
21222
22006
  "Show Header#40606:8": {
21223
22007
  "type": "BOOLEAN"
21224
22008
  },
@@ -21281,27 +22065,34 @@ const componentCheckmark = {
21281
22065
  };
21282
22066
  const componentChip = {
21283
22067
  "name": "componentChip",
21284
- "key": "c947a926605cfd181998ddbb46554da84eebaab2",
22068
+ "key": "f23dfd7f48dd6fc6fbbdae95a091fd7a06a942e1",
21285
22069
  "componentPropertyDefinitions": {
21286
- "Label#7185:0": {
21287
- "type": "TEXT"
22070
+ "Has Prefix#9822:0": {
22071
+ "type": "BOOLEAN"
21288
22072
  },
21289
- "Prefix Icon#8722:0": {
22073
+ "Prefix Type#9965:0": {
21290
22074
  "type": "INSTANCE_SWAP"
21291
22075
  },
21292
- "Suffix Type#32538:0": {
22076
+ "Suffix Type#9965:109": {
21293
22077
  "type": "INSTANCE_SWAP"
21294
22078
  },
21295
- "Has Suffix#32538:181": {
22079
+ "Suffix Type Small#9981:218": {
22080
+ "type": "INSTANCE_SWAP"
22081
+ },
22082
+ "Prefix Type Small#9981:327": {
22083
+ "type": "INSTANCE_SWAP"
22084
+ },
22085
+ "Icon#10111:0": {
22086
+ "type": "INSTANCE_SWAP"
22087
+ },
22088
+ "Has Notification#10111:109": {
21296
22089
  "type": "BOOLEAN"
21297
22090
  },
21298
- "Variant": {
21299
- "type": "VARIANT",
21300
- "variantOptions": [
21301
- "Solid",
21302
- "Outline Strong",
21303
- "Outline Weak"
21304
- ]
22091
+ "Label#12217:0": {
22092
+ "type": "TEXT"
22093
+ },
22094
+ "Has Suffix#32538:181": {
22095
+ "type": "BOOLEAN"
21305
22096
  },
21306
22097
  "Size": {
21307
22098
  "type": "VARIANT",
@@ -21311,6 +22102,21 @@ const componentChip = {
21311
22102
  "Small"
21312
22103
  ]
21313
22104
  },
22105
+ "Layout": {
22106
+ "type": "VARIANT",
22107
+ "variantOptions": [
22108
+ "With Text",
22109
+ "Icon Only"
22110
+ ]
22111
+ },
22112
+ "Variant": {
22113
+ "type": "VARIANT",
22114
+ "variantOptions": [
22115
+ "Solid",
22116
+ "Outline Strong",
22117
+ "Outline Weak"
22118
+ ]
22119
+ },
21314
22120
  "Selected": {
21315
22121
  "type": "VARIANT",
21316
22122
  "variantOptions": [
@@ -21325,22 +22131,16 @@ const componentChip = {
21325
22131
  "Pressed",
21326
22132
  "Disabled"
21327
22133
  ]
21328
- },
21329
- "Prefix Type": {
21330
- "type": "VARIANT",
21331
- "variantOptions": [
21332
- "None",
21333
- "Icon",
21334
- "Avatar",
21335
- "Image"
21336
- ]
21337
22134
  }
21338
22135
  }
21339
22136
  };
21340
- const templateChipGroup = {
21341
- "name": "templateChipGroup",
21342
- "key": "cb2a0fa6e04cf2099baeced91ee74f9d93d36069",
22137
+ const componentChipGroup = {
22138
+ "name": "componentChipGroup",
22139
+ "key": "dbef4539572f056c6a90c332299d9b9febd212de",
21343
22140
  "componentPropertyDefinitions": {
22141
+ "Chip Group#12261:62": {
22142
+ "type": "SLOT"
22143
+ },
21344
22144
  "Variant": {
21345
22145
  "type": "VARIANT",
21346
22146
  "variantOptions": [
@@ -21418,9 +22218,9 @@ const componentContextualFloatingButton = {
21418
22218
  }
21419
22219
  }
21420
22220
  };
21421
- const templateDisclaimer = {
21422
- "name": "templateDisclaimer",
21423
- "key": "c56cb5f18959ad92f6638b588e8d248335dcc03b",
22221
+ const componentDisclaimer = {
22222
+ "name": "componentDisclaimer",
22223
+ "key": "9532514879fc59d5b221b8cc4b85a569ed15d265",
21424
22224
  "componentPropertyDefinitions": {
21425
22225
  "Show Title#54910:2": {
21426
22226
  "type": "BOOLEAN"
@@ -21478,9 +22278,9 @@ const componentEditorToolbarFigmaOnly = {
21478
22278
  }
21479
22279
  }
21480
22280
  };
21481
- const templateFieldButton = {
21482
- "name": "templateFieldButton",
21483
- "key": "e706abd7be0d1a2ea0aeeb656b47d3b03aa5cda8",
22281
+ const componentFieldButton = {
22282
+ "name": "componentFieldButton",
22283
+ "key": "a9f6a5ee2d52881b87e22ef1a18fac67e92558f4",
21484
22284
  "componentPropertyDefinitions": {
21485
22285
  "Show Header#40606:8": {
21486
22286
  "type": "BOOLEAN"
@@ -21488,6 +22288,13 @@ const templateFieldButton = {
21488
22288
  "Show Footer#40606:9": {
21489
22289
  "type": "BOOLEAN"
21490
22290
  },
22291
+ "Size": {
22292
+ "type": "VARIANT",
22293
+ "variantOptions": [
22294
+ "Large",
22295
+ "Medium (Desktop Only)"
22296
+ ]
22297
+ },
21491
22298
  "State": {
21492
22299
  "type": "VARIANT",
21493
22300
  "variantOptions": [
@@ -21624,8 +22431,8 @@ const componentImageFrame = {
21624
22431
  }
21625
22432
  }
21626
22433
  };
21627
- const componentIOsLiveAcitivityScreen = {
21628
- "name": "componentIOsLiveAcitivityScreen",
22434
+ const componentIOsLiveActivityScreen = {
22435
+ "name": "componentIOsLiveActivityScreen",
21629
22436
  "key": "3d7ff6cf68e769096237bcc0122be08caf8b6ce4",
21630
22437
  "componentPropertyDefinitions": {
21631
22438
  "Type": {
@@ -21733,11 +22540,11 @@ const componentListItem = {
21733
22540
  "Disabled"
21734
22541
  ]
21735
22542
  },
21736
- "Variants": {
22543
+ "Align": {
21737
22544
  "type": "VARIANT",
21738
22545
  "variantOptions": [
21739
- "Single Line",
21740
- "Multi Line"
22546
+ "Center",
22547
+ "Top"
21741
22548
  ]
21742
22549
  },
21743
22550
  "Highlighted": {
@@ -21843,6 +22650,37 @@ const componentMenuSheet = {
21843
22650
  }
21844
22651
  }
21845
22652
  };
22653
+ const componentMultilineTextField = {
22654
+ "name": "componentMultilineTextField",
22655
+ "key": "e1b7b5bfa5ff6a633cecc5110b958520a9e79ddf",
22656
+ "componentPropertyDefinitions": {
22657
+ "Show Header#11576:0": {
22658
+ "type": "BOOLEAN"
22659
+ },
22660
+ "Show Footer#11576:15": {
22661
+ "type": "BOOLEAN"
22662
+ },
22663
+ "Size": {
22664
+ "type": "VARIANT",
22665
+ "variantOptions": [
22666
+ "Large",
22667
+ "Medium (Desktop Only)"
22668
+ ]
22669
+ },
22670
+ "State": {
22671
+ "type": "VARIANT",
22672
+ "variantOptions": [
22673
+ "AI Loading (Figma Only)",
22674
+ "Disabled",
22675
+ "Read Only",
22676
+ "Error Focused",
22677
+ "Error",
22678
+ "Focused",
22679
+ "Enabled"
22680
+ ]
22681
+ }
22682
+ }
22683
+ };
21846
22684
  const componentOsBottomIndicatorFigmaOnly = {
21847
22685
  "name": "componentOsBottomIndicatorFigmaOnly",
21848
22686
  "key": "291fcfece0247fd59a6ef14312347267523a5152",
@@ -22034,10 +22872,13 @@ const componentRadio = {
22034
22872
  }
22035
22873
  }
22036
22874
  };
22037
- const templateRadioField = {
22038
- "name": "templateRadioField",
22039
- "key": "a3f159c223e3a0888fc48098c1580793297f82e9",
22875
+ const componentRadioField = {
22876
+ "name": "componentRadioField",
22877
+ "key": "7a1c06315434813d0c4256366e2f478954cd6f14",
22040
22878
  "componentPropertyDefinitions": {
22879
+ "Radio Group#12285:87": {
22880
+ "type": "SLOT"
22881
+ },
22041
22882
  "Show Header#40606:8": {
22042
22883
  "type": "BOOLEAN"
22043
22884
  },
@@ -22267,9 +23108,9 @@ const componentSegmentedControl = {
22267
23108
  }
22268
23109
  }
22269
23110
  };
22270
- const templateSelectBoxField = {
22271
- "name": "templateSelectBoxField",
22272
- "key": "cddac54129eed15830319d1e30480f42ea80d4d3",
23111
+ const componentSelectBoxField = {
23112
+ "name": "componentSelectBoxField",
23113
+ "key": "a4202b1d4bbb185f25f937dd6a71cfc580e58cb5",
22273
23114
  "componentPropertyDefinitions": {
22274
23115
  "Show Header#40606:8": {
22275
23116
  "type": "BOOLEAN"
@@ -22292,6 +23133,9 @@ const componentSelectBoxGroup = {
22292
23133
  "name": "componentSelectBoxGroup",
22293
23134
  "key": "cbf6ddeb6d6f889e983399291ec8b60ee3390177",
22294
23135
  "componentPropertyDefinitions": {
23136
+ "Select Box Group#12285:92": {
23137
+ "type": "SLOT"
23138
+ },
22295
23139
  "Column": {
22296
23140
  "type": "VARIANT",
22297
23141
  "variantOptions": [
@@ -22394,9 +23238,9 @@ const componentSkeleton = {
22394
23238
  }
22395
23239
  }
22396
23240
  };
22397
- const templateSkeletonPreset = {
22398
- "name": "templateSkeletonPreset",
22399
- "key": "6ef44f7c25caf577c58486f7dd9a6d2dbccdbae2",
23241
+ const componentSkeletonPreset = {
23242
+ "name": "componentSkeletonPreset",
23243
+ "key": "f59d479beaf5d5d73da2ff8984778a40dd2e65bd",
22400
23244
  "componentPropertyDefinitions": {
22401
23245
  "Preset (Figma-Only)": {
22402
23246
  "type": "VARIANT",
@@ -22442,9 +23286,9 @@ const componentSlider = {
22442
23286
  }
22443
23287
  }
22444
23288
  };
22445
- const templateSliderField = {
22446
- "name": "templateSliderField",
22447
- "key": "28779a6663ce9d43b08050f128a925513e36a2e6",
23289
+ const componentSliderField = {
23290
+ "name": "componentSliderField",
23291
+ "key": "a0d06d2084b3ab2d0dc4a9dc23fa3500043dddc4",
22448
23292
  "componentPropertyDefinitions": {
22449
23293
  "Show Header#40606:8": {
22450
23294
  "type": "BOOLEAN"
@@ -22620,9 +23464,9 @@ const componentTagGroup = {
22620
23464
  }
22621
23465
  }
22622
23466
  };
22623
- const templateTextField = {
22624
- "name": "templateTextField",
22625
- "key": "d23c5e730ba19fe6ba3c376a5abbf3df7a54672e",
23467
+ const componentTextField = {
23468
+ "name": "componentTextField",
23469
+ "key": "8b134244cb1038a13e6365aa9664a3fcb8b7e352",
22626
23470
  "componentPropertyDefinitions": {
22627
23471
  "Show Header#40606:8": {
22628
23472
  "type": "BOOLEAN"
@@ -22630,6 +23474,13 @@ const templateTextField = {
22630
23474
  "Show Footer#40606:9": {
22631
23475
  "type": "BOOLEAN"
22632
23476
  },
23477
+ "Size": {
23478
+ "type": "VARIANT",
23479
+ "variantOptions": [
23480
+ "Large",
23481
+ "Medium (Desktop Only)"
23482
+ ]
23483
+ },
22633
23484
  "Variant": {
22634
23485
  "type": "VARIANT",
22635
23486
  "variantOptions": [
@@ -22651,24 +23502,6 @@ const templateTextField = {
22651
23502
  }
22652
23503
  }
22653
23504
  };
22654
- const templateTextareaField = {
22655
- "name": "templateTextareaField",
22656
- "key": "1e0375ed8a5dc490008d6e0dcc20b812b6e39114",
22657
- "componentPropertyDefinitions": {
22658
- "State": {
22659
- "type": "VARIANT",
22660
- "variantOptions": [
22661
- "AI Loading (Figma Only)",
22662
- "Disabled",
22663
- "Read Only",
22664
- "Error Focused",
22665
- "Error",
22666
- "Focused",
22667
- "Enabled"
22668
- ]
22669
- }
22670
- }
22671
- };
22672
23505
  const componentToggleButton = {
22673
23506
  "name": "componentToggleButton",
22674
23507
  "key": "eb1eac49eb281c1029e659821f4091619d0b74e4",
@@ -22762,9 +23595,9 @@ const componentTopNavigation = {
22762
23595
  }
22763
23596
  }
22764
23597
  };
22765
- const templateTopNavigationPreset = {
22766
- "name": "templateTopNavigationPreset",
22767
- "key": "392ae70c701b8f657d3114498801c5672decc547",
23598
+ const componentTopNavigationPreset = {
23599
+ "name": "componentTopNavigationPreset",
23600
+ "key": "0dd628c49a9e02b1a5f3208a0b870b567cff59a7",
22768
23601
  "componentPropertyDefinitions": {
22769
23602
  "Action Button#17406:0": {
22770
23603
  "type": "BOOLEAN"
@@ -22803,6 +23636,40 @@ const componentUserSelectionFigmaOnly = {
22803
23636
  }
22804
23637
  }
22805
23638
  };
23639
+ const componentAttachmentInput = {
23640
+ "name": "componentAttachmentInput",
23641
+ "key": "912d312b7a25ab698708e196a7d3f2f91d2bd2f5",
23642
+ "componentPropertyDefinitions": {
23643
+ "Type": {
23644
+ "type": "VARIANT",
23645
+ "variantOptions": [
23646
+ "Media",
23647
+ "File"
23648
+ ]
23649
+ },
23650
+ "Trigger Type": {
23651
+ "type": "VARIANT",
23652
+ "variantOptions": [
23653
+ "Button",
23654
+ "Dropzone"
23655
+ ]
23656
+ },
23657
+ "State": {
23658
+ "type": "VARIANT",
23659
+ "variantOptions": [
23660
+ "Enabled",
23661
+ "Disabled"
23662
+ ]
23663
+ },
23664
+ "Has Value": {
23665
+ "type": "VARIANT",
23666
+ "variantOptions": [
23667
+ "False",
23668
+ "True"
23669
+ ]
23670
+ }
23671
+ }
23672
+ };
22806
23673
  const componentFieldFooter = {
22807
23674
  "name": "componentFieldFooter",
22808
23675
  "key": "a2e73c375b787756a11e84c5915f8251c621ee3a",
@@ -22846,6 +23713,13 @@ const componentFieldHeader = {
22846
23713
  "Has Suffix#34796:2": {
22847
23714
  "type": "BOOLEAN"
22848
23715
  },
23716
+ "Size": {
23717
+ "type": "VARIANT",
23718
+ "variantOptions": [
23719
+ "Large",
23720
+ "Medium (Desktop Only)"
23721
+ ]
23722
+ },
22849
23723
  "Weight": {
22850
23724
  "type": "VARIANT",
22851
23725
  "variantOptions": [
@@ -22865,15 +23739,22 @@ const componentInputButton = {
22865
23739
  "Has Suffix#32865:68": {
22866
23740
  "type": "BOOLEAN"
22867
23741
  },
23742
+ "Size": {
23743
+ "type": "VARIANT",
23744
+ "variantOptions": [
23745
+ "Large",
23746
+ "Medium (Desktop Only)"
23747
+ ]
23748
+ },
22868
23749
  "State": {
22869
23750
  "type": "VARIANT",
22870
23751
  "variantOptions": [
22871
23752
  "Enabled",
23753
+ "Pressed",
22872
23754
  "Error",
23755
+ "Error Pressed",
22873
23756
  "Disabled",
22874
- "Read Only",
22875
- "Pressed",
22876
- "Error Pressed"
23757
+ "Read Only"
22877
23758
  ]
22878
23759
  }
22879
23760
  }
@@ -22891,6 +23772,13 @@ const componentTextInput = {
22891
23772
  "Has Suffix#32865:68": {
22892
23773
  "type": "BOOLEAN"
22893
23774
  },
23775
+ "Size": {
23776
+ "type": "VARIANT",
23777
+ "variantOptions": [
23778
+ "Large",
23779
+ "Medium (Desktop Only)"
23780
+ ]
23781
+ },
22894
23782
  "State": {
22895
23783
  "type": "VARIANT",
22896
23784
  "variantOptions": [
@@ -22909,6 +23797,13 @@ const componentTextarea = {
22909
23797
  "name": "componentTextarea",
22910
23798
  "key": "e20ec5b725e0fdbaca728cecdc72b0c485728b4d",
22911
23799
  "componentPropertyDefinitions": {
23800
+ "Size": {
23801
+ "type": "VARIANT",
23802
+ "variantOptions": [
23803
+ "Large",
23804
+ "Medium (Desktop Only)"
23805
+ ]
23806
+ },
22912
23807
  "Auto Size (Figma Only)": {
22913
23808
  "type": "VARIANT",
22914
23809
  "variantOptions": [
@@ -22951,6 +23846,13 @@ const componentUnderlineTextInput = {
22951
23846
  "Read Only",
22952
23847
  "AI Loading (Figma Only)"
22953
23848
  ]
23849
+ },
23850
+ "Size": {
23851
+ "type": "VARIANT",
23852
+ "variantOptions": [
23853
+ "Medium (Desktop Only)",
23854
+ "Large"
23855
+ ]
22954
23856
  }
22955
23857
  }
22956
23858
  };
@@ -22980,7 +23882,7 @@ const componentActionButtonGhostButton = {
22980
23882
  "Size": {
22981
23883
  "type": "VARIANT",
22982
23884
  "variantOptions": [
22983
- "Xsmall",
23885
+ "XSmall",
22984
23886
  "Small",
22985
23887
  "Medium",
22986
23888
  "Large"
@@ -23318,42 +24220,51 @@ const templateShareSheet = {
23318
24220
 
23319
24221
  var FIGMA_COMPONENTS = {
23320
24222
  __proto__: null,
24223
+ componentAccordion: componentAccordion,
23321
24224
  componentActionButton: componentActionButton,
23322
24225
  componentActionButtonGhostButton: componentActionButtonGhostButton,
23323
24226
  componentAlertDialog: componentAlertDialog,
23324
24227
  componentAndroidNowBarScreen: componentAndroidNowBarScreen,
24228
+ componentAttachmentField: componentAttachmentField,
24229
+ componentAttachmentInput: componentAttachmentInput,
23325
24230
  componentAvatar: componentAvatar,
24231
+ componentAvatarPreset: componentAvatarPreset,
23326
24232
  componentAvatarStack: componentAvatarStack,
23327
24233
  componentBadge: componentBadge,
23328
24234
  componentBottomActionBarFigmaOnly: componentBottomActionBarFigmaOnly,
23329
24235
  componentBottomNavigationGlobal: componentBottomNavigationGlobal,
23330
24236
  componentBottomNavigationKr: componentBottomNavigationKr,
23331
24237
  componentBottomSheet: componentBottomSheet,
24238
+ componentButtonGroup: componentButtonGroup,
23332
24239
  componentCallout: componentCallout,
23333
24240
  componentCheckbox: componentCheckbox,
24241
+ componentCheckboxField: componentCheckboxField,
23334
24242
  componentCheckmark: componentCheckmark,
23335
24243
  componentChip: componentChip,
24244
+ componentChipGroup: componentChipGroup,
23336
24245
  componentChlid: componentChlid,
23337
24246
  componentContextualFloatingButton: componentContextualFloatingButton,
23338
24247
  componentDeprecatedActionChip: componentDeprecatedActionChip,
23339
24248
  componentDeprecatedActionSheet: componentDeprecatedActionSheet,
24249
+ componentDeprecatedChip: componentDeprecatedChip,
24250
+ componentDeprecatedChipGroup: componentDeprecatedChipGroup,
23340
24251
  componentDeprecatedCompletion: componentDeprecatedCompletion,
23341
24252
  componentDeprecatedControlChip: componentDeprecatedControlChip,
23342
24253
  componentDeprecatedErrorState: componentDeprecatedErrorState,
23343
24254
  componentDeprecatedMultilineTextField: componentDeprecatedMultilineTextField,
23344
- componentDeprecatedRangeSlider: componentDeprecatedRangeSlider,
23345
24255
  componentDeprecatedSelectBox: componentDeprecatedSelectBox,
23346
24256
  componentDeprecatedSelectBoxGroup: componentDeprecatedSelectBoxGroup,
23347
- componentDeprecatedSlider: componentDeprecatedSlider,
23348
24257
  componentDeprecatedTextField: componentDeprecatedTextField,
23349
24258
  componentDerpecatedTopNavigation: componentDerpecatedTopNavigation,
24259
+ componentDisclaimer: componentDisclaimer,
23350
24260
  componentDivider: componentDivider,
23351
24261
  componentEditorToolbarFigmaOnly: componentEditorToolbarFigmaOnly,
24262
+ componentFieldButton: componentFieldButton,
23352
24263
  componentFieldFooter: componentFieldFooter,
23353
24264
  componentFieldHeader: componentFieldHeader,
23354
24265
  componentFloatingActionButton: componentFloatingActionButton,
23355
24266
  componentHelpBubble: componentHelpBubble,
23356
- componentIOsLiveAcitivityScreen: componentIOsLiveAcitivityScreen,
24267
+ componentIOsLiveActivityScreen: componentIOsLiveActivityScreen,
23357
24268
  componentImageFrame: componentImageFrame,
23358
24269
  componentImageFrameReactionButton: componentImageFrameReactionButton,
23359
24270
  componentInputButton: componentInputButton,
@@ -23366,6 +24277,7 @@ var FIGMA_COMPONENTS = {
23366
24277
  componentMannerTempBadge: componentMannerTempBadge,
23367
24278
  componentMenu: componentMenu,
23368
24279
  componentMenuSheet: componentMenuSheet,
24280
+ componentMultilineTextField: componentMultilineTextField,
23369
24281
  componentOsBottomIndicatorFigmaOnly: componentOsBottomIndicatorFigmaOnly,
23370
24282
  componentOsKeyboardFigmaOnly: componentOsKeyboardFigmaOnly,
23371
24283
  componentOsPushScreenFigmaOnly: componentOsPushScreenFigmaOnly,
@@ -23373,6 +24285,7 @@ var FIGMA_COMPONENTS = {
23373
24285
  componentPageBanner: componentPageBanner,
23374
24286
  componentProgressCircle: componentProgressCircle,
23375
24287
  componentRadio: componentRadio,
24288
+ componentRadioField: componentRadioField,
23376
24289
  componentRadiomark: componentRadiomark,
23377
24290
  componentReactionButton: componentReactionButton,
23378
24291
  componentResizableChild: componentResizableChild,
@@ -23383,6 +24296,7 @@ var FIGMA_COMPONENTS = {
23383
24296
  componentScrollFog: componentScrollFog,
23384
24297
  componentSearchBarFigmaOnly: componentSearchBarFigmaOnly,
23385
24298
  componentSegmentedControl: componentSegmentedControl,
24299
+ componentSelectBoxField: componentSelectBoxField,
23386
24300
  componentSelectBoxGroup: componentSelectBoxGroup,
23387
24301
  componentSelectBoxItemHorizontal: componentSelectBoxItemHorizontal,
23388
24302
  componentSelectBoxItemVertical: componentSelectBoxItemVertical,
@@ -23390,22 +24304,28 @@ var FIGMA_COMPONENTS = {
23390
24304
  componentSideNavigation: componentSideNavigation,
23391
24305
  componentSideNavigationPreset: componentSideNavigationPreset,
23392
24306
  componentSkeleton: componentSkeleton,
24307
+ componentSkeletonPreset: componentSkeletonPreset,
23393
24308
  componentSlider: componentSlider,
24309
+ componentSliderField: componentSliderField,
23394
24310
  componentSnackbar: componentSnackbar,
23395
24311
  componentSuperscriptChild: componentSuperscriptChild,
23396
24312
  componentSwitch: componentSwitch,
23397
24313
  componentSwitchmark: componentSwitchmark,
23398
24314
  componentTabs: componentTabs,
23399
24315
  componentTagGroup: componentTagGroup,
24316
+ componentTextField: componentTextField,
23400
24317
  componentTextInput: componentTextInput,
23401
24318
  componentTextarea: componentTextarea,
23402
24319
  componentToggleButton: componentToggleButton,
23403
24320
  componentTopNavigation: componentTopNavigation,
24321
+ componentTopNavigationPreset: componentTopNavigationPreset,
23404
24322
  componentUnderlineTextInput: componentUnderlineTextInput,
23405
24323
  componentUserSelectionFigmaOnly: componentUserSelectionFigmaOnly,
23406
24324
  privateComponentAlertDialogActions: privateComponentAlertDialogActions,
23407
24325
  privateComponentBottomSheetCloseButton: privateComponentBottomSheetCloseButton,
23408
24326
  privateComponentBottomSheetHandle: privateComponentBottomSheetHandle,
24327
+ privateComponentChipGroup: privateComponentChipGroup,
24328
+ privateComponentChipGroupField: privateComponentChipGroupField,
23409
24329
  privateComponentContentPlaceholder: privateComponentContentPlaceholder,
23410
24330
  privateComponentFieldFooterCharacterCount: privateComponentFieldFooterCharacterCount,
23411
24331
  privateComponentFieldHeaderIndicator: privateComponentFieldHeaderIndicator,
@@ -23428,8 +24348,11 @@ var FIGMA_COMPONENTS = {
23428
24348
  privateComponentMenuSheetCloseButton: privateComponentMenuSheetCloseButton,
23429
24349
  privateComponentMenuSheetMenuGroup: privateComponentMenuSheetMenuGroup,
23430
24350
  privateComponentMenuSheetMenuItem: privateComponentMenuSheetMenuItem,
24351
+ privateComponentPhoneNumberField: privateComponentPhoneNumberField,
24352
+ privateComponentPinField: privateComponentPinField,
23431
24353
  privateComponentRootTopNavigationActionList: privateComponentRootTopNavigationActionList,
23432
24354
  privateComponentRootTopNavigationIconButton: privateComponentRootTopNavigationIconButton,
24355
+ privateComponentRootTopNavigationPreset: privateComponentRootTopNavigationPreset,
23433
24356
  privateComponentSegmentedControlItem: privateComponentSegmentedControlItem,
23434
24357
  privateComponentSelectBoxItemCheckmark: privateComponentSelectBoxItemCheckmark,
23435
24358
  privateComponentSidebarMenuItem: privateComponentSidebarMenuItem,
@@ -23463,32 +24386,12 @@ var FIGMA_COMPONENTS = {
23463
24386
  privateComponentUnderlineTextInputInputReadOnly: privateComponentUnderlineTextInputInputReadOnly,
23464
24387
  privateComponentUnderlineTextInputPrefix: privateComponentUnderlineTextInputPrefix,
23465
24388
  privateComponentUnderlineTextInputSuffix: privateComponentUnderlineTextInputSuffix,
23466
- privateTemplateAttachmentField: privateTemplateAttachmentField,
23467
- privateTemplateChipGroup: privateTemplateChipGroup,
23468
- privateTemplateChipGroupField: privateTemplateChipGroupField,
23469
- privateTemplatePhoneNumberField: privateTemplatePhoneNumberField,
23470
- privateTemplatePinField: privateTemplatePinField,
23471
- privateTemplateRootTopNavigationPreset: privateTemplateRootTopNavigationPreset,
23472
24389
  privateTemplateShareSheetMenuGroup: privateTemplateShareSheetMenuGroup,
23473
24390
  privateTemplateShareSheetMenuItem: privateTemplateShareSheetMenuItem,
23474
- templateAvatarPreset: templateAvatarPreset,
23475
- templateButtonGroup: templateButtonGroup,
23476
24391
  templateChatScreenPreset: templateChatScreenPreset,
23477
- templateCheckboxField: templateCheckboxField,
23478
- templateChipGroup: templateChipGroup,
23479
- templateDeprecatedChipGroup: templateDeprecatedChipGroup,
23480
- templateDisclaimer: templateDisclaimer,
23481
24392
  templateEmbedViewType: templateEmbedViewType,
23482
- templateFieldButton: templateFieldButton,
23483
- templateRadioField: templateRadioField,
23484
24393
  templateResultPage: templateResultPage,
23485
- templateSelectBoxField: templateSelectBoxField,
23486
- templateShareSheet: templateShareSheet,
23487
- templateSkeletonPreset: templateSkeletonPreset,
23488
- templateSliderField: templateSliderField,
23489
- templateTextField: templateTextField,
23490
- templateTextareaField: templateTextareaField,
23491
- templateTopNavigationPreset: templateTopNavigationPreset
24394
+ templateShareSheet: templateShareSheet
23492
24395
  };
23493
24396
 
23494
24397
  // TODO: inferStyleName 추가해야 함, rest api에서 style value가 제공되지 않고 있어 보류