@ws-ui/store 1.11.0 → 1.11.2
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 +52 -52
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +8735 -8708
- package/dist/index.es.js.map +1 -1
- package/dist/modules/catalog/thunks.d.ts +1 -1
- package/dist/modules/debugger/thunks.d.ts +2 -2
- package/dist/modules/explorer/thunks.d.ts +19 -20
- package/dist/modules/model/thunks.d.ts +4 -4
- package/dist/modules/roles/reducer.d.ts +6 -0
- package/dist/modules/roles/thunks.d.ts +3 -3
- package/dist/modules/roles/types.d.ts +6 -0
- package/dist/modules/root/reducer.d.ts +1 -1
- package/dist/modules/root/thunks.d.ts +13 -13
- package/dist/modules/settings/thunks.d.ts +1 -1
- package/dist/modules/shared-app-events/reducer.d.ts +9 -1
- package/dist/modules/shared-app-events/thunks.d.ts +2 -2
- package/dist/modules/shared-conditions/thunks.d.ts +1 -1
- package/dist/modules/shared-css/thunks.d.ts +1 -1
- package/dist/modules/shared-datasources/thunks.d.ts +5 -5
- package/dist/modules/webforms/thunks.d.ts +2 -2
- package/dist/selectors/catalog.d.ts +2 -2
- package/dist/selectors/components.d.ts +2 -2
- package/dist/selectors/datasources.d.ts +2 -2
- package/dist/selectors/webforms.d.ts +2 -0
- package/package.json +3 -3
|
@@ -377,6 +377,7 @@ export declare const selectWebformMetadataByPath: (tabPath: string) => ((state:
|
|
|
377
377
|
datasources: datasources.ICreateDataSource[];
|
|
378
378
|
states: import('@ws-ui/shared').WebformState[];
|
|
379
379
|
defaultStates: string[];
|
|
380
|
+
currentState?: string;
|
|
380
381
|
styles: import('@ws-ui/shared').IWebFormStyleClass[];
|
|
381
382
|
title: string;
|
|
382
383
|
}>) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => Partial<{
|
|
@@ -384,6 +385,7 @@ export declare const selectWebformMetadataByPath: (tabPath: string) => ((state:
|
|
|
384
385
|
datasources: datasources.ICreateDataSource[];
|
|
385
386
|
states: import('@ws-ui/shared').WebformState[];
|
|
386
387
|
defaultStates: string[];
|
|
388
|
+
currentState?: string;
|
|
387
389
|
styles: import('@ws-ui/shared').IWebFormStyleClass[];
|
|
388
390
|
title: string;
|
|
389
391
|
}>, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ws-ui/store",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
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.11.
|
|
25
|
-
"@ws-ui/shared": "1.11.
|
|
24
|
+
"@ws-ui/icons": "1.11.2",
|
|
25
|
+
"@ws-ui/shared": "1.11.2",
|
|
26
26
|
"lodash": "^4.17.21",
|
|
27
27
|
"minimatch": "^10.0.1",
|
|
28
28
|
"react": "^17.0.2",
|