@ws-ui/store 0.3.13 → 1.1.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/README.md +6 -2
- package/dist/index.cjs.js +57 -68
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +7252 -7011
- 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 +76 -44
- package/dist/modules/debugger/thunks.d.ts +2 -2
- package/dist/modules/debugger/types.d.ts +68 -7
- 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 +199 -11
- package/dist/selectors/explorer.d.ts +355 -371
- 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: {
|
|
@@ -684,69 +726,11 @@ export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObje
|
|
|
684
726
|
}> & {
|
|
685
727
|
clearCache: () => void;
|
|
686
728
|
};
|
|
687
|
-
export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
688
|
-
root: import('..').IRootState;
|
|
689
|
-
explorer: import('..').ITreeItem[];
|
|
690
|
-
debugger: import('..').IDebuggerState;
|
|
691
|
-
settings: import('..').ISettingsState;
|
|
692
|
-
catalog: {
|
|
693
|
-
state: "loading";
|
|
694
|
-
} | {
|
|
695
|
-
state: "loaded";
|
|
696
|
-
model: datasources.IEnhancedCatalog;
|
|
697
|
-
} | {
|
|
698
|
-
state: "error";
|
|
699
|
-
error: string;
|
|
700
|
-
};
|
|
701
|
-
roles: import('..').IRolesState;
|
|
702
|
-
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
703
|
-
savedConditions: import('..').ISavedConditionsState;
|
|
704
|
-
webforms: import('..').IWebformEditorState;
|
|
705
|
-
modals: import('..').IModalsState;
|
|
706
|
-
sharedCSS: import('..').ISharedCSSState;
|
|
707
|
-
model: import('..').IModelState;
|
|
708
|
-
}) => ITab<any, Partial<{
|
|
709
|
-
initialLineInfo: {
|
|
710
|
-
line: number;
|
|
711
|
-
offset?: number;
|
|
712
|
-
lastModification: number;
|
|
713
|
-
};
|
|
714
|
-
initialSelectionInfo: {
|
|
715
|
-
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
716
|
-
lastModification: number;
|
|
717
|
-
};
|
|
718
|
-
diffContent: string;
|
|
719
|
-
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
720
|
-
source: import('@ws-ui/shared').ISource;
|
|
721
|
-
editor: import('@ws-ui/shared').IEditor;
|
|
722
|
-
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
723
|
-
kind: string;
|
|
724
|
-
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('..').IDebuggerSession[]) => ITab<any, Partial<{
|
|
725
|
-
initialLineInfo: {
|
|
726
|
-
line: number;
|
|
727
|
-
offset?: number;
|
|
728
|
-
lastModification: number;
|
|
729
|
-
};
|
|
730
|
-
initialSelectionInfo: {
|
|
731
|
-
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
732
|
-
lastModification: number;
|
|
733
|
-
};
|
|
734
|
-
diffContent: string;
|
|
735
|
-
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
736
|
-
source: import('@ws-ui/shared').ISource;
|
|
737
|
-
editor: import('@ws-ui/shared').IEditor;
|
|
738
|
-
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
739
|
-
kind: string;
|
|
740
|
-
}>>[], {
|
|
741
|
-
clearCache: () => void;
|
|
742
|
-
}> & {
|
|
743
|
-
clearCache: () => void;
|
|
744
|
-
};
|
|
745
729
|
export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
746
|
-
root: import('
|
|
747
|
-
explorer: import('
|
|
748
|
-
debugger: import('
|
|
749
|
-
settings: import('
|
|
730
|
+
root: import('../modules').IRootState;
|
|
731
|
+
explorer: import('../modules').ITreeItem[];
|
|
732
|
+
debugger: import('../modules').IDebuggerState;
|
|
733
|
+
settings: import('../modules').ISettingsState;
|
|
750
734
|
catalog: {
|
|
751
735
|
state: "loading";
|
|
752
736
|
} | {
|
|
@@ -756,18 +740,18 @@ export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
|
756
740
|
state: "error";
|
|
757
741
|
error: string;
|
|
758
742
|
};
|
|
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('
|
|
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;
|
|
750
|
+
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
751
|
+
root: import('../modules').IRootState;
|
|
752
|
+
explorer: import('../modules').ITreeItem[];
|
|
753
|
+
debugger: import('../modules').IDebuggerState;
|
|
754
|
+
settings: import('../modules').ISettingsState;
|
|
771
755
|
catalog: {
|
|
772
756
|
state: "loading";
|
|
773
757
|
} | {
|
|
@@ -777,23 +761,23 @@ export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
|
777
761
|
state: "error";
|
|
778
762
|
error: string;
|
|
779
763
|
};
|
|
780
|
-
roles: import('
|
|
781
|
-
sharedDatasources: import('
|
|
782
|
-
savedConditions: import('
|
|
783
|
-
webforms: import('
|
|
784
|
-
modals: import('
|
|
785
|
-
sharedCSS: import('
|
|
786
|
-
model: import('
|
|
787
|
-
}>) => import('
|
|
764
|
+
roles: import('../modules').IRolesState;
|
|
765
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
766
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
767
|
+
webforms: import('../modules').IWebformEditorState;
|
|
768
|
+
modals: import('../modules').IModalsState;
|
|
769
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
770
|
+
model: import('../modules').IModelState;
|
|
771
|
+
}>) => import('../modules').ITreeItem[], {
|
|
788
772
|
clearCache: () => void;
|
|
789
773
|
}> & {
|
|
790
774
|
clearCache: () => void;
|
|
791
775
|
};
|
|
792
776
|
export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject & {
|
|
793
|
-
root: import('
|
|
794
|
-
explorer: import('
|
|
795
|
-
debugger: import('
|
|
796
|
-
settings: import('
|
|
777
|
+
root: import('../modules').IRootState;
|
|
778
|
+
explorer: import('../modules').ITreeItem[];
|
|
779
|
+
debugger: import('../modules').IDebuggerState;
|
|
780
|
+
settings: import('../modules').ISettingsState;
|
|
797
781
|
catalog: {
|
|
798
782
|
state: "loading";
|
|
799
783
|
} | {
|
|
@@ -803,18 +787,18 @@ export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject
|
|
|
803
787
|
state: "error";
|
|
804
788
|
error: string;
|
|
805
789
|
};
|
|
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('
|
|
790
|
+
roles: import('../modules').IRolesState;
|
|
791
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
792
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
793
|
+
webforms: import('../modules').IWebformEditorState;
|
|
794
|
+
modals: import('../modules').IModalsState;
|
|
795
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
796
|
+
model: import('../modules').IModelState;
|
|
797
|
+
}) => import('../modules').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
798
|
+
root: import('../modules').IRootState;
|
|
799
|
+
explorer: import('../modules').ITreeItem[];
|
|
800
|
+
debugger: import('../modules').IDebuggerState;
|
|
801
|
+
settings: import('../modules').ISettingsState;
|
|
818
802
|
catalog: {
|
|
819
803
|
state: "loading";
|
|
820
804
|
} | {
|
|
@@ -824,23 +808,23 @@ export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject
|
|
|
824
808
|
state: "error";
|
|
825
809
|
error: string;
|
|
826
810
|
};
|
|
827
|
-
roles: import('
|
|
828
|
-
sharedDatasources: import('
|
|
829
|
-
savedConditions: import('
|
|
830
|
-
webforms: import('
|
|
831
|
-
modals: import('
|
|
832
|
-
sharedCSS: import('
|
|
833
|
-
model: import('
|
|
834
|
-
}>) => import('
|
|
811
|
+
roles: import('../modules').IRolesState;
|
|
812
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
813
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
814
|
+
webforms: import('../modules').IWebformEditorState;
|
|
815
|
+
modals: import('../modules').IModalsState;
|
|
816
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
817
|
+
model: import('../modules').IModelState;
|
|
818
|
+
}>) => import('../modules').ITreeItem | undefined, {
|
|
835
819
|
clearCache: () => void;
|
|
836
820
|
}> & {
|
|
837
821
|
clearCache: () => void;
|
|
838
822
|
};
|
|
839
823
|
export declare const selectMethodsFolder: ((state: import('redux').EmptyObject & {
|
|
840
|
-
root: import('
|
|
841
|
-
explorer: import('
|
|
842
|
-
debugger: import('
|
|
843
|
-
settings: import('
|
|
824
|
+
root: import('../modules').IRootState;
|
|
825
|
+
explorer: import('../modules').ITreeItem[];
|
|
826
|
+
debugger: import('../modules').IDebuggerState;
|
|
827
|
+
settings: import('../modules').ISettingsState;
|
|
844
828
|
catalog: {
|
|
845
829
|
state: "loading";
|
|
846
830
|
} | {
|
|
@@ -850,18 +834,18 @@ export declare const selectMethodsFolder: ((state: import('redux').EmptyObject &
|
|
|
850
834
|
state: "error";
|
|
851
835
|
error: string;
|
|
852
836
|
};
|
|
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('
|
|
837
|
+
roles: import('../modules').IRolesState;
|
|
838
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
839
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
840
|
+
webforms: import('../modules').IWebformEditorState;
|
|
841
|
+
modals: import('../modules').IModalsState;
|
|
842
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
843
|
+
model: import('../modules').IModelState;
|
|
844
|
+
}) => import('../modules').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
845
|
+
root: import('../modules').IRootState;
|
|
846
|
+
explorer: import('../modules').ITreeItem[];
|
|
847
|
+
debugger: import('../modules').IDebuggerState;
|
|
848
|
+
settings: import('../modules').ISettingsState;
|
|
865
849
|
catalog: {
|
|
866
850
|
state: "loading";
|
|
867
851
|
} | {
|
|
@@ -871,23 +855,23 @@ export declare const selectMethodsFolder: ((state: import('redux').EmptyObject &
|
|
|
871
855
|
state: "error";
|
|
872
856
|
error: string;
|
|
873
857
|
};
|
|
874
|
-
roles: import('
|
|
875
|
-
sharedDatasources: import('
|
|
876
|
-
savedConditions: import('
|
|
877
|
-
webforms: import('
|
|
878
|
-
modals: import('
|
|
879
|
-
sharedCSS: import('
|
|
880
|
-
model: import('
|
|
881
|
-
}>) => import('
|
|
858
|
+
roles: import('../modules').IRolesState;
|
|
859
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
860
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
861
|
+
webforms: import('../modules').IWebformEditorState;
|
|
862
|
+
modals: import('../modules').IModalsState;
|
|
863
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
864
|
+
model: import('../modules').IModelState;
|
|
865
|
+
}>) => import('../modules').ITreeItem | undefined, {
|
|
882
866
|
clearCache: () => void;
|
|
883
867
|
}> & {
|
|
884
868
|
clearCache: () => void;
|
|
885
869
|
};
|
|
886
870
|
export declare const selectClassesFolder: ((state: import('redux').EmptyObject & {
|
|
887
|
-
root: import('
|
|
888
|
-
explorer: import('
|
|
889
|
-
debugger: import('
|
|
890
|
-
settings: import('
|
|
871
|
+
root: import('../modules').IRootState;
|
|
872
|
+
explorer: import('../modules').ITreeItem[];
|
|
873
|
+
debugger: import('../modules').IDebuggerState;
|
|
874
|
+
settings: import('../modules').ISettingsState;
|
|
891
875
|
catalog: {
|
|
892
876
|
state: "loading";
|
|
893
877
|
} | {
|
|
@@ -897,18 +881,18 @@ export declare const selectClassesFolder: ((state: import('redux').EmptyObject &
|
|
|
897
881
|
state: "error";
|
|
898
882
|
error: string;
|
|
899
883
|
};
|
|
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('
|
|
884
|
+
roles: import('../modules').IRolesState;
|
|
885
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
886
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
887
|
+
webforms: import('../modules').IWebformEditorState;
|
|
888
|
+
modals: import('../modules').IModalsState;
|
|
889
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
890
|
+
model: import('../modules').IModelState;
|
|
891
|
+
}) => import('../modules').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
892
|
+
root: import('../modules').IRootState;
|
|
893
|
+
explorer: import('../modules').ITreeItem[];
|
|
894
|
+
debugger: import('../modules').IDebuggerState;
|
|
895
|
+
settings: import('../modules').ISettingsState;
|
|
912
896
|
catalog: {
|
|
913
897
|
state: "loading";
|
|
914
898
|
} | {
|
|
@@ -918,23 +902,23 @@ export declare const selectClassesFolder: ((state: import('redux').EmptyObject &
|
|
|
918
902
|
state: "error";
|
|
919
903
|
error: string;
|
|
920
904
|
};
|
|
921
|
-
roles: import('
|
|
922
|
-
sharedDatasources: import('
|
|
923
|
-
savedConditions: import('
|
|
924
|
-
webforms: import('
|
|
925
|
-
modals: import('
|
|
926
|
-
sharedCSS: import('
|
|
927
|
-
model: import('
|
|
928
|
-
}>) => import('
|
|
905
|
+
roles: import('../modules').IRolesState;
|
|
906
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
907
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
908
|
+
webforms: import('../modules').IWebformEditorState;
|
|
909
|
+
modals: import('../modules').IModalsState;
|
|
910
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
911
|
+
model: import('../modules').IModelState;
|
|
912
|
+
}>) => import('../modules').ITreeItem | undefined, {
|
|
929
913
|
clearCache: () => void;
|
|
930
914
|
}> & {
|
|
931
915
|
clearCache: () => void;
|
|
932
916
|
};
|
|
933
917
|
export declare const selectMethods: ((state: import('redux').EmptyObject & {
|
|
934
|
-
root: import('
|
|
935
|
-
explorer: import('
|
|
936
|
-
debugger: import('
|
|
937
|
-
settings: import('
|
|
918
|
+
root: import('../modules').IRootState;
|
|
919
|
+
explorer: import('../modules').ITreeItem[];
|
|
920
|
+
debugger: import('../modules').IDebuggerState;
|
|
921
|
+
settings: import('../modules').ISettingsState;
|
|
938
922
|
catalog: {
|
|
939
923
|
state: "loading";
|
|
940
924
|
} | {
|
|
@@ -944,23 +928,23 @@ export declare const selectMethods: ((state: import('redux').EmptyObject & {
|
|
|
944
928
|
state: "error";
|
|
945
929
|
error: string;
|
|
946
930
|
};
|
|
947
|
-
roles: import('
|
|
948
|
-
sharedDatasources: import('
|
|
949
|
-
savedConditions: import('
|
|
950
|
-
webforms: import('
|
|
951
|
-
modals: import('
|
|
952
|
-
sharedCSS: import('
|
|
953
|
-
model: import('
|
|
954
|
-
}) => import('
|
|
931
|
+
roles: import('../modules').IRolesState;
|
|
932
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
933
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
934
|
+
webforms: import('../modules').IWebformEditorState;
|
|
935
|
+
modals: import('../modules').IModalsState;
|
|
936
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
937
|
+
model: import('../modules').IModelState;
|
|
938
|
+
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ITreeItem | undefined) => import('../modules').ITreeItem[], {
|
|
955
939
|
clearCache: () => void;
|
|
956
940
|
}> & {
|
|
957
941
|
clearCache: () => void;
|
|
958
942
|
};
|
|
959
943
|
export declare const selectWebForms: ((state: import('redux').EmptyObject & {
|
|
960
|
-
root: import('
|
|
961
|
-
explorer: import('
|
|
962
|
-
debugger: import('
|
|
963
|
-
settings: import('
|
|
944
|
+
root: import('../modules').IRootState;
|
|
945
|
+
explorer: import('../modules').ITreeItem[];
|
|
946
|
+
debugger: import('../modules').IDebuggerState;
|
|
947
|
+
settings: import('../modules').ISettingsState;
|
|
964
948
|
catalog: {
|
|
965
949
|
state: "loading";
|
|
966
950
|
} | {
|
|
@@ -970,23 +954,23 @@ export declare const selectWebForms: ((state: import('redux').EmptyObject & {
|
|
|
970
954
|
state: "error";
|
|
971
955
|
error: string;
|
|
972
956
|
};
|
|
973
|
-
roles: import('
|
|
974
|
-
sharedDatasources: import('
|
|
975
|
-
savedConditions: import('
|
|
976
|
-
webforms: import('
|
|
977
|
-
modals: import('
|
|
978
|
-
sharedCSS: import('
|
|
979
|
-
model: import('
|
|
980
|
-
}) => import('
|
|
957
|
+
roles: import('../modules').IRolesState;
|
|
958
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
959
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
960
|
+
webforms: import('../modules').IWebformEditorState;
|
|
961
|
+
modals: import('../modules').IModalsState;
|
|
962
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
963
|
+
model: import('../modules').IModelState;
|
|
964
|
+
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ITreeItem | undefined) => import('../modules').ITreeItem[], {
|
|
981
965
|
clearCache: () => void;
|
|
982
966
|
}> & {
|
|
983
967
|
clearCache: () => void;
|
|
984
968
|
};
|
|
985
969
|
export declare const selectClasses: ((state: import('redux').EmptyObject & {
|
|
986
|
-
root: import('
|
|
987
|
-
explorer: import('
|
|
988
|
-
debugger: import('
|
|
989
|
-
settings: import('
|
|
970
|
+
root: import('../modules').IRootState;
|
|
971
|
+
explorer: import('../modules').ITreeItem[];
|
|
972
|
+
debugger: import('../modules').IDebuggerState;
|
|
973
|
+
settings: import('../modules').ISettingsState;
|
|
990
974
|
catalog: {
|
|
991
975
|
state: "loading";
|
|
992
976
|
} | {
|
|
@@ -996,14 +980,14 @@ export declare const selectClasses: ((state: import('redux').EmptyObject & {
|
|
|
996
980
|
state: "error";
|
|
997
981
|
error: string;
|
|
998
982
|
};
|
|
999
|
-
roles: import('
|
|
1000
|
-
sharedDatasources: import('
|
|
1001
|
-
savedConditions: import('
|
|
1002
|
-
webforms: import('
|
|
1003
|
-
modals: import('
|
|
1004
|
-
sharedCSS: import('
|
|
1005
|
-
model: import('
|
|
1006
|
-
}) => import('
|
|
983
|
+
roles: import('../modules').IRolesState;
|
|
984
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
985
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
986
|
+
webforms: import('../modules').IWebformEditorState;
|
|
987
|
+
modals: import('../modules').IModalsState;
|
|
988
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
989
|
+
model: import('../modules').IModelState;
|
|
990
|
+
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ITreeItem | undefined) => import('../modules').ITreeItem[], {
|
|
1007
991
|
clearCache: () => void;
|
|
1008
992
|
}> & {
|
|
1009
993
|
clearCache: () => void;
|