@imposium-hub/components 1.45.4 → 1.45.5
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/.storybook/main.js +15 -19
- package/.storybook/preview-head.html +0 -1
- package/.storybook/preview.js +11 -0
- package/README.md +10 -1
- package/dist/styles.css +2673 -0
- package/package.json +14 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imposium-hub/components",
|
|
3
|
-
"version": "1.45.
|
|
3
|
+
"version": "1.45.5",
|
|
4
4
|
"description": "React & Typescript component / asset library for Imposium front-ends",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"build": "npx concurrently \"npm:build-*\"",
|
|
11
11
|
"watch": "npx concurrently \"npm:watch-*\"",
|
|
12
12
|
"watch-less": "npx onchange 'less/**/*.less' -- npm run build-less",
|
|
13
|
-
"build-less": "npx lessc ./less/entry.less ./dist/styles.less",
|
|
13
|
+
"build-less": "npx lessc ./less/entry.less ./dist/styles.less && npx lessc ./dist/styles.less ./dist/styles.css",
|
|
14
14
|
"build-ts-esm": "npx tsc --outDir dist/esm --module esnext --target esnext --pretty",
|
|
15
15
|
"build-ts-cjs": "npx tsc --pretty ",
|
|
16
16
|
"watch-ts-esm": "npm run build-ts-esm -- --watch",
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"lint": "npx eslint \"./src/**/*.*\"",
|
|
19
19
|
"lint-fix": "npm run lint --fix",
|
|
20
20
|
"deploy": "npx np --no-tests --message `v%s`",
|
|
21
|
-
"release": "npm run lint && npm run build && npm run deploy"
|
|
21
|
+
"release": "npm run lint && npm run build && npm run deploy",
|
|
22
|
+
"storybook": "npm run build && start-storybook -p 6066"
|
|
22
23
|
},
|
|
23
24
|
"repository": {
|
|
24
25
|
"type": "git",
|
|
@@ -59,7 +60,7 @@
|
|
|
59
60
|
"react-autosuggest": "^9.4.3",
|
|
60
61
|
"react-dnd": "^14.0.2",
|
|
61
62
|
"react-dnd-html5-backend": "^14.0.0",
|
|
62
|
-
"react-dom": "^
|
|
63
|
+
"react-dom": "^17.0.2",
|
|
63
64
|
"react-dropzone": "^10.1.6",
|
|
64
65
|
"react-redux": "^5.0.7",
|
|
65
66
|
"react-resize-detector": "^6.7.1",
|
|
@@ -68,6 +69,7 @@
|
|
|
68
69
|
"react-tooltip": "3.11.1"
|
|
69
70
|
},
|
|
70
71
|
"devDependencies": {
|
|
72
|
+
"@babel/core": "^7.17.10",
|
|
71
73
|
"@fortawesome/fontawesome-svg-core": "^6.1.1",
|
|
72
74
|
"@fortawesome/free-brands-svg-icons": "^6.1.1",
|
|
73
75
|
"@fortawesome/free-solid-svg-icons": "^6.1.1",
|
|
@@ -75,14 +77,18 @@
|
|
|
75
77
|
"@fortawesome/react-fontawesome": "^0.1.18",
|
|
76
78
|
"@storybook/addon-actions": "^6.4.22",
|
|
77
79
|
"@storybook/addon-docs": "^6.4.22",
|
|
80
|
+
"@storybook/addon-essentials": "^6.4.22",
|
|
81
|
+
"@storybook/addon-interactions": "^6.4.22",
|
|
78
82
|
"@storybook/addon-links": "^6.4.22",
|
|
79
83
|
"@storybook/addon-storysource": "^6.4.22",
|
|
80
|
-
"@storybook/addons": "^6.4.22",
|
|
81
84
|
"@storybook/react": "^6.4.22",
|
|
85
|
+
"@storybook/testing-library": "^0.0.11",
|
|
82
86
|
"@types/lodash": "^4.14.178",
|
|
83
87
|
"@types/react": "^17.0.37",
|
|
84
88
|
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
89
|
+
"@typescript-eslint/parser": "^5.24.0",
|
|
85
90
|
"axios": "^0.21.1",
|
|
91
|
+
"babel-loader": "^8.2.5",
|
|
86
92
|
"concurrently": "^7.1.0",
|
|
87
93
|
"eslint": "^8.14.0",
|
|
88
94
|
"eslint-plugin-import": "^2.26.0",
|
|
@@ -97,7 +103,7 @@
|
|
|
97
103
|
"react-autosuggest": "^9.4.3",
|
|
98
104
|
"react-dnd": "^14.0.2",
|
|
99
105
|
"react-dnd-html5-backend": "^14.0.0",
|
|
100
|
-
"react-dom": "^
|
|
106
|
+
"react-dom": "^17.0.2",
|
|
101
107
|
"react-dropzone": "^10.1.6",
|
|
102
108
|
"react-redux": "^5.0.7",
|
|
103
109
|
"react-resize-detector": "^6.7.1",
|
|
@@ -105,7 +111,8 @@
|
|
|
105
111
|
"react-table": "^7.7.0",
|
|
106
112
|
"react-tooltip": "3.11.1",
|
|
107
113
|
"run-sequence": "^2.2.1",
|
|
108
|
-
"
|
|
114
|
+
"sb": "^6.4.22",
|
|
115
|
+
"storybook-dark-mode": "^1.1.0",
|
|
109
116
|
"typescript": "^4.6.3"
|
|
110
117
|
}
|
|
111
118
|
}
|