@openfin/ui-library 0.31.3-alpha.20251110190158.0d8eb6a → 0.31.3-alpha.20251110205221.154c3f9
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 +23 -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.20251110205221.154c3f9",
|
|
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,12 @@
|
|
|
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",
|
|
36
55
|
"build:dev": "webpack build --config webpack.config.js --mode development && yalc push",
|
|
37
56
|
"build:watch": "webpack build --config webpack.config.js --mode development --watch",
|
|
38
57
|
"test:ci": "jest",
|
|
@@ -98,6 +117,7 @@
|
|
|
98
117
|
"jest": "^29.7.0",
|
|
99
118
|
"jest-environment-jsdom": "^29.7.0",
|
|
100
119
|
"jest-transform-stub": "^2.0.0",
|
|
120
|
+
"postcss-scss": "^4.0.9",
|
|
101
121
|
"postcss-styled-syntax": "^0.4.0",
|
|
102
122
|
"prettier": "^2.8.8",
|
|
103
123
|
"react-docgen-typescript": "^2.4.0",
|