@ws-ui/store 1.13.0-rc1 → 1.13.1
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/hooks/store.d.ts +3 -3
- package/dist/index.cjs.js +46 -46
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +13548 -12832
- package/dist/index.es.js.map +1 -1
- package/dist/modules/explorer/index.d.ts +1 -1
- package/dist/modules/explorer/reducer.d.ts +1 -1
- package/dist/modules/explorer/thunks.d.ts +25 -16
- package/dist/modules/explorer/types.d.ts +26 -1
- package/dist/modules/explorer/utils.d.ts +2 -2
- package/dist/modules/index.d.ts +3 -3
- package/dist/modules/modals/thunks.d.ts +9 -1
- package/dist/modules/roles/adapter.d.ts +180 -1
- package/dist/modules/roles/index.d.ts +2 -1
- package/dist/modules/roles/reducer.d.ts +1 -1
- package/dist/modules/roles/thunks.d.ts +12 -1
- package/dist/modules/roles/types.d.ts +108 -0
- package/dist/modules/settings/index.d.ts +1 -1
- package/dist/modules/settings/reducer.d.ts +19 -3
- package/dist/modules/settings/types.d.ts +6 -2
- package/dist/modules/tasks/selectors.d.ts +3 -3
- package/dist/modules/webforms/datasources.adapter.d.ts +3 -3
- package/dist/modules/webforms/index.d.ts +1 -0
- package/dist/modules/webforms/private.d.ts +3 -0
- package/dist/modules/webforms/reducer.d.ts +2 -1
- package/dist/selectors/catalog.d.ts +29 -29
- package/dist/selectors/common.d.ts +12 -12
- package/dist/selectors/components.d.ts +5 -5
- package/dist/selectors/datasources.d.ts +26 -26
- package/dist/selectors/debugger.d.ts +84 -84
- package/dist/selectors/explorer.d.ts +89 -181
- package/dist/selectors/modals.d.ts +3 -3
- package/dist/selectors/roles.d.ts +42 -42
- package/dist/selectors/settings.d.ts +35 -35
- package/dist/selectors/states.d.ts +23 -18
- package/dist/selectors/styles.d.ts +16 -15
- package/dist/selectors/tabs.d.ts +15 -15
- package/dist/selectors/webforms.d.ts +42 -42
- package/package.json +3 -3
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { WebformState } from '@ws-ui/shared';
|
|
2
|
+
export declare const ROOT_WEBFORM_STATE: {
|
|
3
|
+
label: string;
|
|
4
|
+
id: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const isBaseState: (state: WebformState) => boolean;
|
|
2
7
|
/**
|
|
3
8
|
* Returns the list of declared states in the current tab.
|
|
4
9
|
* @param tabPath the current tab path.
|
|
@@ -7,9 +12,9 @@ import { WebformState } from '@ws-ui/shared';
|
|
|
7
12
|
*/
|
|
8
13
|
export declare const selectWebformStatesByPath: (tabPath: string, exclude?: string[]) => ((state: import('redux').EmptyObject & {
|
|
9
14
|
root: import('../modules').IRootState;
|
|
10
|
-
explorer: import('
|
|
15
|
+
explorer: import('../modules').ITreeItem[];
|
|
11
16
|
debugger: import('../modules').IDebuggerState;
|
|
12
|
-
settings: import('
|
|
17
|
+
settings: import('../modules').ISettingsState;
|
|
13
18
|
catalog: {
|
|
14
19
|
state: "loading";
|
|
15
20
|
} | {
|
|
@@ -19,7 +24,7 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
19
24
|
state: "error";
|
|
20
25
|
error: string;
|
|
21
26
|
};
|
|
22
|
-
roles: import('
|
|
27
|
+
roles: import('../modules').IRolesState;
|
|
23
28
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
24
29
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
25
30
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -59,9 +64,9 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
59
64
|
*/
|
|
60
65
|
export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?: string[]) => ((state: import('redux').EmptyObject & {
|
|
61
66
|
root: import('../modules').IRootState;
|
|
62
|
-
explorer: import('
|
|
67
|
+
explorer: import('../modules').ITreeItem[];
|
|
63
68
|
debugger: import('../modules').IDebuggerState;
|
|
64
|
-
settings: import('
|
|
69
|
+
settings: import('../modules').ISettingsState;
|
|
65
70
|
catalog: {
|
|
66
71
|
state: "loading";
|
|
67
72
|
} | {
|
|
@@ -71,7 +76,7 @@ export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?
|
|
|
71
76
|
state: "error";
|
|
72
77
|
error: string;
|
|
73
78
|
};
|
|
74
|
-
roles: import('
|
|
79
|
+
roles: import('../modules').IRolesState;
|
|
75
80
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
76
81
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
77
82
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -92,9 +97,9 @@ export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?
|
|
|
92
97
|
*/
|
|
93
98
|
export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
94
99
|
root: import('../modules').IRootState;
|
|
95
|
-
explorer: import('
|
|
100
|
+
explorer: import('../modules').ITreeItem[];
|
|
96
101
|
debugger: import('../modules').IDebuggerState;
|
|
97
|
-
settings: import('
|
|
102
|
+
settings: import('../modules').ISettingsState;
|
|
98
103
|
catalog: {
|
|
99
104
|
state: "loading";
|
|
100
105
|
} | {
|
|
@@ -104,7 +109,7 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
|
|
|
104
109
|
state: "error";
|
|
105
110
|
error: string;
|
|
106
111
|
};
|
|
107
|
-
roles: import('
|
|
112
|
+
roles: import('../modules').IRolesState;
|
|
108
113
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
109
114
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
110
115
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -138,9 +143,9 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
|
|
|
138
143
|
};
|
|
139
144
|
export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
140
145
|
root: import('../modules').IRootState;
|
|
141
|
-
explorer: import('
|
|
146
|
+
explorer: import('../modules').ITreeItem[];
|
|
142
147
|
debugger: import('../modules').IDebuggerState;
|
|
143
|
-
settings: import('
|
|
148
|
+
settings: import('../modules').ISettingsState;
|
|
144
149
|
catalog: {
|
|
145
150
|
state: "loading";
|
|
146
151
|
} | {
|
|
@@ -150,7 +155,7 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
150
155
|
state: "error";
|
|
151
156
|
error: string;
|
|
152
157
|
};
|
|
153
|
-
roles: import('
|
|
158
|
+
roles: import('../modules').IRolesState;
|
|
154
159
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
155
160
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
156
161
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -187,9 +192,9 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
187
192
|
*/
|
|
188
193
|
export declare const selectSavedConditions: ((state: import('redux').EmptyObject & {
|
|
189
194
|
root: import('../modules').IRootState;
|
|
190
|
-
explorer: import('
|
|
195
|
+
explorer: import('../modules').ITreeItem[];
|
|
191
196
|
debugger: import('../modules').IDebuggerState;
|
|
192
|
-
settings: import('
|
|
197
|
+
settings: import('../modules').ISettingsState;
|
|
193
198
|
catalog: {
|
|
194
199
|
state: "loading";
|
|
195
200
|
} | {
|
|
@@ -199,7 +204,7 @@ export declare const selectSavedConditions: ((state: import('redux').EmptyObject
|
|
|
199
204
|
state: "error";
|
|
200
205
|
error: string;
|
|
201
206
|
};
|
|
202
|
-
roles: import('
|
|
207
|
+
roles: import('../modules').IRolesState;
|
|
203
208
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
204
209
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
205
210
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -210,9 +215,9 @@ export declare const selectSavedConditions: ((state: import('redux').EmptyObject
|
|
|
210
215
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
211
216
|
}) => import('@ws-ui/shared').WebformStateCondition[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
212
217
|
root: import('../modules').IRootState;
|
|
213
|
-
explorer: import('
|
|
218
|
+
explorer: import('../modules').ITreeItem[];
|
|
214
219
|
debugger: import('../modules').IDebuggerState;
|
|
215
|
-
settings: import('
|
|
220
|
+
settings: import('../modules').ISettingsState;
|
|
216
221
|
catalog: {
|
|
217
222
|
state: "loading";
|
|
218
223
|
} | {
|
|
@@ -222,7 +227,7 @@ export declare const selectSavedConditions: ((state: import('redux').EmptyObject
|
|
|
222
227
|
state: "error";
|
|
223
228
|
error: string;
|
|
224
229
|
};
|
|
225
|
-
roles: import('
|
|
230
|
+
roles: import('../modules').IRolesState;
|
|
226
231
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
227
232
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
228
233
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { EWebFormStyleClassScope, IWebFormStyleClass, ITab } from '@ws-ui/shared';
|
|
2
|
+
export declare const THEME_CLASSES: string[];
|
|
2
3
|
export declare const selectWebformStylesByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
3
4
|
root: import('../modules').IRootState;
|
|
4
|
-
explorer: import('
|
|
5
|
+
explorer: import('../modules').ITreeItem[];
|
|
5
6
|
debugger: import('../modules').IDebuggerState;
|
|
6
|
-
settings: import('
|
|
7
|
+
settings: import('../modules').ISettingsState;
|
|
7
8
|
catalog: {
|
|
8
9
|
state: "loading";
|
|
9
10
|
} | {
|
|
@@ -13,7 +14,7 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
|
|
|
13
14
|
state: "error";
|
|
14
15
|
error: string;
|
|
15
16
|
};
|
|
16
|
-
roles: import('
|
|
17
|
+
roles: import('../modules').IRolesState;
|
|
17
18
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
18
19
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
19
20
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -47,9 +48,9 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
|
|
|
47
48
|
};
|
|
48
49
|
export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleClassScope[]) => ((state: import('redux').EmptyObject & {
|
|
49
50
|
root: import('../modules').IRootState;
|
|
50
|
-
explorer: import('
|
|
51
|
+
explorer: import('../modules').ITreeItem[];
|
|
51
52
|
debugger: import('../modules').IDebuggerState;
|
|
52
|
-
settings: import('
|
|
53
|
+
settings: import('../modules').ISettingsState;
|
|
53
54
|
catalog: {
|
|
54
55
|
state: "loading";
|
|
55
56
|
} | {
|
|
@@ -59,7 +60,7 @@ export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleCla
|
|
|
59
60
|
state: "error";
|
|
60
61
|
error: string;
|
|
61
62
|
};
|
|
62
|
-
roles: import('
|
|
63
|
+
roles: import('../modules').IRolesState;
|
|
63
64
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
64
65
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
65
66
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -75,9 +76,9 @@ export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleCla
|
|
|
75
76
|
};
|
|
76
77
|
export declare const selectCSSClassesByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
77
78
|
root: import('../modules').IRootState;
|
|
78
|
-
explorer: import('
|
|
79
|
+
explorer: import('../modules').ITreeItem[];
|
|
79
80
|
debugger: import('../modules').IDebuggerState;
|
|
80
|
-
settings: import('
|
|
81
|
+
settings: import('../modules').ISettingsState;
|
|
81
82
|
catalog: {
|
|
82
83
|
state: "loading";
|
|
83
84
|
} | {
|
|
@@ -87,7 +88,7 @@ export declare const selectCSSClassesByPath: (path: string) => ((state: import('
|
|
|
87
88
|
state: "error";
|
|
88
89
|
error: string;
|
|
89
90
|
};
|
|
90
|
-
roles: import('
|
|
91
|
+
roles: import('../modules').IRolesState;
|
|
91
92
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
92
93
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
93
94
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -103,9 +104,9 @@ export declare const selectCSSClassesByPath: (path: string) => ((state: import('
|
|
|
103
104
|
};
|
|
104
105
|
export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
105
106
|
root: import('../modules').IRootState;
|
|
106
|
-
explorer: import('
|
|
107
|
+
explorer: import('../modules').ITreeItem[];
|
|
107
108
|
debugger: import('../modules').IDebuggerState;
|
|
108
|
-
settings: import('
|
|
109
|
+
settings: import('../modules').ISettingsState;
|
|
109
110
|
catalog: {
|
|
110
111
|
state: "loading";
|
|
111
112
|
} | {
|
|
@@ -115,7 +116,7 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
|
115
116
|
state: "error";
|
|
116
117
|
error: string;
|
|
117
118
|
};
|
|
118
|
-
roles: import('
|
|
119
|
+
roles: import('../modules').IRolesState;
|
|
119
120
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
120
121
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
121
122
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -136,9 +137,9 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
|
136
137
|
origin?: string;
|
|
137
138
|
}[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
138
139
|
root: import('../modules').IRootState;
|
|
139
|
-
explorer: import('
|
|
140
|
+
explorer: import('../modules').ITreeItem[];
|
|
140
141
|
debugger: import('../modules').IDebuggerState;
|
|
141
|
-
settings: import('
|
|
142
|
+
settings: import('../modules').ISettingsState;
|
|
142
143
|
catalog: {
|
|
143
144
|
state: "loading";
|
|
144
145
|
} | {
|
|
@@ -148,7 +149,7 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
|
148
149
|
state: "error";
|
|
149
150
|
error: string;
|
|
150
151
|
};
|
|
151
|
-
roles: import('
|
|
152
|
+
roles: import('../modules').IRolesState;
|
|
152
153
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
153
154
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
154
155
|
savedConditions: import('../modules').ISavedConditionsState;
|
package/dist/selectors/tabs.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const selectPanelByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
2
2
|
root: import('..').IRootState;
|
|
3
|
-
explorer: import('
|
|
3
|
+
explorer: import('..').ITreeItem[];
|
|
4
4
|
debugger: import('..').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('..').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -12,7 +12,7 @@ export declare const selectPanelByPath: (path: string) => ((state: import('redux
|
|
|
12
12
|
state: "error";
|
|
13
13
|
error: string;
|
|
14
14
|
};
|
|
15
|
-
roles: import('
|
|
15
|
+
roles: import('..').IRolesState;
|
|
16
16
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
17
17
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
18
18
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -58,9 +58,9 @@ export declare const selectPanelByPath: (path: string) => ((state: import('redux
|
|
|
58
58
|
};
|
|
59
59
|
export declare const selectFlagsByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
60
60
|
root: import('..').IRootState;
|
|
61
|
-
explorer: import('
|
|
61
|
+
explorer: import('..').ITreeItem[];
|
|
62
62
|
debugger: import('..').IDebuggerState;
|
|
63
|
-
settings: import('
|
|
63
|
+
settings: import('..').ISettingsState;
|
|
64
64
|
catalog: {
|
|
65
65
|
state: "loading";
|
|
66
66
|
} | {
|
|
@@ -70,7 +70,7 @@ export declare const selectFlagsByPath: (path: string) => ((state: import('redux
|
|
|
70
70
|
state: "error";
|
|
71
71
|
error: string;
|
|
72
72
|
};
|
|
73
|
-
roles: import('
|
|
73
|
+
roles: import('..').IRolesState;
|
|
74
74
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
75
75
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
76
76
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -122,9 +122,9 @@ export declare const selectFlagsByPath: (path: string) => ((state: import('redux
|
|
|
122
122
|
};
|
|
123
123
|
export declare const selectHistoryByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
124
124
|
root: import('..').IRootState;
|
|
125
|
-
explorer: import('
|
|
125
|
+
explorer: import('..').ITreeItem[];
|
|
126
126
|
debugger: import('..').IDebuggerState;
|
|
127
|
-
settings: import('
|
|
127
|
+
settings: import('..').ISettingsState;
|
|
128
128
|
catalog: {
|
|
129
129
|
state: "loading";
|
|
130
130
|
} | {
|
|
@@ -134,7 +134,7 @@ export declare const selectHistoryByPath: (path: string) => ((state: import('red
|
|
|
134
134
|
state: "error";
|
|
135
135
|
error: string;
|
|
136
136
|
};
|
|
137
|
-
roles: import('
|
|
137
|
+
roles: import('..').IRolesState;
|
|
138
138
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
139
139
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
140
140
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -176,9 +176,9 @@ export declare const selectHistoryByPath: (path: string) => ((state: import('red
|
|
|
176
176
|
};
|
|
177
177
|
export declare const selectActiveTabHistoryActions: ((state: import('redux').EmptyObject & {
|
|
178
178
|
root: import('..').IRootState;
|
|
179
|
-
explorer: import('
|
|
179
|
+
explorer: import('..').ITreeItem[];
|
|
180
180
|
debugger: import('..').IDebuggerState;
|
|
181
|
-
settings: import('
|
|
181
|
+
settings: import('..').ISettingsState;
|
|
182
182
|
catalog: {
|
|
183
183
|
state: "loading";
|
|
184
184
|
} | {
|
|
@@ -188,7 +188,7 @@ export declare const selectActiveTabHistoryActions: ((state: import('redux').Emp
|
|
|
188
188
|
state: "error";
|
|
189
189
|
error: string;
|
|
190
190
|
};
|
|
191
|
-
roles: import('
|
|
191
|
+
roles: import('..').IRolesState;
|
|
192
192
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
193
193
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
194
194
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -228,9 +228,9 @@ export declare const selectActiveTabHistoryActions: ((state: import('redux').Emp
|
|
|
228
228
|
};
|
|
229
229
|
export declare const selectAllTabsByType: (type: string) => ((state: import('redux').EmptyObject & {
|
|
230
230
|
root: import('..').IRootState;
|
|
231
|
-
explorer: import('
|
|
231
|
+
explorer: import('..').ITreeItem[];
|
|
232
232
|
debugger: import('..').IDebuggerState;
|
|
233
|
-
settings: import('
|
|
233
|
+
settings: import('..').ISettingsState;
|
|
234
234
|
catalog: {
|
|
235
235
|
state: "loading";
|
|
236
236
|
} | {
|
|
@@ -240,7 +240,7 @@ export declare const selectAllTabsByType: (type: string) => ((state: import('red
|
|
|
240
240
|
state: "error";
|
|
241
241
|
error: string;
|
|
242
242
|
};
|
|
243
|
-
roles: import('
|
|
243
|
+
roles: import('..').IRolesState;
|
|
244
244
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
245
245
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
246
246
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { TInspectorType } from '../modules/webforms/types';
|
|
2
2
|
export declare const selectWebforms: ((state: import('redux').EmptyObject & {
|
|
3
3
|
root: import('../modules').IRootState;
|
|
4
|
-
explorer: import('
|
|
4
|
+
explorer: import('../modules').ITreeItem[];
|
|
5
5
|
debugger: import('../modules').IDebuggerState;
|
|
6
|
-
settings: import('
|
|
6
|
+
settings: import('../modules').ISettingsState;
|
|
7
7
|
catalog: {
|
|
8
8
|
state: "loading";
|
|
9
9
|
} | {
|
|
@@ -13,7 +13,7 @@ export declare const selectWebforms: ((state: import('redux').EmptyObject & {
|
|
|
13
13
|
state: "error";
|
|
14
14
|
error: string;
|
|
15
15
|
};
|
|
16
|
-
roles: import('
|
|
16
|
+
roles: import('../modules').IRolesState;
|
|
17
17
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
18
18
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
19
19
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -29,9 +29,9 @@ export declare const selectWebforms: ((state: import('redux').EmptyObject & {
|
|
|
29
29
|
};
|
|
30
30
|
export declare const selectComponents: ((state: import('redux').EmptyObject & {
|
|
31
31
|
root: import('../modules').IRootState;
|
|
32
|
-
explorer: import('
|
|
32
|
+
explorer: import('../modules').ITreeItem[];
|
|
33
33
|
debugger: import('../modules').IDebuggerState;
|
|
34
|
-
settings: import('
|
|
34
|
+
settings: import('../modules').ISettingsState;
|
|
35
35
|
catalog: {
|
|
36
36
|
state: "loading";
|
|
37
37
|
} | {
|
|
@@ -41,7 +41,7 @@ export declare const selectComponents: ((state: import('redux').EmptyObject & {
|
|
|
41
41
|
state: "error";
|
|
42
42
|
error: string;
|
|
43
43
|
};
|
|
44
|
-
roles: import('
|
|
44
|
+
roles: import('../modules').IRolesState;
|
|
45
45
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
46
46
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
47
47
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -57,9 +57,9 @@ export declare const selectComponents: ((state: import('redux').EmptyObject & {
|
|
|
57
57
|
};
|
|
58
58
|
export declare const selectInspector: ((state: import('redux').EmptyObject & {
|
|
59
59
|
root: import('../modules').IRootState;
|
|
60
|
-
explorer: import('
|
|
60
|
+
explorer: import('../modules').ITreeItem[];
|
|
61
61
|
debugger: import('../modules').IDebuggerState;
|
|
62
|
-
settings: import('
|
|
62
|
+
settings: import('../modules').ISettingsState;
|
|
63
63
|
catalog: {
|
|
64
64
|
state: "loading";
|
|
65
65
|
} | {
|
|
@@ -69,7 +69,7 @@ export declare const selectInspector: ((state: import('redux').EmptyObject & {
|
|
|
69
69
|
state: "error";
|
|
70
70
|
error: string;
|
|
71
71
|
};
|
|
72
|
-
roles: import('
|
|
72
|
+
roles: import('../modules').IRolesState;
|
|
73
73
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
74
74
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
75
75
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -85,9 +85,9 @@ export declare const selectInspector: ((state: import('redux').EmptyObject & {
|
|
|
85
85
|
};
|
|
86
86
|
export declare const selectInspectedCSSClass: ((state: import('redux').EmptyObject & {
|
|
87
87
|
root: import('../modules').IRootState;
|
|
88
|
-
explorer: import('
|
|
88
|
+
explorer: import('../modules').ITreeItem[];
|
|
89
89
|
debugger: import('../modules').IDebuggerState;
|
|
90
|
-
settings: import('
|
|
90
|
+
settings: import('../modules').ISettingsState;
|
|
91
91
|
catalog: {
|
|
92
92
|
state: "loading";
|
|
93
93
|
} | {
|
|
@@ -97,7 +97,7 @@ export declare const selectInspectedCSSClass: ((state: import('redux').EmptyObje
|
|
|
97
97
|
state: "error";
|
|
98
98
|
error: string;
|
|
99
99
|
};
|
|
100
|
-
roles: import('
|
|
100
|
+
roles: import('../modules').IRolesState;
|
|
101
101
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
102
102
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
103
103
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -113,9 +113,9 @@ export declare const selectInspectedCSSClass: ((state: import('redux').EmptyObje
|
|
|
113
113
|
};
|
|
114
114
|
export declare const selectInspectedDatasource: ((state: import('redux').EmptyObject & {
|
|
115
115
|
root: import('../modules').IRootState;
|
|
116
|
-
explorer: import('
|
|
116
|
+
explorer: import('../modules').ITreeItem[];
|
|
117
117
|
debugger: import('../modules').IDebuggerState;
|
|
118
|
-
settings: import('
|
|
118
|
+
settings: import('../modules').ISettingsState;
|
|
119
119
|
catalog: {
|
|
120
120
|
state: "loading";
|
|
121
121
|
} | {
|
|
@@ -125,7 +125,7 @@ export declare const selectInspectedDatasource: ((state: import('redux').EmptyOb
|
|
|
125
125
|
state: "error";
|
|
126
126
|
error: string;
|
|
127
127
|
};
|
|
128
|
-
roles: import('
|
|
128
|
+
roles: import('../modules').IRolesState;
|
|
129
129
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
130
130
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
131
131
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -141,9 +141,9 @@ export declare const selectInspectedDatasource: ((state: import('redux').EmptyOb
|
|
|
141
141
|
};
|
|
142
142
|
export declare const selectTemplates: ((state: import('redux').EmptyObject & {
|
|
143
143
|
root: import('../modules').IRootState;
|
|
144
|
-
explorer: import('
|
|
144
|
+
explorer: import('../modules').ITreeItem[];
|
|
145
145
|
debugger: import('../modules').IDebuggerState;
|
|
146
|
-
settings: import('
|
|
146
|
+
settings: import('../modules').ISettingsState;
|
|
147
147
|
catalog: {
|
|
148
148
|
state: "loading";
|
|
149
149
|
} | {
|
|
@@ -153,7 +153,7 @@ export declare const selectTemplates: ((state: import('redux').EmptyObject & {
|
|
|
153
153
|
state: "error";
|
|
154
154
|
error: string;
|
|
155
155
|
};
|
|
156
|
-
roles: import('
|
|
156
|
+
roles: import('../modules').IRolesState;
|
|
157
157
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
158
158
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
159
159
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -169,9 +169,9 @@ export declare const selectTemplates: ((state: import('redux').EmptyObject & {
|
|
|
169
169
|
};
|
|
170
170
|
export declare const selectTemplatesData: ((state: import('redux').EmptyObject & {
|
|
171
171
|
root: import('../modules').IRootState;
|
|
172
|
-
explorer: import('
|
|
172
|
+
explorer: import('../modules').ITreeItem[];
|
|
173
173
|
debugger: import('../modules').IDebuggerState;
|
|
174
|
-
settings: import('
|
|
174
|
+
settings: import('../modules').ISettingsState;
|
|
175
175
|
catalog: {
|
|
176
176
|
state: "loading";
|
|
177
177
|
} | {
|
|
@@ -181,7 +181,7 @@ export declare const selectTemplatesData: ((state: import('redux').EmptyObject &
|
|
|
181
181
|
state: "error";
|
|
182
182
|
error: string;
|
|
183
183
|
};
|
|
184
|
-
roles: import('
|
|
184
|
+
roles: import('../modules').IRolesState;
|
|
185
185
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
186
186
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
187
187
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -197,9 +197,9 @@ export declare const selectTemplatesData: ((state: import('redux').EmptyObject &
|
|
|
197
197
|
};
|
|
198
198
|
export declare const selectCraftedComponent: (id: string) => ((state: import('redux').EmptyObject & {
|
|
199
199
|
root: import('../modules').IRootState;
|
|
200
|
-
explorer: import('
|
|
200
|
+
explorer: import('../modules').ITreeItem[];
|
|
201
201
|
debugger: import('../modules').IDebuggerState;
|
|
202
|
-
settings: import('
|
|
202
|
+
settings: import('../modules').ISettingsState;
|
|
203
203
|
catalog: {
|
|
204
204
|
state: "loading";
|
|
205
205
|
} | {
|
|
@@ -209,7 +209,7 @@ export declare const selectCraftedComponent: (id: string) => ((state: import('re
|
|
|
209
209
|
state: "error";
|
|
210
210
|
error: string;
|
|
211
211
|
};
|
|
212
|
-
roles: import('
|
|
212
|
+
roles: import('../modules').IRolesState;
|
|
213
213
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
214
214
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
215
215
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -225,9 +225,9 @@ export declare const selectCraftedComponent: (id: string) => ((state: import('re
|
|
|
225
225
|
};
|
|
226
226
|
export declare const selectInspectorStateByType: (type: TInspectorType) => ((state: import('redux').EmptyObject & {
|
|
227
227
|
root: import('../modules').IRootState;
|
|
228
|
-
explorer: import('
|
|
228
|
+
explorer: import('../modules').ITreeItem[];
|
|
229
229
|
debugger: import('../modules').IDebuggerState;
|
|
230
|
-
settings: import('
|
|
230
|
+
settings: import('../modules').ISettingsState;
|
|
231
231
|
catalog: {
|
|
232
232
|
state: "loading";
|
|
233
233
|
} | {
|
|
@@ -237,7 +237,7 @@ export declare const selectInspectorStateByType: (type: TInspectorType) => ((sta
|
|
|
237
237
|
state: "error";
|
|
238
238
|
error: string;
|
|
239
239
|
};
|
|
240
|
-
roles: import('
|
|
240
|
+
roles: import('../modules').IRolesState;
|
|
241
241
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
242
242
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
243
243
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -253,9 +253,9 @@ export declare const selectInspectorStateByType: (type: TInspectorType) => ((sta
|
|
|
253
253
|
};
|
|
254
254
|
export declare const selectDatasourcesTheme: ((state: import('redux').EmptyObject & {
|
|
255
255
|
root: import('../modules').IRootState;
|
|
256
|
-
explorer: import('
|
|
256
|
+
explorer: import('../modules').ITreeItem[];
|
|
257
257
|
debugger: import('../modules').IDebuggerState;
|
|
258
|
-
settings: import('
|
|
258
|
+
settings: import('../modules').ISettingsState;
|
|
259
259
|
catalog: {
|
|
260
260
|
state: "loading";
|
|
261
261
|
} | {
|
|
@@ -265,7 +265,7 @@ export declare const selectDatasourcesTheme: ((state: import('redux').EmptyObjec
|
|
|
265
265
|
state: "error";
|
|
266
266
|
error: string;
|
|
267
267
|
};
|
|
268
|
-
roles: import('
|
|
268
|
+
roles: import('../modules').IRolesState;
|
|
269
269
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
270
270
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
271
271
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -281,9 +281,9 @@ export declare const selectDatasourcesTheme: ((state: import('redux').EmptyObjec
|
|
|
281
281
|
};
|
|
282
282
|
export declare const selectClipBoard: ((state: import('redux').EmptyObject & {
|
|
283
283
|
root: import('../modules').IRootState;
|
|
284
|
-
explorer: import('
|
|
284
|
+
explorer: import('../modules').ITreeItem[];
|
|
285
285
|
debugger: import('../modules').IDebuggerState;
|
|
286
|
-
settings: import('
|
|
286
|
+
settings: import('../modules').ISettingsState;
|
|
287
287
|
catalog: {
|
|
288
288
|
state: "loading";
|
|
289
289
|
} | {
|
|
@@ -293,7 +293,7 @@ export declare const selectClipBoard: ((state: import('redux').EmptyObject & {
|
|
|
293
293
|
state: "error";
|
|
294
294
|
error: string;
|
|
295
295
|
};
|
|
296
|
-
roles: import('
|
|
296
|
+
roles: import('../modules').IRolesState;
|
|
297
297
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
298
298
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
299
299
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -315,9 +315,9 @@ export declare const selectClipBoard: ((state: import('redux').EmptyObject & {
|
|
|
315
315
|
};
|
|
316
316
|
export declare const selectIsLoaded: ((state: import('redux').EmptyObject & {
|
|
317
317
|
root: import('../modules').IRootState;
|
|
318
|
-
explorer: import('
|
|
318
|
+
explorer: import('../modules').ITreeItem[];
|
|
319
319
|
debugger: import('../modules').IDebuggerState;
|
|
320
|
-
settings: import('
|
|
320
|
+
settings: import('../modules').ISettingsState;
|
|
321
321
|
catalog: {
|
|
322
322
|
state: "loading";
|
|
323
323
|
} | {
|
|
@@ -327,7 +327,7 @@ export declare const selectIsLoaded: ((state: import('redux').EmptyObject & {
|
|
|
327
327
|
state: "error";
|
|
328
328
|
error: string;
|
|
329
329
|
};
|
|
330
|
-
roles: import('
|
|
330
|
+
roles: import('../modules').IRolesState;
|
|
331
331
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
332
332
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
333
333
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -351,9 +351,9 @@ export declare const selectIsLoaded: ((state: import('redux').EmptyObject & {
|
|
|
351
351
|
};
|
|
352
352
|
export declare const selectWebformMetadataByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
353
353
|
root: import('../modules').IRootState;
|
|
354
|
-
explorer: import('
|
|
354
|
+
explorer: import('../modules').ITreeItem[];
|
|
355
355
|
debugger: import('../modules').IDebuggerState;
|
|
356
|
-
settings: import('
|
|
356
|
+
settings: import('../modules').ISettingsState;
|
|
357
357
|
catalog: {
|
|
358
358
|
state: "loading";
|
|
359
359
|
} | {
|
|
@@ -363,7 +363,7 @@ export declare const selectWebformMetadataByPath: (tabPath: string) => ((state:
|
|
|
363
363
|
state: "error";
|
|
364
364
|
error: string;
|
|
365
365
|
};
|
|
366
|
-
roles: import('
|
|
366
|
+
roles: import('../modules').IRolesState;
|
|
367
367
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
368
368
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
369
369
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -395,9 +395,9 @@ export declare const selectWebformMetadataByPath: (tabPath: string) => ((state:
|
|
|
395
395
|
};
|
|
396
396
|
export declare const selectI18nCurrent: ((state: import('redux').EmptyObject & {
|
|
397
397
|
root: import('../modules').IRootState;
|
|
398
|
-
explorer: import('
|
|
398
|
+
explorer: import('../modules').ITreeItem[];
|
|
399
399
|
debugger: import('../modules').IDebuggerState;
|
|
400
|
-
settings: import('
|
|
400
|
+
settings: import('../modules').ISettingsState;
|
|
401
401
|
catalog: {
|
|
402
402
|
state: "loading";
|
|
403
403
|
} | {
|
|
@@ -407,7 +407,7 @@ export declare const selectI18nCurrent: ((state: import('redux').EmptyObject & {
|
|
|
407
407
|
state: "error";
|
|
408
408
|
error: string;
|
|
409
409
|
};
|
|
410
|
-
roles: import('
|
|
410
|
+
roles: import('../modules').IRolesState;
|
|
411
411
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
412
412
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
413
413
|
savedConditions: import('../modules').ISavedConditionsState;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ws-ui/store",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.1",
|
|
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.13.
|
|
25
|
-
"@ws-ui/shared": "1.13.
|
|
24
|
+
"@ws-ui/icons": "1.13.1",
|
|
25
|
+
"@ws-ui/shared": "1.13.1",
|
|
26
26
|
"lodash": "^4.17.21",
|
|
27
27
|
"minimatch": "^10.0.1",
|
|
28
28
|
"react": "^17.0.2",
|