@seed-design/figma 0.2.3 → 0.2.4

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 (47) hide show
  1. package/lib/codegen/index.cjs +294 -62
  2. package/lib/codegen/index.d.ts +460 -68
  3. package/lib/codegen/index.d.ts.map +1 -1
  4. package/lib/codegen/index.js +294 -62
  5. package/lib/codegen/targets/react/index.cjs +856 -242
  6. package/lib/codegen/targets/react/index.d.ts.map +1 -1
  7. package/lib/codegen/targets/react/index.js +856 -242
  8. package/lib/index.cjs +285 -60
  9. package/lib/index.js +285 -60
  10. package/package.json +2 -2
  11. package/src/codegen/component-properties.ts +82 -6
  12. package/src/codegen/core/jsx.ts +14 -2
  13. package/src/codegen/targets/react/component/handlers/checkbox.ts +7 -0
  14. package/src/codegen/targets/react/component/handlers/checkmark.ts +29 -0
  15. package/src/codegen/targets/react/component/handlers/chip.ts +5 -2
  16. package/src/codegen/targets/react/component/handlers/divider.ts +8 -2
  17. package/src/codegen/targets/react/component/handlers/help-bubble.ts +2 -0
  18. package/src/codegen/targets/react/component/handlers/list-item.ts +155 -0
  19. package/src/codegen/targets/react/component/handlers/radio-group.ts +31 -0
  20. package/src/codegen/targets/react/component/handlers/radio-mark.ts +27 -0
  21. package/src/codegen/targets/react/component/handlers/switch.ts +7 -0
  22. package/src/codegen/targets/react/component/handlers/tabs.ts +288 -5
  23. package/src/codegen/targets/react/component/index.ts +12 -2
  24. package/src/entities/data/__generated__/component-sets/checkbox.d.ts +9 -2
  25. package/src/entities/data/__generated__/component-sets/checkbox.mjs +9 -2
  26. package/src/entities/data/__generated__/component-sets/checkmark.d.ts +13 -6
  27. package/src/entities/data/__generated__/component-sets/checkmark.mjs +13 -6
  28. package/src/entities/data/__generated__/component-sets/divider.d.ts +2 -2
  29. package/src/entities/data/__generated__/component-sets/divider.mjs +2 -2
  30. package/src/entities/data/__generated__/component-sets/help-bubble.d.ts +3 -0
  31. package/src/entities/data/__generated__/component-sets/help-bubble.mjs +3 -0
  32. package/src/entities/data/__generated__/component-sets/index.d.ts +2 -0
  33. package/src/entities/data/__generated__/component-sets/index.mjs +2 -0
  34. package/src/entities/data/__generated__/component-sets/list-header.d.ts +24 -0
  35. package/src/entities/data/__generated__/component-sets/list-header.mjs +24 -0
  36. package/src/entities/data/__generated__/component-sets/list-item.d.ts +152 -0
  37. package/src/entities/data/__generated__/component-sets/list-item.mjs +152 -0
  38. package/src/entities/data/__generated__/component-sets/radio-mark.d.ts +7 -0
  39. package/src/entities/data/__generated__/component-sets/radio-mark.mjs +7 -0
  40. package/src/entities/data/__generated__/component-sets/radio.d.ts +14 -0
  41. package/src/entities/data/__generated__/component-sets/radio.mjs +14 -0
  42. package/src/entities/data/__generated__/component-sets/switch.d.ts +10 -3
  43. package/src/entities/data/__generated__/component-sets/switch.mjs +10 -3
  44. package/src/entities/data/__generated__/component-sets/tabs.d.ts +1 -1
  45. package/src/entities/data/__generated__/component-sets/tabs.mjs +1 -1
  46. package/src/entities/data/__generated__/component-sets/inline-banner.d.ts +0 -40
  47. package/src/entities/data/__generated__/component-sets/inline-banner.mjs +0 -40
