@box/blueprint-web-assets 4.33.0 → 4.33.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/package.json +22 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/blueprint-web-assets",
|
|
3
|
-
"version": "4.33.
|
|
3
|
+
"version": "4.33.2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build-local-all": "yarn nx clone-repo && yarn build-local && yarn lint-local && yarn lint-local-css",
|
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
"svgr-illustration": "svgr --config-file svgrConfig/replace-with-branding-color.svgrrc.js -d src/illustrations ./tmp/repo/Illustration",
|
|
20
20
|
"svgr-line": "svgr --config-file svgrConfig/replace-color.svgrrc.js -d src/icons/Line ./tmp/repo/Icon/Line",
|
|
21
21
|
"svgr-logo": "svgr --config-file svgrConfig/common.svgrrc.js -d src/icons/Logo ./tmp/repo/Icon/Logo",
|
|
22
|
-
"svgr": "
|
|
22
|
+
"svgr-medium-filled": "svgr --config-file svgrConfig/replace-color.svgrrc.js -d src/icons/Medium-Filled ./tmp/repo/Icon/Medium-Filled",
|
|
23
|
+
"svgr-medium": "svgr --config-file svgrConfig/replace-color.svgrrc.js -d src/icons/Medium ./tmp/repo/Icon/Medium",
|
|
24
|
+
"svgr": "rimraf src/icons/Content src/icons/Fill src/icons/Line src/icons/Logo src/icons/Medium-Filled src/icons/Medium && concurrently 'yarn svgr-content' 'yarn svgr-fill' 'yarn svgr-illustration' 'yarn svgr-line' 'yarn svgr-logo' 'yarn svgr-medium-filled' 'yarn svgr-medium' && yarn remove-clippaths",
|
|
23
25
|
"tokens-build-styles-all": "yarn tokens-build-styles && yarn tokens-build-styles-create-typography-mixins",
|
|
24
26
|
"tokens-build-styles-create-typography-mixins": "node scripts/create_typography_mixins.js --input tmp/repo/Style/values.json --output src/tokens/mixins.scss",
|
|
25
27
|
"tokens-build-styles": "token-transformer --expandTypography --expandComposition --resolveReferences=false tmp/repo/Style tmp/tokens_output_styles.json light-mode,values && node scripts/build-tokens.js"
|
|
@@ -68,6 +70,14 @@
|
|
|
68
70
|
"types": "./icons/Logo/*.d.ts",
|
|
69
71
|
"default": "./icons/Logo/*.js"
|
|
70
72
|
},
|
|
73
|
+
"./icons/Medium-Filled/*": {
|
|
74
|
+
"types": "./icons/Medium-Filled/*.d.ts",
|
|
75
|
+
"default": "./icons/Medium-Filled/*.js"
|
|
76
|
+
},
|
|
77
|
+
"./icons/Medium/*": {
|
|
78
|
+
"types": "./icons/Medium/*.d.ts",
|
|
79
|
+
"default": "./icons/Medium/*.js"
|
|
80
|
+
},
|
|
71
81
|
"./icons/Content": {
|
|
72
82
|
"types": "./icons/Content/index.d.ts",
|
|
73
83
|
"default": "./icons/Content/index.js"
|
|
@@ -84,6 +94,14 @@
|
|
|
84
94
|
"types": "./icons/Logo/index.d.ts",
|
|
85
95
|
"default": "./icons/Logo/index.js"
|
|
86
96
|
},
|
|
97
|
+
"./icons/Medium-Filled": {
|
|
98
|
+
"types": "./icons/Medium-Filled/index.d.ts",
|
|
99
|
+
"default": "./icons/Medium-Filled/index.js"
|
|
100
|
+
},
|
|
101
|
+
"./icons/Medium": {
|
|
102
|
+
"types": "./icons/Medium/index.d.ts",
|
|
103
|
+
"default": "./icons/Medium/index.js"
|
|
104
|
+
},
|
|
87
105
|
"./illustrations/*": {
|
|
88
106
|
"types": "./illustrations/*.d.ts",
|
|
89
107
|
"default": "./illustrations/*.js"
|
|
@@ -98,12 +116,12 @@
|
|
|
98
116
|
}
|
|
99
117
|
},
|
|
100
118
|
"devDependencies": {
|
|
101
|
-
"@box/storybook-utils": "^0.8.
|
|
119
|
+
"@box/storybook-utils": "^0.8.3",
|
|
102
120
|
"@types/react": "^18.0.0",
|
|
103
121
|
"@types/react-dom": "^18.0.0",
|
|
104
122
|
"chalk": "4.1.2",
|
|
105
123
|
"react": "^18.3.0",
|
|
106
124
|
"react-dom": "^18.3.0"
|
|
107
125
|
},
|
|
108
|
-
"gitHead": "
|
|
126
|
+
"gitHead": "2b482e2a7d776580eb6cf3e25e3fd3c58aa03123"
|
|
109
127
|
}
|