@ws-ui/store 1.11.11 → 1.11.12-rc13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hooks/store.d.ts +3 -3
- package/dist/index.cjs.js +43 -43
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +9682 -10341
- package/dist/index.es.js.map +1 -1
- package/dist/modules/explorer/index.d.ts +1 -1
- package/dist/modules/explorer/reducer.d.ts +1 -1
- package/dist/modules/explorer/thunks.d.ts +2 -10
- package/dist/modules/explorer/types.d.ts +1 -26
- package/dist/modules/explorer/utils.d.ts +2 -2
- package/dist/modules/index.d.ts +3 -3
- package/dist/modules/modals/thunks.d.ts +1 -9
- package/dist/modules/roles/adapter.d.ts +1 -180
- package/dist/modules/roles/index.d.ts +1 -2
- package/dist/modules/roles/reducer.d.ts +1 -1
- package/dist/modules/roles/thunks.d.ts +1 -2
- package/dist/modules/settings/index.d.ts +1 -1
- package/dist/modules/settings/reducer.d.ts +3 -19
- package/dist/modules/settings/types.d.ts +2 -6
- package/dist/modules/tasks/selectors.d.ts +3 -3
- package/dist/modules/webforms/datasources.adapter.d.ts +3 -3
- package/dist/selectors/catalog.d.ts +27 -27
- package/dist/selectors/common.d.ts +12 -12
- package/dist/selectors/components.d.ts +3 -3
- package/dist/selectors/datasources.d.ts +24 -24
- package/dist/selectors/debugger.d.ts +84 -84
- package/dist/selectors/explorer.d.ts +89 -89
- package/dist/selectors/modals.d.ts +3 -3
- package/dist/selectors/roles.d.ts +42 -42
- package/dist/selectors/settings.d.ts +34 -34
- package/dist/selectors/states.d.ts +18 -18
- package/dist/selectors/styles.d.ts +15 -15
- package/dist/selectors/tabs.d.ts +15 -15
- package/dist/selectors/webforms.d.ts +42 -42
- package/package.json +2 -2
- package/dist/modules/roles/types.d.ts +0 -108
|
@@ -2,9 +2,9 @@ import { FileFolderType, ITab } from '@ws-ui/shared';
|
|
|
2
2
|
import { CommonDebuggerVariablesKey, IBreakpoint, IBreakpointsByFile, IDebuggerData, IDebuggerSession, IEnhancedBreakpoint } from '../modules/debugger/types';
|
|
3
3
|
export declare const selectDebuggerMeta: ((state: import('redux').EmptyObject & {
|
|
4
4
|
root: import('../modules').IRootState;
|
|
5
|
-
explorer: import('
|
|
5
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
6
6
|
debugger: import('../modules').IDebuggerState;
|
|
7
|
-
settings: import('
|
|
7
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
8
8
|
catalog: {
|
|
9
9
|
state: "loading";
|
|
10
10
|
} | {
|
|
@@ -14,7 +14,7 @@ export declare const selectDebuggerMeta: ((state: import('redux').EmptyObject &
|
|
|
14
14
|
state: "error";
|
|
15
15
|
error: string;
|
|
16
16
|
};
|
|
17
|
-
roles: import('
|
|
17
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
18
18
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
19
19
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
20
20
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -30,9 +30,9 @@ export declare const selectDebuggerMeta: ((state: import('redux').EmptyObject &
|
|
|
30
30
|
};
|
|
31
31
|
export declare const selectDebuggerData: ((state: import('redux').EmptyObject & {
|
|
32
32
|
root: import('../modules').IRootState;
|
|
33
|
-
explorer: import('
|
|
33
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
34
34
|
debugger: import('../modules').IDebuggerState;
|
|
35
|
-
settings: import('
|
|
35
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
36
36
|
catalog: {
|
|
37
37
|
state: "loading";
|
|
38
38
|
} | {
|
|
@@ -42,7 +42,7 @@ export declare const selectDebuggerData: ((state: import('redux').EmptyObject &
|
|
|
42
42
|
state: "error";
|
|
43
43
|
error: string;
|
|
44
44
|
};
|
|
45
|
-
roles: import('
|
|
45
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
46
46
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
47
47
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
48
48
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -58,9 +58,9 @@ export declare const selectDebuggerData: ((state: import('redux').EmptyObject &
|
|
|
58
58
|
};
|
|
59
59
|
export declare const selectDebuggerSessions: ((state: import('redux').EmptyObject & {
|
|
60
60
|
root: import('../modules').IRootState;
|
|
61
|
-
explorer: import('
|
|
61
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
62
62
|
debugger: import('../modules').IDebuggerState;
|
|
63
|
-
settings: import('
|
|
63
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
64
64
|
catalog: {
|
|
65
65
|
state: "loading";
|
|
66
66
|
} | {
|
|
@@ -70,7 +70,7 @@ export declare const selectDebuggerSessions: ((state: import('redux').EmptyObjec
|
|
|
70
70
|
state: "error";
|
|
71
71
|
error: string;
|
|
72
72
|
};
|
|
73
|
-
roles: import('
|
|
73
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
74
74
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
75
75
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
76
76
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -86,9 +86,9 @@ export declare const selectDebuggerSessions: ((state: import('redux').EmptyObjec
|
|
|
86
86
|
};
|
|
87
87
|
export declare const selectDebuggerSessionsCount: ((state: import('redux').EmptyObject & {
|
|
88
88
|
root: import('../modules').IRootState;
|
|
89
|
-
explorer: import('
|
|
89
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
90
90
|
debugger: import('../modules').IDebuggerState;
|
|
91
|
-
settings: import('
|
|
91
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
92
92
|
catalog: {
|
|
93
93
|
state: "loading";
|
|
94
94
|
} | {
|
|
@@ -98,7 +98,7 @@ export declare const selectDebuggerSessionsCount: ((state: import('redux').Empty
|
|
|
98
98
|
state: "error";
|
|
99
99
|
error: string;
|
|
100
100
|
};
|
|
101
|
-
roles: import('
|
|
101
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
102
102
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
103
103
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
104
104
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -117,9 +117,9 @@ export declare const findSession: (sessions: IDebuggerSession[], threadId: numbe
|
|
|
117
117
|
export declare const findSessionByPath: (sessions: IDebuggerSession[], tabPath: string) => IDebuggerSession | undefined;
|
|
118
118
|
export declare const selectAllBreakpoints: ((state: import('redux').EmptyObject & {
|
|
119
119
|
root: import('../modules').IRootState;
|
|
120
|
-
explorer: import('
|
|
120
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
121
121
|
debugger: import('../modules').IDebuggerState;
|
|
122
|
-
settings: import('
|
|
122
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
123
123
|
catalog: {
|
|
124
124
|
state: "loading";
|
|
125
125
|
} | {
|
|
@@ -129,7 +129,7 @@ export declare const selectAllBreakpoints: ((state: import('redux').EmptyObject
|
|
|
129
129
|
state: "error";
|
|
130
130
|
error: string;
|
|
131
131
|
};
|
|
132
|
-
roles: import('
|
|
132
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
133
133
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
134
134
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
135
135
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -145,9 +145,9 @@ export declare const selectAllBreakpoints: ((state: import('redux').EmptyObject
|
|
|
145
145
|
};
|
|
146
146
|
export declare const selectBreakpointsByFile: ((state: import('redux').EmptyObject & {
|
|
147
147
|
root: import('../modules').IRootState;
|
|
148
|
-
explorer: import('
|
|
148
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
149
149
|
debugger: import('../modules').IDebuggerState;
|
|
150
|
-
settings: import('
|
|
150
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
151
151
|
catalog: {
|
|
152
152
|
state: "loading";
|
|
153
153
|
} | {
|
|
@@ -157,7 +157,7 @@ export declare const selectBreakpointsByFile: ((state: import('redux').EmptyObje
|
|
|
157
157
|
state: "error";
|
|
158
158
|
error: string;
|
|
159
159
|
};
|
|
160
|
-
roles: import('
|
|
160
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
161
161
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
162
162
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
163
163
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -173,9 +173,9 @@ export declare const selectBreakpointsByFile: ((state: import('redux').EmptyObje
|
|
|
173
173
|
};
|
|
174
174
|
export declare const selectAllBreakpointsCount: ((state: import('redux').EmptyObject & {
|
|
175
175
|
root: import('../modules').IRootState;
|
|
176
|
-
explorer: import('
|
|
176
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
177
177
|
debugger: import('../modules').IDebuggerState;
|
|
178
|
-
settings: import('
|
|
178
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
179
179
|
catalog: {
|
|
180
180
|
state: "loading";
|
|
181
181
|
} | {
|
|
@@ -185,7 +185,7 @@ export declare const selectAllBreakpointsCount: ((state: import('redux').EmptyOb
|
|
|
185
185
|
state: "error";
|
|
186
186
|
error: string;
|
|
187
187
|
};
|
|
188
|
-
roles: import('
|
|
188
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
189
189
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
190
190
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
191
191
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -201,9 +201,9 @@ export declare const selectAllBreakpointsCount: ((state: import('redux').EmptyOb
|
|
|
201
201
|
};
|
|
202
202
|
export declare const selectEnabledBreakpointsCount: ((state: import('redux').EmptyObject & {
|
|
203
203
|
root: import('../modules').IRootState;
|
|
204
|
-
explorer: import('
|
|
204
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
205
205
|
debugger: import('../modules').IDebuggerState;
|
|
206
|
-
settings: import('
|
|
206
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
207
207
|
catalog: {
|
|
208
208
|
state: "loading";
|
|
209
209
|
} | {
|
|
@@ -213,7 +213,7 @@ export declare const selectEnabledBreakpointsCount: ((state: import('redux').Emp
|
|
|
213
213
|
state: "error";
|
|
214
214
|
error: string;
|
|
215
215
|
};
|
|
216
|
-
roles: import('
|
|
216
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
217
217
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
218
218
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
219
219
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -229,9 +229,9 @@ export declare const selectEnabledBreakpointsCount: ((state: import('redux').Emp
|
|
|
229
229
|
};
|
|
230
230
|
export declare const selectBreakpoints: (filePath: string, methodName: string) => ((state: import('redux').EmptyObject & {
|
|
231
231
|
root: import('../modules').IRootState;
|
|
232
|
-
explorer: import('
|
|
232
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
233
233
|
debugger: import('../modules').IDebuggerState;
|
|
234
|
-
settings: import('
|
|
234
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
235
235
|
catalog: {
|
|
236
236
|
state: "loading";
|
|
237
237
|
} | {
|
|
@@ -241,7 +241,7 @@ export declare const selectBreakpoints: (filePath: string, methodName: string) =
|
|
|
241
241
|
state: "error";
|
|
242
242
|
error: string;
|
|
243
243
|
};
|
|
244
|
-
roles: import('
|
|
244
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
245
245
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
246
246
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
247
247
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -257,9 +257,9 @@ export declare const selectBreakpoints: (filePath: string, methodName: string) =
|
|
|
257
257
|
};
|
|
258
258
|
export declare const selectDraftBreakpoints: (filePath: string, methodName: string) => ((state: import('redux').EmptyObject & {
|
|
259
259
|
root: import('../modules').IRootState;
|
|
260
|
-
explorer: import('
|
|
260
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
261
261
|
debugger: import('../modules').IDebuggerState;
|
|
262
|
-
settings: import('
|
|
262
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
263
263
|
catalog: {
|
|
264
264
|
state: "loading";
|
|
265
265
|
} | {
|
|
@@ -269,7 +269,7 @@ export declare const selectDraftBreakpoints: (filePath: string, methodName: stri
|
|
|
269
269
|
state: "error";
|
|
270
270
|
error: string;
|
|
271
271
|
};
|
|
272
|
-
roles: import('
|
|
272
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
273
273
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
274
274
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
275
275
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -285,9 +285,9 @@ export declare const selectDraftBreakpoints: (filePath: string, methodName: stri
|
|
|
285
285
|
};
|
|
286
286
|
export declare const selectClassBreakpoints: (filePath: string) => ((state: import('redux').EmptyObject & {
|
|
287
287
|
root: import('../modules').IRootState;
|
|
288
|
-
explorer: import('
|
|
288
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
289
289
|
debugger: import('../modules').IDebuggerState;
|
|
290
|
-
settings: import('
|
|
290
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
291
291
|
catalog: {
|
|
292
292
|
state: "loading";
|
|
293
293
|
} | {
|
|
@@ -297,7 +297,7 @@ export declare const selectClassBreakpoints: (filePath: string) => ((state: impo
|
|
|
297
297
|
state: "error";
|
|
298
298
|
error: string;
|
|
299
299
|
};
|
|
300
|
-
roles: import('
|
|
300
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
301
301
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
302
302
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
303
303
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -313,9 +313,9 @@ export declare const selectClassBreakpoints: (filePath: string) => ((state: impo
|
|
|
313
313
|
};
|
|
314
314
|
export declare const selectDraftClassBreakpoints: (filePath: string) => ((state: import('redux').EmptyObject & {
|
|
315
315
|
root: import('../modules').IRootState;
|
|
316
|
-
explorer: import('
|
|
316
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
317
317
|
debugger: import('../modules').IDebuggerState;
|
|
318
|
-
settings: import('
|
|
318
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
319
319
|
catalog: {
|
|
320
320
|
state: "loading";
|
|
321
321
|
} | {
|
|
@@ -325,7 +325,7 @@ export declare const selectDraftClassBreakpoints: (filePath: string) => ((state:
|
|
|
325
325
|
state: "error";
|
|
326
326
|
error: string;
|
|
327
327
|
};
|
|
328
|
-
roles: import('
|
|
328
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
329
329
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
330
330
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
331
331
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -341,9 +341,9 @@ export declare const selectDraftClassBreakpoints: (filePath: string) => ((state:
|
|
|
341
341
|
};
|
|
342
342
|
export declare const selectHighlightedLines: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
343
343
|
root: import('../modules').IRootState;
|
|
344
|
-
explorer: import('
|
|
344
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
345
345
|
debugger: import('../modules').IDebuggerState;
|
|
346
|
-
settings: import('
|
|
346
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
347
347
|
catalog: {
|
|
348
348
|
state: "loading";
|
|
349
349
|
} | {
|
|
@@ -353,7 +353,7 @@ export declare const selectHighlightedLines: (threadId: number) => ((state: impo
|
|
|
353
353
|
state: "error";
|
|
354
354
|
error: string;
|
|
355
355
|
};
|
|
356
|
-
roles: import('
|
|
356
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
357
357
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
358
358
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
359
359
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -375,9 +375,9 @@ export declare const selectHighlightedLines: (threadId: number) => ((state: impo
|
|
|
375
375
|
};
|
|
376
376
|
export declare const selectActiveLine: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
377
377
|
root: import('../modules').IRootState;
|
|
378
|
-
explorer: import('
|
|
378
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
379
379
|
debugger: import('../modules').IDebuggerState;
|
|
380
|
-
settings: import('
|
|
380
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
381
381
|
catalog: {
|
|
382
382
|
state: "loading";
|
|
383
383
|
} | {
|
|
@@ -387,7 +387,7 @@ export declare const selectActiveLine: (threadId: number) => ((state: import('re
|
|
|
387
387
|
state: "error";
|
|
388
388
|
error: string;
|
|
389
389
|
};
|
|
390
|
-
roles: import('
|
|
390
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
391
391
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
392
392
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
393
393
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -403,9 +403,9 @@ export declare const selectActiveLine: (threadId: number) => ((state: import('re
|
|
|
403
403
|
};
|
|
404
404
|
export declare const selectExpressions: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
405
405
|
root: import('../modules').IRootState;
|
|
406
|
-
explorer: import('
|
|
406
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
407
407
|
debugger: import('../modules').IDebuggerState;
|
|
408
|
-
settings: import('
|
|
408
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
409
409
|
catalog: {
|
|
410
410
|
state: "loading";
|
|
411
411
|
} | {
|
|
@@ -415,7 +415,7 @@ export declare const selectExpressions: (threadId: number) => ((state: import('r
|
|
|
415
415
|
state: "error";
|
|
416
416
|
error: string;
|
|
417
417
|
};
|
|
418
|
-
roles: import('
|
|
418
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
419
419
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
420
420
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
421
421
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -431,9 +431,9 @@ export declare const selectExpressions: (threadId: number) => ((state: import('r
|
|
|
431
431
|
};
|
|
432
432
|
export declare const selectStoppedFromDebugSession: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
433
433
|
root: import('../modules').IRootState;
|
|
434
|
-
explorer: import('
|
|
434
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
435
435
|
debugger: import('../modules').IDebuggerState;
|
|
436
|
-
settings: import('
|
|
436
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
437
437
|
catalog: {
|
|
438
438
|
state: "loading";
|
|
439
439
|
} | {
|
|
@@ -443,7 +443,7 @@ export declare const selectStoppedFromDebugSession: (threadId: number) => ((stat
|
|
|
443
443
|
state: "error";
|
|
444
444
|
error: string;
|
|
445
445
|
};
|
|
446
|
-
roles: import('
|
|
446
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
447
447
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
448
448
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
449
449
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -459,9 +459,9 @@ export declare const selectStoppedFromDebugSession: (threadId: number) => ((stat
|
|
|
459
459
|
};
|
|
460
460
|
export declare const selectSourceByPath: (filePath: string, methodName: string) => ((state: import('redux').EmptyObject & {
|
|
461
461
|
root: import('../modules').IRootState;
|
|
462
|
-
explorer: import('
|
|
462
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
463
463
|
debugger: import('../modules').IDebuggerState;
|
|
464
|
-
settings: import('
|
|
464
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
465
465
|
catalog: {
|
|
466
466
|
state: "loading";
|
|
467
467
|
} | {
|
|
@@ -471,7 +471,7 @@ export declare const selectSourceByPath: (filePath: string, methodName: string)
|
|
|
471
471
|
state: "error";
|
|
472
472
|
error: string;
|
|
473
473
|
};
|
|
474
|
-
roles: import('
|
|
474
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
475
475
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
476
476
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
477
477
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -487,9 +487,9 @@ export declare const selectSourceByPath: (filePath: string, methodName: string)
|
|
|
487
487
|
};
|
|
488
488
|
export declare const selectThreadIdByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
489
489
|
root: import('../modules').IRootState;
|
|
490
|
-
explorer: import('
|
|
490
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
491
491
|
debugger: import('../modules').IDebuggerState;
|
|
492
|
-
settings: import('
|
|
492
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
493
493
|
catalog: {
|
|
494
494
|
state: "loading";
|
|
495
495
|
} | {
|
|
@@ -499,7 +499,7 @@ export declare const selectThreadIdByPath: (tabPath: string) => ((state: import(
|
|
|
499
499
|
state: "error";
|
|
500
500
|
error: string;
|
|
501
501
|
};
|
|
502
|
-
roles: import('
|
|
502
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
503
503
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
504
504
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
505
505
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -515,9 +515,9 @@ export declare const selectThreadIdByPath: (tabPath: string) => ((state: import(
|
|
|
515
515
|
};
|
|
516
516
|
export declare const selectSourceByThreadId: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
517
517
|
root: import('../modules').IRootState;
|
|
518
|
-
explorer: import('
|
|
518
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
519
519
|
debugger: import('../modules').IDebuggerState;
|
|
520
|
-
settings: import('
|
|
520
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
521
521
|
catalog: {
|
|
522
522
|
state: "loading";
|
|
523
523
|
} | {
|
|
@@ -527,7 +527,7 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
|
|
|
527
527
|
state: "error";
|
|
528
528
|
error: string;
|
|
529
529
|
};
|
|
530
|
-
roles: import('
|
|
530
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
531
531
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
532
532
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
533
533
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -549,9 +549,9 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
|
|
|
549
549
|
};
|
|
550
550
|
export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
551
551
|
root: import('../modules').IRootState;
|
|
552
|
-
explorer: import('
|
|
552
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
553
553
|
debugger: import('../modules').IDebuggerState;
|
|
554
|
-
settings: import('
|
|
554
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
555
555
|
catalog: {
|
|
556
556
|
state: "loading";
|
|
557
557
|
} | {
|
|
@@ -561,7 +561,7 @@ export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state
|
|
|
561
561
|
state: "error";
|
|
562
562
|
error: string;
|
|
563
563
|
};
|
|
564
|
-
roles: import('
|
|
564
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
565
565
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
566
566
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
567
567
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -577,9 +577,9 @@ export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state
|
|
|
577
577
|
};
|
|
578
578
|
export declare const selectDebuggerChannels: ((state: import('redux').EmptyObject & {
|
|
579
579
|
root: import('../modules').IRootState;
|
|
580
|
-
explorer: import('
|
|
580
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
581
581
|
debugger: import('../modules').IDebuggerState;
|
|
582
|
-
settings: import('
|
|
582
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
583
583
|
catalog: {
|
|
584
584
|
state: "loading";
|
|
585
585
|
} | {
|
|
@@ -589,7 +589,7 @@ export declare const selectDebuggerChannels: ((state: import('redux').EmptyObjec
|
|
|
589
589
|
state: "error";
|
|
590
590
|
error: string;
|
|
591
591
|
};
|
|
592
|
-
roles: import('
|
|
592
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
593
593
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
594
594
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
595
595
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -611,9 +611,9 @@ export declare const selectDebuggerChannels: ((state: import('redux').EmptyObjec
|
|
|
611
611
|
};
|
|
612
612
|
export declare const selectStackFrames: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
613
613
|
root: import('../modules').IRootState;
|
|
614
|
-
explorer: import('
|
|
614
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
615
615
|
debugger: import('../modules').IDebuggerState;
|
|
616
|
-
settings: import('
|
|
616
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
617
617
|
catalog: {
|
|
618
618
|
state: "loading";
|
|
619
619
|
} | {
|
|
@@ -623,7 +623,7 @@ export declare const selectStackFrames: (threadId: number) => ((state: import('r
|
|
|
623
623
|
state: "error";
|
|
624
624
|
error: string;
|
|
625
625
|
};
|
|
626
|
-
roles: import('
|
|
626
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
627
627
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
628
628
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
629
629
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -639,9 +639,9 @@ export declare const selectStackFrames: (threadId: number) => ((state: import('r
|
|
|
639
639
|
};
|
|
640
640
|
export declare const selectCommonVariables: (threadId: number, key: CommonDebuggerVariablesKey, frameId: number) => ((state: import('redux').EmptyObject & {
|
|
641
641
|
root: import('../modules').IRootState;
|
|
642
|
-
explorer: import('
|
|
642
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
643
643
|
debugger: import('../modules').IDebuggerState;
|
|
644
|
-
settings: import('
|
|
644
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
645
645
|
catalog: {
|
|
646
646
|
state: "loading";
|
|
647
647
|
} | {
|
|
@@ -651,7 +651,7 @@ export declare const selectCommonVariables: (threadId: number, key: CommonDebugg
|
|
|
651
651
|
state: "error";
|
|
652
652
|
error: string;
|
|
653
653
|
};
|
|
654
|
-
roles: import('
|
|
654
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
655
655
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
656
656
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
657
657
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -667,9 +667,9 @@ export declare const selectCommonVariables: (threadId: number, key: CommonDebugg
|
|
|
667
667
|
};
|
|
668
668
|
export declare const selectCallChainVariables: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
669
669
|
root: import('../modules').IRootState;
|
|
670
|
-
explorer: import('
|
|
670
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
671
671
|
debugger: import('../modules').IDebuggerState;
|
|
672
|
-
settings: import('
|
|
672
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
673
673
|
catalog: {
|
|
674
674
|
state: "loading";
|
|
675
675
|
} | {
|
|
@@ -679,7 +679,7 @@ export declare const selectCallChainVariables: (threadId: number) => ((state: im
|
|
|
679
679
|
state: "error";
|
|
680
680
|
error: string;
|
|
681
681
|
};
|
|
682
|
-
roles: import('
|
|
682
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
683
683
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
684
684
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
685
685
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -695,9 +695,9 @@ export declare const selectCallChainVariables: (threadId: number) => ((state: im
|
|
|
695
695
|
};
|
|
696
696
|
export declare const selectExpressionsVariables: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
697
697
|
root: import('../modules').IRootState;
|
|
698
|
-
explorer: import('
|
|
698
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
699
699
|
debugger: import('../modules').IDebuggerState;
|
|
700
|
-
settings: import('
|
|
700
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
701
701
|
catalog: {
|
|
702
702
|
state: "loading";
|
|
703
703
|
} | {
|
|
@@ -707,7 +707,7 @@ export declare const selectExpressionsVariables: (threadId: number) => ((state:
|
|
|
707
707
|
state: "error";
|
|
708
708
|
error: string;
|
|
709
709
|
};
|
|
710
|
-
roles: import('
|
|
710
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
711
711
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
712
712
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
713
713
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -723,9 +723,9 @@ export declare const selectExpressionsVariables: (threadId: number) => ((state:
|
|
|
723
723
|
};
|
|
724
724
|
export declare const selectClassOffset: (filePath: string, type?: keyof IDebuggerData["breakpoints"]) => ((state: import('redux').EmptyObject & {
|
|
725
725
|
root: import('../modules').IRootState;
|
|
726
|
-
explorer: import('
|
|
726
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
727
727
|
debugger: import('../modules').IDebuggerState;
|
|
728
|
-
settings: import('
|
|
728
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
729
729
|
catalog: {
|
|
730
730
|
state: "loading";
|
|
731
731
|
} | {
|
|
@@ -735,7 +735,7 @@ export declare const selectClassOffset: (filePath: string, type?: keyof IDebugge
|
|
|
735
735
|
state: "error";
|
|
736
736
|
error: string;
|
|
737
737
|
};
|
|
738
|
-
roles: import('
|
|
738
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
739
739
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
740
740
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
741
741
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -751,9 +751,9 @@ export declare const selectClassOffset: (filePath: string, type?: keyof IDebugge
|
|
|
751
751
|
};
|
|
752
752
|
export declare const selectExceptions: (threadId: number, fileType: FileFolderType.CLASS | FileFolderType.METHOD, methodName: string, className?: string) => ((state: import('redux').EmptyObject & {
|
|
753
753
|
root: import('../modules').IRootState;
|
|
754
|
-
explorer: import('
|
|
754
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
755
755
|
debugger: import('../modules').IDebuggerState;
|
|
756
|
-
settings: import('
|
|
756
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
757
757
|
catalog: {
|
|
758
758
|
state: "loading";
|
|
759
759
|
} | {
|
|
@@ -763,7 +763,7 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
|
|
|
763
763
|
state: "error";
|
|
764
764
|
error: string;
|
|
765
765
|
};
|
|
766
|
-
roles: import('
|
|
766
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
767
767
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
768
768
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
769
769
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -797,9 +797,9 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
|
|
|
797
797
|
};
|
|
798
798
|
export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
799
799
|
root: import('../modules').IRootState;
|
|
800
|
-
explorer: import('
|
|
800
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
801
801
|
debugger: import('../modules').IDebuggerState;
|
|
802
|
-
settings: import('
|
|
802
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
803
803
|
catalog: {
|
|
804
804
|
state: "loading";
|
|
805
805
|
} | {
|
|
@@ -809,7 +809,7 @@ export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
|
809
809
|
state: "error";
|
|
810
810
|
error: string;
|
|
811
811
|
};
|
|
812
|
-
roles: import('
|
|
812
|
+
roles: import('@ws-ui/shared').IRolesState;
|
|
813
813
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
814
814
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
815
815
|
savedConditions: import('../modules').ISavedConditionsState;
|