@seed-design/lynx-css 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/all.css +22 -8
- package/all.min.css +1 -1
- package/base.css +22 -8
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/vars/color/bg.d.ts +2 -2
- package/vars/color/bg.mjs +2 -1
- package/vars/color/stroke.d.ts +2 -2
- package/vars/color/stroke.mjs +2 -2
- package/vars/component/accordion-item.d.ts +132 -0
- package/vars/component/accordion-item.mjs +126 -0
- package/vars/component/accordion.d.ts +22 -0
- package/vars/component/accordion.mjs +16 -0
- package/vars/component/attachment-input-dropzone.d.ts +32 -0
- package/vars/component/attachment-input-dropzone.mjs +30 -0
- package/vars/component/attachment-input-item-action-button.d.ts +37 -0
- package/vars/component/attachment-input-item-action-button.mjs +37 -0
- package/vars/component/attachment-input-item-remove-button.d.ts +28 -0
- package/vars/component/attachment-input-item-remove-button.mjs +28 -0
- package/vars/component/attachment-input-item.d.ts +103 -0
- package/vars/component/attachment-input-item.mjs +102 -0
- package/vars/component/attachment-input-trigger.d.ts +46 -0
- package/vars/component/attachment-input-trigger.mjs +46 -0
- package/vars/component/attachment-input.d.ts +14 -0
- package/vars/component/attachment-input.mjs +12 -0
- package/vars/component/chip-tab.d.ts +0 -41
- package/vars/component/chip-tab.mjs +0 -41
- package/vars/component/chip-tablist.d.ts +0 -7
- package/vars/component/chip-tablist.mjs +0 -7
- package/vars/component/image-frame.d.ts +1 -22
- package/vars/component/image-frame.mjs +1 -9
- package/vars/component/index.d.ts +12 -1
- package/vars/component/index.mjs +12 -1
- package/vars/component/input-button.d.ts +90 -17
- package/vars/component/input-button.mjs +84 -17
- package/vars/component/menu-item.d.ts +129 -0
- package/vars/component/menu-item.mjs +117 -0
- package/vars/component/menu.d.ts +68 -0
- package/vars/component/menu.mjs +60 -0
- package/vars/component/side-panel-close-button.d.ts +23 -0
- package/vars/component/side-panel-close-button.mjs +23 -0
- package/vars/component/side-panel.d.ts +94 -0
- package/vars/component/side-panel.mjs +83 -0
- package/vars/component/text-input.d.ts +92 -24
- package/vars/component/text-input.mjs +76 -24
- package/vars/component/typography.d.ts +414 -0
- package/vars/component/typography.mjs +324 -0
- package/vars/font-size.d.ts +17 -1
- package/vars/font-size.mjs +9 -1
- package/vars/gradient.d.ts +0 -8
- package/vars/gradient.mjs +0 -2
- package/vars/line-height.d.ts +17 -1
- package/vars/line-height.mjs +9 -1
|
@@ -215,6 +215,24 @@ export const vars = {
|
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
},
|
|
218
|
+
"textStyleT8Regular": {
|
|
219
|
+
"enabled": {
|
|
220
|
+
"root": {
|
|
221
|
+
"fontSize": "var(--seed-font-size-t8)",
|
|
222
|
+
"lineHeight": "var(--seed-line-height-t8)",
|
|
223
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"textStyleT8Medium": {
|
|
228
|
+
"enabled": {
|
|
229
|
+
"root": {
|
|
230
|
+
"fontSize": "var(--seed-font-size-t8)",
|
|
231
|
+
"lineHeight": "var(--seed-line-height-t8)",
|
|
232
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
},
|
|
218
236
|
"textStyleT8Bold": {
|
|
219
237
|
"enabled": {
|
|
220
238
|
"root": {
|
|
@@ -224,6 +242,24 @@ export const vars = {
|
|
|
224
242
|
}
|
|
225
243
|
}
|
|
226
244
|
},
|
|
245
|
+
"textStyleT9Regular": {
|
|
246
|
+
"enabled": {
|
|
247
|
+
"root": {
|
|
248
|
+
"fontSize": "var(--seed-font-size-t9)",
|
|
249
|
+
"lineHeight": "var(--seed-line-height-t9)",
|
|
250
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"textStyleT9Medium": {
|
|
255
|
+
"enabled": {
|
|
256
|
+
"root": {
|
|
257
|
+
"fontSize": "var(--seed-font-size-t9)",
|
|
258
|
+
"lineHeight": "var(--seed-line-height-t9)",
|
|
259
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
},
|
|
227
263
|
"textStyleT9Bold": {
|
|
228
264
|
"enabled": {
|
|
229
265
|
"root": {
|
|
@@ -233,6 +269,24 @@ export const vars = {
|
|
|
233
269
|
}
|
|
234
270
|
}
|
|
235
271
|
},
|
|
272
|
+
"textStyleT10Regular": {
|
|
273
|
+
"enabled": {
|
|
274
|
+
"root": {
|
|
275
|
+
"fontSize": "var(--seed-font-size-t10)",
|
|
276
|
+
"lineHeight": "var(--seed-line-height-t10)",
|
|
277
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"textStyleT10Medium": {
|
|
282
|
+
"enabled": {
|
|
283
|
+
"root": {
|
|
284
|
+
"fontSize": "var(--seed-font-size-t10)",
|
|
285
|
+
"lineHeight": "var(--seed-line-height-t10)",
|
|
286
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
},
|
|
236
290
|
"textStyleT10Bold": {
|
|
237
291
|
"enabled": {
|
|
238
292
|
"root": {
|
|
@@ -242,6 +296,114 @@ export const vars = {
|
|
|
242
296
|
}
|
|
243
297
|
}
|
|
244
298
|
},
|
|
299
|
+
"textStyleT11Regular": {
|
|
300
|
+
"enabled": {
|
|
301
|
+
"root": {
|
|
302
|
+
"fontSize": "var(--seed-font-size-t11)",
|
|
303
|
+
"lineHeight": "var(--seed-line-height-t11)",
|
|
304
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"textStyleT11Medium": {
|
|
309
|
+
"enabled": {
|
|
310
|
+
"root": {
|
|
311
|
+
"fontSize": "var(--seed-font-size-t11)",
|
|
312
|
+
"lineHeight": "var(--seed-line-height-t11)",
|
|
313
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"textStyleT11Bold": {
|
|
318
|
+
"enabled": {
|
|
319
|
+
"root": {
|
|
320
|
+
"fontSize": "var(--seed-font-size-t11)",
|
|
321
|
+
"lineHeight": "var(--seed-line-height-t11)",
|
|
322
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
"textStyleT12Regular": {
|
|
327
|
+
"enabled": {
|
|
328
|
+
"root": {
|
|
329
|
+
"fontSize": "var(--seed-font-size-t12)",
|
|
330
|
+
"lineHeight": "var(--seed-line-height-t12)",
|
|
331
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"textStyleT12Medium": {
|
|
336
|
+
"enabled": {
|
|
337
|
+
"root": {
|
|
338
|
+
"fontSize": "var(--seed-font-size-t12)",
|
|
339
|
+
"lineHeight": "var(--seed-line-height-t12)",
|
|
340
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"textStyleT12Bold": {
|
|
345
|
+
"enabled": {
|
|
346
|
+
"root": {
|
|
347
|
+
"fontSize": "var(--seed-font-size-t12)",
|
|
348
|
+
"lineHeight": "var(--seed-line-height-t12)",
|
|
349
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"textStyleT13Regular": {
|
|
354
|
+
"enabled": {
|
|
355
|
+
"root": {
|
|
356
|
+
"fontSize": "var(--seed-font-size-t13)",
|
|
357
|
+
"lineHeight": "var(--seed-line-height-t13)",
|
|
358
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
"textStyleT13Medium": {
|
|
363
|
+
"enabled": {
|
|
364
|
+
"root": {
|
|
365
|
+
"fontSize": "var(--seed-font-size-t13)",
|
|
366
|
+
"lineHeight": "var(--seed-line-height-t13)",
|
|
367
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"textStyleT13Bold": {
|
|
372
|
+
"enabled": {
|
|
373
|
+
"root": {
|
|
374
|
+
"fontSize": "var(--seed-font-size-t13)",
|
|
375
|
+
"lineHeight": "var(--seed-line-height-t13)",
|
|
376
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"textStyleT14Regular": {
|
|
381
|
+
"enabled": {
|
|
382
|
+
"root": {
|
|
383
|
+
"fontSize": "var(--seed-font-size-t14)",
|
|
384
|
+
"lineHeight": "var(--seed-line-height-t14)",
|
|
385
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
"textStyleT14Medium": {
|
|
390
|
+
"enabled": {
|
|
391
|
+
"root": {
|
|
392
|
+
"fontSize": "var(--seed-font-size-t14)",
|
|
393
|
+
"lineHeight": "var(--seed-line-height-t14)",
|
|
394
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"textStyleT14Bold": {
|
|
399
|
+
"enabled": {
|
|
400
|
+
"root": {
|
|
401
|
+
"fontSize": "var(--seed-font-size-t14)",
|
|
402
|
+
"lineHeight": "var(--seed-line-height-t14)",
|
|
403
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
},
|
|
245
407
|
"textStyleT1StaticRegular": {
|
|
246
408
|
"enabled": {
|
|
247
409
|
"root": {
|
|
@@ -431,6 +593,24 @@ export const vars = {
|
|
|
431
593
|
}
|
|
432
594
|
}
|
|
433
595
|
},
|
|
596
|
+
"textStyleT8StaticRegular": {
|
|
597
|
+
"enabled": {
|
|
598
|
+
"root": {
|
|
599
|
+
"fontSize": "var(--seed-font-size-t8-static)",
|
|
600
|
+
"lineHeight": "var(--seed-line-height-t8-static)",
|
|
601
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
},
|
|
605
|
+
"textStyleT8StaticMedium": {
|
|
606
|
+
"enabled": {
|
|
607
|
+
"root": {
|
|
608
|
+
"fontSize": "var(--seed-font-size-t8-static)",
|
|
609
|
+
"lineHeight": "var(--seed-line-height-t8-static)",
|
|
610
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
},
|
|
434
614
|
"textStyleT8StaticBold": {
|
|
435
615
|
"enabled": {
|
|
436
616
|
"root": {
|
|
@@ -440,6 +620,24 @@ export const vars = {
|
|
|
440
620
|
}
|
|
441
621
|
}
|
|
442
622
|
},
|
|
623
|
+
"textStyleT9StaticRegular": {
|
|
624
|
+
"enabled": {
|
|
625
|
+
"root": {
|
|
626
|
+
"fontSize": "var(--seed-font-size-t9-static)",
|
|
627
|
+
"lineHeight": "var(--seed-line-height-t9-static)",
|
|
628
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"textStyleT9StaticMedium": {
|
|
633
|
+
"enabled": {
|
|
634
|
+
"root": {
|
|
635
|
+
"fontSize": "var(--seed-font-size-t9-static)",
|
|
636
|
+
"lineHeight": "var(--seed-line-height-t9-static)",
|
|
637
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
},
|
|
443
641
|
"textStyleT9StaticBold": {
|
|
444
642
|
"enabled": {
|
|
445
643
|
"root": {
|
|
@@ -449,6 +647,24 @@ export const vars = {
|
|
|
449
647
|
}
|
|
450
648
|
}
|
|
451
649
|
},
|
|
650
|
+
"textStyleT10StaticRegular": {
|
|
651
|
+
"enabled": {
|
|
652
|
+
"root": {
|
|
653
|
+
"fontSize": "var(--seed-font-size-t10-static)",
|
|
654
|
+
"lineHeight": "var(--seed-line-height-t10-static)",
|
|
655
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
},
|
|
659
|
+
"textStyleT10StaticMedium": {
|
|
660
|
+
"enabled": {
|
|
661
|
+
"root": {
|
|
662
|
+
"fontSize": "var(--seed-font-size-t10-static)",
|
|
663
|
+
"lineHeight": "var(--seed-line-height-t10-static)",
|
|
664
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
},
|
|
452
668
|
"textStyleT10StaticBold": {
|
|
453
669
|
"enabled": {
|
|
454
670
|
"root": {
|
|
@@ -457,5 +673,113 @@ export const vars = {
|
|
|
457
673
|
"fontWeight": "var(--seed-font-weight-bold)"
|
|
458
674
|
}
|
|
459
675
|
}
|
|
676
|
+
},
|
|
677
|
+
"textStyleT11StaticRegular": {
|
|
678
|
+
"enabled": {
|
|
679
|
+
"root": {
|
|
680
|
+
"fontSize": "var(--seed-font-size-t11-static)",
|
|
681
|
+
"lineHeight": "var(--seed-line-height-t11-static)",
|
|
682
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
"textStyleT11StaticMedium": {
|
|
687
|
+
"enabled": {
|
|
688
|
+
"root": {
|
|
689
|
+
"fontSize": "var(--seed-font-size-t11-static)",
|
|
690
|
+
"lineHeight": "var(--seed-line-height-t11-static)",
|
|
691
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
},
|
|
695
|
+
"textStyleT11StaticBold": {
|
|
696
|
+
"enabled": {
|
|
697
|
+
"root": {
|
|
698
|
+
"fontSize": "var(--seed-font-size-t11-static)",
|
|
699
|
+
"lineHeight": "var(--seed-line-height-t11-static)",
|
|
700
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
},
|
|
704
|
+
"textStyleT12StaticRegular": {
|
|
705
|
+
"enabled": {
|
|
706
|
+
"root": {
|
|
707
|
+
"fontSize": "var(--seed-font-size-t12-static)",
|
|
708
|
+
"lineHeight": "var(--seed-line-height-t12-static)",
|
|
709
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
},
|
|
713
|
+
"textStyleT12StaticMedium": {
|
|
714
|
+
"enabled": {
|
|
715
|
+
"root": {
|
|
716
|
+
"fontSize": "var(--seed-font-size-t12-static)",
|
|
717
|
+
"lineHeight": "var(--seed-line-height-t12-static)",
|
|
718
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
"textStyleT12StaticBold": {
|
|
723
|
+
"enabled": {
|
|
724
|
+
"root": {
|
|
725
|
+
"fontSize": "var(--seed-font-size-t12-static)",
|
|
726
|
+
"lineHeight": "var(--seed-line-height-t12-static)",
|
|
727
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"textStyleT13StaticRegular": {
|
|
732
|
+
"enabled": {
|
|
733
|
+
"root": {
|
|
734
|
+
"fontSize": "var(--seed-font-size-t13-static)",
|
|
735
|
+
"lineHeight": "var(--seed-line-height-t13-static)",
|
|
736
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
},
|
|
740
|
+
"textStyleT13StaticMedium": {
|
|
741
|
+
"enabled": {
|
|
742
|
+
"root": {
|
|
743
|
+
"fontSize": "var(--seed-font-size-t13-static)",
|
|
744
|
+
"lineHeight": "var(--seed-line-height-t13-static)",
|
|
745
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
"textStyleT13StaticBold": {
|
|
750
|
+
"enabled": {
|
|
751
|
+
"root": {
|
|
752
|
+
"fontSize": "var(--seed-font-size-t13-static)",
|
|
753
|
+
"lineHeight": "var(--seed-line-height-t13-static)",
|
|
754
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
755
|
+
}
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
"textStyleT14StaticRegular": {
|
|
759
|
+
"enabled": {
|
|
760
|
+
"root": {
|
|
761
|
+
"fontSize": "var(--seed-font-size-t14-static)",
|
|
762
|
+
"lineHeight": "var(--seed-line-height-t14-static)",
|
|
763
|
+
"fontWeight": "var(--seed-font-weight-regular)"
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
"textStyleT14StaticMedium": {
|
|
768
|
+
"enabled": {
|
|
769
|
+
"root": {
|
|
770
|
+
"fontSize": "var(--seed-font-size-t14-static)",
|
|
771
|
+
"lineHeight": "var(--seed-line-height-t14-static)",
|
|
772
|
+
"fontWeight": "var(--seed-font-weight-medium)"
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"textStyleT14StaticBold": {
|
|
777
|
+
"enabled": {
|
|
778
|
+
"root": {
|
|
779
|
+
"fontSize": "var(--seed-font-size-t14-static)",
|
|
780
|
+
"lineHeight": "var(--seed-line-height-t14-static)",
|
|
781
|
+
"fontWeight": "var(--seed-font-weight-bold)"
|
|
782
|
+
}
|
|
783
|
+
}
|
|
460
784
|
}
|
|
461
785
|
}
|
package/vars/font-size.d.ts
CHANGED
|
@@ -8,6 +8,14 @@ export declare const t7 = "var(--seed-font-size-t7)";
|
|
|
8
8
|
export declare const t8 = "var(--seed-font-size-t8)";
|
|
9
9
|
export declare const t9 = "var(--seed-font-size-t9)";
|
|
10
10
|
export declare const t10 = "var(--seed-font-size-t10)";
|
|
11
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. */
|
|
12
|
+
export declare const t11 = "var(--seed-font-size-t11)";
|
|
13
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. */
|
|
14
|
+
export declare const t12 = "var(--seed-font-size-t12)";
|
|
15
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. */
|
|
16
|
+
export declare const t13 = "var(--seed-font-size-t13)";
|
|
17
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. */
|
|
18
|
+
export declare const t14 = "var(--seed-font-size-t14)";
|
|
11
19
|
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
12
20
|
export declare const t1Static = "var(--seed-font-size-t1-static)";
|
|
13
21
|
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
@@ -27,4 +35,12 @@ export declare const t8Static = "var(--seed-font-size-t8-static)";
|
|
|
27
35
|
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
28
36
|
export declare const t9Static = "var(--seed-font-size-t9-static)";
|
|
29
37
|
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
30
|
-
export declare const t10Static = "var(--seed-font-size-t10-static)";
|
|
38
|
+
export declare const t10Static = "var(--seed-font-size-t10-static)";
|
|
39
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
40
|
+
export declare const t11Static = "var(--seed-font-size-t11-static)";
|
|
41
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
42
|
+
export declare const t12Static = "var(--seed-font-size-t12-static)";
|
|
43
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
44
|
+
export declare const t13Static = "var(--seed-font-size-t13-static)";
|
|
45
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
46
|
+
export declare const t14Static = "var(--seed-font-size-t14-static)";
|
package/vars/font-size.mjs
CHANGED
|
@@ -8,6 +8,10 @@ export const t7 = "var(--seed-font-size-t7)";
|
|
|
8
8
|
export const t8 = "var(--seed-font-size-t8)";
|
|
9
9
|
export const t9 = "var(--seed-font-size-t9)";
|
|
10
10
|
export const t10 = "var(--seed-font-size-t10)";
|
|
11
|
+
export const t11 = "var(--seed-font-size-t11)";
|
|
12
|
+
export const t12 = "var(--seed-font-size-t12)";
|
|
13
|
+
export const t13 = "var(--seed-font-size-t13)";
|
|
14
|
+
export const t14 = "var(--seed-font-size-t14)";
|
|
11
15
|
export const t1Static = "var(--seed-font-size-t1-static)";
|
|
12
16
|
export const t2Static = "var(--seed-font-size-t2-static)";
|
|
13
17
|
export const t3Static = "var(--seed-font-size-t3-static)";
|
|
@@ -17,4 +21,8 @@ export const t6Static = "var(--seed-font-size-t6-static)";
|
|
|
17
21
|
export const t7Static = "var(--seed-font-size-t7-static)";
|
|
18
22
|
export const t8Static = "var(--seed-font-size-t8-static)";
|
|
19
23
|
export const t9Static = "var(--seed-font-size-t9-static)";
|
|
20
|
-
export const t10Static = "var(--seed-font-size-t10-static)";
|
|
24
|
+
export const t10Static = "var(--seed-font-size-t10-static)";
|
|
25
|
+
export const t11Static = "var(--seed-font-size-t11-static)";
|
|
26
|
+
export const t12Static = "var(--seed-font-size-t12-static)";
|
|
27
|
+
export const t13Static = "var(--seed-font-size-t13-static)";
|
|
28
|
+
export const t14Static = "var(--seed-font-size-t14-static)";
|
package/vars/gradient.d.ts
CHANGED
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
/** 스크롤이 가능하도록 그라디언트로 특정 영역을 덮는 요소로 사용해요.
|
|
2
|
-
@deprecated `@seed-design/css@2.0.0`에서 제거될 예정입니다.
|
|
3
|
-
*/
|
|
4
|
-
export declare const fadeLayerFloating = "var(--seed-gradient-fade-layer-floating)";
|
|
5
|
-
/** 스크롤이 가능하도록 그라디언트로 특정 영역을 덮는 요소로 사용해요.
|
|
6
|
-
@deprecated `@seed-design/css@2.0.0`에서 제거될 예정입니다.
|
|
7
|
-
*/
|
|
8
|
-
export declare const fadeLayerDefault = "var(--seed-gradient-fade-layer-default)";
|
|
9
1
|
/** 반짝이는 것처럼 느껴지는 배경에 쓰이는 ai 컬러입니다. */
|
|
10
2
|
export declare const glowMagic = "var(--seed-gradient-glow-magic)";
|
|
11
3
|
/** 반짝이는 것처럼 느껴지는 배경에 쓰이는 ai 컬러의 pressed컬러입니다. */
|
package/vars/gradient.mjs
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export const fadeLayerFloating = "var(--seed-gradient-fade-layer-floating)";
|
|
2
|
-
export const fadeLayerDefault = "var(--seed-gradient-fade-layer-default)";
|
|
3
1
|
export const glowMagic = "var(--seed-gradient-glow-magic)";
|
|
4
2
|
export const glowMagicPressed = "var(--seed-gradient-glow-magic-pressed)";
|
|
5
3
|
export const highlightMagic = "var(--seed-gradient-highlight-magic)";
|
package/vars/line-height.d.ts
CHANGED
|
@@ -8,6 +8,14 @@ export declare const t7 = "var(--seed-line-height-t7)";
|
|
|
8
8
|
export declare const t8 = "var(--seed-line-height-t8)";
|
|
9
9
|
export declare const t9 = "var(--seed-line-height-t9)";
|
|
10
10
|
export declare const t10 = "var(--seed-line-height-t10)";
|
|
11
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. */
|
|
12
|
+
export declare const t11 = "var(--seed-line-height-t11)";
|
|
13
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. */
|
|
14
|
+
export declare const t12 = "var(--seed-line-height-t12)";
|
|
15
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. */
|
|
16
|
+
export declare const t13 = "var(--seed-line-height-t13)";
|
|
17
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. */
|
|
18
|
+
export declare const t14 = "var(--seed-line-height-t14)";
|
|
11
19
|
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
12
20
|
export declare const t1Static = "var(--seed-line-height-t1-static)";
|
|
13
21
|
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
@@ -27,4 +35,12 @@ export declare const t8Static = "var(--seed-line-height-t8-static)";
|
|
|
27
35
|
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
28
36
|
export declare const t9Static = "var(--seed-line-height-t9-static)";
|
|
29
37
|
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
30
|
-
export declare const t10Static = "var(--seed-line-height-t10-static)";
|
|
38
|
+
export declare const t10Static = "var(--seed-line-height-t10-static)";
|
|
39
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
40
|
+
export declare const t11Static = "var(--seed-line-height-t11-static)";
|
|
41
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
42
|
+
export declare const t12Static = "var(--seed-line-height-t12-static)";
|
|
43
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
44
|
+
export declare const t13Static = "var(--seed-line-height-t13-static)";
|
|
45
|
+
/** `sm` breakpoint 이상에서만 사용하는 것을 권장합니다. 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
46
|
+
export declare const t14Static = "var(--seed-line-height-t14-static)";
|
package/vars/line-height.mjs
CHANGED
|
@@ -8,6 +8,10 @@ export const t7 = "var(--seed-line-height-t7)";
|
|
|
8
8
|
export const t8 = "var(--seed-line-height-t8)";
|
|
9
9
|
export const t9 = "var(--seed-line-height-t9)";
|
|
10
10
|
export const t10 = "var(--seed-line-height-t10)";
|
|
11
|
+
export const t11 = "var(--seed-line-height-t11)";
|
|
12
|
+
export const t12 = "var(--seed-line-height-t12)";
|
|
13
|
+
export const t13 = "var(--seed-line-height-t13)";
|
|
14
|
+
export const t14 = "var(--seed-line-height-t14)";
|
|
11
15
|
export const t1Static = "var(--seed-line-height-t1-static)";
|
|
12
16
|
export const t2Static = "var(--seed-line-height-t2-static)";
|
|
13
17
|
export const t3Static = "var(--seed-line-height-t3-static)";
|
|
@@ -17,4 +21,8 @@ export const t6Static = "var(--seed-line-height-t6-static)";
|
|
|
17
21
|
export const t7Static = "var(--seed-line-height-t7-static)";
|
|
18
22
|
export const t8Static = "var(--seed-line-height-t8-static)";
|
|
19
23
|
export const t9Static = "var(--seed-line-height-t9-static)";
|
|
20
|
-
export const t10Static = "var(--seed-line-height-t10-static)";
|
|
24
|
+
export const t10Static = "var(--seed-line-height-t10-static)";
|
|
25
|
+
export const t11Static = "var(--seed-line-height-t11-static)";
|
|
26
|
+
export const t12Static = "var(--seed-line-height-t12-static)";
|
|
27
|
+
export const t13Static = "var(--seed-line-height-t13-static)";
|
|
28
|
+
export const t14Static = "var(--seed-line-height-t14-static)";
|