@seed-design/migration-index 0.0.1 → 0.0.3
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/CHANGELOG.md +12 -0
- package/color.d.ts +1 -1
- package/color.mjs +23 -12
- package/iconography.d.ts +5 -0
- package/iconography.mjs +2584 -0
- package/index.d.ts +10 -6
- package/index.mjs +8 -0
- package/package.json +9 -3
- package/types.d.ts +6 -0
- package/typography.d.ts +1 -1
- package/typography.mjs +12 -7
package/CHANGELOG.md
CHANGED
package/color.d.ts
CHANGED
package/color.mjs
CHANGED
@@ -596,47 +596,58 @@ export const staticColorMappings = [
|
|
596
596
|
},
|
597
597
|
{
|
598
598
|
previous: "$static.color.static-gray-900",
|
599
|
-
next: [
|
599
|
+
next: [],
|
600
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
600
601
|
},
|
601
602
|
{
|
602
603
|
previous: "$static.color.static-carrot-50",
|
603
|
-
next: [
|
604
|
+
next: [],
|
605
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
604
606
|
},
|
605
607
|
{
|
606
608
|
previous: "$static.color.static-carrot-800",
|
607
|
-
next: [
|
609
|
+
next: [],
|
610
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
608
611
|
},
|
609
612
|
{
|
610
613
|
previous: "$static.color.static-green-50",
|
611
|
-
next: [
|
614
|
+
next: [],
|
615
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
612
616
|
},
|
613
617
|
{
|
614
618
|
previous: "$static.color.static-green-800",
|
615
|
-
next: [
|
619
|
+
next: [],
|
620
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
616
621
|
},
|
617
622
|
{
|
618
623
|
previous: "$static.color.static-yellow-50",
|
619
|
-
next: [
|
624
|
+
next: [],
|
625
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
620
626
|
},
|
621
627
|
{
|
622
628
|
previous: "$static.color.static-yellow-800",
|
623
|
-
next: [
|
629
|
+
next: [],
|
630
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
624
631
|
},
|
625
632
|
{
|
626
633
|
previous: "$static.color.static-red-50",
|
627
|
-
next: [
|
634
|
+
next: [],
|
635
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
628
636
|
},
|
629
637
|
{
|
630
638
|
previous: "$static.color.static-red-800",
|
631
|
-
next: [
|
639
|
+
next: [],
|
640
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
632
641
|
},
|
633
642
|
{
|
634
643
|
previous: "$static.color.static-blue-50",
|
635
|
-
next: [
|
644
|
+
next: [],
|
645
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
636
646
|
},
|
637
647
|
{
|
638
648
|
previous: "$static.color.static-blue-800",
|
639
|
-
next: [
|
649
|
+
next: [],
|
650
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
640
651
|
},
|
641
652
|
{
|
642
653
|
previous: "$static.color.static-black-alpha-200",
|
@@ -649,7 +660,7 @@ export const staticColorMappings = [
|
|
649
660
|
{
|
650
661
|
previous: "$static.color.static-white-alpha-50",
|
651
662
|
next: [],
|
652
|
-
description: "
|
663
|
+
description: "static 색상 사용 확인이 필요합니다.",
|
653
664
|
},
|
654
665
|
{
|
655
666
|
previous: "$static.color.static-white-alpha-200",
|
package/iconography.d.ts
ADDED