@ws-ui/store 1.12.3 → 1.13.0-dev.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 +50 -50
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +10351 -11043
- 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 +3 -11
- package/dist/modules/explorer/types.d.ts +1 -26
- package/dist/modules/explorer/utils.d.ts +2 -2
- package/dist/modules/index.d.ts +3 -3
- package/dist/modules/modals/thunks.d.ts +1 -9
- package/dist/modules/roles/adapter.d.ts +1 -180
- package/dist/modules/roles/index.d.ts +1 -2
- package/dist/modules/roles/reducer.d.ts +1 -1
- package/dist/modules/roles/thunks.d.ts +1 -2
- package/dist/modules/settings/index.d.ts +1 -1
- package/dist/modules/settings/reducer.d.ts +3 -19
- package/dist/modules/settings/types.d.ts +2 -6
- 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 +0 -1
- package/dist/modules/webforms/reducer.d.ts +1 -2
- 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 +181 -89
- 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 +18 -23
- package/dist/selectors/styles.d.ts +15 -16
- package/dist/selectors/tabs.d.ts +15 -15
- package/dist/selectors/webforms.d.ts +42 -42
- package/package.json +3 -3
- package/dist/modules/roles/types.d.ts +0 -108
- package/dist/modules/webforms/private.d.ts +0 -3
|
@@ -1,9 +1,4 @@
|
|
|
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;
|
|
7
2
|
/**
|
|
8
3
|
* Returns the list of declared states in the current tab.
|
|
9
4
|
* @param tabPath the current tab path.
|
|
@@ -12,9 +7,9 @@ export declare const isBaseState: (state: WebformState) => boolean;
|
|
|
12
7
|
*/
|
|
13
8
|
export declare const selectWebformStatesByPath: (tabPath: string, exclude?: string[]) => ((state: import('redux').EmptyObject & {
|
|
14
9
|
root: import('../modules').IRootState;
|
|
15
|
-
explorer: import('
|
|
10
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
16
11
|
debugger: import('../modules').IDebuggerState;
|
|
17
|
-
settings: import('
|
|
12
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
18
13
|
catalog: {
|
|
19
14
|
state: "loading";
|
|
20
15
|
} | {
|
|
@@ -24,7 +19,7 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
24
19
|
state: "error";
|
|
25
20
|
error: string;
|
|
26
21
|
};
|
|
27
|
-
roles: import('
|
|
22
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
28
23
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
29
24
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
30
25
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -64,9 +59,9 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
64
59
|
*/
|
|
65
60
|
export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?: string[]) => ((state: import('redux').EmptyObject & {
|
|
66
61
|
root: import('../modules').IRootState;
|
|
67
|
-
explorer: import('
|
|
62
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
68
63
|
debugger: import('../modules').IDebuggerState;
|
|
69
|
-
settings: import('
|
|
64
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
70
65
|
catalog: {
|
|
71
66
|
state: "loading";
|
|
72
67
|
} | {
|
|
@@ -76,7 +71,7 @@ export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?
|
|
|
76
71
|
state: "error";
|
|
77
72
|
error: string;
|
|
78
73
|
};
|
|
79
|
-
roles: import('
|
|
74
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
80
75
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
81
76
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
82
77
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -97,9 +92,9 @@ export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?
|
|
|
97
92
|
*/
|
|
98
93
|
export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
99
94
|
root: import('../modules').IRootState;
|
|
100
|
-
explorer: import('
|
|
95
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
101
96
|
debugger: import('../modules').IDebuggerState;
|
|
102
|
-
settings: import('
|
|
97
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
103
98
|
catalog: {
|
|
104
99
|
state: "loading";
|
|
105
100
|
} | {
|
|
@@ -109,7 +104,7 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
|
|
|
109
104
|
state: "error";
|
|
110
105
|
error: string;
|
|
111
106
|
};
|
|
112
|
-
roles: import('
|
|
107
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
113
108
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
114
109
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
115
110
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -143,9 +138,9 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
|
|
|
143
138
|
};
|
|
144
139
|
export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
145
140
|
root: import('../modules').IRootState;
|
|
146
|
-
explorer: import('
|
|
141
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
147
142
|
debugger: import('../modules').IDebuggerState;
|
|
148
|
-
settings: import('
|
|
143
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
149
144
|
catalog: {
|
|
150
145
|
state: "loading";
|
|
151
146
|
} | {
|
|
@@ -155,7 +150,7 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
155
150
|
state: "error";
|
|
156
151
|
error: string;
|
|
157
152
|
};
|
|
158
|
-
roles: import('
|
|
153
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
159
154
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
160
155
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
161
156
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -192,9 +187,9 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
192
187
|
*/
|
|
193
188
|
export declare const selectSavedConditions: ((state: import('redux').EmptyObject & {
|
|
194
189
|
root: import('../modules').IRootState;
|
|
195
|
-
explorer: import('
|
|
190
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
196
191
|
debugger: import('../modules').IDebuggerState;
|
|
197
|
-
settings: import('
|
|
192
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
198
193
|
catalog: {
|
|
199
194
|
state: "loading";
|
|
200
195
|
} | {
|
|
@@ -204,7 +199,7 @@ export declare const selectSavedConditions: ((state: import('redux').EmptyObject
|
|
|
204
199
|
state: "error";
|
|
205
200
|
error: string;
|
|
206
201
|
};
|
|
207
|
-
roles: import('
|
|
202
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
208
203
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
209
204
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
210
205
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -215,9 +210,9 @@ export declare const selectSavedConditions: ((state: import('redux').EmptyObject
|
|
|
215
210
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
216
211
|
}) => import('@ws-ui/shared').WebformStateCondition[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
217
212
|
root: import('../modules').IRootState;
|
|
218
|
-
explorer: import('
|
|
213
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
219
214
|
debugger: import('../modules').IDebuggerState;
|
|
220
|
-
settings: import('
|
|
215
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
221
216
|
catalog: {
|
|
222
217
|
state: "loading";
|
|
223
218
|
} | {
|
|
@@ -227,7 +222,7 @@ export declare const selectSavedConditions: ((state: import('redux').EmptyObject
|
|
|
227
222
|
state: "error";
|
|
228
223
|
error: string;
|
|
229
224
|
};
|
|
230
|
-
roles: import('
|
|
225
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
231
226
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
232
227
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
233
228
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { EWebFormStyleClassScope, IWebFormStyleClass, ITab } from '@ws-ui/shared';
|
|
2
|
-
export declare const THEME_CLASSES: string[];
|
|
3
2
|
export declare const selectWebformStylesByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
4
3
|
root: import('../modules').IRootState;
|
|
5
|
-
explorer: import('
|
|
4
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
6
5
|
debugger: import('../modules').IDebuggerState;
|
|
7
|
-
settings: import('
|
|
6
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
8
7
|
catalog: {
|
|
9
8
|
state: "loading";
|
|
10
9
|
} | {
|
|
@@ -14,7 +13,7 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
|
|
|
14
13
|
state: "error";
|
|
15
14
|
error: string;
|
|
16
15
|
};
|
|
17
|
-
roles: import('
|
|
16
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
18
17
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
19
18
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
20
19
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -48,9 +47,9 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
|
|
|
48
47
|
};
|
|
49
48
|
export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleClassScope[]) => ((state: import('redux').EmptyObject & {
|
|
50
49
|
root: import('../modules').IRootState;
|
|
51
|
-
explorer: import('
|
|
50
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
52
51
|
debugger: import('../modules').IDebuggerState;
|
|
53
|
-
settings: import('
|
|
52
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
54
53
|
catalog: {
|
|
55
54
|
state: "loading";
|
|
56
55
|
} | {
|
|
@@ -60,7 +59,7 @@ export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleCla
|
|
|
60
59
|
state: "error";
|
|
61
60
|
error: string;
|
|
62
61
|
};
|
|
63
|
-
roles: import('
|
|
62
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
64
63
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
65
64
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
66
65
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -76,9 +75,9 @@ export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleCla
|
|
|
76
75
|
};
|
|
77
76
|
export declare const selectCSSClassesByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
78
77
|
root: import('../modules').IRootState;
|
|
79
|
-
explorer: import('
|
|
78
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
80
79
|
debugger: import('../modules').IDebuggerState;
|
|
81
|
-
settings: import('
|
|
80
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
82
81
|
catalog: {
|
|
83
82
|
state: "loading";
|
|
84
83
|
} | {
|
|
@@ -88,7 +87,7 @@ export declare const selectCSSClassesByPath: (path: string) => ((state: import('
|
|
|
88
87
|
state: "error";
|
|
89
88
|
error: string;
|
|
90
89
|
};
|
|
91
|
-
roles: import('
|
|
90
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
92
91
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
93
92
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
94
93
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -104,9 +103,9 @@ export declare const selectCSSClassesByPath: (path: string) => ((state: import('
|
|
|
104
103
|
};
|
|
105
104
|
export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
106
105
|
root: import('../modules').IRootState;
|
|
107
|
-
explorer: import('
|
|
106
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
108
107
|
debugger: import('../modules').IDebuggerState;
|
|
109
|
-
settings: import('
|
|
108
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
110
109
|
catalog: {
|
|
111
110
|
state: "loading";
|
|
112
111
|
} | {
|
|
@@ -116,7 +115,7 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
|
116
115
|
state: "error";
|
|
117
116
|
error: string;
|
|
118
117
|
};
|
|
119
|
-
roles: import('
|
|
118
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
120
119
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
121
120
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
122
121
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -137,9 +136,9 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
|
137
136
|
origin?: string;
|
|
138
137
|
}[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
139
138
|
root: import('../modules').IRootState;
|
|
140
|
-
explorer: import('
|
|
139
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
141
140
|
debugger: import('../modules').IDebuggerState;
|
|
142
|
-
settings: import('
|
|
141
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
143
142
|
catalog: {
|
|
144
143
|
state: "loading";
|
|
145
144
|
} | {
|
|
@@ -149,7 +148,7 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
|
149
148
|
state: "error";
|
|
150
149
|
error: string;
|
|
151
150
|
};
|
|
152
|
-
roles: import('
|
|
151
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
153
152
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
154
153
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
155
154
|
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('@ws-ui/shared').ITreeItem[];
|
|
4
4
|
debugger: import('..').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
62
62
|
debugger: import('..').IDebuggerState;
|
|
63
|
-
settings: import('
|
|
63
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
126
126
|
debugger: import('..').IDebuggerState;
|
|
127
|
-
settings: import('
|
|
127
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
180
180
|
debugger: import('..').IDebuggerState;
|
|
181
|
-
settings: import('
|
|
181
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
232
232
|
debugger: import('..').IDebuggerState;
|
|
233
|
-
settings: import('
|
|
233
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
5
5
|
debugger: import('../modules').IDebuggerState;
|
|
6
|
-
settings: import('
|
|
6
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
33
33
|
debugger: import('../modules').IDebuggerState;
|
|
34
|
-
settings: import('
|
|
34
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
61
61
|
debugger: import('../modules').IDebuggerState;
|
|
62
|
-
settings: import('
|
|
62
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
89
89
|
debugger: import('../modules').IDebuggerState;
|
|
90
|
-
settings: import('
|
|
90
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
117
117
|
debugger: import('../modules').IDebuggerState;
|
|
118
|
-
settings: import('
|
|
118
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
145
145
|
debugger: import('../modules').IDebuggerState;
|
|
146
|
-
settings: import('
|
|
146
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
173
173
|
debugger: import('../modules').IDebuggerState;
|
|
174
|
-
settings: import('
|
|
174
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
201
201
|
debugger: import('../modules').IDebuggerState;
|
|
202
|
-
settings: import('
|
|
202
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
229
229
|
debugger: import('../modules').IDebuggerState;
|
|
230
|
-
settings: import('
|
|
230
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
257
257
|
debugger: import('../modules').IDebuggerState;
|
|
258
|
-
settings: import('
|
|
258
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
285
285
|
debugger: import('../modules').IDebuggerState;
|
|
286
|
-
settings: import('
|
|
286
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
319
319
|
debugger: import('../modules').IDebuggerState;
|
|
320
|
-
settings: import('
|
|
320
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
355
355
|
debugger: import('../modules').IDebuggerState;
|
|
356
|
-
settings: import('
|
|
356
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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('@ws-ui/shared').ITreeItem[];
|
|
399
399
|
debugger: import('../modules').IDebuggerState;
|
|
400
|
-
settings: import('
|
|
400
|
+
settings: import('@ws-ui/shared').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('@ws-ui/shared').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.
|
|
3
|
+
"version": "1.13.0-dev.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.
|
|
25
|
-
"@ws-ui/shared": "1.
|
|
24
|
+
"@ws-ui/icons": "1.13.0",
|
|
25
|
+
"@ws-ui/shared": "1.13.0-dev.1",
|
|
26
26
|
"lodash": "^4.17.21",
|
|
27
27
|
"minimatch": "^10.0.1",
|
|
28
28
|
"react": "^17.0.2",
|