@seed-design/migration-index 0.0.1-rc.0 → 0.0.2
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 +8 -0
- package/color.d.ts +1 -1
- package/iconography.d.ts +5 -0
- package/iconography.mjs +2584 -0
- package/index.d.ts +10 -6
- package/index.mjs +8 -0
- package/package.json +9 -3
- package/types.d.ts +6 -0
- package/typography.d.ts +1 -1
    
        package/index.d.ts
    CHANGED
    
    | @@ -1,6 +1,10 @@ | |
| 1 | 
            -
            export  | 
| 2 | 
            -
               | 
| 3 | 
            -
               | 
| 4 | 
            -
               | 
| 5 | 
            -
               | 
| 6 | 
            -
            }
         | 
| 1 | 
            +
            export {
         | 
| 2 | 
            +
              colorMappings,
         | 
| 3 | 
            +
              scaleColorMappings,
         | 
| 4 | 
            +
              semanticColorMappings,
         | 
| 5 | 
            +
              staticColorMappings,
         | 
| 6 | 
            +
            } from "./color";
         | 
| 7 | 
            +
            export { iconMappings, monochromeIconMappings, multicolorIconMappings } from "./iconography";
         | 
| 8 | 
            +
            export { typographyMappings } from "./typography";
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            export type { FoundationTokenMapping } from "./types";
         | 
    
        package/index.mjs
    ADDED
    
    | @@ -0,0 +1,8 @@ | |
| 1 | 
            +
            export {
         | 
| 2 | 
            +
              colorMappings,
         | 
| 3 | 
            +
              scaleColorMappings,
         | 
| 4 | 
            +
              semanticColorMappings,
         | 
| 5 | 
            +
              staticColorMappings,
         | 
| 6 | 
            +
            } from "./color.mjs";
         | 
| 7 | 
            +
            export { typographyMappings } from "./typography.mjs";
         | 
| 8 | 
            +
            export { iconMappings, monochromeIconMappings, multicolorIconMappings } from "./iconography.mjs";
         | 
    
        package/package.json
    CHANGED
    
    | @@ -1,19 +1,21 @@ | |
| 1 1 | 
             
            {
         | 
| 2 2 | 
             
              "name": "@seed-design/migration-index",
         | 
| 3 | 
            -
              "version": "0.0. | 
| 3 | 
            +
              "version": "0.0.2",
         | 
| 4 4 | 
             
              "repository": {
         | 
| 5 5 | 
             
                "type": "git",
         | 
| 6 6 | 
             
                "url": "git+https://github.com/daangn/seed-design.git",
         | 
| 7 7 | 
             
                "directory": "packages/migration-index"
         | 
| 8 8 | 
             
              },
         | 
| 9 | 
            -
              " | 
| 9 | 
            +
              "type": "module",
         | 
| 10 | 
            +
              "main": "./index.mjs",
         | 
| 10 11 | 
             
              "types": "./index.d.ts",
         | 
| 11 12 | 
             
              "files": [
         | 
| 12 13 | 
             
                "*"
         | 
| 13 14 | 
             
              ],
         | 
| 14 15 | 
             
              "exports": {
         | 
| 15 16 | 
             
                ".": {
         | 
| 16 | 
            -
                  "types": "./index.d.ts"
         | 
| 17 | 
            +
                  "types": "./index.d.ts",
         | 
| 18 | 
            +
                  "import": "./index.mjs"
         | 
| 17 19 | 
             
                },
         | 
| 18 20 | 
             
                "./color": {
         | 
| 19 21 | 
             
                  "types": "./color.d.ts",
         | 
| @@ -22,6 +24,10 @@ | |
| 22 24 | 
             
                "./typography": {
         | 
| 23 25 | 
             
                  "types": "./typography.d.ts",
         | 
| 24 26 | 
             
                  "import": "./typography.mjs"
         | 
| 27 | 
            +
                },
         | 
| 28 | 
            +
                "./iconography": {
         | 
| 29 | 
            +
                  "types": "./iconography.d.ts",
         | 
| 30 | 
            +
                  "import": "./iconography.mjs"
         | 
| 25 31 | 
             
                }
         | 
| 26 32 | 
             
              },
         | 
| 27 33 | 
             
              "publishConfig": {
         | 
    
        package/types.d.ts
    ADDED
    
    
    
        package/typography.d.ts
    CHANGED