@ws-ui/store 0.3.13 → 1.1.0
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/README.md +6 -2
- package/dist/index.cjs.js +57 -68
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +7900 -7883
- package/dist/index.es.js.map +1 -1
- package/dist/modules/catalog/reducer.d.ts +3 -3
- package/dist/modules/catalog/thunks.d.ts +1 -1
- package/dist/modules/debugger/reducer.d.ts +40 -40
- package/dist/modules/debugger/thunks.d.ts +2 -2
- package/dist/modules/explorer/reducer.d.ts +9 -9
- package/dist/modules/explorer/thunks.d.ts +49 -36
- package/dist/modules/modals/reducer.d.ts +5 -5
- package/dist/modules/modals/thunks.d.ts +1 -1
- package/dist/modules/model/helpers.d.ts +1 -1
- package/dist/modules/model/selectors.d.ts +1 -0
- package/dist/modules/model/subjects.d.ts +1 -1
- package/dist/modules/model/thunks.d.ts +8 -8
- package/dist/modules/model/utils.d.ts +3 -3
- package/dist/modules/roles/reducer.d.ts +22 -12
- package/dist/modules/roles/thunks.d.ts +4 -3
- package/dist/modules/root/reducer.d.ts +56 -47
- package/dist/modules/root/thunks.d.ts +27 -27
- package/dist/modules/settings/thunks.d.ts +2 -2
- package/dist/modules/shared-conditions/reducer.d.ts +10 -10
- package/dist/modules/shared-conditions/thunks.d.ts +1 -1
- package/dist/modules/shared-css/reducer.d.ts +4 -4
- package/dist/modules/shared-css/thunks.d.ts +1 -1
- package/dist/modules/shared-datasources/index.d.ts +1 -0
- package/dist/modules/shared-datasources/reducer.d.ts +1 -1
- package/dist/modules/shared-datasources/thunks.d.ts +10 -10
- package/dist/modules/shared-datasources/utils.d.ts +6 -0
- package/dist/modules/tabs/selectors.d.ts +3 -3
- package/dist/modules/webforms/datasources.adapter.d.ts +1 -1
- package/dist/modules/webforms/reducer.d.ts +10 -10
- package/dist/modules/webforms/thunks.d.ts +102 -15
- package/dist/package.json +61 -0
- package/dist/selectors/catalog.d.ts +1 -0
- package/dist/selectors/common.d.ts +44 -44
- package/dist/selectors/components.d.ts +8 -8
- package/dist/selectors/datasources.d.ts +123 -75
- package/dist/selectors/debugger.d.ts +9 -9
- package/dist/selectors/explorer.d.ts +369 -327
- package/dist/selectors/modals.d.ts +12 -12
- package/dist/selectors/roles.d.ts +104 -102
- package/dist/selectors/settings.d.ts +136 -136
- package/dist/selectors/states.d.ts +3 -3
- package/dist/selectors/styles.d.ts +60 -60
- package/dist/selectors/tabs.d.ts +5 -3
- package/dist/selectors/webforms.d.ts +157 -157
- package/dist/store.d.ts +1 -1
- package/package.json +10 -17
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ITab } from '@ws-ui/shared';
|
|
2
2
|
|
|
3
3
|
export declare const selectRoot: ((state: import('redux').EmptyObject & {
|
|
4
|
-
root: import('
|
|
5
|
-
explorer: import('
|
|
6
|
-
debugger: import('
|
|
7
|
-
settings: import('
|
|
4
|
+
root: import('../modules').IRootState;
|
|
5
|
+
explorer: import('../modules').ITreeItem[];
|
|
6
|
+
debugger: import('../modules').IDebuggerState;
|
|
7
|
+
settings: import('../modules').ISettingsState;
|
|
8
8
|
catalog: {
|
|
9
9
|
state: "loading";
|
|
10
10
|
} | {
|
|
@@ -14,23 +14,23 @@ export declare const selectRoot: ((state: import('redux').EmptyObject & {
|
|
|
14
14
|
state: "error";
|
|
15
15
|
error: string;
|
|
16
16
|
};
|
|
17
|
-
roles: import('
|
|
18
|
-
sharedDatasources: import('
|
|
19
|
-
savedConditions: import('
|
|
20
|
-
webforms: import('
|
|
21
|
-
modals: import('
|
|
22
|
-
sharedCSS: import('
|
|
23
|
-
model: import('
|
|
24
|
-
}) => import('
|
|
17
|
+
roles: import('../modules').IRolesState;
|
|
18
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
19
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
20
|
+
webforms: import('../modules').IWebformEditorState;
|
|
21
|
+
modals: import('../modules').IModalsState;
|
|
22
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
23
|
+
model: import('../modules').IModelState;
|
|
24
|
+
}) => import('../modules').IRootState) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => import('../modules').IRootState, {
|
|
25
25
|
clearCache: () => void;
|
|
26
26
|
}> & {
|
|
27
27
|
clearCache: () => void;
|
|
28
28
|
};
|
|
29
29
|
export declare const selectTabs: ((state: import('redux').EmptyObject & {
|
|
30
|
-
root: import('
|
|
31
|
-
explorer: import('
|
|
32
|
-
debugger: import('
|
|
33
|
-
settings: import('
|
|
30
|
+
root: import('../modules').IRootState;
|
|
31
|
+
explorer: import('../modules').ITreeItem[];
|
|
32
|
+
debugger: import('../modules').IDebuggerState;
|
|
33
|
+
settings: import('../modules').ISettingsState;
|
|
34
34
|
catalog: {
|
|
35
35
|
state: "loading";
|
|
36
36
|
} | {
|
|
@@ -40,17 +40,17 @@ export declare const selectTabs: ((state: import('redux').EmptyObject & {
|
|
|
40
40
|
state: "error";
|
|
41
41
|
error: string;
|
|
42
42
|
};
|
|
43
|
-
roles: import('
|
|
44
|
-
sharedDatasources: import('
|
|
45
|
-
savedConditions: import('
|
|
46
|
-
webforms: import('
|
|
47
|
-
modals: import('
|
|
48
|
-
sharedCSS: import('
|
|
49
|
-
model: import('
|
|
43
|
+
roles: import('../modules').IRolesState;
|
|
44
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
45
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
46
|
+
webforms: import('../modules').IWebformEditorState;
|
|
47
|
+
modals: import('../modules').IModalsState;
|
|
48
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
49
|
+
model: import('../modules').IModelState;
|
|
50
50
|
}) => ITab<any, Partial<{
|
|
51
51
|
initialLineInfo: {
|
|
52
52
|
line: number;
|
|
53
|
-
offset?: number;
|
|
53
|
+
offset?: number | undefined;
|
|
54
54
|
lastModification: number;
|
|
55
55
|
};
|
|
56
56
|
initialSelectionInfo: {
|
|
@@ -63,10 +63,10 @@ export declare const selectTabs: ((state: import('redux').EmptyObject & {
|
|
|
63
63
|
editor: import('@ws-ui/shared').IEditor;
|
|
64
64
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
65
65
|
kind: string;
|
|
66
|
-
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
66
|
+
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
67
67
|
initialLineInfo: {
|
|
68
68
|
line: number;
|
|
69
|
-
offset?: number;
|
|
69
|
+
offset?: number | undefined;
|
|
70
70
|
lastModification: number;
|
|
71
71
|
};
|
|
72
72
|
initialSelectionInfo: {
|
|
@@ -85,10 +85,10 @@ export declare const selectTabs: ((state: import('redux').EmptyObject & {
|
|
|
85
85
|
clearCache: () => void;
|
|
86
86
|
};
|
|
87
87
|
export declare const selectActiveTab: ((state: import('redux').EmptyObject & {
|
|
88
|
-
root: import('
|
|
89
|
-
explorer: import('
|
|
90
|
-
debugger: import('
|
|
91
|
-
settings: import('
|
|
88
|
+
root: import('../modules').IRootState;
|
|
89
|
+
explorer: import('../modules').ITreeItem[];
|
|
90
|
+
debugger: import('../modules').IDebuggerState;
|
|
91
|
+
settings: import('../modules').ISettingsState;
|
|
92
92
|
catalog: {
|
|
93
93
|
state: "loading";
|
|
94
94
|
} | {
|
|
@@ -98,23 +98,23 @@ export declare const selectActiveTab: ((state: import('redux').EmptyObject & {
|
|
|
98
98
|
state: "error";
|
|
99
99
|
error: string;
|
|
100
100
|
};
|
|
101
|
-
roles: import('
|
|
102
|
-
sharedDatasources: import('
|
|
103
|
-
savedConditions: import('
|
|
104
|
-
webforms: import('
|
|
105
|
-
modals: import('
|
|
106
|
-
sharedCSS: import('
|
|
107
|
-
model: import('
|
|
108
|
-
}) => string) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
101
|
+
roles: import('../modules').IRolesState;
|
|
102
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
103
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
104
|
+
webforms: import('../modules').IWebformEditorState;
|
|
105
|
+
modals: import('../modules').IModalsState;
|
|
106
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
107
|
+
model: import('../modules').IModelState;
|
|
108
|
+
}) => string) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => string, {
|
|
109
109
|
clearCache: () => void;
|
|
110
110
|
}> & {
|
|
111
111
|
clearCache: () => void;
|
|
112
112
|
};
|
|
113
113
|
export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
|
|
114
|
-
root: import('
|
|
115
|
-
explorer: import('
|
|
116
|
-
debugger: import('
|
|
117
|
-
settings: import('
|
|
114
|
+
root: import('../modules').IRootState;
|
|
115
|
+
explorer: import('../modules').ITreeItem[];
|
|
116
|
+
debugger: import('../modules').IDebuggerState;
|
|
117
|
+
settings: import('../modules').ISettingsState;
|
|
118
118
|
catalog: {
|
|
119
119
|
state: "loading";
|
|
120
120
|
} | {
|
|
@@ -124,17 +124,17 @@ export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
|
|
|
124
124
|
state: "error";
|
|
125
125
|
error: string;
|
|
126
126
|
};
|
|
127
|
-
roles: import('
|
|
128
|
-
sharedDatasources: import('
|
|
129
|
-
savedConditions: import('
|
|
130
|
-
webforms: import('
|
|
131
|
-
modals: import('
|
|
132
|
-
sharedCSS: import('
|
|
133
|
-
model: import('
|
|
127
|
+
roles: import('../modules').IRolesState;
|
|
128
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
129
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
130
|
+
webforms: import('../modules').IWebformEditorState;
|
|
131
|
+
modals: import('../modules').IModalsState;
|
|
132
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
133
|
+
model: import('../modules').IModelState;
|
|
134
134
|
}) => ITab<any, Partial<{
|
|
135
135
|
initialLineInfo: {
|
|
136
136
|
line: number;
|
|
137
|
-
offset?: number;
|
|
137
|
+
offset?: number | undefined;
|
|
138
138
|
lastModification: number;
|
|
139
139
|
};
|
|
140
140
|
initialSelectionInfo: {
|
|
@@ -147,10 +147,10 @@ export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
|
|
|
147
147
|
editor: import('@ws-ui/shared').IEditor;
|
|
148
148
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
149
149
|
kind: string;
|
|
150
|
-
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
150
|
+
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
151
151
|
initialLineInfo: {
|
|
152
152
|
line: number;
|
|
153
|
-
offset?: number;
|
|
153
|
+
offset?: number | undefined;
|
|
154
154
|
lastModification: number;
|
|
155
155
|
};
|
|
156
156
|
initialSelectionInfo: {
|
|
@@ -169,10 +169,10 @@ export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
|
|
|
169
169
|
clearCache: () => void;
|
|
170
170
|
};
|
|
171
171
|
export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
|
|
172
|
-
root: import('
|
|
173
|
-
explorer: import('
|
|
174
|
-
debugger: import('
|
|
175
|
-
settings: import('
|
|
172
|
+
root: import('../modules').IRootState;
|
|
173
|
+
explorer: import('../modules').ITreeItem[];
|
|
174
|
+
debugger: import('../modules').IDebuggerState;
|
|
175
|
+
settings: import('../modules').ISettingsState;
|
|
176
176
|
catalog: {
|
|
177
177
|
state: "loading";
|
|
178
178
|
} | {
|
|
@@ -182,17 +182,17 @@ export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
|
|
|
182
182
|
state: "error";
|
|
183
183
|
error: string;
|
|
184
184
|
};
|
|
185
|
-
roles: import('
|
|
186
|
-
sharedDatasources: import('
|
|
187
|
-
savedConditions: import('
|
|
188
|
-
webforms: import('
|
|
189
|
-
modals: import('
|
|
190
|
-
sharedCSS: import('
|
|
191
|
-
model: import('
|
|
185
|
+
roles: import('../modules').IRolesState;
|
|
186
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
187
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
188
|
+
webforms: import('../modules').IWebformEditorState;
|
|
189
|
+
modals: import('../modules').IModalsState;
|
|
190
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
191
|
+
model: import('../modules').IModelState;
|
|
192
192
|
}) => ITab<any, Partial<{
|
|
193
193
|
initialLineInfo: {
|
|
194
194
|
line: number;
|
|
195
|
-
offset?: number;
|
|
195
|
+
offset?: number | undefined;
|
|
196
196
|
lastModification: number;
|
|
197
197
|
};
|
|
198
198
|
initialSelectionInfo: {
|
|
@@ -205,10 +205,10 @@ export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
|
|
|
205
205
|
editor: import('@ws-ui/shared').IEditor;
|
|
206
206
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
207
207
|
kind: string;
|
|
208
|
-
}>> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
208
|
+
}>> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
209
209
|
initialLineInfo: {
|
|
210
210
|
line: number;
|
|
211
|
-
offset?: number;
|
|
211
|
+
offset?: number | undefined;
|
|
212
212
|
lastModification: number;
|
|
213
213
|
};
|
|
214
214
|
initialSelectionInfo: {
|
|
@@ -227,10 +227,10 @@ export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
|
|
|
227
227
|
clearCache: () => void;
|
|
228
228
|
};
|
|
229
229
|
export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject & {
|
|
230
|
-
root: import('
|
|
231
|
-
explorer: import('
|
|
232
|
-
debugger: import('
|
|
233
|
-
settings: import('
|
|
230
|
+
root: import('../modules').IRootState;
|
|
231
|
+
explorer: import('../modules').ITreeItem[];
|
|
232
|
+
debugger: import('../modules').IDebuggerState;
|
|
233
|
+
settings: import('../modules').ISettingsState;
|
|
234
234
|
catalog: {
|
|
235
235
|
state: "loading";
|
|
236
236
|
} | {
|
|
@@ -240,17 +240,17 @@ export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject &
|
|
|
240
240
|
state: "error";
|
|
241
241
|
error: string;
|
|
242
242
|
};
|
|
243
|
-
roles: import('
|
|
244
|
-
sharedDatasources: import('
|
|
245
|
-
savedConditions: import('
|
|
246
|
-
webforms: import('
|
|
247
|
-
modals: import('
|
|
248
|
-
sharedCSS: import('
|
|
249
|
-
model: import('
|
|
243
|
+
roles: import('../modules').IRolesState;
|
|
244
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
245
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
246
|
+
webforms: import('../modules').IWebformEditorState;
|
|
247
|
+
modals: import('../modules').IModalsState;
|
|
248
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
249
|
+
model: import('../modules').IModelState;
|
|
250
250
|
}) => ITab<any, Partial<{
|
|
251
251
|
initialLineInfo: {
|
|
252
252
|
line: number;
|
|
253
|
-
offset?: number;
|
|
253
|
+
offset?: number | undefined;
|
|
254
254
|
lastModification: number;
|
|
255
255
|
};
|
|
256
256
|
initialSelectionInfo: {
|
|
@@ -263,10 +263,10 @@ export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject &
|
|
|
263
263
|
editor: import('@ws-ui/shared').IEditor;
|
|
264
264
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
265
265
|
kind: string;
|
|
266
|
-
}>> | null) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
266
|
+
}>> | null) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
267
267
|
initialLineInfo: {
|
|
268
268
|
line: number;
|
|
269
|
-
offset?: number;
|
|
269
|
+
offset?: number | undefined;
|
|
270
270
|
lastModification: number;
|
|
271
271
|
};
|
|
272
272
|
initialSelectionInfo: {
|
|
@@ -285,10 +285,10 @@ export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject &
|
|
|
285
285
|
clearCache: () => void;
|
|
286
286
|
};
|
|
287
287
|
export declare const selectPreviewedWebformsPaths: ((state: import('redux').EmptyObject & {
|
|
288
|
-
root: import('
|
|
289
|
-
explorer: import('
|
|
290
|
-
debugger: import('
|
|
291
|
-
settings: import('
|
|
288
|
+
root: import('../modules').IRootState;
|
|
289
|
+
explorer: import('../modules').ITreeItem[];
|
|
290
|
+
debugger: import('../modules').IDebuggerState;
|
|
291
|
+
settings: import('../modules').ISettingsState;
|
|
292
292
|
catalog: {
|
|
293
293
|
state: "loading";
|
|
294
294
|
} | {
|
|
@@ -298,17 +298,17 @@ export declare const selectPreviewedWebformsPaths: ((state: import('redux').Empt
|
|
|
298
298
|
state: "error";
|
|
299
299
|
error: string;
|
|
300
300
|
};
|
|
301
|
-
roles: import('
|
|
302
|
-
sharedDatasources: import('
|
|
303
|
-
savedConditions: import('
|
|
304
|
-
webforms: import('
|
|
305
|
-
modals: import('
|
|
306
|
-
sharedCSS: import('
|
|
307
|
-
model: import('
|
|
301
|
+
roles: import('../modules').IRolesState;
|
|
302
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
303
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
304
|
+
webforms: import('../modules').IWebformEditorState;
|
|
305
|
+
modals: import('../modules').IModalsState;
|
|
306
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
307
|
+
model: import('../modules').IModelState;
|
|
308
308
|
}) => string[]) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
309
309
|
initialLineInfo: {
|
|
310
310
|
line: number;
|
|
311
|
-
offset?: number;
|
|
311
|
+
offset?: number | undefined;
|
|
312
312
|
lastModification: number;
|
|
313
313
|
};
|
|
314
314
|
initialSelectionInfo: {
|
|
@@ -327,10 +327,10 @@ export declare const selectPreviewedWebformsPaths: ((state: import('redux').Empt
|
|
|
327
327
|
clearCache: () => void;
|
|
328
328
|
};
|
|
329
329
|
export declare const selectHasTabs: ((state: import('redux').EmptyObject & {
|
|
330
|
-
root: import('
|
|
331
|
-
explorer: import('
|
|
332
|
-
debugger: import('
|
|
333
|
-
settings: import('
|
|
330
|
+
root: import('../modules').IRootState;
|
|
331
|
+
explorer: import('../modules').ITreeItem[];
|
|
332
|
+
debugger: import('../modules').IDebuggerState;
|
|
333
|
+
settings: import('../modules').ISettingsState;
|
|
334
334
|
catalog: {
|
|
335
335
|
state: "loading";
|
|
336
336
|
} | {
|
|
@@ -340,17 +340,17 @@ export declare const selectHasTabs: ((state: import('redux').EmptyObject & {
|
|
|
340
340
|
state: "error";
|
|
341
341
|
error: string;
|
|
342
342
|
};
|
|
343
|
-
roles: import('
|
|
344
|
-
sharedDatasources: import('
|
|
345
|
-
savedConditions: import('
|
|
346
|
-
webforms: import('
|
|
347
|
-
modals: import('
|
|
348
|
-
sharedCSS: import('
|
|
349
|
-
model: import('
|
|
343
|
+
roles: import('../modules').IRolesState;
|
|
344
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
345
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
346
|
+
webforms: import('../modules').IWebformEditorState;
|
|
347
|
+
modals: import('../modules').IModalsState;
|
|
348
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
349
|
+
model: import('../modules').IModelState;
|
|
350
350
|
}) => boolean) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
351
351
|
initialLineInfo: {
|
|
352
352
|
line: number;
|
|
353
|
-
offset?: number;
|
|
353
|
+
offset?: number | undefined;
|
|
354
354
|
lastModification: number;
|
|
355
355
|
};
|
|
356
356
|
initialSelectionInfo: {
|
|
@@ -369,10 +369,10 @@ export declare const selectHasTabs: ((state: import('redux').EmptyObject & {
|
|
|
369
369
|
clearCache: () => void;
|
|
370
370
|
};
|
|
371
371
|
export declare const selectTabByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
372
|
-
root: import('
|
|
373
|
-
explorer: import('
|
|
374
|
-
debugger: import('
|
|
375
|
-
settings: import('
|
|
372
|
+
root: import('../modules').IRootState;
|
|
373
|
+
explorer: import('../modules').ITreeItem[];
|
|
374
|
+
debugger: import('../modules').IDebuggerState;
|
|
375
|
+
settings: import('../modules').ISettingsState;
|
|
376
376
|
catalog: {
|
|
377
377
|
state: "loading";
|
|
378
378
|
} | {
|
|
@@ -382,17 +382,17 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import('redu
|
|
|
382
382
|
state: "error";
|
|
383
383
|
error: string;
|
|
384
384
|
};
|
|
385
|
-
roles: import('
|
|
386
|
-
sharedDatasources: import('
|
|
387
|
-
savedConditions: import('
|
|
388
|
-
webforms: import('
|
|
389
|
-
modals: import('
|
|
390
|
-
sharedCSS: import('
|
|
391
|
-
model: import('
|
|
385
|
+
roles: import('../modules').IRolesState;
|
|
386
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
387
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
388
|
+
webforms: import('../modules').IWebformEditorState;
|
|
389
|
+
modals: import('../modules').IModalsState;
|
|
390
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
391
|
+
model: import('../modules').IModelState;
|
|
392
392
|
}) => ITab<any, Partial<{
|
|
393
393
|
initialLineInfo: {
|
|
394
394
|
line: number;
|
|
395
|
-
offset?: number;
|
|
395
|
+
offset?: number | undefined;
|
|
396
396
|
lastModification: number;
|
|
397
397
|
};
|
|
398
398
|
initialSelectionInfo: {
|
|
@@ -405,10 +405,10 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import('redu
|
|
|
405
405
|
editor: import('@ws-ui/shared').IEditor;
|
|
406
406
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
407
407
|
kind: string;
|
|
408
|
-
}>> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
408
|
+
}>> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
409
409
|
initialLineInfo: {
|
|
410
410
|
line: number;
|
|
411
|
-
offset?: number;
|
|
411
|
+
offset?: number | undefined;
|
|
412
412
|
lastModification: number;
|
|
413
413
|
};
|
|
414
414
|
initialSelectionInfo: {
|
|
@@ -426,11 +426,53 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import('redu
|
|
|
426
426
|
}> & {
|
|
427
427
|
clearCache: () => void;
|
|
428
428
|
};
|
|
429
|
+
export declare const selectTabNameByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
430
|
+
root: import('../modules').IRootState;
|
|
431
|
+
explorer: import('../modules').ITreeItem[];
|
|
432
|
+
debugger: import('../modules').IDebuggerState;
|
|
433
|
+
settings: import('../modules').ISettingsState;
|
|
434
|
+
catalog: {
|
|
435
|
+
state: "loading";
|
|
436
|
+
} | {
|
|
437
|
+
state: "loaded";
|
|
438
|
+
model: datasources.IEnhancedCatalog;
|
|
439
|
+
} | {
|
|
440
|
+
state: "error";
|
|
441
|
+
error: string;
|
|
442
|
+
};
|
|
443
|
+
roles: import('../modules').IRolesState;
|
|
444
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
445
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
446
|
+
webforms: import('../modules').IWebformEditorState;
|
|
447
|
+
modals: import('../modules').IModalsState;
|
|
448
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
449
|
+
model: import('../modules').IModelState;
|
|
450
|
+
}) => string | undefined) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
451
|
+
initialLineInfo: {
|
|
452
|
+
line: number;
|
|
453
|
+
offset?: number | undefined;
|
|
454
|
+
lastModification: number;
|
|
455
|
+
};
|
|
456
|
+
initialSelectionInfo: {
|
|
457
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
458
|
+
lastModification: number;
|
|
459
|
+
};
|
|
460
|
+
diffContent: string;
|
|
461
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
462
|
+
source: import('@ws-ui/shared').ISource;
|
|
463
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
464
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
465
|
+
kind: string;
|
|
466
|
+
}>> | undefined) => string | undefined, {
|
|
467
|
+
clearCache: () => void;
|
|
468
|
+
}> & {
|
|
469
|
+
clearCache: () => void;
|
|
470
|
+
};
|
|
429
471
|
export declare const selectContentByPath: (tabPath: string, contentPath?: string) => ((state: import('redux').EmptyObject & {
|
|
430
|
-
root: import('
|
|
431
|
-
explorer: import('
|
|
432
|
-
debugger: import('
|
|
433
|
-
settings: import('
|
|
472
|
+
root: import('../modules').IRootState;
|
|
473
|
+
explorer: import('../modules').ITreeItem[];
|
|
474
|
+
debugger: import('../modules').IDebuggerState;
|
|
475
|
+
settings: import('../modules').ISettingsState;
|
|
434
476
|
catalog: {
|
|
435
477
|
state: "loading";
|
|
436
478
|
} | {
|
|
@@ -440,17 +482,17 @@ export declare const selectContentByPath: (tabPath: string, contentPath?: string
|
|
|
440
482
|
state: "error";
|
|
441
483
|
error: string;
|
|
442
484
|
};
|
|
443
|
-
roles: import('
|
|
444
|
-
sharedDatasources: import('
|
|
445
|
-
savedConditions: import('
|
|
446
|
-
webforms: import('
|
|
447
|
-
modals: import('
|
|
448
|
-
sharedCSS: import('
|
|
449
|
-
model: import('
|
|
485
|
+
roles: import('../modules').IRolesState;
|
|
486
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
487
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
488
|
+
webforms: import('../modules').IWebformEditorState;
|
|
489
|
+
modals: import('../modules').IModalsState;
|
|
490
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
491
|
+
model: import('../modules').IModelState;
|
|
450
492
|
}) => any) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
451
493
|
initialLineInfo: {
|
|
452
494
|
line: number;
|
|
453
|
-
offset?: number;
|
|
495
|
+
offset?: number | undefined;
|
|
454
496
|
lastModification: number;
|
|
455
497
|
};
|
|
456
498
|
initialSelectionInfo: {
|
|
@@ -469,10 +511,10 @@ export declare const selectContentByPath: (tabPath: string, contentPath?: string
|
|
|
469
511
|
clearCache: () => void;
|
|
470
512
|
};
|
|
471
513
|
export declare const selectTabExtraByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
472
|
-
root: import('
|
|
473
|
-
explorer: import('
|
|
474
|
-
debugger: import('
|
|
475
|
-
settings: import('
|
|
514
|
+
root: import('../modules').IRootState;
|
|
515
|
+
explorer: import('../modules').ITreeItem[];
|
|
516
|
+
debugger: import('../modules').IDebuggerState;
|
|
517
|
+
settings: import('../modules').ISettingsState;
|
|
476
518
|
catalog: {
|
|
477
519
|
state: "loading";
|
|
478
520
|
} | {
|
|
@@ -482,17 +524,17 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
482
524
|
state: "error";
|
|
483
525
|
error: string;
|
|
484
526
|
};
|
|
485
|
-
roles: import('
|
|
486
|
-
sharedDatasources: import('
|
|
487
|
-
savedConditions: import('
|
|
488
|
-
webforms: import('
|
|
489
|
-
modals: import('
|
|
490
|
-
sharedCSS: import('
|
|
491
|
-
model: import('
|
|
527
|
+
roles: import('../modules').IRolesState;
|
|
528
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
529
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
530
|
+
webforms: import('../modules').IWebformEditorState;
|
|
531
|
+
modals: import('../modules').IModalsState;
|
|
532
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
533
|
+
model: import('../modules').IModelState;
|
|
492
534
|
}) => Partial<{
|
|
493
535
|
initialLineInfo: {
|
|
494
536
|
line: number;
|
|
495
|
-
offset?: number;
|
|
537
|
+
offset?: number | undefined;
|
|
496
538
|
lastModification: number;
|
|
497
539
|
};
|
|
498
540
|
initialSelectionInfo: {
|
|
@@ -508,7 +550,7 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
508
550
|
}> | undefined) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
509
551
|
initialLineInfo: {
|
|
510
552
|
line: number;
|
|
511
|
-
offset?: number;
|
|
553
|
+
offset?: number | undefined;
|
|
512
554
|
lastModification: number;
|
|
513
555
|
};
|
|
514
556
|
initialSelectionInfo: {
|
|
@@ -524,7 +566,7 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
524
566
|
}>> | undefined) => Partial<{
|
|
525
567
|
initialLineInfo: {
|
|
526
568
|
line: number;
|
|
527
|
-
offset?: number;
|
|
569
|
+
offset?: number | undefined;
|
|
528
570
|
lastModification: number;
|
|
529
571
|
};
|
|
530
572
|
initialSelectionInfo: {
|
|
@@ -543,10 +585,10 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
543
585
|
clearCache: () => void;
|
|
544
586
|
};
|
|
545
587
|
export declare const selectWebformNodes: (path: string, transformer?: (value: object) => any) => ((state: import('redux').EmptyObject & {
|
|
546
|
-
root: import('
|
|
547
|
-
explorer: import('
|
|
548
|
-
debugger: import('
|
|
549
|
-
settings: import('
|
|
588
|
+
root: import('../modules').IRootState;
|
|
589
|
+
explorer: import('../modules').ITreeItem[];
|
|
590
|
+
debugger: import('../modules').IDebuggerState;
|
|
591
|
+
settings: import('../modules').ISettingsState;
|
|
550
592
|
catalog: {
|
|
551
593
|
state: "loading";
|
|
552
594
|
} | {
|
|
@@ -556,23 +598,23 @@ export declare const selectWebformNodes: (path: string, transformer?: (value: ob
|
|
|
556
598
|
state: "error";
|
|
557
599
|
error: string;
|
|
558
600
|
};
|
|
559
|
-
roles: import('
|
|
560
|
-
sharedDatasources: import('
|
|
561
|
-
savedConditions: import('
|
|
562
|
-
webforms: import('
|
|
563
|
-
modals: import('
|
|
564
|
-
sharedCSS: import('
|
|
565
|
-
model: import('
|
|
601
|
+
roles: import('../modules').IRolesState;
|
|
602
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
603
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
604
|
+
webforms: import('../modules').IWebformEditorState;
|
|
605
|
+
modals: import('../modules').IModalsState;
|
|
606
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
607
|
+
model: import('../modules').IModelState;
|
|
566
608
|
}) => any) & import('reselect').OutputSelectorFields<(args_0: any) => any, {
|
|
567
609
|
clearCache: () => void;
|
|
568
610
|
}> & {
|
|
569
611
|
clearCache: () => void;
|
|
570
612
|
};
|
|
571
613
|
export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
572
|
-
root: import('
|
|
573
|
-
explorer: import('
|
|
574
|
-
debugger: import('
|
|
575
|
-
settings: import('
|
|
614
|
+
root: import('../modules').IRootState;
|
|
615
|
+
explorer: import('../modules').ITreeItem[];
|
|
616
|
+
debugger: import('../modules').IDebuggerState;
|
|
617
|
+
settings: import('../modules').ISettingsState;
|
|
576
618
|
catalog: {
|
|
577
619
|
state: "loading";
|
|
578
620
|
} | {
|
|
@@ -582,17 +624,17 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
|
582
624
|
state: "error";
|
|
583
625
|
error: string;
|
|
584
626
|
};
|
|
585
|
-
roles: import('
|
|
586
|
-
sharedDatasources: import('
|
|
587
|
-
savedConditions: import('
|
|
588
|
-
webforms: import('
|
|
589
|
-
modals: import('
|
|
590
|
-
sharedCSS: import('
|
|
591
|
-
model: import('
|
|
627
|
+
roles: import('../modules').IRolesState;
|
|
628
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
629
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
630
|
+
webforms: import('../modules').IWebformEditorState;
|
|
631
|
+
modals: import('../modules').IModalsState;
|
|
632
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
633
|
+
model: import('../modules').IModelState;
|
|
592
634
|
}) => ITab<any, Partial<{
|
|
593
635
|
initialLineInfo: {
|
|
594
636
|
line: number;
|
|
595
|
-
offset?: number;
|
|
637
|
+
offset?: number | undefined;
|
|
596
638
|
lastModification: number;
|
|
597
639
|
};
|
|
598
640
|
initialSelectionInfo: {
|
|
@@ -608,7 +650,7 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
|
608
650
|
}>>[]) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
609
651
|
initialLineInfo: {
|
|
610
652
|
line: number;
|
|
611
|
-
offset?: number;
|
|
653
|
+
offset?: number | undefined;
|
|
612
654
|
lastModification: number;
|
|
613
655
|
};
|
|
614
656
|
initialSelectionInfo: {
|
|
@@ -624,7 +666,7 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
|
624
666
|
}>>[]) => ITab<any, Partial<{
|
|
625
667
|
initialLineInfo: {
|
|
626
668
|
line: number;
|
|
627
|
-
offset?: number;
|
|
669
|
+
offset?: number | undefined;
|
|
628
670
|
lastModification: number;
|
|
629
671
|
};
|
|
630
672
|
initialSelectionInfo: {
|
|
@@ -643,10 +685,10 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
|
643
685
|
clearCache: () => void;
|
|
644
686
|
};
|
|
645
687
|
export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObject & {
|
|
646
|
-
root: import('
|
|
647
|
-
explorer: import('
|
|
648
|
-
debugger: import('
|
|
649
|
-
settings: import('
|
|
688
|
+
root: import('../modules').IRootState;
|
|
689
|
+
explorer: import('../modules').ITreeItem[];
|
|
690
|
+
debugger: import('../modules').IDebuggerState;
|
|
691
|
+
settings: import('../modules').ISettingsState;
|
|
650
692
|
catalog: {
|
|
651
693
|
state: "loading";
|
|
652
694
|
} | {
|
|
@@ -656,17 +698,17 @@ export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObje
|
|
|
656
698
|
state: "error";
|
|
657
699
|
error: string;
|
|
658
700
|
};
|
|
659
|
-
roles: import('
|
|
660
|
-
sharedDatasources: import('
|
|
661
|
-
savedConditions: import('
|
|
662
|
-
webforms: import('
|
|
663
|
-
modals: import('
|
|
664
|
-
sharedCSS: import('
|
|
665
|
-
model: import('
|
|
701
|
+
roles: import('../modules').IRolesState;
|
|
702
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
703
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
704
|
+
webforms: import('../modules').IWebformEditorState;
|
|
705
|
+
modals: import('../modules').IModalsState;
|
|
706
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
707
|
+
model: import('../modules').IModelState;
|
|
666
708
|
}) => number) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
667
709
|
initialLineInfo: {
|
|
668
710
|
line: number;
|
|
669
|
-
offset?: number;
|
|
711
|
+
offset?: number | undefined;
|
|
670
712
|
lastModification: number;
|
|
671
713
|
};
|
|
672
714
|
initialSelectionInfo: {
|
|
@@ -685,10 +727,10 @@ export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObje
|
|
|
685
727
|
clearCache: () => void;
|
|
686
728
|
};
|
|
687
729
|
export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
688
|
-
root: import('
|
|
689
|
-
explorer: import('
|
|
690
|
-
debugger: import('
|
|
691
|
-
settings: import('
|
|
730
|
+
root: import('../modules').IRootState;
|
|
731
|
+
explorer: import('../modules').ITreeItem[];
|
|
732
|
+
debugger: import('../modules').IDebuggerState;
|
|
733
|
+
settings: import('../modules').ISettingsState;
|
|
692
734
|
catalog: {
|
|
693
735
|
state: "loading";
|
|
694
736
|
} | {
|
|
@@ -698,17 +740,17 @@ export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
|
698
740
|
state: "error";
|
|
699
741
|
error: string;
|
|
700
742
|
};
|
|
701
|
-
roles: import('
|
|
702
|
-
sharedDatasources: import('
|
|
703
|
-
savedConditions: import('
|
|
704
|
-
webforms: import('
|
|
705
|
-
modals: import('
|
|
706
|
-
sharedCSS: import('
|
|
707
|
-
model: import('
|
|
743
|
+
roles: import('../modules').IRolesState;
|
|
744
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
745
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
746
|
+
webforms: import('../modules').IWebformEditorState;
|
|
747
|
+
modals: import('../modules').IModalsState;
|
|
748
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
749
|
+
model: import('../modules').IModelState;
|
|
708
750
|
}) => ITab<any, Partial<{
|
|
709
751
|
initialLineInfo: {
|
|
710
752
|
line: number;
|
|
711
|
-
offset?: number;
|
|
753
|
+
offset?: number | undefined;
|
|
712
754
|
lastModification: number;
|
|
713
755
|
};
|
|
714
756
|
initialSelectionInfo: {
|
|
@@ -721,10 +763,10 @@ export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
|
721
763
|
editor: import('@ws-ui/shared').IEditor;
|
|
722
764
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
723
765
|
kind: string;
|
|
724
|
-
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
766
|
+
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IDebuggerSession[]) => ITab<any, Partial<{
|
|
725
767
|
initialLineInfo: {
|
|
726
768
|
line: number;
|
|
727
|
-
offset?: number;
|
|
769
|
+
offset?: number | undefined;
|
|
728
770
|
lastModification: number;
|
|
729
771
|
};
|
|
730
772
|
initialSelectionInfo: {
|
|
@@ -743,10 +785,10 @@ export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
|
743
785
|
clearCache: () => void;
|
|
744
786
|
};
|
|
745
787
|
export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
746
|
-
root: import('
|
|
747
|
-
explorer: import('
|
|
748
|
-
debugger: import('
|
|
749
|
-
settings: import('
|
|
788
|
+
root: import('../modules').IRootState;
|
|
789
|
+
explorer: import('../modules').ITreeItem[];
|
|
790
|
+
debugger: import('../modules').IDebuggerState;
|
|
791
|
+
settings: import('../modules').ISettingsState;
|
|
750
792
|
catalog: {
|
|
751
793
|
state: "loading";
|
|
752
794
|
} | {
|
|
@@ -756,18 +798,18 @@ export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
|
756
798
|
state: "error";
|
|
757
799
|
error: string;
|
|
758
800
|
};
|
|
759
|
-
roles: import('
|
|
760
|
-
sharedDatasources: import('
|
|
761
|
-
savedConditions: import('
|
|
762
|
-
webforms: import('
|
|
763
|
-
modals: import('
|
|
764
|
-
sharedCSS: import('
|
|
765
|
-
model: import('
|
|
766
|
-
}) => import('
|
|
767
|
-
root: import('
|
|
768
|
-
explorer: import('
|
|
769
|
-
debugger: import('
|
|
770
|
-
settings: import('
|
|
801
|
+
roles: import('../modules').IRolesState;
|
|
802
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
803
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
804
|
+
webforms: import('../modules').IWebformEditorState;
|
|
805
|
+
modals: import('../modules').IModalsState;
|
|
806
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
807
|
+
model: import('../modules').IModelState;
|
|
808
|
+
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
809
|
+
root: import('../modules').IRootState;
|
|
810
|
+
explorer: import('../modules').ITreeItem[];
|
|
811
|
+
debugger: import('../modules').IDebuggerState;
|
|
812
|
+
settings: import('../modules').ISettingsState;
|
|
771
813
|
catalog: {
|
|
772
814
|
state: "loading";
|
|
773
815
|
} | {
|
|
@@ -777,23 +819,23 @@ export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
|
777
819
|
state: "error";
|
|
778
820
|
error: string;
|
|
779
821
|
};
|
|
780
|
-
roles: import('
|
|
781
|
-
sharedDatasources: import('
|
|
782
|
-
savedConditions: import('
|
|
783
|
-
webforms: import('
|
|
784
|
-
modals: import('
|
|
785
|
-
sharedCSS: import('
|
|
786
|
-
model: import('
|
|
787
|
-
}>) => import('
|
|
822
|
+
roles: import('../modules').IRolesState;
|
|
823
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
824
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
825
|
+
webforms: import('../modules').IWebformEditorState;
|
|
826
|
+
modals: import('../modules').IModalsState;
|
|
827
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
828
|
+
model: import('../modules').IModelState;
|
|
829
|
+
}>) => import('../modules').ITreeItem[], {
|
|
788
830
|
clearCache: () => void;
|
|
789
831
|
}> & {
|
|
790
832
|
clearCache: () => void;
|
|
791
833
|
};
|
|
792
834
|
export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject & {
|
|
793
|
-
root: import('
|
|
794
|
-
explorer: import('
|
|
795
|
-
debugger: import('
|
|
796
|
-
settings: import('
|
|
835
|
+
root: import('../modules').IRootState;
|
|
836
|
+
explorer: import('../modules').ITreeItem[];
|
|
837
|
+
debugger: import('../modules').IDebuggerState;
|
|
838
|
+
settings: import('../modules').ISettingsState;
|
|
797
839
|
catalog: {
|
|
798
840
|
state: "loading";
|
|
799
841
|
} | {
|
|
@@ -803,18 +845,18 @@ export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject
|
|
|
803
845
|
state: "error";
|
|
804
846
|
error: string;
|
|
805
847
|
};
|
|
806
|
-
roles: import('
|
|
807
|
-
sharedDatasources: import('
|
|
808
|
-
savedConditions: import('
|
|
809
|
-
webforms: import('
|
|
810
|
-
modals: import('
|
|
811
|
-
sharedCSS: import('
|
|
812
|
-
model: import('
|
|
813
|
-
}) => import('
|
|
814
|
-
root: import('
|
|
815
|
-
explorer: import('
|
|
816
|
-
debugger: import('
|
|
817
|
-
settings: import('
|
|
848
|
+
roles: import('../modules').IRolesState;
|
|
849
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
850
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
851
|
+
webforms: import('../modules').IWebformEditorState;
|
|
852
|
+
modals: import('../modules').IModalsState;
|
|
853
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
854
|
+
model: import('../modules').IModelState;
|
|
855
|
+
}) => import('../modules').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
856
|
+
root: import('../modules').IRootState;
|
|
857
|
+
explorer: import('../modules').ITreeItem[];
|
|
858
|
+
debugger: import('../modules').IDebuggerState;
|
|
859
|
+
settings: import('../modules').ISettingsState;
|
|
818
860
|
catalog: {
|
|
819
861
|
state: "loading";
|
|
820
862
|
} | {
|
|
@@ -824,23 +866,23 @@ export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject
|
|
|
824
866
|
state: "error";
|
|
825
867
|
error: string;
|
|
826
868
|
};
|
|
827
|
-
roles: import('
|
|
828
|
-
sharedDatasources: import('
|
|
829
|
-
savedConditions: import('
|
|
830
|
-
webforms: import('
|
|
831
|
-
modals: import('
|
|
832
|
-
sharedCSS: import('
|
|
833
|
-
model: import('
|
|
834
|
-
}>) => import('
|
|
869
|
+
roles: import('../modules').IRolesState;
|
|
870
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
871
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
872
|
+
webforms: import('../modules').IWebformEditorState;
|
|
873
|
+
modals: import('../modules').IModalsState;
|
|
874
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
875
|
+
model: import('../modules').IModelState;
|
|
876
|
+
}>) => import('../modules').ITreeItem | undefined, {
|
|
835
877
|
clearCache: () => void;
|
|
836
878
|
}> & {
|
|
837
879
|
clearCache: () => void;
|
|
838
880
|
};
|
|
839
881
|
export declare const selectMethodsFolder: ((state: import('redux').EmptyObject & {
|
|
840
|
-
root: import('
|
|
841
|
-
explorer: import('
|
|
842
|
-
debugger: import('
|
|
843
|
-
settings: import('
|
|
882
|
+
root: import('../modules').IRootState;
|
|
883
|
+
explorer: import('../modules').ITreeItem[];
|
|
884
|
+
debugger: import('../modules').IDebuggerState;
|
|
885
|
+
settings: import('../modules').ISettingsState;
|
|
844
886
|
catalog: {
|
|
845
887
|
state: "loading";
|
|
846
888
|
} | {
|
|
@@ -850,18 +892,18 @@ export declare const selectMethodsFolder: ((state: import('redux').EmptyObject &
|
|
|
850
892
|
state: "error";
|
|
851
893
|
error: string;
|
|
852
894
|
};
|
|
853
|
-
roles: import('
|
|
854
|
-
sharedDatasources: import('
|
|
855
|
-
savedConditions: import('
|
|
856
|
-
webforms: import('
|
|
857
|
-
modals: import('
|
|
858
|
-
sharedCSS: import('
|
|
859
|
-
model: import('
|
|
860
|
-
}) => import('
|
|
861
|
-
root: import('
|
|
862
|
-
explorer: import('
|
|
863
|
-
debugger: import('
|
|
864
|
-
settings: import('
|
|
895
|
+
roles: import('../modules').IRolesState;
|
|
896
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
897
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
898
|
+
webforms: import('../modules').IWebformEditorState;
|
|
899
|
+
modals: import('../modules').IModalsState;
|
|
900
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
901
|
+
model: import('../modules').IModelState;
|
|
902
|
+
}) => import('../modules').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
903
|
+
root: import('../modules').IRootState;
|
|
904
|
+
explorer: import('../modules').ITreeItem[];
|
|
905
|
+
debugger: import('../modules').IDebuggerState;
|
|
906
|
+
settings: import('../modules').ISettingsState;
|
|
865
907
|
catalog: {
|
|
866
908
|
state: "loading";
|
|
867
909
|
} | {
|
|
@@ -871,23 +913,23 @@ export declare const selectMethodsFolder: ((state: import('redux').EmptyObject &
|
|
|
871
913
|
state: "error";
|
|
872
914
|
error: string;
|
|
873
915
|
};
|
|
874
|
-
roles: import('
|
|
875
|
-
sharedDatasources: import('
|
|
876
|
-
savedConditions: import('
|
|
877
|
-
webforms: import('
|
|
878
|
-
modals: import('
|
|
879
|
-
sharedCSS: import('
|
|
880
|
-
model: import('
|
|
881
|
-
}>) => import('
|
|
916
|
+
roles: import('../modules').IRolesState;
|
|
917
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
918
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
919
|
+
webforms: import('../modules').IWebformEditorState;
|
|
920
|
+
modals: import('../modules').IModalsState;
|
|
921
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
922
|
+
model: import('../modules').IModelState;
|
|
923
|
+
}>) => import('../modules').ITreeItem | undefined, {
|
|
882
924
|
clearCache: () => void;
|
|
883
925
|
}> & {
|
|
884
926
|
clearCache: () => void;
|
|
885
927
|
};
|
|
886
928
|
export declare const selectClassesFolder: ((state: import('redux').EmptyObject & {
|
|
887
|
-
root: import('
|
|
888
|
-
explorer: import('
|
|
889
|
-
debugger: import('
|
|
890
|
-
settings: import('
|
|
929
|
+
root: import('../modules').IRootState;
|
|
930
|
+
explorer: import('../modules').ITreeItem[];
|
|
931
|
+
debugger: import('../modules').IDebuggerState;
|
|
932
|
+
settings: import('../modules').ISettingsState;
|
|
891
933
|
catalog: {
|
|
892
934
|
state: "loading";
|
|
893
935
|
} | {
|
|
@@ -897,18 +939,18 @@ export declare const selectClassesFolder: ((state: import('redux').EmptyObject &
|
|
|
897
939
|
state: "error";
|
|
898
940
|
error: string;
|
|
899
941
|
};
|
|
900
|
-
roles: import('
|
|
901
|
-
sharedDatasources: import('
|
|
902
|
-
savedConditions: import('
|
|
903
|
-
webforms: import('
|
|
904
|
-
modals: import('
|
|
905
|
-
sharedCSS: import('
|
|
906
|
-
model: import('
|
|
907
|
-
}) => import('
|
|
908
|
-
root: import('
|
|
909
|
-
explorer: import('
|
|
910
|
-
debugger: import('
|
|
911
|
-
settings: import('
|
|
942
|
+
roles: import('../modules').IRolesState;
|
|
943
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
944
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
945
|
+
webforms: import('../modules').IWebformEditorState;
|
|
946
|
+
modals: import('../modules').IModalsState;
|
|
947
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
948
|
+
model: import('../modules').IModelState;
|
|
949
|
+
}) => import('../modules').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
950
|
+
root: import('../modules').IRootState;
|
|
951
|
+
explorer: import('../modules').ITreeItem[];
|
|
952
|
+
debugger: import('../modules').IDebuggerState;
|
|
953
|
+
settings: import('../modules').ISettingsState;
|
|
912
954
|
catalog: {
|
|
913
955
|
state: "loading";
|
|
914
956
|
} | {
|
|
@@ -918,23 +960,23 @@ export declare const selectClassesFolder: ((state: import('redux').EmptyObject &
|
|
|
918
960
|
state: "error";
|
|
919
961
|
error: string;
|
|
920
962
|
};
|
|
921
|
-
roles: import('
|
|
922
|
-
sharedDatasources: import('
|
|
923
|
-
savedConditions: import('
|
|
924
|
-
webforms: import('
|
|
925
|
-
modals: import('
|
|
926
|
-
sharedCSS: import('
|
|
927
|
-
model: import('
|
|
928
|
-
}>) => import('
|
|
963
|
+
roles: import('../modules').IRolesState;
|
|
964
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
965
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
966
|
+
webforms: import('../modules').IWebformEditorState;
|
|
967
|
+
modals: import('../modules').IModalsState;
|
|
968
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
969
|
+
model: import('../modules').IModelState;
|
|
970
|
+
}>) => import('../modules').ITreeItem | undefined, {
|
|
929
971
|
clearCache: () => void;
|
|
930
972
|
}> & {
|
|
931
973
|
clearCache: () => void;
|
|
932
974
|
};
|
|
933
975
|
export declare const selectMethods: ((state: import('redux').EmptyObject & {
|
|
934
|
-
root: import('
|
|
935
|
-
explorer: import('
|
|
936
|
-
debugger: import('
|
|
937
|
-
settings: import('
|
|
976
|
+
root: import('../modules').IRootState;
|
|
977
|
+
explorer: import('../modules').ITreeItem[];
|
|
978
|
+
debugger: import('../modules').IDebuggerState;
|
|
979
|
+
settings: import('../modules').ISettingsState;
|
|
938
980
|
catalog: {
|
|
939
981
|
state: "loading";
|
|
940
982
|
} | {
|
|
@@ -944,23 +986,23 @@ export declare const selectMethods: ((state: import('redux').EmptyObject & {
|
|
|
944
986
|
state: "error";
|
|
945
987
|
error: string;
|
|
946
988
|
};
|
|
947
|
-
roles: import('
|
|
948
|
-
sharedDatasources: import('
|
|
949
|
-
savedConditions: import('
|
|
950
|
-
webforms: import('
|
|
951
|
-
modals: import('
|
|
952
|
-
sharedCSS: import('
|
|
953
|
-
model: import('
|
|
954
|
-
}) => import('
|
|
989
|
+
roles: import('../modules').IRolesState;
|
|
990
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
991
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
992
|
+
webforms: import('../modules').IWebformEditorState;
|
|
993
|
+
modals: import('../modules').IModalsState;
|
|
994
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
995
|
+
model: import('../modules').IModelState;
|
|
996
|
+
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ITreeItem | undefined) => import('../modules').ITreeItem[], {
|
|
955
997
|
clearCache: () => void;
|
|
956
998
|
}> & {
|
|
957
999
|
clearCache: () => void;
|
|
958
1000
|
};
|
|
959
1001
|
export declare const selectWebForms: ((state: import('redux').EmptyObject & {
|
|
960
|
-
root: import('
|
|
961
|
-
explorer: import('
|
|
962
|
-
debugger: import('
|
|
963
|
-
settings: import('
|
|
1002
|
+
root: import('../modules').IRootState;
|
|
1003
|
+
explorer: import('../modules').ITreeItem[];
|
|
1004
|
+
debugger: import('../modules').IDebuggerState;
|
|
1005
|
+
settings: import('../modules').ISettingsState;
|
|
964
1006
|
catalog: {
|
|
965
1007
|
state: "loading";
|
|
966
1008
|
} | {
|
|
@@ -970,23 +1012,23 @@ export declare const selectWebForms: ((state: import('redux').EmptyObject & {
|
|
|
970
1012
|
state: "error";
|
|
971
1013
|
error: string;
|
|
972
1014
|
};
|
|
973
|
-
roles: import('
|
|
974
|
-
sharedDatasources: import('
|
|
975
|
-
savedConditions: import('
|
|
976
|
-
webforms: import('
|
|
977
|
-
modals: import('
|
|
978
|
-
sharedCSS: import('
|
|
979
|
-
model: import('
|
|
980
|
-
}) => import('
|
|
1015
|
+
roles: import('../modules').IRolesState;
|
|
1016
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
1017
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
1018
|
+
webforms: import('../modules').IWebformEditorState;
|
|
1019
|
+
modals: import('../modules').IModalsState;
|
|
1020
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
1021
|
+
model: import('../modules').IModelState;
|
|
1022
|
+
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ITreeItem | undefined) => import('../modules').ITreeItem[], {
|
|
981
1023
|
clearCache: () => void;
|
|
982
1024
|
}> & {
|
|
983
1025
|
clearCache: () => void;
|
|
984
1026
|
};
|
|
985
1027
|
export declare const selectClasses: ((state: import('redux').EmptyObject & {
|
|
986
|
-
root: import('
|
|
987
|
-
explorer: import('
|
|
988
|
-
debugger: import('
|
|
989
|
-
settings: import('
|
|
1028
|
+
root: import('../modules').IRootState;
|
|
1029
|
+
explorer: import('../modules').ITreeItem[];
|
|
1030
|
+
debugger: import('../modules').IDebuggerState;
|
|
1031
|
+
settings: import('../modules').ISettingsState;
|
|
990
1032
|
catalog: {
|
|
991
1033
|
state: "loading";
|
|
992
1034
|
} | {
|
|
@@ -996,14 +1038,14 @@ export declare const selectClasses: ((state: import('redux').EmptyObject & {
|
|
|
996
1038
|
state: "error";
|
|
997
1039
|
error: string;
|
|
998
1040
|
};
|
|
999
|
-
roles: import('
|
|
1000
|
-
sharedDatasources: import('
|
|
1001
|
-
savedConditions: import('
|
|
1002
|
-
webforms: import('
|
|
1003
|
-
modals: import('
|
|
1004
|
-
sharedCSS: import('
|
|
1005
|
-
model: import('
|
|
1006
|
-
}) => import('
|
|
1041
|
+
roles: import('../modules').IRolesState;
|
|
1042
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
1043
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
1044
|
+
webforms: import('../modules').IWebformEditorState;
|
|
1045
|
+
modals: import('../modules').IModalsState;
|
|
1046
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
1047
|
+
model: import('../modules').IModelState;
|
|
1048
|
+
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ITreeItem | undefined) => import('../modules').ITreeItem[], {
|
|
1007
1049
|
clearCache: () => void;
|
|
1008
1050
|
}> & {
|
|
1009
1051
|
clearCache: () => void;
|