@ws-ui/store 0.1.8 → 0.1.9
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/dist/index.cjs.js +40 -40
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1963 -1961
- package/dist/index.es.js.map +1 -1
- package/dist/modules/root/types.d.ts +5 -0
- package/package.json +7 -2
|
@@ -64,6 +64,11 @@ export declare enum ETooltipBehavior {
|
|
|
64
64
|
SHOW_AFTER_TIMEOUT = "show_after_timeout",
|
|
65
65
|
HIDE_AFTER_TIMEOUT = "hide_after_timeout"
|
|
66
66
|
}
|
|
67
|
+
export declare enum EUnsavedPopOverChoice {
|
|
68
|
+
NONE = "none",
|
|
69
|
+
SAVE_ALL_AND_PROCEED = "saved_all_and_proceed",
|
|
70
|
+
PROCEED = "proceed"
|
|
71
|
+
}
|
|
67
72
|
export declare enum EDisplayMode {
|
|
68
73
|
AIRY = "airy",
|
|
69
74
|
COMPACT = "neutral"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ws-ui/store",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.9",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.es.js",
|
|
@@ -17,12 +17,17 @@
|
|
|
17
17
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
18
18
|
"preview": "vite preview"
|
|
19
19
|
},
|
|
20
|
+
"overrides": {
|
|
21
|
+
"@ws-ui/shared": {
|
|
22
|
+
"@ws-ui/icons": "$@ws-ui/icons"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
20
25
|
"dependencies": {
|
|
21
26
|
"@reduxjs/toolkit": "^1.7.1",
|
|
22
27
|
"react-redux": "^7.2.6"
|
|
23
28
|
},
|
|
24
29
|
"peerDependencies": {
|
|
25
|
-
"@ws-ui/icons": "^0.0.
|
|
30
|
+
"@ws-ui/icons": "^0.0.9",
|
|
26
31
|
"@ws-ui/shared": "^0.1.6",
|
|
27
32
|
"lodash": "^4.17.21",
|
|
28
33
|
"minimatch": "^5.1.0",
|