@ws-ui/store 1.12.0 → 1.12.3

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.
@@ -6,8 +6,8 @@ export interface ISettingsState {
6
6
  [key: string]: unknown;
7
7
  };
8
8
  project: {
9
- [key: string]: unknown;
10
- };
9
+ [key: string]: unknown | string;
10
+ } | string;
11
11
  server: IAppSettingsResponse;
12
12
  welcometour: {
13
13
  [key: string]: unknown;
@@ -143,9 +143,9 @@ export declare const selectProjectSettings: ((state: import('redux').EmptyObject
143
143
  sharedCSS: import('../modules').ISharedCSSState;
144
144
  model: import('../modules').IModelState;
145
145
  tasks: import('@ws-ui/shared').ISingleTask[];
146
- }) => {
146
+ }) => string | {
147
147
  [key: string]: unknown;
148
- }) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ISettingsState) => {
148
+ }) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ISettingsState) => string | {
149
149
  [key: string]: unknown;
150
150
  }, {
151
151
  clearCache: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ws-ui/store",
3
- "version": "1.12.0",
3
+ "version": "1.12.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.es.js",
@@ -21,8 +21,8 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@reduxjs/toolkit": "^1.7.1",
24
- "@ws-ui/icons": "1.12.0",
25
- "@ws-ui/shared": "1.12.0",
24
+ "@ws-ui/icons": "1.12.3",
25
+ "@ws-ui/shared": "1.12.3",
26
26
  "lodash": "^4.17.21",
27
27
  "minimatch": "^10.0.1",
28
28
  "react": "^17.0.2",
@@ -46,7 +46,7 @@
46
46
  "@types/react-redux": "^7.1.16",
47
47
  "@vitejs/plugin-react": "^4.3.4",
48
48
  "jest": "^29.7.0",
49
- "ts-jest": "^29.2.6",
49
+ "ts-jest": "^29.4.9",
50
50
  "typescript": "^5.8.3",
51
51
  "vite": "^6.2.1",
52
52
  "vite-plugin-dts": "^4.5.3"