@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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @seed-design/migration-index
2
2
 
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 4f465ba: remove static next token
8
+
9
+ ## 0.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 9f55b8f: add iconography index
14
+
3
15
  ## 0.0.1
4
16
 
5
17
  ## 0.0.1-rc.0
package/color.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { FoundationTokenMapping } from "./index";
1
+ import type { FoundationTokenMapping } from "./types";
2
2
 
3
3
  export declare const semanticColorMappings: FoundationTokenMapping[];
4
4
  export declare const scaleColorMappings: FoundationTokenMapping[];
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: ["$color.palette.gray-1000"],
599
+ next: [],
600
+ description: "static 색상 사용 확인이 필요합니다.",
600
601
  },
601
602
  {
602
603
  previous: "$static.color.static-carrot-50",
603
- next: ["$color.palette.carrot-100"],
604
+ next: [],
605
+ description: "static 색상 사용 확인이 필요합니다.",
604
606
  },
605
607
  {
606
608
  previous: "$static.color.static-carrot-800",
607
- next: ["$color.palette.carrot-700"],
609
+ next: [],
610
+ description: "static 색상 사용 확인이 필요합니다.",
608
611
  },
609
612
  {
610
613
  previous: "$static.color.static-green-50",
611
- next: ["$color.palette.green-100"],
614
+ next: [],
615
+ description: "static 색상 사용 확인이 필요합니다.",
612
616
  },
613
617
  {
614
618
  previous: "$static.color.static-green-800",
615
- next: ["$color.palette.green-700"],
619
+ next: [],
620
+ description: "static 색상 사용 확인이 필요합니다.",
616
621
  },
617
622
  {
618
623
  previous: "$static.color.static-yellow-50",
619
- next: ["$color.palette.yellow-100"],
624
+ next: [],
625
+ description: "static 색상 사용 확인이 필요합니다.",
620
626
  },
621
627
  {
622
628
  previous: "$static.color.static-yellow-800",
623
- next: ["$color.palette.yellow-800"],
629
+ next: [],
630
+ description: "static 색상 사용 확인이 필요합니다.",
624
631
  },
625
632
  {
626
633
  previous: "$static.color.static-red-50",
627
- next: ["$color.palette.red-100"],
634
+ next: [],
635
+ description: "static 색상 사용 확인이 필요합니다.",
628
636
  },
629
637
  {
630
638
  previous: "$static.color.static-red-800",
631
- next: ["$color.palette.red-700"],
639
+ next: [],
640
+ description: "static 색상 사용 확인이 필요합니다.",
632
641
  },
633
642
  {
634
643
  previous: "$static.color.static-blue-50",
635
- next: ["$color.palette.blue-100"],
644
+ next: [],
645
+ description: "static 색상 사용 확인이 필요합니다.",
636
646
  },
637
647
  {
638
648
  previous: "$static.color.static-blue-800",
639
- next: ["$color.palette.blue-700"],
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: "deleted",
663
+ description: "static 색상 사용 확인이 필요합니다.",
653
664
  },
654
665
  {
655
666
  previous: "$static.color.static-white-alpha-200",
@@ -0,0 +1,5 @@
1
+ import type { FoundationTokenMapping } from "./types";
2
+
3
+ export declare const monochromeIconMappings: FoundationTokenMapping[];
4
+ export declare const multicolorIconMappings: FoundationTokenMapping[];
5
+ export declare const iconMappings: FoundationTokenMapping[];