@seed-design/migration-index 0.0.18 → 0.0.20
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 +7 -0
- package/color.mjs +40 -29
- package/package.json +1 -1
- package/types.d.ts +1 -0
package/CHANGELOG.md
CHANGED
package/color.mjs
CHANGED
@@ -130,27 +130,27 @@ export const semanticColorMappings = [
|
|
130
130
|
{
|
131
131
|
previous: "$semantic.color.on-primary-overlay-50",
|
132
132
|
next: [],
|
133
|
-
description: "
|
133
|
+
description: "V3에서 지원되지 않는 색상",
|
134
134
|
},
|
135
135
|
{
|
136
136
|
previous: "$semantic.color.on-primary-overlay-200",
|
137
137
|
next: [],
|
138
|
-
description: "
|
138
|
+
description: "V3에서 지원되지 않는 색상",
|
139
139
|
},
|
140
140
|
{
|
141
141
|
previous: "$semantic.color.on-primary-low-overlay-50",
|
142
142
|
next: [],
|
143
|
-
description: "
|
143
|
+
description: "V3에서 지원되지 않는 색상",
|
144
144
|
},
|
145
145
|
{
|
146
146
|
previous: "$semantic.color.on-primary-low-overlay-100",
|
147
147
|
next: [],
|
148
|
-
description: "
|
148
|
+
description: "V3에서 지원되지 않는 색상",
|
149
149
|
},
|
150
150
|
{
|
151
151
|
previous: "$semantic.color.on-primary-low-overlay-200",
|
152
152
|
next: [],
|
153
|
-
description: "
|
153
|
+
description: "V3에서 지원되지 않는 색상",
|
154
154
|
},
|
155
155
|
{
|
156
156
|
previous: "$semantic.color.on-gray-overlay-50",
|
@@ -159,7 +159,7 @@ export const semanticColorMappings = [
|
|
159
159
|
{
|
160
160
|
previous: "$semantic.color.on-gray-overlay-100",
|
161
161
|
next: [],
|
162
|
-
description: "
|
162
|
+
description: "V3에서 지원되지 않는 색상",
|
163
163
|
},
|
164
164
|
{
|
165
165
|
previous: "$semantic.color.divider-1",
|
@@ -595,58 +595,69 @@ export const staticColorMappings = [
|
|
595
595
|
},
|
596
596
|
{
|
597
597
|
previous: "$static.color.static-gray-900",
|
598
|
-
next: [],
|
599
|
-
description: "static
|
598
|
+
next: ["$color.palette.static-black"],
|
599
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
600
|
+
needsVerification: true,
|
600
601
|
},
|
601
602
|
{
|
602
603
|
previous: "$static.color.static-carrot-50",
|
603
|
-
next: [],
|
604
|
-
description: "static
|
604
|
+
next: ["$color.palette.carrot-100"],
|
605
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
606
|
+
needsVerification: true,
|
605
607
|
},
|
606
608
|
{
|
607
609
|
previous: "$static.color.static-carrot-800",
|
608
|
-
next: [],
|
609
|
-
description: "static
|
610
|
+
next: ["$color.palette.carrot-700"],
|
611
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
612
|
+
needsVerification: true,
|
610
613
|
},
|
611
614
|
{
|
612
615
|
previous: "$static.color.static-green-50",
|
613
|
-
next: [],
|
614
|
-
description: "static
|
616
|
+
next: ["$color.palette.green-100"],
|
617
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
618
|
+
needsVerification: true,
|
615
619
|
},
|
616
620
|
{
|
617
621
|
previous: "$static.color.static-green-800",
|
618
|
-
next: [],
|
619
|
-
description: "static
|
622
|
+
next: ["$color.palette.green-700"],
|
623
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
624
|
+
needsVerification: true,
|
620
625
|
},
|
621
626
|
{
|
622
627
|
previous: "$static.color.static-yellow-50",
|
623
|
-
next: [],
|
624
|
-
description: "static
|
628
|
+
next: ["$color.palette.yellow-100"],
|
629
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
630
|
+
needsVerification: true,
|
625
631
|
},
|
626
632
|
{
|
627
633
|
previous: "$static.color.static-yellow-800",
|
628
|
-
next: [],
|
629
|
-
description: "static
|
634
|
+
next: ["$color.palette.yellow-700"],
|
635
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
636
|
+
needsVerification: true,
|
630
637
|
},
|
631
638
|
{
|
632
639
|
previous: "$static.color.static-red-50",
|
633
|
-
next: [],
|
634
|
-
description: "static
|
640
|
+
next: ["$color.palette.red-100"],
|
641
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
642
|
+
needsVerification: true,
|
635
643
|
},
|
636
644
|
{
|
637
645
|
previous: "$static.color.static-red-800",
|
638
|
-
next: [],
|
639
|
-
description: "static
|
646
|
+
next: ["$color.palette.red-700"],
|
647
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
648
|
+
needsVerification: true,
|
640
649
|
},
|
641
650
|
{
|
642
651
|
previous: "$static.color.static-blue-50",
|
643
|
-
next: [],
|
644
|
-
description: "static
|
652
|
+
next: ["$color.palette.blue-100"],
|
653
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
654
|
+
needsVerification: true,
|
645
655
|
},
|
646
656
|
{
|
647
657
|
previous: "$static.color.static-blue-800",
|
648
|
-
next: [],
|
649
|
-
description: "static
|
658
|
+
next: ["$color.palette.blue-700"],
|
659
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
660
|
+
needsVerification: true,
|
650
661
|
},
|
651
662
|
{
|
652
663
|
previous: "$static.color.static-black-alpha-200",
|
@@ -659,7 +670,7 @@ export const staticColorMappings = [
|
|
659
670
|
{
|
660
671
|
previous: "$static.color.static-white-alpha-50",
|
661
672
|
next: [],
|
662
|
-
description: "
|
673
|
+
description: "V3에서 지원되지 않는 색상",
|
663
674
|
},
|
664
675
|
{
|
665
676
|
previous: "$static.color.static-white-alpha-200",
|
package/package.json
CHANGED