@openfin/ui-library 0.31.3-alpha.20251110190158.0d8eb6a → 0.31.3-alpha.20251120050723.56a10f6
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 +26 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/ui-library",
|
|
3
3
|
"description": "OpenFin UI Component Library",
|
|
4
|
-
"version": "0.31.3-alpha.
|
|
4
|
+
"version": "0.31.3-alpha.20251120050723.56a10f6",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"repository": {
|
|
@@ -15,6 +15,23 @@
|
|
|
15
15
|
],
|
|
16
16
|
"exports": {
|
|
17
17
|
"./fonts/*": "./dist/assets/fonts/*",
|
|
18
|
+
"./dist/styles/*": "./dist/styles/*",
|
|
19
|
+
"./dist/types/*": "./dist/types/*",
|
|
20
|
+
"./core-ui/*": "./dist/styles/_modules/core-ui/*",
|
|
21
|
+
"./enterprise/*": "./dist/styles/_modules/enterprise/*",
|
|
22
|
+
"./shared/*": "./dist/styles/_modules/shared/*",
|
|
23
|
+
"./core-ui-css-selectors": {
|
|
24
|
+
"types": "./dist/types/core-ui-css-selectors.d.ts",
|
|
25
|
+
"default": "./dist/types/core-ui-css-selectors.js"
|
|
26
|
+
},
|
|
27
|
+
"./shared-css-selectors": {
|
|
28
|
+
"types": "./dist/types/shared-css-selectors.d.ts",
|
|
29
|
+
"default": "./dist/types/shared-css-selectors.js"
|
|
30
|
+
},
|
|
31
|
+
"./enterprise-css-selectors": {
|
|
32
|
+
"types": "./dist/types/enterprise-css-selectors.d.ts",
|
|
33
|
+
"default": "./dist/types/enterprise-css-selectors.js"
|
|
34
|
+
},
|
|
18
35
|
".": {
|
|
19
36
|
"types": "./dist/index.d.ts",
|
|
20
37
|
"default": "./dist/index.js"
|
|
@@ -29,10 +46,15 @@
|
|
|
29
46
|
"start": "npm run storybook",
|
|
30
47
|
"dev": "webpack build --config webpack.config.js --mode development --watch",
|
|
31
48
|
"typecheck": "npx tsc --noEmit",
|
|
32
|
-
"build": "npm run build:clean && npm run build:scss && npm run build:src",
|
|
49
|
+
"build": "npm run build:clean && npm run build:scss && npm run build:types && npm run build:src",
|
|
33
50
|
"build:src": "webpack build --config webpack.config.js --mode production",
|
|
34
51
|
"build:clean": "rimraf dist",
|
|
35
|
-
"build:
|
|
52
|
+
"build:types": "node scripts/generate-bem-types.js",
|
|
53
|
+
"build:scss": "sass src/styles:dist/styles --style=compressed",
|
|
54
|
+
"build:scss:dev": "sass src/styles:dist/styles --style=expanded",
|
|
55
|
+
"build:styles": "npm run build:scss && npm run build:types",
|
|
56
|
+
"build:styles:dev": "npm run build:scss:dev && npm run build:types",
|
|
57
|
+
"generate:tokens": "node scripts/generate-tokens.js",
|
|
36
58
|
"build:dev": "webpack build --config webpack.config.js --mode development && yalc push",
|
|
37
59
|
"build:watch": "webpack build --config webpack.config.js --mode development --watch",
|
|
38
60
|
"test:ci": "jest",
|
|
@@ -98,6 +120,7 @@
|
|
|
98
120
|
"jest": "^29.7.0",
|
|
99
121
|
"jest-environment-jsdom": "^29.7.0",
|
|
100
122
|
"jest-transform-stub": "^2.0.0",
|
|
123
|
+
"postcss-scss": "^4.0.9",
|
|
101
124
|
"postcss-styled-syntax": "^0.4.0",
|
|
102
125
|
"prettier": "^2.8.8",
|
|
103
126
|
"react-docgen-typescript": "^2.4.0",
|