@seed-design/migration-index 0.0.2 → 0.0.18

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @seed-design/migration-index
2
2
 
3
+ ## 0.0.18
4
+
5
+ ### Patch Changes
6
+
7
+ - a7e2571: fix color mapping (divider-1, on-gray-overlay-50)
8
+
9
+ ## 0.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 4f465ba: remove static next token
14
+
3
15
  ## 0.0.2
4
16
 
5
17
  ### Patch Changes
package/color.mjs CHANGED
@@ -154,8 +154,7 @@ export const semanticColorMappings = [
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",
@@ -164,7 +163,7 @@ export const semanticColorMappings = [
164
163
  },
165
164
  {
166
165
  previous: "$semantic.color.divider-1",
167
- next: ["$color.stroke.on-image"],
166
+ next: ["$color.stroke.neutral-muted"],
168
167
  alternative: ["$color.palette.static-black-alpha-50"],
169
168
  },
170
169
  {
@@ -596,47 +595,58 @@ export const staticColorMappings = [
596
595
  },
597
596
  {
598
597
  previous: "$static.color.static-gray-900",
599
- next: ["$color.palette.gray-1000"],
598
+ next: [],
599
+ description: "static 색상 사용 확인이 필요합니다.",
600
600
  },
601
601
  {
602
602
  previous: "$static.color.static-carrot-50",
603
- next: ["$color.palette.carrot-100"],
603
+ next: [],
604
+ description: "static 색상 사용 확인이 필요합니다.",
604
605
  },
605
606
  {
606
607
  previous: "$static.color.static-carrot-800",
607
- next: ["$color.palette.carrot-700"],
608
+ next: [],
609
+ description: "static 색상 사용 확인이 필요합니다.",
608
610
  },
609
611
  {
610
612
  previous: "$static.color.static-green-50",
611
- next: ["$color.palette.green-100"],
613
+ next: [],
614
+ description: "static 색상 사용 확인이 필요합니다.",
612
615
  },
613
616
  {
614
617
  previous: "$static.color.static-green-800",
615
- next: ["$color.palette.green-700"],
618
+ next: [],
619
+ description: "static 색상 사용 확인이 필요합니다.",
616
620
  },
617
621
  {
618
622
  previous: "$static.color.static-yellow-50",
619
- next: ["$color.palette.yellow-100"],
623
+ next: [],
624
+ description: "static 색상 사용 확인이 필요합니다.",
620
625
  },
621
626
  {
622
627
  previous: "$static.color.static-yellow-800",
623
- next: ["$color.palette.yellow-800"],
628
+ next: [],
629
+ description: "static 색상 사용 확인이 필요합니다.",
624
630
  },
625
631
  {
626
632
  previous: "$static.color.static-red-50",
627
- next: ["$color.palette.red-100"],
633
+ next: [],
634
+ description: "static 색상 사용 확인이 필요합니다.",
628
635
  },
629
636
  {
630
637
  previous: "$static.color.static-red-800",
631
- next: ["$color.palette.red-700"],
638
+ next: [],
639
+ description: "static 색상 사용 확인이 필요합니다.",
632
640
  },
633
641
  {
634
642
  previous: "$static.color.static-blue-50",
635
- next: ["$color.palette.blue-100"],
643
+ next: [],
644
+ description: "static 색상 사용 확인이 필요합니다.",
636
645
  },
637
646
  {
638
647
  previous: "$static.color.static-blue-800",
639
- next: ["$color.palette.blue-700"],
648
+ next: [],
649
+ description: "static 색상 사용 확인이 필요합니다.",
640
650
  },
641
651
  {
642
652
  previous: "$static.color.static-black-alpha-200",
@@ -649,7 +659,7 @@ export const staticColorMappings = [
649
659
  {
650
660
  previous: "$static.color.static-white-alpha-50",
651
661
  next: [],
652
- description: "deleted",
662
+ description: "static 색상 사용 확인이 필요합니다.",
653
663
  },
654
664
  {
655
665
  previous: "$static.color.static-white-alpha-200",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seed-design/migration-index",
3
- "version": "0.0.2",
3
+ "version": "0.0.18",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/daangn/seed-design.git",
package/typography.mjs CHANGED
@@ -16,7 +16,7 @@ export const typographyMappings = [
16
16
  },
17
17
  {
18
18
  previous: "$semantic.typography.h4",
19
- next: ["t10Bold"],
19
+ next: ["t10Bold", "screenTitle"],
20
20
  description: "줄간격 -0.1px",
21
21
  },
22
22
  {
@@ -27,6 +27,7 @@ export const typographyMappings = [
27
27
  {
28
28
  previous: "$semantic.typography.title1Regular",
29
29
  next: [],
30
+ description: "Deprecated",
30
31
  },
31
32
  {
32
33
  previous: "$semantic.typography.title2Bold",
@@ -34,7 +35,7 @@ export const typographyMappings = [
34
35
  },
35
36
  {
36
37
  previous: "$semantic.typography.title2Regular",
37
- next: [],
38
+ next: ["t7Regular"],
38
39
  },
39
40
  {
40
41
  previous: "$semantic.typography.title3Bold",
@@ -43,7 +44,7 @@ export const typographyMappings = [
43
44
  },
44
45
  {
45
46
  previous: "$semantic.typography.title3Regular",
46
- next: [],
47
+ next: ["t6Regular"],
47
48
  },
48
49
  {
49
50
  previous: "$semantic.typography.subtitle1Bold",
@@ -82,7 +83,8 @@ export const typographyMappings = [
82
83
  {
83
84
  previous: "$semantic.typography.bodyL2Regular",
84
85
  next: [],
85
- description: "TBD",
86
+ alternative: ["t4Regular"],
87
+ description: "Deprecated",
86
88
  },
87
89
  {
88
90
  previous: "$semantic.typography.bodyM1Bold",
@@ -111,8 +113,9 @@ export const typographyMappings = [
111
113
  },
112
114
  {
113
115
  previous: "$semantic.typography.caption1Regular",
114
- next: ["t3Regular"],
115
- description: "줄간격 -1.5px",
116
+ next: [],
117
+ alternative: ["t3Regular"],
118
+ description: "Deprecated",
116
119
  },
117
120
  {
118
121
  previous: "$semantic.typography.caption2Bold",
@@ -131,7 +134,7 @@ export const typographyMappings = [
131
134
  },
132
135
  {
133
136
  previous: "$semantic.typography.label1Regular",
134
- next: [],
137
+ next: ["t6Regular"],
135
138
  },
136
139
  {
137
140
  previous: "$semantic.typography.label2Bold",
@@ -176,11 +179,13 @@ export const typographyMappings = [
176
179
  {
177
180
  previous: "$semantic.typography.label6Bold",
178
181
  next: [],
182
+ alternative: ["t1Bold"],
179
183
  description: "Deprecated",
180
184
  },
181
185
  {
182
186
  previous: "$semantic.typography.label6Regular",
183
187
  next: [],
188
+ alternative: ["t1Regular"],
184
189
  description: "Deprecated",
185
190
  },
186
191
  ];