@seed-design/migration-index 0.0.3 → 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 +13 -0
- package/color.mjs +42 -32
- package/package.json +1 -1
- package/types.d.ts +1 -0
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# @seed-design/migration-index
|
2
2
|
|
3
|
+
## 0.0.20
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- f17f842: - static 색상들의 맵핑을 추가해요
|
8
|
+
- `needsVerification` 필드를 추가해요
|
9
|
+
|
10
|
+
## 0.0.18
|
11
|
+
|
12
|
+
### Patch Changes
|
13
|
+
|
14
|
+
- a7e2571: fix color mapping (divider-1, on-gray-overlay-50)
|
15
|
+
|
3
16
|
## 0.0.3
|
4
17
|
|
5
18
|
### Patch Changes
|
package/color.mjs
CHANGED
@@ -130,41 +130,40 @@ 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",
|
157
|
-
next: [],
|
158
|
-
description: "TBD",
|
157
|
+
next: ["$color.stroke.on-image"],
|
159
158
|
},
|
160
159
|
{
|
161
160
|
previous: "$semantic.color.on-gray-overlay-100",
|
162
161
|
next: [],
|
163
|
-
description: "
|
162
|
+
description: "V3에서 지원되지 않는 색상",
|
164
163
|
},
|
165
164
|
{
|
166
165
|
previous: "$semantic.color.divider-1",
|
167
|
-
next: ["$color.stroke.
|
166
|
+
next: ["$color.stroke.neutral-muted"],
|
168
167
|
alternative: ["$color.palette.static-black-alpha-50"],
|
169
168
|
},
|
170
169
|
{
|
@@ -596,58 +595,69 @@ export const staticColorMappings = [
|
|
596
595
|
},
|
597
596
|
{
|
598
597
|
previous: "$static.color.static-gray-900",
|
599
|
-
next: [],
|
600
|
-
description: "static
|
598
|
+
next: ["$color.palette.static-black"],
|
599
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
600
|
+
needsVerification: true,
|
601
601
|
},
|
602
602
|
{
|
603
603
|
previous: "$static.color.static-carrot-50",
|
604
|
-
next: [],
|
605
|
-
description: "static
|
604
|
+
next: ["$color.palette.carrot-100"],
|
605
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
606
|
+
needsVerification: true,
|
606
607
|
},
|
607
608
|
{
|
608
609
|
previous: "$static.color.static-carrot-800",
|
609
|
-
next: [],
|
610
|
-
description: "static
|
610
|
+
next: ["$color.palette.carrot-700"],
|
611
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
612
|
+
needsVerification: true,
|
611
613
|
},
|
612
614
|
{
|
613
615
|
previous: "$static.color.static-green-50",
|
614
|
-
next: [],
|
615
|
-
description: "static
|
616
|
+
next: ["$color.palette.green-100"],
|
617
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
618
|
+
needsVerification: true,
|
616
619
|
},
|
617
620
|
{
|
618
621
|
previous: "$static.color.static-green-800",
|
619
|
-
next: [],
|
620
|
-
description: "static
|
622
|
+
next: ["$color.palette.green-700"],
|
623
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
624
|
+
needsVerification: true,
|
621
625
|
},
|
622
626
|
{
|
623
627
|
previous: "$static.color.static-yellow-50",
|
624
|
-
next: [],
|
625
|
-
description: "static
|
628
|
+
next: ["$color.palette.yellow-100"],
|
629
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
630
|
+
needsVerification: true,
|
626
631
|
},
|
627
632
|
{
|
628
633
|
previous: "$static.color.static-yellow-800",
|
629
|
-
next: [],
|
630
|
-
description: "static
|
634
|
+
next: ["$color.palette.yellow-700"],
|
635
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
636
|
+
needsVerification: true,
|
631
637
|
},
|
632
638
|
{
|
633
639
|
previous: "$static.color.static-red-50",
|
634
|
-
next: [],
|
635
|
-
description: "static
|
640
|
+
next: ["$color.palette.red-100"],
|
641
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
642
|
+
needsVerification: true,
|
636
643
|
},
|
637
644
|
{
|
638
645
|
previous: "$static.color.static-red-800",
|
639
|
-
next: [],
|
640
|
-
description: "static
|
646
|
+
next: ["$color.palette.red-700"],
|
647
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
648
|
+
needsVerification: true,
|
641
649
|
},
|
642
650
|
{
|
643
651
|
previous: "$static.color.static-blue-50",
|
644
|
-
next: [],
|
645
|
-
description: "static
|
652
|
+
next: ["$color.palette.blue-100"],
|
653
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
654
|
+
needsVerification: true,
|
646
655
|
},
|
647
656
|
{
|
648
657
|
previous: "$static.color.static-blue-800",
|
649
|
-
next: [],
|
650
|
-
description: "static
|
658
|
+
next: ["$color.palette.blue-700"],
|
659
|
+
description: "static에서 palette로 변경되는 색상으로 용도 파악 필요",
|
660
|
+
needsVerification: true,
|
651
661
|
},
|
652
662
|
{
|
653
663
|
previous: "$static.color.static-black-alpha-200",
|
@@ -660,7 +670,7 @@ export const staticColorMappings = [
|
|
660
670
|
{
|
661
671
|
previous: "$static.color.static-white-alpha-50",
|
662
672
|
next: [],
|
663
|
-
description: "
|
673
|
+
description: "V3에서 지원되지 않는 색상",
|
664
674
|
},
|
665
675
|
{
|
666
676
|
previous: "$static.color.static-white-alpha-200",
|
package/package.json
CHANGED