@seed-design/migration-index 0.0.18 → 0.0.28

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,44 @@
1
1
  # @seed-design/migration-index
2
2
 
3
+ ## 0.0.28
4
+
5
+ ### Patch Changes
6
+
7
+ - f801300: 새로운 black, white alpha 값을 추가합니다
8
+
9
+ `$color.palette.static-black-alpha-50` (예전 값)
10
+
11
+ - 예전 값: #0000000d (투명도 약 5.1%)
12
+ - 변경 값: `$color.palette.static-black-alpha-200` (투명도 4.7%)
13
+
14
+ `$color.palette.static-black-alpha-200` (예전 값)
15
+
16
+ - 예전 값: #00000033 (투명도 20%)
17
+ - 변경 값: `$color.palette.static-black-alpha-500` (투명도 17.3%)
18
+
19
+ `$color.palette.static-black-alpha-500` (예전 값)
20
+
21
+ - 예전 값: #00000080 (투명도 약 50.2%)
22
+ - 변경 값: `$color.palette.static-black-alpha-700` (투명도 45.5%)
23
+
24
+ `$color.palette.static-white-alpha-200` (예전 값)
25
+
26
+ - 예전 값: #ffffff33 (투명도 20%)
27
+ - 변경 값: `$color.palette.static-white-alpha-300` (투명도 18%)
28
+
29
+ `$color.palette.static-white-alpha-800` (예전 값)
30
+
31
+ - 예전 값: #ffffffcc (투명도 약 80%)
32
+ - 변경 값: `$color.palette.static-white-alpha-800` (투명도 87.1%)
33
+ - (참고: 이 값은 이름은 같지만 실제 투명도 값은 80%에서 87.1%로 변경되었습니다.)
34
+
35
+ ## 0.0.20
36
+
37
+ ### Patch Changes
38
+
39
+ - f17f842: - static 색상들의 맵핑을 추가해요
40
+ - `needsVerification` 필드를 추가해요
41
+
3
42
  ## 0.0.18
4
43
 
5
44
  ### Patch Changes
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: "TBD",
133
+ description: "V3에서 지원되지 않는 색상",
134
134
  },
135
135
  {
136
136
  previous: "$semantic.color.on-primary-overlay-200",
137
137
  next: [],
138
- description: "TBD",
138
+ description: "V3에서 지원되지 않는 색상",
139
139
  },
140
140
  {
141
141
  previous: "$semantic.color.on-primary-low-overlay-50",
142
142
  next: [],
143
- description: "TBD",
143
+ description: "V3에서 지원되지 않는 색상",
144
144
  },
145
145
  {
146
146
  previous: "$semantic.color.on-primary-low-overlay-100",
147
147
  next: [],
148
- description: "TBD",
148
+ description: "V3에서 지원되지 않는 색상",
149
149
  },
150
150
  {
151
151
  previous: "$semantic.color.on-primary-low-overlay-200",
152
152
  next: [],
153
- description: "TBD",
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: "TBD",
162
+ description: "V3에서 지원되지 않는 색상",
163
163
  },
164
164
  {
165
165
  previous: "$semantic.color.divider-1",
@@ -595,75 +595,85 @@ 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",
653
- next: ["$color.palette.static-black-alpha-200"],
664
+ next: ["$color.palette.static-black-alpha-500"],
654
665
  },
655
666
  {
656
667
  previous: "$static.color.static-black-alpha-500",
657
- next: ["$color.palette.static-black-alpha-500"],
668
+ next: ["$color.palette.static-black-alpha-700"],
658
669
  },
659
670
  {
660
671
  previous: "$static.color.static-white-alpha-50",
661
- next: [],
662
- description: "static 색상 사용 확인이 필요합니다.",
672
+ next: ["$color.palette.static-white-alpha-50"],
663
673
  },
664
674
  {
665
675
  previous: "$static.color.static-white-alpha-200",
666
- next: ["$color.palette.static-white-alpha-200"],
676
+ next: ["$color.palette.static-white-alpha-300"],
667
677
  },
668
678
  ];
669
679
 
package/iconography.mjs CHANGED
@@ -2563,22 +2563,6 @@ export const multicolorIconMappings = [
2563
2563
  next: [],
2564
2564
  description: "없음",
2565
2565
  },
2566
- {
2567
- description: "중고거래(신규)",
2568
- next: ["IconShoppingbagItems"],
2569
- },
2570
- {
2571
- description: "이웃광고(신규)",
2572
- next: ["IconLinechartUpXaxis"],
2573
- },
2574
- {
2575
- description: "픽업(신규)",
2576
- next: ["IconForkSpoonBag"],
2577
- },
2578
- {
2579
- description: "동네스토리(신규)",
2580
- next: ["IconTriangleRightChatbubbleLeft"],
2581
- },
2582
2566
  ];
2583
2567
 
2584
2568
  export const iconMappings = [...monochromeIconMappings, ...multicolorIconMappings];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seed-design/migration-index",
3
- "version": "0.0.18",
3
+ "version": "0.0.28",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/daangn/seed-design.git",
package/types.d.ts CHANGED
@@ -3,4 +3,5 @@ export interface FoundationTokenMapping {
3
3
  next: string[];
4
4
  description?: string;
5
5
  alternative?: string[];
6
+ needsVerification?: boolean;
6
7
  }