@ws-ui/store 1.1.0 → 1.5.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/dist/hooks/store.d.ts +1 -0
- package/dist/index.cjs.js +35 -35
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +5809 -5464
- package/dist/index.es.js.map +1 -1
- package/dist/modules/debugger/reducer.d.ts +36 -4
- package/dist/modules/debugger/types.d.ts +68 -7
- package/dist/modules/index.d.ts +2 -0
- package/dist/modules/shared-datasources/utils.d.ts +3 -2
- package/dist/modules/tabs/selectors.d.ts +1 -0
- package/dist/modules/tasks/index.d.ts +4 -0
- package/dist/modules/tasks/reducer.d.ts +22 -0
- package/dist/modules/tasks/selectors.d.ts +27 -0
- package/dist/modules/webforms/datasources.adapter.d.ts +1 -0
- package/dist/modules/webforms/reducer.d.ts +6 -1
- package/dist/modules/webforms/thunks.d.ts +4 -0
- package/dist/modules/webforms/types.d.ts +3 -0
- package/dist/package.json +2 -2
- package/dist/selectors/catalog.d.ts +8 -0
- package/dist/selectors/common.d.ts +4 -0
- package/dist/selectors/components.d.ts +1 -0
- package/dist/selectors/datasources.d.ts +9 -1
- package/dist/selectors/debugger.d.ts +218 -2
- package/dist/selectors/explorer.d.ts +26 -58
- package/dist/selectors/modals.d.ts +1 -0
- package/dist/selectors/roles.d.ts +8 -0
- package/dist/selectors/settings.d.ts +10 -56
- package/dist/selectors/states.d.ts +6 -0
- package/dist/selectors/styles.d.ts +5 -0
- package/dist/selectors/tabs.d.ts +78 -0
- package/dist/selectors/webforms.d.ts +40 -0
- package/dist/store.d.ts +2 -0
- package/dist/utils.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IBreakpoint, IDebuggerData, IDebuggerSession } from '../modules/debugger';
|
|
2
|
-
import { FileFolderType } from '@ws-ui/shared';
|
|
1
|
+
import { CommonDebuggerVariablesKey, IBreakpoint, IBreakpointsByFile, IDebuggerData, IDebuggerSession, IEnhancedBreakpoint } from '../modules/debugger/types';
|
|
2
|
+
import { FileFolderType, ITab } from '@ws-ui/shared';
|
|
3
3
|
|
|
4
4
|
export declare const selectDebuggerMeta: ((state: import('redux').EmptyObject & {
|
|
5
5
|
root: import('../modules').IRootState;
|
|
@@ -22,6 +22,7 @@ export declare const selectDebuggerMeta: ((state: import('redux').EmptyObject &
|
|
|
22
22
|
modals: import('../modules').IModalsState;
|
|
23
23
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
24
24
|
model: import('../modules').IModelState;
|
|
25
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
25
26
|
}) => import('../modules').IDebuggerMeta) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IDebuggerState) => import('../modules').IDebuggerMeta, {
|
|
26
27
|
clearCache: () => void;
|
|
27
28
|
}> & {
|
|
@@ -48,6 +49,7 @@ export declare const selectDebuggerData: ((state: import('redux').EmptyObject &
|
|
|
48
49
|
modals: import('../modules').IModalsState;
|
|
49
50
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
50
51
|
model: import('../modules').IModelState;
|
|
52
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
51
53
|
}) => IDebuggerData[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IDebuggerState) => IDebuggerData[], {
|
|
52
54
|
clearCache: () => void;
|
|
53
55
|
}> & {
|
|
@@ -74,6 +76,7 @@ export declare const selectDebuggerSessions: ((state: import('redux').EmptyObjec
|
|
|
74
76
|
modals: import('../modules').IModalsState;
|
|
75
77
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
76
78
|
model: import('../modules').IModelState;
|
|
79
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
77
80
|
}) => IDebuggerSession[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IDebuggerState) => IDebuggerSession[], {
|
|
78
81
|
clearCache: () => void;
|
|
79
82
|
}> & {
|
|
@@ -100,6 +103,7 @@ export declare const selectDebuggerSessionsCount: ((state: import('redux').Empty
|
|
|
100
103
|
modals: import('../modules').IModalsState;
|
|
101
104
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
102
105
|
model: import('../modules').IModelState;
|
|
106
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
103
107
|
}) => number) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => number, {
|
|
104
108
|
clearCache: () => void;
|
|
105
109
|
}> & {
|
|
@@ -108,6 +112,114 @@ export declare const selectDebuggerSessionsCount: ((state: import('redux').Empty
|
|
|
108
112
|
export declare const findOne: (list: IDebuggerData[], filePath: string, methodName: string, className?: string) => IDebuggerData | undefined;
|
|
109
113
|
export declare const findSession: (sessions: IDebuggerSession[], threadId: number) => IDebuggerSession | undefined;
|
|
110
114
|
export declare const findSessionByPath: (sessions: IDebuggerSession[], tabPath: string) => IDebuggerSession | undefined;
|
|
115
|
+
export declare const selectAllBreakpoints: ((state: import('redux').EmptyObject & {
|
|
116
|
+
root: import('../modules').IRootState;
|
|
117
|
+
explorer: import('../modules').ITreeItem[];
|
|
118
|
+
debugger: import('../modules').IDebuggerState;
|
|
119
|
+
settings: import('../modules').ISettingsState;
|
|
120
|
+
catalog: {
|
|
121
|
+
state: "loading";
|
|
122
|
+
} | {
|
|
123
|
+
state: "loaded";
|
|
124
|
+
model: datasources.IEnhancedCatalog;
|
|
125
|
+
} | {
|
|
126
|
+
state: "error";
|
|
127
|
+
error: string;
|
|
128
|
+
};
|
|
129
|
+
roles: import('../modules').IRolesState;
|
|
130
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
131
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
132
|
+
webforms: import('../modules').IWebformEditorState;
|
|
133
|
+
modals: import('../modules').IModalsState;
|
|
134
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
135
|
+
model: import('../modules').IModelState;
|
|
136
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
137
|
+
}) => IEnhancedBreakpoint[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerData[]) => IEnhancedBreakpoint[], {
|
|
138
|
+
clearCache: () => void;
|
|
139
|
+
}> & {
|
|
140
|
+
clearCache: () => void;
|
|
141
|
+
};
|
|
142
|
+
export declare const selectBreakpointsByFile: ((state: import('redux').EmptyObject & {
|
|
143
|
+
root: import('../modules').IRootState;
|
|
144
|
+
explorer: import('../modules').ITreeItem[];
|
|
145
|
+
debugger: import('../modules').IDebuggerState;
|
|
146
|
+
settings: import('../modules').ISettingsState;
|
|
147
|
+
catalog: {
|
|
148
|
+
state: "loading";
|
|
149
|
+
} | {
|
|
150
|
+
state: "loaded";
|
|
151
|
+
model: datasources.IEnhancedCatalog;
|
|
152
|
+
} | {
|
|
153
|
+
state: "error";
|
|
154
|
+
error: string;
|
|
155
|
+
};
|
|
156
|
+
roles: import('../modules').IRolesState;
|
|
157
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
158
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
159
|
+
webforms: import('../modules').IWebformEditorState;
|
|
160
|
+
modals: import('../modules').IModalsState;
|
|
161
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
162
|
+
model: import('../modules').IModelState;
|
|
163
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
164
|
+
}) => IBreakpointsByFile[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerData[]) => IBreakpointsByFile[], {
|
|
165
|
+
clearCache: () => void;
|
|
166
|
+
}> & {
|
|
167
|
+
clearCache: () => void;
|
|
168
|
+
};
|
|
169
|
+
export declare const selectAllBreakpointsCount: ((state: import('redux').EmptyObject & {
|
|
170
|
+
root: import('../modules').IRootState;
|
|
171
|
+
explorer: import('../modules').ITreeItem[];
|
|
172
|
+
debugger: import('../modules').IDebuggerState;
|
|
173
|
+
settings: import('../modules').ISettingsState;
|
|
174
|
+
catalog: {
|
|
175
|
+
state: "loading";
|
|
176
|
+
} | {
|
|
177
|
+
state: "loaded";
|
|
178
|
+
model: datasources.IEnhancedCatalog;
|
|
179
|
+
} | {
|
|
180
|
+
state: "error";
|
|
181
|
+
error: string;
|
|
182
|
+
};
|
|
183
|
+
roles: import('../modules').IRolesState;
|
|
184
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
185
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
186
|
+
webforms: import('../modules').IWebformEditorState;
|
|
187
|
+
modals: import('../modules').IModalsState;
|
|
188
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
189
|
+
model: import('../modules').IModelState;
|
|
190
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
191
|
+
}) => number) & import('reselect').OutputSelectorFields<(args_0: IEnhancedBreakpoint[]) => number, {
|
|
192
|
+
clearCache: () => void;
|
|
193
|
+
}> & {
|
|
194
|
+
clearCache: () => void;
|
|
195
|
+
};
|
|
196
|
+
export declare const selectEnabledBreakpointsCount: ((state: import('redux').EmptyObject & {
|
|
197
|
+
root: import('../modules').IRootState;
|
|
198
|
+
explorer: import('../modules').ITreeItem[];
|
|
199
|
+
debugger: import('../modules').IDebuggerState;
|
|
200
|
+
settings: import('../modules').ISettingsState;
|
|
201
|
+
catalog: {
|
|
202
|
+
state: "loading";
|
|
203
|
+
} | {
|
|
204
|
+
state: "loaded";
|
|
205
|
+
model: datasources.IEnhancedCatalog;
|
|
206
|
+
} | {
|
|
207
|
+
state: "error";
|
|
208
|
+
error: string;
|
|
209
|
+
};
|
|
210
|
+
roles: import('../modules').IRolesState;
|
|
211
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
212
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
213
|
+
webforms: import('../modules').IWebformEditorState;
|
|
214
|
+
modals: import('../modules').IModalsState;
|
|
215
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
216
|
+
model: import('../modules').IModelState;
|
|
217
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
218
|
+
}) => number) & import('reselect').OutputSelectorFields<(args_0: IEnhancedBreakpoint[]) => number, {
|
|
219
|
+
clearCache: () => void;
|
|
220
|
+
}> & {
|
|
221
|
+
clearCache: () => void;
|
|
222
|
+
};
|
|
111
223
|
export declare const selectBreakpoints: (filePath: string, methodName: string) => ((state: import('redux').EmptyObject & {
|
|
112
224
|
root: import('../modules').IRootState;
|
|
113
225
|
explorer: import('../modules').ITreeItem[];
|
|
@@ -129,6 +241,7 @@ export declare const selectBreakpoints: (filePath: string, methodName: string) =
|
|
|
129
241
|
modals: import('../modules').IModalsState;
|
|
130
242
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
131
243
|
model: import('../modules').IModelState;
|
|
244
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
132
245
|
}) => IBreakpoint[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerData[]) => IBreakpoint[], {
|
|
133
246
|
clearCache: () => void;
|
|
134
247
|
}> & {
|
|
@@ -155,6 +268,7 @@ export declare const selectDraftBreakpoints: (filePath: string, methodName: stri
|
|
|
155
268
|
modals: import('../modules').IModalsState;
|
|
156
269
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
157
270
|
model: import('../modules').IModelState;
|
|
271
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
158
272
|
}) => IBreakpoint[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerData[]) => IBreakpoint[], {
|
|
159
273
|
clearCache: () => void;
|
|
160
274
|
}> & {
|
|
@@ -181,6 +295,7 @@ export declare const selectClassBreakpoints: (filePath: string) => ((state: impo
|
|
|
181
295
|
modals: import('../modules').IModalsState;
|
|
182
296
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
183
297
|
model: import('../modules').IModelState;
|
|
298
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
184
299
|
}) => IBreakpoint[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerData[]) => IBreakpoint[], {
|
|
185
300
|
clearCache: () => void;
|
|
186
301
|
}> & {
|
|
@@ -207,6 +322,7 @@ export declare const selectDraftClassBreakpoints: (filePath: string) => ((state:
|
|
|
207
322
|
modals: import('../modules').IModalsState;
|
|
208
323
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
209
324
|
model: import('../modules').IModelState;
|
|
325
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
210
326
|
}) => IBreakpoint[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerData[]) => IBreakpoint[], {
|
|
211
327
|
clearCache: () => void;
|
|
212
328
|
}> & {
|
|
@@ -233,6 +349,7 @@ export declare const selectHighlightedLines: (threadId: number) => ((state: impo
|
|
|
233
349
|
modals: import('../modules').IModalsState;
|
|
234
350
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
235
351
|
model: import('../modules').IModelState;
|
|
352
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
236
353
|
}) => {
|
|
237
354
|
start: number;
|
|
238
355
|
end?: number | undefined;
|
|
@@ -265,6 +382,7 @@ export declare const selectActiveLine: (threadId: number) => ((state: import('re
|
|
|
265
382
|
modals: import('../modules').IModalsState;
|
|
266
383
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
267
384
|
model: import('../modules').IModelState;
|
|
385
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
268
386
|
}) => number | null) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => number | null, {
|
|
269
387
|
clearCache: () => void;
|
|
270
388
|
}> & {
|
|
@@ -291,6 +409,7 @@ export declare const selectExpressions: (threadId: number) => ((state: import('r
|
|
|
291
409
|
modals: import('../modules').IModalsState;
|
|
292
410
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
293
411
|
model: import('../modules').IModelState;
|
|
412
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
294
413
|
}) => import('../modules').IExpression[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => import('../modules').IExpression[], {
|
|
295
414
|
clearCache: () => void;
|
|
296
415
|
}> & {
|
|
@@ -317,6 +436,7 @@ export declare const selectStoppedFromDebugSession: (threadId: number) => ((stat
|
|
|
317
436
|
modals: import('../modules').IModalsState;
|
|
318
437
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
319
438
|
model: import('../modules').IModelState;
|
|
439
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
320
440
|
}) => boolean) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => boolean, {
|
|
321
441
|
clearCache: () => void;
|
|
322
442
|
}> & {
|
|
@@ -343,6 +463,7 @@ export declare const selectSourceByPath: (filePath: string, methodName: string)
|
|
|
343
463
|
modals: import('../modules').IModalsState;
|
|
344
464
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
345
465
|
model: import('../modules').IModelState;
|
|
466
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
346
467
|
}) => import('@ws-ui/shared').ISource | undefined) & import('reselect').OutputSelectorFields<(args_0: IDebuggerData[]) => import('@ws-ui/shared').ISource | undefined, {
|
|
347
468
|
clearCache: () => void;
|
|
348
469
|
}> & {
|
|
@@ -369,6 +490,7 @@ export declare const selectThreadIdByPath: (tabPath: string) => ((state: import(
|
|
|
369
490
|
modals: import('../modules').IModalsState;
|
|
370
491
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
371
492
|
model: import('../modules').IModelState;
|
|
493
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
372
494
|
}) => number) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => number, {
|
|
373
495
|
clearCache: () => void;
|
|
374
496
|
}> & {
|
|
@@ -395,6 +517,7 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
|
|
|
395
517
|
modals: import('../modules').IModalsState;
|
|
396
518
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
397
519
|
model: import('../modules').IModelState;
|
|
520
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
398
521
|
}) => (import("vscode-debugprotocol").DebugProtocol.Source & {
|
|
399
522
|
codeDescriptorInfo?: import('@ws-ui/shared').ICodeDescriptor | undefined;
|
|
400
523
|
content?: string | undefined;
|
|
@@ -427,6 +550,7 @@ export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state
|
|
|
427
550
|
modals: import('../modules').IModalsState;
|
|
428
551
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
429
552
|
model: import('../modules').IModelState;
|
|
553
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
430
554
|
}) => import('../modules').IStackFrame | undefined) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => import('../modules').IStackFrame | undefined, {
|
|
431
555
|
clearCache: () => void;
|
|
432
556
|
}> & {
|
|
@@ -453,6 +577,7 @@ export declare const selectDebuggerChannels: ((state: import('redux').EmptyObjec
|
|
|
453
577
|
modals: import('../modules').IModalsState;
|
|
454
578
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
455
579
|
model: import('../modules').IModelState;
|
|
580
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
456
581
|
}) => {
|
|
457
582
|
id: number;
|
|
458
583
|
threadId: number;
|
|
@@ -485,11 +610,39 @@ export declare const selectStackFrames: (threadId: number) => ((state: import('r
|
|
|
485
610
|
modals: import('../modules').IModalsState;
|
|
486
611
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
487
612
|
model: import('../modules').IModelState;
|
|
613
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
488
614
|
}) => import('../modules').IStackFrame[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => import('../modules').IStackFrame[], {
|
|
489
615
|
clearCache: () => void;
|
|
490
616
|
}> & {
|
|
491
617
|
clearCache: () => void;
|
|
492
618
|
};
|
|
619
|
+
export declare const selectCommonVariables: (threadId: number, key: CommonDebuggerVariablesKey) => ((state: import('redux').EmptyObject & {
|
|
620
|
+
root: import('../modules').IRootState;
|
|
621
|
+
explorer: import('../modules').ITreeItem[];
|
|
622
|
+
debugger: import('../modules').IDebuggerState;
|
|
623
|
+
settings: import('../modules').ISettingsState;
|
|
624
|
+
catalog: {
|
|
625
|
+
state: "loading";
|
|
626
|
+
} | {
|
|
627
|
+
state: "loaded";
|
|
628
|
+
model: datasources.IEnhancedCatalog;
|
|
629
|
+
} | {
|
|
630
|
+
state: "error";
|
|
631
|
+
error: string;
|
|
632
|
+
};
|
|
633
|
+
roles: import('../modules').IRolesState;
|
|
634
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
635
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
636
|
+
webforms: import('../modules').IWebformEditorState;
|
|
637
|
+
modals: import('../modules').IModalsState;
|
|
638
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
639
|
+
model: import('../modules').IModelState;
|
|
640
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
641
|
+
}) => import('../modules').ILocalVariable[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => import('../modules').ILocalVariable[], {
|
|
642
|
+
clearCache: () => void;
|
|
643
|
+
}> & {
|
|
644
|
+
clearCache: () => void;
|
|
645
|
+
};
|
|
493
646
|
export declare const selectCallChainVariables: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
494
647
|
root: import('../modules').IRootState;
|
|
495
648
|
explorer: import('../modules').ITreeItem[];
|
|
@@ -511,6 +664,7 @@ export declare const selectCallChainVariables: (threadId: number) => ((state: im
|
|
|
511
664
|
modals: import('../modules').IModalsState;
|
|
512
665
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
513
666
|
model: import('../modules').IModelState;
|
|
667
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
514
668
|
}) => import('../modules').ICallChainVariable[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => import('../modules').ICallChainVariable[], {
|
|
515
669
|
clearCache: () => void;
|
|
516
670
|
}> & {
|
|
@@ -537,6 +691,7 @@ export declare const selectExpressionsVariables: (threadId: number) => ((state:
|
|
|
537
691
|
modals: import('../modules').IModalsState;
|
|
538
692
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
539
693
|
model: import('../modules').IModelState;
|
|
694
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
540
695
|
}) => import('../modules').IExpressionVariable[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => import('../modules').IExpressionVariable[], {
|
|
541
696
|
clearCache: () => void;
|
|
542
697
|
}> & {
|
|
@@ -563,6 +718,7 @@ export declare const selectClassOffset: (filePath: string, type?: keyof IDebugge
|
|
|
563
718
|
modals: import('../modules').IModalsState;
|
|
564
719
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
565
720
|
model: import('../modules').IModelState;
|
|
721
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
566
722
|
}) => number) & import('reselect').OutputSelectorFields<(args_0: IDebuggerData[]) => number, {
|
|
567
723
|
clearCache: () => void;
|
|
568
724
|
}> & {
|
|
@@ -589,6 +745,7 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
|
|
|
589
745
|
modals: import('../modules').IModalsState;
|
|
590
746
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
591
747
|
model: import('../modules').IModelState;
|
|
748
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
592
749
|
}) => {
|
|
593
750
|
locationLine: number;
|
|
594
751
|
errMess: string;
|
|
@@ -612,3 +769,62 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
|
|
|
612
769
|
}> & {
|
|
613
770
|
clearCache: () => void;
|
|
614
771
|
};
|
|
772
|
+
export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
773
|
+
root: import('../modules').IRootState;
|
|
774
|
+
explorer: import('../modules').ITreeItem[];
|
|
775
|
+
debugger: import('../modules').IDebuggerState;
|
|
776
|
+
settings: import('../modules').ISettingsState;
|
|
777
|
+
catalog: {
|
|
778
|
+
state: "loading";
|
|
779
|
+
} | {
|
|
780
|
+
state: "loaded";
|
|
781
|
+
model: datasources.IEnhancedCatalog;
|
|
782
|
+
} | {
|
|
783
|
+
state: "error";
|
|
784
|
+
error: string;
|
|
785
|
+
};
|
|
786
|
+
roles: import('../modules').IRolesState;
|
|
787
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
788
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
789
|
+
webforms: import('../modules').IWebformEditorState;
|
|
790
|
+
modals: import('../modules').IModalsState;
|
|
791
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
792
|
+
model: import('../modules').IModelState;
|
|
793
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
794
|
+
}) => ITab<any, Partial<{
|
|
795
|
+
initialLineInfo: {
|
|
796
|
+
line: number;
|
|
797
|
+
offset?: number | undefined;
|
|
798
|
+
lastModification: number;
|
|
799
|
+
};
|
|
800
|
+
initialSelectionInfo: {
|
|
801
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
802
|
+
lastModification: number;
|
|
803
|
+
};
|
|
804
|
+
diffContent: string;
|
|
805
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
806
|
+
source: import('@ws-ui/shared').ISource;
|
|
807
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
808
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
809
|
+
kind: string;
|
|
810
|
+
}>>[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => ITab<any, Partial<{
|
|
811
|
+
initialLineInfo: {
|
|
812
|
+
line: number;
|
|
813
|
+
offset?: number | undefined;
|
|
814
|
+
lastModification: number;
|
|
815
|
+
};
|
|
816
|
+
initialSelectionInfo: {
|
|
817
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
818
|
+
lastModification: number;
|
|
819
|
+
};
|
|
820
|
+
diffContent: string;
|
|
821
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
822
|
+
source: import('@ws-ui/shared').ISource;
|
|
823
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
824
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
825
|
+
kind: string;
|
|
826
|
+
}>>[], {
|
|
827
|
+
clearCache: () => void;
|
|
828
|
+
}> & {
|
|
829
|
+
clearCache: () => void;
|
|
830
|
+
};
|
|
@@ -21,6 +21,7 @@ export declare const selectRoot: ((state: import('redux').EmptyObject & {
|
|
|
21
21
|
modals: import('../modules').IModalsState;
|
|
22
22
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
23
23
|
model: import('../modules').IModelState;
|
|
24
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
24
25
|
}) => import('../modules').IRootState) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => import('../modules').IRootState, {
|
|
25
26
|
clearCache: () => void;
|
|
26
27
|
}> & {
|
|
@@ -47,6 +48,7 @@ export declare const selectTabs: ((state: import('redux').EmptyObject & {
|
|
|
47
48
|
modals: import('../modules').IModalsState;
|
|
48
49
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
49
50
|
model: import('../modules').IModelState;
|
|
51
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
50
52
|
}) => ITab<any, Partial<{
|
|
51
53
|
initialLineInfo: {
|
|
52
54
|
line: number;
|
|
@@ -105,6 +107,7 @@ export declare const selectActiveTab: ((state: import('redux').EmptyObject & {
|
|
|
105
107
|
modals: import('../modules').IModalsState;
|
|
106
108
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
107
109
|
model: import('../modules').IModelState;
|
|
110
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
108
111
|
}) => string) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => string, {
|
|
109
112
|
clearCache: () => void;
|
|
110
113
|
}> & {
|
|
@@ -131,6 +134,7 @@ export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
|
|
|
131
134
|
modals: import('../modules').IModalsState;
|
|
132
135
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
133
136
|
model: import('../modules').IModelState;
|
|
137
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
134
138
|
}) => ITab<any, Partial<{
|
|
135
139
|
initialLineInfo: {
|
|
136
140
|
line: number;
|
|
@@ -189,6 +193,7 @@ export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
|
|
|
189
193
|
modals: import('../modules').IModalsState;
|
|
190
194
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
191
195
|
model: import('../modules').IModelState;
|
|
196
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
192
197
|
}) => ITab<any, Partial<{
|
|
193
198
|
initialLineInfo: {
|
|
194
199
|
line: number;
|
|
@@ -247,6 +252,7 @@ export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject &
|
|
|
247
252
|
modals: import('../modules').IModalsState;
|
|
248
253
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
249
254
|
model: import('../modules').IModelState;
|
|
255
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
250
256
|
}) => ITab<any, Partial<{
|
|
251
257
|
initialLineInfo: {
|
|
252
258
|
line: number;
|
|
@@ -305,6 +311,7 @@ export declare const selectPreviewedWebformsPaths: ((state: import('redux').Empt
|
|
|
305
311
|
modals: import('../modules').IModalsState;
|
|
306
312
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
307
313
|
model: import('../modules').IModelState;
|
|
314
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
308
315
|
}) => string[]) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
309
316
|
initialLineInfo: {
|
|
310
317
|
line: number;
|
|
@@ -347,6 +354,7 @@ export declare const selectHasTabs: ((state: import('redux').EmptyObject & {
|
|
|
347
354
|
modals: import('../modules').IModalsState;
|
|
348
355
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
349
356
|
model: import('../modules').IModelState;
|
|
357
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
350
358
|
}) => boolean) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
351
359
|
initialLineInfo: {
|
|
352
360
|
line: number;
|
|
@@ -389,6 +397,7 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import('redu
|
|
|
389
397
|
modals: import('../modules').IModalsState;
|
|
390
398
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
391
399
|
model: import('../modules').IModelState;
|
|
400
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
392
401
|
}) => ITab<any, Partial<{
|
|
393
402
|
initialLineInfo: {
|
|
394
403
|
line: number;
|
|
@@ -447,6 +456,7 @@ export declare const selectTabNameByPath: (tabPath: string) => ((state: import('
|
|
|
447
456
|
modals: import('../modules').IModalsState;
|
|
448
457
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
449
458
|
model: import('../modules').IModelState;
|
|
459
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
450
460
|
}) => string | undefined) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
451
461
|
initialLineInfo: {
|
|
452
462
|
line: number;
|
|
@@ -489,6 +499,7 @@ export declare const selectContentByPath: (tabPath: string, contentPath?: string
|
|
|
489
499
|
modals: import('../modules').IModalsState;
|
|
490
500
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
491
501
|
model: import('../modules').IModelState;
|
|
502
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
492
503
|
}) => any) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
493
504
|
initialLineInfo: {
|
|
494
505
|
line: number;
|
|
@@ -531,6 +542,7 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
531
542
|
modals: import('../modules').IModalsState;
|
|
532
543
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
533
544
|
model: import('../modules').IModelState;
|
|
545
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
534
546
|
}) => Partial<{
|
|
535
547
|
initialLineInfo: {
|
|
536
548
|
line: number;
|
|
@@ -605,6 +617,7 @@ export declare const selectWebformNodes: (path: string, transformer?: (value: ob
|
|
|
605
617
|
modals: import('../modules').IModalsState;
|
|
606
618
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
607
619
|
model: import('../modules').IModelState;
|
|
620
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
608
621
|
}) => any) & import('reselect').OutputSelectorFields<(args_0: any) => any, {
|
|
609
622
|
clearCache: () => void;
|
|
610
623
|
}> & {
|
|
@@ -631,6 +644,7 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
|
631
644
|
modals: import('../modules').IModalsState;
|
|
632
645
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
633
646
|
model: import('../modules').IModelState;
|
|
647
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
634
648
|
}) => ITab<any, Partial<{
|
|
635
649
|
initialLineInfo: {
|
|
636
650
|
line: number;
|
|
@@ -705,6 +719,7 @@ export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObje
|
|
|
705
719
|
modals: import('../modules').IModalsState;
|
|
706
720
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
707
721
|
model: import('../modules').IModelState;
|
|
722
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
708
723
|
}) => number) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
709
724
|
initialLineInfo: {
|
|
710
725
|
line: number;
|
|
@@ -726,64 +741,6 @@ export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObje
|
|
|
726
741
|
}> & {
|
|
727
742
|
clearCache: () => void;
|
|
728
743
|
};
|
|
729
|
-
export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
730
|
-
root: import('../modules').IRootState;
|
|
731
|
-
explorer: import('../modules').ITreeItem[];
|
|
732
|
-
debugger: import('../modules').IDebuggerState;
|
|
733
|
-
settings: import('../modules').ISettingsState;
|
|
734
|
-
catalog: {
|
|
735
|
-
state: "loading";
|
|
736
|
-
} | {
|
|
737
|
-
state: "loaded";
|
|
738
|
-
model: datasources.IEnhancedCatalog;
|
|
739
|
-
} | {
|
|
740
|
-
state: "error";
|
|
741
|
-
error: string;
|
|
742
|
-
};
|
|
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
|
-
}) => ITab<any, Partial<{
|
|
751
|
-
initialLineInfo: {
|
|
752
|
-
line: number;
|
|
753
|
-
offset?: number | undefined;
|
|
754
|
-
lastModification: number;
|
|
755
|
-
};
|
|
756
|
-
initialSelectionInfo: {
|
|
757
|
-
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
758
|
-
lastModification: number;
|
|
759
|
-
};
|
|
760
|
-
diffContent: string;
|
|
761
|
-
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
762
|
-
source: import('@ws-ui/shared').ISource;
|
|
763
|
-
editor: import('@ws-ui/shared').IEditor;
|
|
764
|
-
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
765
|
-
kind: string;
|
|
766
|
-
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IDebuggerSession[]) => ITab<any, Partial<{
|
|
767
|
-
initialLineInfo: {
|
|
768
|
-
line: number;
|
|
769
|
-
offset?: number | undefined;
|
|
770
|
-
lastModification: number;
|
|
771
|
-
};
|
|
772
|
-
initialSelectionInfo: {
|
|
773
|
-
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
774
|
-
lastModification: number;
|
|
775
|
-
};
|
|
776
|
-
diffContent: string;
|
|
777
|
-
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
778
|
-
source: import('@ws-ui/shared').ISource;
|
|
779
|
-
editor: import('@ws-ui/shared').IEditor;
|
|
780
|
-
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
781
|
-
kind: string;
|
|
782
|
-
}>>[], {
|
|
783
|
-
clearCache: () => void;
|
|
784
|
-
}> & {
|
|
785
|
-
clearCache: () => void;
|
|
786
|
-
};
|
|
787
744
|
export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
788
745
|
root: import('../modules').IRootState;
|
|
789
746
|
explorer: import('../modules').ITreeItem[];
|
|
@@ -805,6 +762,7 @@ export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
|
805
762
|
modals: import('../modules').IModalsState;
|
|
806
763
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
807
764
|
model: import('../modules').IModelState;
|
|
765
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
808
766
|
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
809
767
|
root: import('../modules').IRootState;
|
|
810
768
|
explorer: import('../modules').ITreeItem[];
|
|
@@ -826,6 +784,7 @@ export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
|
826
784
|
modals: import('../modules').IModalsState;
|
|
827
785
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
828
786
|
model: import('../modules').IModelState;
|
|
787
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
829
788
|
}>) => import('../modules').ITreeItem[], {
|
|
830
789
|
clearCache: () => void;
|
|
831
790
|
}> & {
|
|
@@ -852,6 +811,7 @@ export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject
|
|
|
852
811
|
modals: import('../modules').IModalsState;
|
|
853
812
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
854
813
|
model: import('../modules').IModelState;
|
|
814
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
855
815
|
}) => import('../modules').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
856
816
|
root: import('../modules').IRootState;
|
|
857
817
|
explorer: import('../modules').ITreeItem[];
|
|
@@ -873,6 +833,7 @@ export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject
|
|
|
873
833
|
modals: import('../modules').IModalsState;
|
|
874
834
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
875
835
|
model: import('../modules').IModelState;
|
|
836
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
876
837
|
}>) => import('../modules').ITreeItem | undefined, {
|
|
877
838
|
clearCache: () => void;
|
|
878
839
|
}> & {
|
|
@@ -899,6 +860,7 @@ export declare const selectMethodsFolder: ((state: import('redux').EmptyObject &
|
|
|
899
860
|
modals: import('../modules').IModalsState;
|
|
900
861
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
901
862
|
model: import('../modules').IModelState;
|
|
863
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
902
864
|
}) => import('../modules').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
903
865
|
root: import('../modules').IRootState;
|
|
904
866
|
explorer: import('../modules').ITreeItem[];
|
|
@@ -920,6 +882,7 @@ export declare const selectMethodsFolder: ((state: import('redux').EmptyObject &
|
|
|
920
882
|
modals: import('../modules').IModalsState;
|
|
921
883
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
922
884
|
model: import('../modules').IModelState;
|
|
885
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
923
886
|
}>) => import('../modules').ITreeItem | undefined, {
|
|
924
887
|
clearCache: () => void;
|
|
925
888
|
}> & {
|
|
@@ -946,6 +909,7 @@ export declare const selectClassesFolder: ((state: import('redux').EmptyObject &
|
|
|
946
909
|
modals: import('../modules').IModalsState;
|
|
947
910
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
948
911
|
model: import('../modules').IModelState;
|
|
912
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
949
913
|
}) => import('../modules').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
950
914
|
root: import('../modules').IRootState;
|
|
951
915
|
explorer: import('../modules').ITreeItem[];
|
|
@@ -967,6 +931,7 @@ export declare const selectClassesFolder: ((state: import('redux').EmptyObject &
|
|
|
967
931
|
modals: import('../modules').IModalsState;
|
|
968
932
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
969
933
|
model: import('../modules').IModelState;
|
|
934
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
970
935
|
}>) => import('../modules').ITreeItem | undefined, {
|
|
971
936
|
clearCache: () => void;
|
|
972
937
|
}> & {
|
|
@@ -993,6 +958,7 @@ export declare const selectMethods: ((state: import('redux').EmptyObject & {
|
|
|
993
958
|
modals: import('../modules').IModalsState;
|
|
994
959
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
995
960
|
model: import('../modules').IModelState;
|
|
961
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
996
962
|
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ITreeItem | undefined) => import('../modules').ITreeItem[], {
|
|
997
963
|
clearCache: () => void;
|
|
998
964
|
}> & {
|
|
@@ -1019,6 +985,7 @@ export declare const selectWebForms: ((state: import('redux').EmptyObject & {
|
|
|
1019
985
|
modals: import('../modules').IModalsState;
|
|
1020
986
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
1021
987
|
model: import('../modules').IModelState;
|
|
988
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
1022
989
|
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ITreeItem | undefined) => import('../modules').ITreeItem[], {
|
|
1023
990
|
clearCache: () => void;
|
|
1024
991
|
}> & {
|
|
@@ -1045,6 +1012,7 @@ export declare const selectClasses: ((state: import('redux').EmptyObject & {
|
|
|
1045
1012
|
modals: import('../modules').IModalsState;
|
|
1046
1013
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
1047
1014
|
model: import('../modules').IModelState;
|
|
1015
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
1048
1016
|
}) => import('../modules').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ITreeItem | undefined) => import('../modules').ITreeItem[], {
|
|
1049
1017
|
clearCache: () => void;
|
|
1050
1018
|
}> & {
|
|
@@ -19,6 +19,7 @@ export declare const selectModals: ((state: import('redux').EmptyObject & {
|
|
|
19
19
|
modals: import('../modules').IModalsState;
|
|
20
20
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
21
21
|
model: import('../modules').IModelState;
|
|
22
|
+
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
22
23
|
}) => import('@ws-ui/shared').IModal[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IModalsState) => import('@ws-ui/shared').IModal[], {
|
|
23
24
|
clearCache: () => void;
|
|
24
25
|
}> & {
|