@@ -93,7 +93,7 @@ function stringifyElement(element, options = {}) {
93
93
  const propFragments = propEntries.map(([key, value])=>{
94
94
  if (typeof value === "string") {
95
95
  if (value.includes("\n")) {
96
- return `${key}={\"${value.replace("\n", "\\n")}\"}`;
96
+ return `${key}={"${value.replaceAll("\n", "\\n")}"}`;
97
97
  }
98
98
  return `${key}="${value}"`;
99
99
  }
@@ -105,7 +105,13 @@ function stringifyElement(element, options = {}) {
105
105
  return `${key}={${value}}`;
106
106
  }
107
107
  if (isElement(value)) {
108
- return `${key}={${recursive(value, depth + 1)}}`;
108
+ const elementStr = recursive(value, depth + 1);
109
+ const commentMatch = elementStr.match(/\{\/\* (.+?)\*\/\}$/);
110
+ if (commentMatch) {
111
+ const elementWithoutComment = elementStr.replace(/\{\/\* .+? \*\/\}$/, "");
112
+ return `${key}={${elementWithoutComment}}/* ${commentMatch[1]} */`;
113
+ }
114
+ return `${key}={${elementStr}}`;
109
115
  }
110
116
  if (typeof value === "object") {
111
117
  return `${key}={${JSON.stringify(value)}}`;
@@ -113,6 +119,7 @@ function stringifyElement(element, options = {}) {
113
119
  if (typeof value === "undefined") {
114
120
  return undefined;
115
121
  }
122
+ return undefined;
116
123
  }).filter(exists);
117
124
  const oneLiner = propFragments.join(" ");
118
125
  const propsString = propEntries.length === 0 ? "" : ` ${oneLiner.length < 80 ? oneLiner : `\n${" ".repeat(depth + 1)}${propFragments.join(`\n${" ".repeat(depth + 1)}`)}\n${" ".repeat(depth)}`}`;
@@ -7646,7 +7653,7 @@ const FIGMA_VARIABLES = {
7646
7653
  }
7647
7654
  };
7648
7655
 
7649
- const metadata$L = {
7656
+ const metadata$N = {
7650
7657
  "name": "🔵 [Template] Button Group",
7651
7658
  "key": "29109a34197f2eb5d390b1d9ebba270979a7b302",
7652
7659
  "componentPropertyDefinitions": {
@@ -7674,7 +7681,7 @@ const metadata$L = {
7674
7681
  }
7675
7682
  };
7676
7683
 
7677
- const metadata$K = {
7684
+ const metadata$M = {
7678
7685
  "name": "🔵 [Template] Chip Group",
7679
7686
  "key": "5b1155aae0f90d1bce6a7499f53a547e88ec3b86",
7680
7687
  "componentPropertyDefinitions": {
@@ -7704,7 +7711,7 @@ const metadata$K = {
7704
7711
  }
7705
7712
  };
7706
7713
 
7707
- const metadata$J = {
7714
+ const metadata$L = {
7708
7715
  "name": "🔵 [Template] Completion",
7709
7716
  "key": "d91c789c66c2da665d820318f1a4d8671946eb79",
7710
7717
  "componentPropertyDefinitions": {
@@ -7733,7 +7740,7 @@ const metadata$J = {
7733
7740
  }
7734
7741
  };
7735
7742
 
7736
- const metadata$I = {
7743
+ const metadata$K = {
7737
7744
  "name": "🔵 [Template] Error State",
7738
7745
  "key": "39b4ecd0b5b4d35f4dc5791765ca04aa062a5172",
7739
7746
  "componentPropertyDefinitions": {
@@ -7766,7 +7773,7 @@ const metadata$I = {
7766
7773
  }
7767
7774
  };
7768
7775
 
7769
- const metadata$H = {
7776
+ const metadata$J = {
7770
7777
  "name": "🔵 [Template] Select Box Group",
7771
7778
  "key": "a3d58bb8540600878742cdcf2608a4b3851667ec",
7772
7779
  "componentPropertyDefinitions": {
@@ -7791,7 +7798,7 @@ const metadata$H = {
7791
7798
  }
7792
7799
  };
7793
7800
 
7794
- const metadata$G = {
7801
+ const metadata$I = {
7795
7802
  "name": "🔵 [Template] Top Navigation",
7796
7803
  "key": "74f045c1972dc31d0fddd0a0027537b6779cd0e8",
7797
7804
  "componentPropertyDefinitions": {
@@ -7819,7 +7826,7 @@ const metadata$G = {
7819
7826
  }
7820
7827
  };
7821
7828
 
7822
- const metadata$F = {
7829
+ const metadata$H = {
7823
7830
  "name": "🟢 Action Button",
7824
7831
  "key": "450ede9d0bf42fc6ef14345c77e6e407d6d5ee89",
7825
7832
  "componentPropertyDefinitions": {
@@ -7879,7 +7886,7 @@ const metadata$F = {
7879
7886
  }
7880
7887
  };
7881
7888
 
7882
- const metadata$E = {
7889
+ const metadata$G = {
7883
7890
  "name": "🟢 Alert Dialog",
7884
7891
  "key": "e0c89524a554ca1bf95c016b7255f29e257624aa",
7885
7892
  "componentPropertyDefinitions": {
@@ -7906,7 +7913,7 @@ const metadata$E = {
7906
7913
  }
7907
7914
  };
7908
7915
 
7909
- const metadata$D = {
7916
+ const metadata$F = {
7910
7917
  "name": "🟢 Avatar",
7911
7918
  "key": "4a8853c3068c08b69b13e71dd42ce186e968697e",
7912
7919
  "componentPropertyDefinitions": {
@@ -7939,7 +7946,7 @@ const metadata$D = {
7939
7946
  }
7940
7947
  };
7941
7948
 
7942
- const metadata$C = {
7949
+ const metadata$E = {
7943
7950
  "name": "🟢 Avatar Stack",
7944
7951
  "key": "e8e91e01000d878742c55cd6e44b6786460440f7",
7945
7952
  "componentPropertyDefinitions": {
@@ -7960,7 +7967,7 @@ const metadata$C = {
7960
7967
  }
7961
7968
  };
7962
7969
 
7963
- const metadata$B = {
7970
+ const metadata$D = {
7964
7971
  "name": "🟢 Badge",
7965
7972
  "key": "04609a35d47a1a0ef4904b3c25f79451892a85a1",
7966
7973
  "componentPropertyDefinitions": {
@@ -7996,7 +8003,7 @@ const metadata$B = {
7996
8003
  }
7997
8004
  };
7998
8005
 
7999
- const metadata$A = {
8006
+ const metadata$C = {
8000
8007
  "name": "🟢 Bottom Navigation / Global",
8001
8008
  "key": "983650a4dff639b38bf68ff6004efc8ec4fb5c20",
8002
8009
  "componentPropertyDefinitions": {
@@ -8020,7 +8027,7 @@ const metadata$A = {
8020
8027
  }
8021
8028
  };
8022
8029
 
8023
- const metadata$z = {
8030
+ const metadata$B = {
8024
8031
  "name": "🟢 Bottom Navigation / KR",
8025
8032
  "key": "accc7cea2d0250cdfbf0197ce00a677c6b9e0dae",
8026
8033
  "componentPropertyDefinitions": {
@@ -8037,7 +8044,7 @@ const metadata$z = {
8037
8044
  }
8038
8045
  };
8039
8046
 
8040
- const metadata$y = {
8047
+ const metadata$A = {
8041
8048
  "name": "🟢 Bottom Sheet",
8042
8049
  "key": "16bafa5d1155896fe18fb6f52f904f5cd2048686",
8043
8050
  "componentPropertyDefinitions": {
@@ -8101,7 +8108,7 @@ const metadata$y = {
8101
8108
  }
8102
8109
  };
8103
8110
 
8104
- const metadata$x = {
8111
+ const metadata$z = {
8105
8112
  "name": "🟢 Callout",
8106
8113
  "key": "ec46d38baac3c367c4a5ffa47a2110d51ba0a4fe",
8107
8114
  "componentPropertyDefinitions": {
@@ -8150,7 +8157,7 @@ const metadata$x = {
8150
8157
  }
8151
8158
  };
8152
8159
 
8153
- const metadata$w = {
8160
+ const metadata$y = {
8154
8161
  "name": "🟢 Checkbox",
8155
8162
  "key": "94a2f6957a86f8ae3b8c7ca200dfcd5e29f6075b",
8156
8163
  "componentPropertyDefinitions": {
@@ -8164,6 +8171,13 @@ const metadata$w = {
8164
8171
  "Large"
8165
8172
  ]
8166
8173
  },
8174
+ "Tone": {
8175
+ "type": "VARIANT",
8176
+ "variantOptions": [
8177
+ "🚫[Deprecated]Brand",
8178
+ "Neutral"
8179
+ ]
8180
+ },
8167
8181
  "Shape": {
8168
8182
  "type": "VARIANT",
8169
8183
  "variantOptions": [
@@ -8174,8 +8188,8 @@ const metadata$w = {
8174
8188
  "Weight": {
8175
8189
  "type": "VARIANT",
8176
8190
  "variantOptions": [
8177
- "Default",
8178
- "Stronger"
8191
+ "Bold",
8192
+ "Regular"
8179
8193
  ]
8180
8194
  },
8181
8195
  "Selected": {
@@ -8197,22 +8211,29 @@ const metadata$w = {
8197
8211
  }
8198
8212
  };
8199
8213
 
8200
- const metadata$v = {
8214
+ const metadata$x = {
8201
8215
  "name": "🟢 Checkmark",
8202
8216
  "key": "fae60fb392f55bde60de1dbccb2f453320068805",
8203
8217
  "componentPropertyDefinitions": {
8204
- "Shape": {
8218
+ "Size": {
8205
8219
  "type": "VARIANT",
8206
8220
  "variantOptions": [
8207
- "Square",
8208
- "Ghost"
8221
+ "Medium",
8222
+ "Large"
8209
8223
  ]
8210
8224
  },
8211
- "Size": {
8225
+ "Tone": {
8212
8226
  "type": "VARIANT",
8213
8227
  "variantOptions": [
8214
- "Medium",
8215
- "Large"
8228
+ "🚫[Deprecated]Brand",
8229
+ "Neutral"
8230
+ ]
8231
+ },
8232
+ "Shape": {
8233
+ "type": "VARIANT",
8234
+ "variantOptions": [
8235
+ "Square",
8236
+ "Ghost"
8216
8237
  ]
8217
8238
  },
8218
8239
  "Selected": {
@@ -8234,7 +8255,7 @@ const metadata$v = {
8234
8255
  }
8235
8256
  };
8236
8257
 
8237
- const metadata$u = {
8258
+ const metadata$w = {
8238
8259
  "name": "🟢 Chip",
8239
8260
  "key": "8156ef08d9aaa2b0de1cc4a113ec0c9d0586f831",
8240
8261
  "componentPropertyDefinitions": {
@@ -8325,7 +8346,7 @@ const metadata$u = {
8325
8346
  }
8326
8347
  };
8327
8348
 
8328
- const metadata$t = {
8349
+ const metadata$v = {
8329
8350
  "name": "🟢 Chlid",
8330
8351
  "key": "aa9ffdd60fbfdea42f0d11162cd64f4b4389ddcc",
8331
8352
  "componentPropertyDefinitions": {
@@ -8340,7 +8361,7 @@ const metadata$t = {
8340
8361
  }
8341
8362
  };
8342
8363
 
8343
- const metadata$s = {
8364
+ const metadata$u = {
8344
8365
  "name": "🟢 Contextual Floating Button",
8345
8366
  "key": "032f3fddaad0aa3fa5a7f680768c1f5d02fb463f",
8346
8367
  "componentPropertyDefinitions": {
@@ -8377,7 +8398,7 @@ const metadata$s = {
8377
8398
  }
8378
8399
  };
8379
8400
 
8380
- const metadata$r = {
8401
+ const metadata$t = {
8381
8402
  "name": "🟢 Divider",
8382
8403
  "key": "848e953725f757ea1a79e1fecc0b608a035032d3",
8383
8404
  "componentPropertyDefinitions": {
@@ -8387,8 +8408,8 @@ const metadata$r = {
8387
8408
  "Tone": {
8388
8409
  "type": "VARIANT",
8389
8410
  "variantOptions": [
8390
- "Neutral",
8391
- "Neutral Muted"
8411
+ "Neutral Muted",
8412
+ "Neutral Subtle"
8392
8413
  ]
8393
8414
  },
8394
8415
  "Orientation": {
@@ -8401,7 +8422,7 @@ const metadata$r = {
8401
8422
  }
8402
8423
  };
8403
8424
 
8404
- const metadata$q = {
8425
+ const metadata$s = {
8405
8426
  "name": "🟢 Floating Action Button",
8406
8427
  "key": "65f9e7eede627b893fb8ff94ed9a7d0db900c464",
8407
8428
  "componentPropertyDefinitions": {
@@ -8415,10 +8436,13 @@ const metadata$q = {
8415
8436
  }
8416
8437
  };
8417
8438
 
8418
- const metadata$p = {
8439
+ const metadata$r = {
8419
8440
  "name": "🟢 Help Bubble",
8420
8441
  "key": "804b327c091278a40d5891939eaed90bb2889659",
8421
8442
  "componentPropertyDefinitions": {
8443
+ "Show Close Button#40538:0": {
8444
+ "type": "BOOLEAN"
8445
+ },
8422
8446
  "Show Description#62499:0": {
8423
8447
  "type": "BOOLEAN"
8424
8448
  },
@@ -8448,6 +8472,184 @@ const metadata$p = {
8448
8472
  }
8449
8473
  };
8450
8474
 
8475
+ const metadata$q = {
8476
+ "name": "🟢 List Header",
8477
+ "key": "609f93ed0608ef0a6d9a351e47595ad631bae0fa",
8478
+ "componentPropertyDefinitions": {
8479
+ "Title#28588:0": {
8480
+ "type": "TEXT"
8481
+ },
8482
+ "Suffix": {
8483
+ "type": "VARIANT",
8484
+ "variantOptions": [
8485
+ "None",
8486
+ "Button",
8487
+ "Custom"
8488
+ ]
8489
+ },
8490
+ "Title Weight": {
8491
+ "type": "VARIANT",
8492
+ "variantOptions": [
8493
+ "Medium",
8494
+ "Bold"
8495
+ ]
8496
+ }
8497
+ }
8498
+ };
8499
+
8500
+ const metadata$p = {
8501
+ "name": "🟢 List Item",
8502
+ "key": "b51b7d07c659fee5d696565b8e1151636573b27c",
8503
+ "componentPropertyDefinitions": {
8504
+ "Divider#28441:0": {
8505
+ "type": "BOOLEAN"
8506
+ },
8507
+ "Suffix Type#28441:42": {
8508
+ "type": "INSTANCE_SWAP",
8509
+ "preferredValues": [
8510
+ {
8511
+ "type": "COMPONENT",
8512
+ "key": "8c52207687ffed15cd5931d71ed9d196b3358a68"
8513
+ },
8514
+ {
8515
+ "type": "COMPONENT",
8516
+ "key": "fe0e25f4fecda59d0a3730ead7c5bc0a66a41e7e"
8517
+ },
8518
+ {
8519
+ "type": "COMPONENT",
8520
+ "key": "abf9810103ae6e6afe8fa253ec5f05d6a7304b38"
8521
+ },
8522
+ {
8523
+ "type": "COMPONENT",
8524
+ "key": "0a9464ad270bfd7f56438f62bb0155a25ca146a9"
8525
+ },
8526
+ {
8527
+ "type": "COMPONENT",
8528
+ "key": "4cc7e9b84a8388a36cb3898c6c02e6110a3281b9"
8529
+ },
8530
+ {
8531
+ "type": "COMPONENT",
8532
+ "key": "1e933f75dd6bb4b21c3289b5c3b4402d2c623125"
8533
+ },
8534
+ {
8535
+ "type": "COMPONENT",
8536
+ "key": "11ba71b11b336199654cd2801967a44996705449"
8537
+ },
8538
+ {
8539
+ "type": "COMPONENT",
8540
+ "key": "c0eaee6146c6dc92bfd9b081d667f45ee611b1d2"
8541
+ },
8542
+ {
8543
+ "type": "COMPONENT_SET",
8544
+ "key": "3d788f28c785d1c60b937b253c39ce582dbe1ed3"
8545
+ },
8546
+ {
8547
+ "type": "COMPONENT_SET",
8548
+ "key": "5636566f6de6f58200dce388f7b1ac9f517b30e1"
8549
+ },
8550
+ {
8551
+ "type": "COMPONENT",
8552
+ "key": "3a70bf5bb9856c13893931b7a0df652bcf0be895"
8553
+ }
8554
+ ]
8555
+ },
8556
+ "Title#28452:21": {
8557
+ "type": "TEXT"
8558
+ },
8559
+ "Has Suffix#28452:64": {
8560
+ "type": "BOOLEAN"
8561
+ },
8562
+ "Has Prefix#28452:85": {
8563
+ "type": "BOOLEAN"
8564
+ },
8565
+ "Prefix Type#28452:106": {
8566
+ "type": "INSTANCE_SWAP",
8567
+ "preferredValues": [
8568
+ {
8569
+ "type": "COMPONENT",
8570
+ "key": "0e4c05f097d3fa2dc0cbfdbf8db2662bcf8439ca"
8571
+ },
8572
+ {
8573
+ "type": "COMPONENT",
8574
+ "key": "ef0e8bd6c2f92e620acf204bb9a8079ef25a1e5c"
8575
+ },
8576
+ {
8577
+ "type": "COMPONENT",
8578
+ "key": "82239325aa1cb65af7c649fc71a8f2b48fb9b9f3"
8579
+ },
8580
+ {
8581
+ "type": "COMPONENT",
8582
+ "key": "f24c9ef42ef08df79483fbae0fa7d9037e566748"
8583
+ },
8584
+ {
8585
+ "type": "COMPONENT",
8586
+ "key": "5a77ad37a2291989dfe77c44ddee9aa39e447f90"
8587
+ },
8588
+ {
8589
+ "type": "COMPONENT",
8590
+ "key": "81f201fc876e38f016ab7427a6b3da000ee919a2"
8591
+ }
8592
+ ]
8593
+ },
8594
+ "Has Detail#28469:1": {
8595
+ "type": "BOOLEAN"
8596
+ },
8597
+ "Detail Type#28469:11": {
8598
+ "type": "INSTANCE_SWAP",
8599
+ "preferredValues": [
8600
+ {
8601
+ "type": "COMPONENT",
8602
+ "key": "b27f70404d8f055ec39f9049a5a86920c11be979"
8603
+ },
8604
+ {
8605
+ "type": "COMPONENT",
8606
+ "key": "43795c2e3e507dc555f9ec08bf4bf1abf8c2051a"
8607
+ },
8608
+ {
8609
+ "type": "COMPONENT",
8610
+ "key": "73bcdff1b73998d1f440fb8827df2eafc4338c1d"
8611
+ }
8612
+ ]
8613
+ },
8614
+ "Title #28487:0": {
8615
+ "type": "TEXT"
8616
+ },
8617
+ "Detail Type #28487:11": {
8618
+ "type": "INSTANCE_SWAP",
8619
+ "preferredValues": [
8620
+ {
8621
+ "type": "COMPONENT",
8622
+ "key": "870d50d39feae5bcfd59d7fbf8ae510233a97a8b"
8623
+ },
8624
+ {
8625
+ "type": "COMPONENT",
8626
+ "key": "43795c2e3e507dc555f9ec08bf4bf1abf8c2051a"
8627
+ },
8628
+ {
8629
+ "type": "COMPONENT",
8630
+ "key": "73bcdff1b73998d1f440fb8827df2eafc4338c1d"
8631
+ }
8632
+ ]
8633
+ },
8634
+ "State": {
8635
+ "type": "VARIANT",
8636
+ "variantOptions": [
8637
+ "Enabled",
8638
+ "Pressed",
8639
+ "Disabled",
8640
+ "Highlighted"
8641
+ ]
8642
+ },
8643
+ "Variants": {
8644
+ "type": "VARIANT",
8645
+ "variantOptions": [
8646
+ "Single Line",
8647
+ "Multi Line"
8648
+ ]
8649
+ }
8650
+ }
8651
+ };
8652
+
8451
8653
  const metadata$o = {
8452
8654
  "name": "🟢 Main Tab Navigation / Global",
8453
8655
  "key": "a694a1da14a5c1d7d5c66bc78218c0c61fb388ab",
@@ -8739,6 +8941,20 @@ const metadata$g = {
8739
8941
  "Large"
8740
8942
  ]
8741
8943
  },
8944
+ "Tone": {
8945
+ "type": "VARIANT",
8946
+ "variantOptions": [
8947
+ "🚫[Deprecated]Brand",
8948
+ "Neutral"
8949
+ ]
8950
+ },
8951
+ "Weight": {
8952
+ "type": "VARIANT",
8953
+ "variantOptions": [
8954
+ "Regular",
8955
+ "Bold"
8956
+ ]
8957
+ },
8742
8958
  "Selected": {
8743
8959
  "type": "VARIANT",
8744
8960
  "variantOptions": [
@@ -8768,6 +8984,13 @@ const metadata$f = {
8768
8984
  "Large"
8769
8985
  ]
8770
8986
  },
8987
+ "Tone": {
8988
+ "type": "VARIANT",
8989
+ "variantOptions": [
8990
+ "Neutral",
8991
+ "🚫[Deprecated]Brand"
8992
+ ]
8993
+ },
8771
8994
  "Selected": {
8772
8995
  "type": "VARIANT",
8773
8996
  "variantOptions": [
@@ -9073,6 +9296,13 @@ const metadata$4 = {
9073
9296
  "32"
9074
9297
  ]
9075
9298
  },
9299
+ "Tone": {
9300
+ "type": "VARIANT",
9301
+ "variantOptions": [
9302
+ "Neutral",
9303
+ "🚫[Deprecated] Brand"
9304
+ ]
9305
+ },
9076
9306
  "Selected": {
9077
9307
  "type": "VARIANT",
9078
9308
  "variantOptions": [
@@ -9090,9 +9320,9 @@ const metadata$4 = {
9090
9320
  "Label Layout(Figma Only)": {
9091
9321
  "type": "VARIANT",
9092
9322
  "variantOptions": [
9093
- "None",
9094
- "Right",
9095
- "Left"
9323
+ "Label Last",
9324
+ "Label First",
9325
+ "Switch Only"
9096
9326
  ]
9097
9327
  }
9098
9328
  }
@@ -9105,7 +9335,7 @@ const metadata$3 = {
9105
9335
  "Variant": {
9106
9336
  "type": "VARIANT",
9107
9337
  "variantOptions": [
9108
- "Underline",
9338
+ "Line",
9109
9339
  "Chip"
9110
9340
  ]
9111
9341
  }
@@ -9311,23 +9541,25 @@ const metadata = {
9311
9541
 
9312
9542
  var FIGMA_COMPONENTS = {
9313
9543
  __proto__: null,
9314
- actionButton: metadata$F,
9315
- alertDialog: metadata$E,
9316
- avatar: metadata$D,
9317
- avatarStack: metadata$C,
9318
- badge: metadata$B,
9319
- bottomNavigationGlobal: metadata$A,
9320
- bottomNavigationKr: metadata$z,
9321
- bottomSheet: metadata$y,
9322
- callout: metadata$x,
9323
- checkbox: metadata$w,
9324
- checkmark: metadata$v,
9325
- chip: metadata$u,
9326
- chlid: metadata$t,
9327
- contextualFloatingButton: metadata$s,
9328
- divider: metadata$r,
9329
- floatingActionButton: metadata$q,
9330
- helpBubble: metadata$p,
9544
+ actionButton: metadata$H,
9545
+ alertDialog: metadata$G,
9546
+ avatar: metadata$F,
9547
+ avatarStack: metadata$E,
9548
+ badge: metadata$D,
9549
+ bottomNavigationGlobal: metadata$C,
9550
+ bottomNavigationKr: metadata$B,
9551
+ bottomSheet: metadata$A,
9552
+ callout: metadata$z,
9553
+ checkbox: metadata$y,
9554
+ checkmark: metadata$x,
9555
+ chip: metadata$w,
9556
+ chlid: metadata$v,
9557
+ contextualFloatingButton: metadata$u,
9558
+ divider: metadata$t,
9559
+ floatingActionButton: metadata$s,
9560
+ helpBubble: metadata$r,
9561
+ listHeader: metadata$q,
9562
+ listItem: metadata$p,
9331
9563
  mainTabNavigationGlobal: metadata$o,
9332
9564
  mainTabNavigationKr: metadata$n,
9333
9565
  mannerTemp: metadata$m,
@@ -9350,12 +9582,12 @@ var FIGMA_COMPONENTS = {
9350
9582
  superscriptChild: metadata$5,
9351
9583
  switch: metadata$4,
9352
9584
  tabs: metadata$3,
9353
- templateButtonGroup: metadata$L,
9354
- templateChipGroup: metadata$K,
9355
- templateCompletion: metadata$J,
9356
- templateErrorState: metadata$I,
9357
- templateSelectBoxGroup: metadata$H,
9358
- templateTopNavigation: metadata$G,
9585
+ templateButtonGroup: metadata$N,
9586
+ templateChipGroup: metadata$M,
9587
+ templateCompletion: metadata$L,
9588
+ templateErrorState: metadata$K,
9589
+ templateSelectBoxGroup: metadata$J,
9590
+ templateTopNavigation: metadata$I,
9359
9591
  textField: metadata$2,
9360
9592
  toggleButton: metadata$1,
9361
9593
  topNavigation: metadata