@ws-ui/store 0.0.25 → 0.0.27
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 +3 -3
- package/dist/hooks/store.d.ts +2 -0
- package/dist/index.cjs.js +32 -32
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2609 -2562
- package/dist/index.es.js.map +1 -1
- package/dist/modules/explorer/thunks.d.ts +2 -1
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/roles/index.d.ts +1 -0
- package/dist/modules/roles/reducer.d.ts +3 -0
- package/dist/modules/roles/thunks.d.ts +1 -0
- package/dist/modules/root/reducer.d.ts +3 -1
- package/dist/modules/root/thunks.d.ts +1 -2
- package/dist/modules/settings/types.d.ts +0 -1
- package/dist/modules/tabs/selectors.d.ts +1 -0
- package/dist/modules/webforms/datasources.adapter.d.ts +1 -0
- package/dist/selectors/catalog.d.ts +6 -0
- package/dist/selectors/common.d.ts +4 -0
- package/dist/selectors/components.d.ts +1 -0
- package/dist/selectors/datasources.d.ts +6 -0
- package/dist/selectors/debugger.d.ts +22 -0
- package/dist/selectors/explorer.d.ts +26 -0
- package/dist/selectors/modals.d.ts +1 -0
- package/dist/selectors/roles.d.ts +16 -0
- package/dist/selectors/settings.d.ts +52 -0
- package/dist/selectors/styles.d.ts +5 -0
- package/dist/selectors/tabs.d.ts +3 -0
- package/dist/selectors/webforms.d.ts +11 -0
- package/package.json +55 -55
|
@@ -147,7 +147,8 @@ export declare const openFile: import("@reduxjs/toolkit").AsyncThunk<ITab<any, P
|
|
|
147
147
|
loading: boolean;
|
|
148
148
|
old: boolean;
|
|
149
149
|
enabled: boolean;
|
|
150
|
-
|
|
150
|
+
confirmed: boolean;
|
|
151
|
+
}>, "pinned" | "loading" | "enabled" | "confirmed"> | undefined;
|
|
151
152
|
}, {
|
|
152
153
|
state: AppState;
|
|
153
154
|
}>;
|
package/dist/modules/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export declare const stateReducer: import("redux").Reducer<import("redux").Combi
|
|
|
22
22
|
loading?: boolean | undefined;
|
|
23
23
|
old?: boolean | undefined;
|
|
24
24
|
enabled?: boolean | undefined;
|
|
25
|
+
confirmed?: boolean | undefined;
|
|
25
26
|
};
|
|
26
27
|
date?: string | undefined;
|
|
27
28
|
privileges: import("./roles").TById;
|
|
@@ -8,6 +8,7 @@ declare const stateSlice: import("@reduxjs/toolkit").Slice<{
|
|
|
8
8
|
loading?: boolean | undefined;
|
|
9
9
|
old?: boolean | undefined;
|
|
10
10
|
enabled?: boolean | undefined;
|
|
11
|
+
confirmed?: boolean | undefined;
|
|
11
12
|
};
|
|
12
13
|
date?: string | undefined;
|
|
13
14
|
privileges: TById;
|
|
@@ -33,6 +34,7 @@ declare const stateSlice: import("@reduxjs/toolkit").Slice<{
|
|
|
33
34
|
loading?: boolean | undefined;
|
|
34
35
|
old?: boolean | undefined;
|
|
35
36
|
enabled?: boolean | undefined;
|
|
37
|
+
confirmed?: boolean | undefined;
|
|
36
38
|
};
|
|
37
39
|
date?: string | undefined;
|
|
38
40
|
privileges: TById;
|
|
@@ -50,6 +52,7 @@ export declare const updatePrivileges: import("@reduxjs/toolkit").ActionCreatorW
|
|
|
50
52
|
loading: boolean;
|
|
51
53
|
old: boolean;
|
|
52
54
|
enabled: boolean;
|
|
55
|
+
confirmed: boolean;
|
|
53
56
|
}> | undefined;
|
|
54
57
|
}, string>, toggleTab: import("@reduxjs/toolkit").ActionCreatorWithPayload<"roles" | "privileges", string>, updateRolesAndPrivileges: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
55
58
|
roles: TRolesDict;
|
|
@@ -17,6 +17,7 @@ export declare const stateSlice: import("@reduxjs/toolkit").Slice<import("immer/
|
|
|
17
17
|
closeRightTabs(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: PayloadAction<number>): void;
|
|
18
18
|
closeLeftTabs(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: PayloadAction<number>): void;
|
|
19
19
|
closeSavedTabs(state: import("immer/dist/internal.js").WritableDraft<IRootState>): void;
|
|
20
|
+
confirmTab(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: PayloadAction<string>): void;
|
|
20
21
|
selectTab(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: PayloadAction<string>): void;
|
|
21
22
|
openTabUnselected(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: PayloadAction<ITab>): void;
|
|
22
23
|
selectTabByReference(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: PayloadAction<ITab>): void;
|
|
@@ -79,6 +80,7 @@ export declare const setTabs: import("@reduxjs/toolkit").ActionCreatorWithPayloa
|
|
|
79
80
|
loading: boolean;
|
|
80
81
|
old: boolean;
|
|
81
82
|
enabled: boolean;
|
|
83
|
+
confirmed: boolean;
|
|
82
84
|
}> | undefined;
|
|
83
85
|
}, string>, closeAllTabs: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, addDataSource: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
84
86
|
datasourceDef: datasources.ICreateDataSource;
|
|
@@ -89,7 +91,7 @@ export declare const setTabs: import("@reduxjs/toolkit").ActionCreatorWithPayloa
|
|
|
89
91
|
}, string>, removeDataSource: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
90
92
|
path: string;
|
|
91
93
|
datasourceID: string;
|
|
92
|
-
}, string>, selectTab: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, selectTabByReference: import("@reduxjs/toolkit").ActionCreatorWithPayload<ITab<any, Partial<{
|
|
94
|
+
}, string>, confirmTab: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, selectTab: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, selectTabByReference: import("@reduxjs/toolkit").ActionCreatorWithPayload<ITab<any, Partial<{
|
|
93
95
|
initialLineInfo: {
|
|
94
96
|
line: number;
|
|
95
97
|
offset?: number | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
|
|
2
|
-
import { FileFolderTypeWithContent, IFileInfoResponse, IMultilineMessage, INodeInfo } from '@ws-ui/shared';
|
|
3
|
-
import { ITab } from '@ws-ui/shared';
|
|
2
|
+
import { FileFolderTypeWithContent, IFileInfoResponse, IMultilineMessage, INodeInfo, ITab } from '@ws-ui/shared';
|
|
4
3
|
import { AppState } from '..';
|
|
5
4
|
import { ClassFileTypes, TActionRenameDataSource } from './types';
|
|
6
5
|
export declare const fetchFiles: import("@reduxjs/toolkit").AsyncThunk<{
|
|
@@ -21,6 +21,7 @@ export declare const selectPanelByPath: (path: string) => ((state: import("redux
|
|
|
21
21
|
loading?: boolean | undefined;
|
|
22
22
|
old?: boolean | undefined;
|
|
23
23
|
enabled?: boolean | undefined;
|
|
24
|
+
confirmed?: boolean | undefined;
|
|
24
25
|
};
|
|
25
26
|
date?: string | undefined;
|
|
26
27
|
privileges: import("..").TById;
|
|
@@ -22,6 +22,7 @@ export declare const listDsNamespaces: import("lodash").CurriedFunction2<string,
|
|
|
22
22
|
loading?: boolean | undefined;
|
|
23
23
|
old?: boolean | undefined;
|
|
24
24
|
enabled?: boolean | undefined;
|
|
25
|
+
confirmed?: boolean | undefined;
|
|
25
26
|
};
|
|
26
27
|
date?: string | undefined;
|
|
27
28
|
privileges: import("..").TById;
|
|
@@ -22,6 +22,7 @@ export declare const selectCatalog: ((state: import("redux").EmptyObject & {
|
|
|
22
22
|
loading?: boolean | undefined;
|
|
23
23
|
old?: boolean | undefined;
|
|
24
24
|
enabled?: boolean | undefined;
|
|
25
|
+
confirmed?: boolean | undefined;
|
|
25
26
|
};
|
|
26
27
|
date?: string | undefined;
|
|
27
28
|
privileges: import('../modules').TById;
|
|
@@ -55,6 +56,7 @@ export declare const selectCatalog: ((state: import("redux").EmptyObject & {
|
|
|
55
56
|
loading?: boolean | undefined;
|
|
56
57
|
old?: boolean | undefined;
|
|
57
58
|
enabled?: boolean | undefined;
|
|
59
|
+
confirmed?: boolean | undefined;
|
|
58
60
|
};
|
|
59
61
|
date?: string | undefined;
|
|
60
62
|
privileges: import('../modules').TById;
|
|
@@ -93,6 +95,7 @@ export declare const selectCatalogState: ((state: import("redux").EmptyObject &
|
|
|
93
95
|
loading?: boolean | undefined;
|
|
94
96
|
old?: boolean | undefined;
|
|
95
97
|
enabled?: boolean | undefined;
|
|
98
|
+
confirmed?: boolean | undefined;
|
|
96
99
|
};
|
|
97
100
|
date?: string | undefined;
|
|
98
101
|
privileges: import('../modules').TById;
|
|
@@ -126,6 +129,7 @@ export declare const selectCatalogState: ((state: import("redux").EmptyObject &
|
|
|
126
129
|
loading?: boolean | undefined;
|
|
127
130
|
old?: boolean | undefined;
|
|
128
131
|
enabled?: boolean | undefined;
|
|
132
|
+
confirmed?: boolean | undefined;
|
|
129
133
|
};
|
|
130
134
|
date?: string | undefined;
|
|
131
135
|
privileges: import('../modules').TById;
|
|
@@ -164,6 +168,7 @@ export declare const selectDataclasses: ((state: import("redux").EmptyObject & {
|
|
|
164
168
|
loading?: boolean | undefined;
|
|
165
169
|
old?: boolean | undefined;
|
|
166
170
|
enabled?: boolean | undefined;
|
|
171
|
+
confirmed?: boolean | undefined;
|
|
167
172
|
};
|
|
168
173
|
date?: string | undefined;
|
|
169
174
|
privileges: import('../modules').TById;
|
|
@@ -202,6 +207,7 @@ export declare const selectCatalogMethods: ((state: import("redux").EmptyObject
|
|
|
202
207
|
loading?: boolean | undefined;
|
|
203
208
|
old?: boolean | undefined;
|
|
204
209
|
enabled?: boolean | undefined;
|
|
210
|
+
confirmed?: boolean | undefined;
|
|
205
211
|
};
|
|
206
212
|
date?: string | undefined;
|
|
207
213
|
privileges: import('../modules').TById;
|
|
@@ -21,6 +21,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
21
21
|
loading?: boolean | undefined;
|
|
22
22
|
old?: boolean | undefined;
|
|
23
23
|
enabled?: boolean | undefined;
|
|
24
|
+
confirmed?: boolean | undefined;
|
|
24
25
|
};
|
|
25
26
|
date?: string | undefined;
|
|
26
27
|
privileges: import("../modules").TById;
|
|
@@ -54,6 +55,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
54
55
|
loading?: boolean | undefined;
|
|
55
56
|
old?: boolean | undefined;
|
|
56
57
|
enabled?: boolean | undefined;
|
|
58
|
+
confirmed?: boolean | undefined;
|
|
57
59
|
};
|
|
58
60
|
date?: string | undefined;
|
|
59
61
|
privileges: import("../modules").TById;
|
|
@@ -87,6 +89,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
87
89
|
loading?: boolean | undefined;
|
|
88
90
|
old?: boolean | undefined;
|
|
89
91
|
enabled?: boolean | undefined;
|
|
92
|
+
confirmed?: boolean | undefined;
|
|
90
93
|
};
|
|
91
94
|
date?: string | undefined;
|
|
92
95
|
privileges: import("../modules").TById;
|
|
@@ -120,6 +123,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
120
123
|
loading?: boolean | undefined;
|
|
121
124
|
old?: boolean | undefined;
|
|
122
125
|
enabled?: boolean | undefined;
|
|
126
|
+
confirmed?: boolean | undefined;
|
|
123
127
|
};
|
|
124
128
|
date?: string | undefined;
|
|
125
129
|
privileges: import("../modules").TById;
|
|
@@ -26,6 +26,7 @@ export declare const selectComponentsByPath: (tabPath: string) => ((state: impor
|
|
|
26
26
|
loading?: boolean | undefined;
|
|
27
27
|
old?: boolean | undefined;
|
|
28
28
|
enabled?: boolean | undefined;
|
|
29
|
+
confirmed?: boolean | undefined;
|
|
29
30
|
};
|
|
30
31
|
date?: string | undefined;
|
|
31
32
|
privileges: import("..").TById;
|
|
@@ -26,6 +26,7 @@ export declare const selectDatasourcesByPath: (tabPath: string) => ((state: impo
|
|
|
26
26
|
loading?: boolean | undefined;
|
|
27
27
|
old?: boolean | undefined;
|
|
28
28
|
enabled?: boolean | undefined;
|
|
29
|
+
confirmed?: boolean | undefined;
|
|
29
30
|
};
|
|
30
31
|
date?: string | undefined;
|
|
31
32
|
privileges: import("../modules").TById;
|
|
@@ -71,6 +72,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
71
72
|
loading?: boolean | undefined;
|
|
72
73
|
old?: boolean | undefined;
|
|
73
74
|
enabled?: boolean | undefined;
|
|
75
|
+
confirmed?: boolean | undefined;
|
|
74
76
|
};
|
|
75
77
|
date?: string | undefined;
|
|
76
78
|
privileges: import("../modules").TById;
|
|
@@ -104,6 +106,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
104
106
|
loading?: boolean | undefined;
|
|
105
107
|
old?: boolean | undefined;
|
|
106
108
|
enabled?: boolean | undefined;
|
|
109
|
+
confirmed?: boolean | undefined;
|
|
107
110
|
};
|
|
108
111
|
date?: string | undefined;
|
|
109
112
|
privileges: import("../modules").TById;
|
|
@@ -145,6 +148,7 @@ export declare const selectSharedDatasources: ((state: import("redux").EmptyObje
|
|
|
145
148
|
loading?: boolean | undefined;
|
|
146
149
|
old?: boolean | undefined;
|
|
147
150
|
enabled?: boolean | undefined;
|
|
151
|
+
confirmed?: boolean | undefined;
|
|
148
152
|
};
|
|
149
153
|
date?: string | undefined;
|
|
150
154
|
privileges: import("../modules").TById;
|
|
@@ -180,6 +184,7 @@ export declare const selectSharedDatasources: ((state: import("redux").EmptyObje
|
|
|
180
184
|
loading?: boolean | undefined;
|
|
181
185
|
old?: boolean | undefined;
|
|
182
186
|
enabled?: boolean | undefined;
|
|
187
|
+
confirmed?: boolean | undefined;
|
|
183
188
|
};
|
|
184
189
|
date?: string | undefined;
|
|
185
190
|
privileges: import("../modules").TById;
|
|
@@ -230,6 +235,7 @@ export declare const selectAllDatasourcesByPath: (tabPath: string, exclude?: 'pr
|
|
|
230
235
|
loading?: boolean | undefined;
|
|
231
236
|
old?: boolean | undefined;
|
|
232
237
|
enabled?: boolean | undefined;
|
|
238
|
+
confirmed?: boolean | undefined;
|
|
233
239
|
};
|
|
234
240
|
date?: string | undefined;
|
|
235
241
|
privileges: import("../modules").TById;
|
|
@@ -23,6 +23,7 @@ export declare const selectDebuggerMeta: ((state: import("redux").EmptyObject &
|
|
|
23
23
|
loading?: boolean | undefined;
|
|
24
24
|
old?: boolean | undefined;
|
|
25
25
|
enabled?: boolean | undefined;
|
|
26
|
+
confirmed?: boolean | undefined;
|
|
26
27
|
};
|
|
27
28
|
date?: string | undefined;
|
|
28
29
|
privileges: import('../modules').TById;
|
|
@@ -61,6 +62,7 @@ export declare const selectDebuggerData: ((state: import("redux").EmptyObject &
|
|
|
61
62
|
loading?: boolean | undefined;
|
|
62
63
|
old?: boolean | undefined;
|
|
63
64
|
enabled?: boolean | undefined;
|
|
65
|
+
confirmed?: boolean | undefined;
|
|
64
66
|
};
|
|
65
67
|
date?: string | undefined;
|
|
66
68
|
privileges: import('../modules').TById;
|
|
@@ -99,6 +101,7 @@ export declare const selectDebuggerSessions: ((state: import("redux").EmptyObjec
|
|
|
99
101
|
loading?: boolean | undefined;
|
|
100
102
|
old?: boolean | undefined;
|
|
101
103
|
enabled?: boolean | undefined;
|
|
104
|
+
confirmed?: boolean | undefined;
|
|
102
105
|
};
|
|
103
106
|
date?: string | undefined;
|
|
104
107
|
privileges: import('../modules').TById;
|
|
@@ -137,6 +140,7 @@ export declare const selectDebuggerSessionsCount: ((state: import("redux").Empty
|
|
|
137
140
|
loading?: boolean | undefined;
|
|
138
141
|
old?: boolean | undefined;
|
|
139
142
|
enabled?: boolean | undefined;
|
|
143
|
+
confirmed?: boolean | undefined;
|
|
140
144
|
};
|
|
141
145
|
date?: string | undefined;
|
|
142
146
|
privileges: import('../modules').TById;
|
|
@@ -178,6 +182,7 @@ export declare const selectBreakpoints: (filePath: string, methodName: string) =
|
|
|
178
182
|
loading?: boolean | undefined;
|
|
179
183
|
old?: boolean | undefined;
|
|
180
184
|
enabled?: boolean | undefined;
|
|
185
|
+
confirmed?: boolean | undefined;
|
|
181
186
|
};
|
|
182
187
|
date?: string | undefined;
|
|
183
188
|
privileges: import('../modules').TById;
|
|
@@ -216,6 +221,7 @@ export declare const selectDraftBreakpoints: (filePath: string, methodName: stri
|
|
|
216
221
|
loading?: boolean | undefined;
|
|
217
222
|
old?: boolean | undefined;
|
|
218
223
|
enabled?: boolean | undefined;
|
|
224
|
+
confirmed?: boolean | undefined;
|
|
219
225
|
};
|
|
220
226
|
date?: string | undefined;
|
|
221
227
|
privileges: import('../modules').TById;
|
|
@@ -254,6 +260,7 @@ export declare const selectClassBreakpoints: (filePath: string) => ((state: impo
|
|
|
254
260
|
loading?: boolean | undefined;
|
|
255
261
|
old?: boolean | undefined;
|
|
256
262
|
enabled?: boolean | undefined;
|
|
263
|
+
confirmed?: boolean | undefined;
|
|
257
264
|
};
|
|
258
265
|
date?: string | undefined;
|
|
259
266
|
privileges: import('../modules').TById;
|
|
@@ -292,6 +299,7 @@ export declare const selectDraftClassBreakpoints: (filePath: string) => ((state:
|
|
|
292
299
|
loading?: boolean | undefined;
|
|
293
300
|
old?: boolean | undefined;
|
|
294
301
|
enabled?: boolean | undefined;
|
|
302
|
+
confirmed?: boolean | undefined;
|
|
295
303
|
};
|
|
296
304
|
date?: string | undefined;
|
|
297
305
|
privileges: import('../modules').TById;
|
|
@@ -330,6 +338,7 @@ export declare const selectHighlightedLines: (threadId: number) => ((state: impo
|
|
|
330
338
|
loading?: boolean | undefined;
|
|
331
339
|
old?: boolean | undefined;
|
|
332
340
|
enabled?: boolean | undefined;
|
|
341
|
+
confirmed?: boolean | undefined;
|
|
333
342
|
};
|
|
334
343
|
date?: string | undefined;
|
|
335
344
|
privileges: import('../modules').TById;
|
|
@@ -374,6 +383,7 @@ export declare const selectActiveLine: (threadId: number) => ((state: import("re
|
|
|
374
383
|
loading?: boolean | undefined;
|
|
375
384
|
old?: boolean | undefined;
|
|
376
385
|
enabled?: boolean | undefined;
|
|
386
|
+
confirmed?: boolean | undefined;
|
|
377
387
|
};
|
|
378
388
|
date?: string | undefined;
|
|
379
389
|
privileges: import('../modules').TById;
|
|
@@ -412,6 +422,7 @@ export declare const selectExpressions: (threadId: number) => ((state: import("r
|
|
|
412
422
|
loading?: boolean | undefined;
|
|
413
423
|
old?: boolean | undefined;
|
|
414
424
|
enabled?: boolean | undefined;
|
|
425
|
+
confirmed?: boolean | undefined;
|
|
415
426
|
};
|
|
416
427
|
date?: string | undefined;
|
|
417
428
|
privileges: import('../modules').TById;
|
|
@@ -450,6 +461,7 @@ export declare const selectStoppedFromDebugSession: (threadId: number) => ((stat
|
|
|
450
461
|
loading?: boolean | undefined;
|
|
451
462
|
old?: boolean | undefined;
|
|
452
463
|
enabled?: boolean | undefined;
|
|
464
|
+
confirmed?: boolean | undefined;
|
|
453
465
|
};
|
|
454
466
|
date?: string | undefined;
|
|
455
467
|
privileges: import('../modules').TById;
|
|
@@ -488,6 +500,7 @@ export declare const selectSourceByPath: (filePath: string, methodName: string)
|
|
|
488
500
|
loading?: boolean | undefined;
|
|
489
501
|
old?: boolean | undefined;
|
|
490
502
|
enabled?: boolean | undefined;
|
|
503
|
+
confirmed?: boolean | undefined;
|
|
491
504
|
};
|
|
492
505
|
date?: string | undefined;
|
|
493
506
|
privileges: import('../modules').TById;
|
|
@@ -526,6 +539,7 @@ export declare const selectThreadIdByPath: (tabPath: string) => ((state: import(
|
|
|
526
539
|
loading?: boolean | undefined;
|
|
527
540
|
old?: boolean | undefined;
|
|
528
541
|
enabled?: boolean | undefined;
|
|
542
|
+
confirmed?: boolean | undefined;
|
|
529
543
|
};
|
|
530
544
|
date?: string | undefined;
|
|
531
545
|
privileges: import('../modules').TById;
|
|
@@ -564,6 +578,7 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
|
|
|
564
578
|
loading?: boolean | undefined;
|
|
565
579
|
old?: boolean | undefined;
|
|
566
580
|
enabled?: boolean | undefined;
|
|
581
|
+
confirmed?: boolean | undefined;
|
|
567
582
|
};
|
|
568
583
|
date?: string | undefined;
|
|
569
584
|
privileges: import('../modules').TById;
|
|
@@ -608,6 +623,7 @@ export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state
|
|
|
608
623
|
loading?: boolean | undefined;
|
|
609
624
|
old?: boolean | undefined;
|
|
610
625
|
enabled?: boolean | undefined;
|
|
626
|
+
confirmed?: boolean | undefined;
|
|
611
627
|
};
|
|
612
628
|
date?: string | undefined;
|
|
613
629
|
privileges: import('../modules').TById;
|
|
@@ -646,6 +662,7 @@ export declare const selectDebuggerChannels: ((state: import("redux").EmptyObjec
|
|
|
646
662
|
loading?: boolean | undefined;
|
|
647
663
|
old?: boolean | undefined;
|
|
648
664
|
enabled?: boolean | undefined;
|
|
665
|
+
confirmed?: boolean | undefined;
|
|
649
666
|
};
|
|
650
667
|
date?: string | undefined;
|
|
651
668
|
privileges: import('../modules').TById;
|
|
@@ -690,6 +707,7 @@ export declare const selectStackFrames: (threadId: number) => ((state: import("r
|
|
|
690
707
|
loading?: boolean | undefined;
|
|
691
708
|
old?: boolean | undefined;
|
|
692
709
|
enabled?: boolean | undefined;
|
|
710
|
+
confirmed?: boolean | undefined;
|
|
693
711
|
};
|
|
694
712
|
date?: string | undefined;
|
|
695
713
|
privileges: import('../modules').TById;
|
|
@@ -728,6 +746,7 @@ export declare const selectCallChainVariables: (threadId: number) => ((state: im
|
|
|
728
746
|
loading?: boolean | undefined;
|
|
729
747
|
old?: boolean | undefined;
|
|
730
748
|
enabled?: boolean | undefined;
|
|
749
|
+
confirmed?: boolean | undefined;
|
|
731
750
|
};
|
|
732
751
|
date?: string | undefined;
|
|
733
752
|
privileges: import('../modules').TById;
|
|
@@ -766,6 +785,7 @@ export declare const selectExpressionsVariables: (threadId: number) => ((state:
|
|
|
766
785
|
loading?: boolean | undefined;
|
|
767
786
|
old?: boolean | undefined;
|
|
768
787
|
enabled?: boolean | undefined;
|
|
788
|
+
confirmed?: boolean | undefined;
|
|
769
789
|
};
|
|
770
790
|
date?: string | undefined;
|
|
771
791
|
privileges: import('../modules').TById;
|
|
@@ -804,6 +824,7 @@ export declare const selectClassOffset: (filePath: string, type?: keyof IDebugge
|
|
|
804
824
|
loading?: boolean | undefined;
|
|
805
825
|
old?: boolean | undefined;
|
|
806
826
|
enabled?: boolean | undefined;
|
|
827
|
+
confirmed?: boolean | undefined;
|
|
807
828
|
};
|
|
808
829
|
date?: string | undefined;
|
|
809
830
|
privileges: import('../modules').TById;
|
|
@@ -842,6 +863,7 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
|
|
|
842
863
|
loading?: boolean | undefined;
|
|
843
864
|
old?: boolean | undefined;
|
|
844
865
|
enabled?: boolean | undefined;
|
|
866
|
+
confirmed?: boolean | undefined;
|
|
845
867
|
};
|
|
846
868
|
date?: string | undefined;
|
|
847
869
|
privileges: import('../modules').TById;
|
|
@@ -22,6 +22,7 @@ export declare const selectRoot: ((state: import("redux").EmptyObject & {
|
|
|
22
22
|
loading?: boolean | undefined;
|
|
23
23
|
old?: boolean | undefined;
|
|
24
24
|
enabled?: boolean | undefined;
|
|
25
|
+
confirmed?: boolean | undefined;
|
|
25
26
|
};
|
|
26
27
|
date?: string | undefined;
|
|
27
28
|
privileges: import("../modules").TById;
|
|
@@ -60,6 +61,7 @@ export declare const selectTabs: ((state: import("redux").EmptyObject & {
|
|
|
60
61
|
loading?: boolean | undefined;
|
|
61
62
|
old?: boolean | undefined;
|
|
62
63
|
enabled?: boolean | undefined;
|
|
64
|
+
confirmed?: boolean | undefined;
|
|
63
65
|
};
|
|
64
66
|
date?: string | undefined;
|
|
65
67
|
privileges: import("../modules").TById;
|
|
@@ -128,6 +130,7 @@ export declare const selectActiveTab: ((state: import("redux").EmptyObject & {
|
|
|
128
130
|
loading?: boolean | undefined;
|
|
129
131
|
old?: boolean | undefined;
|
|
130
132
|
enabled?: boolean | undefined;
|
|
133
|
+
confirmed?: boolean | undefined;
|
|
131
134
|
};
|
|
132
135
|
date?: string | undefined;
|
|
133
136
|
privileges: import("../modules").TById;
|
|
@@ -166,6 +169,7 @@ export declare const selectRecentFiles: ((state: import("redux").EmptyObject & {
|
|
|
166
169
|
loading?: boolean | undefined;
|
|
167
170
|
old?: boolean | undefined;
|
|
168
171
|
enabled?: boolean | undefined;
|
|
172
|
+
confirmed?: boolean | undefined;
|
|
169
173
|
};
|
|
170
174
|
date?: string | undefined;
|
|
171
175
|
privileges: import("../modules").TById;
|
|
@@ -234,6 +238,7 @@ export declare const selectCurrentTab: ((state: import("redux").EmptyObject & {
|
|
|
234
238
|
loading?: boolean | undefined;
|
|
235
239
|
old?: boolean | undefined;
|
|
236
240
|
enabled?: boolean | undefined;
|
|
241
|
+
confirmed?: boolean | undefined;
|
|
237
242
|
};
|
|
238
243
|
date?: string | undefined;
|
|
239
244
|
privileges: import("../modules").TById;
|
|
@@ -302,6 +307,7 @@ export declare const selectTabMaxWeight: ((state: import("redux").EmptyObject &
|
|
|
302
307
|
loading?: boolean | undefined;
|
|
303
308
|
old?: boolean | undefined;
|
|
304
309
|
enabled?: boolean | undefined;
|
|
310
|
+
confirmed?: boolean | undefined;
|
|
305
311
|
};
|
|
306
312
|
date?: string | undefined;
|
|
307
313
|
privileges: import("../modules").TById;
|
|
@@ -370,6 +376,7 @@ export declare const selectPreviewedWebformsPaths: ((state: import("redux").Empt
|
|
|
370
376
|
loading?: boolean | undefined;
|
|
371
377
|
old?: boolean | undefined;
|
|
372
378
|
enabled?: boolean | undefined;
|
|
379
|
+
confirmed?: boolean | undefined;
|
|
373
380
|
};
|
|
374
381
|
date?: string | undefined;
|
|
375
382
|
privileges: import("../modules").TById;
|
|
@@ -423,6 +430,7 @@ export declare const selectHasTabs: ((state: import("redux").EmptyObject & {
|
|
|
423
430
|
loading?: boolean | undefined;
|
|
424
431
|
old?: boolean | undefined;
|
|
425
432
|
enabled?: boolean | undefined;
|
|
433
|
+
confirmed?: boolean | undefined;
|
|
426
434
|
};
|
|
427
435
|
date?: string | undefined;
|
|
428
436
|
privileges: import("../modules").TById;
|
|
@@ -476,6 +484,7 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import("redu
|
|
|
476
484
|
loading?: boolean | undefined;
|
|
477
485
|
old?: boolean | undefined;
|
|
478
486
|
enabled?: boolean | undefined;
|
|
487
|
+
confirmed?: boolean | undefined;
|
|
479
488
|
};
|
|
480
489
|
date?: string | undefined;
|
|
481
490
|
privileges: import("../modules").TById;
|
|
@@ -544,6 +553,7 @@ export declare const selectContentByPath: (tabPath: string, contentPath?: string
|
|
|
544
553
|
loading?: boolean | undefined;
|
|
545
554
|
old?: boolean | undefined;
|
|
546
555
|
enabled?: boolean | undefined;
|
|
556
|
+
confirmed?: boolean | undefined;
|
|
547
557
|
};
|
|
548
558
|
date?: string | undefined;
|
|
549
559
|
privileges: import("../modules").TById;
|
|
@@ -597,6 +607,7 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
597
607
|
loading?: boolean | undefined;
|
|
598
608
|
old?: boolean | undefined;
|
|
599
609
|
enabled?: boolean | undefined;
|
|
610
|
+
confirmed?: boolean | undefined;
|
|
600
611
|
};
|
|
601
612
|
date?: string | undefined;
|
|
602
613
|
privileges: import("../modules").TById;
|
|
@@ -680,6 +691,7 @@ export declare const selectWebformNodes: (path: string, transformer?: (value: ob
|
|
|
680
691
|
loading?: boolean | undefined;
|
|
681
692
|
old?: boolean | undefined;
|
|
682
693
|
enabled?: boolean | undefined;
|
|
694
|
+
confirmed?: boolean | undefined;
|
|
683
695
|
};
|
|
684
696
|
date?: string | undefined;
|
|
685
697
|
privileges: import("../modules").TById;
|
|
@@ -718,6 +730,7 @@ export declare const selectTouchedTabs: ((state: import("redux").EmptyObject & {
|
|
|
718
730
|
loading?: boolean | undefined;
|
|
719
731
|
old?: boolean | undefined;
|
|
720
732
|
enabled?: boolean | undefined;
|
|
733
|
+
confirmed?: boolean | undefined;
|
|
721
734
|
};
|
|
722
735
|
date?: string | undefined;
|
|
723
736
|
privileges: import("../modules").TById;
|
|
@@ -801,6 +814,7 @@ export declare const selectTouchedTabsLength: ((state: import("redux").EmptyObje
|
|
|
801
814
|
loading?: boolean | undefined;
|
|
802
815
|
old?: boolean | undefined;
|
|
803
816
|
enabled?: boolean | undefined;
|
|
817
|
+
confirmed?: boolean | undefined;
|
|
804
818
|
};
|
|
805
819
|
date?: string | undefined;
|
|
806
820
|
privileges: import("../modules").TById;
|
|
@@ -854,6 +868,7 @@ export declare const selectDebuggers: ((state: import("redux").EmptyObject & {
|
|
|
854
868
|
loading?: boolean | undefined;
|
|
855
869
|
old?: boolean | undefined;
|
|
856
870
|
enabled?: boolean | undefined;
|
|
871
|
+
confirmed?: boolean | undefined;
|
|
857
872
|
};
|
|
858
873
|
date?: string | undefined;
|
|
859
874
|
privileges: import("../modules").TById;
|
|
@@ -922,6 +937,7 @@ export declare const selectExplorer: ((state: import("redux").EmptyObject & {
|
|
|
922
937
|
loading?: boolean | undefined;
|
|
923
938
|
old?: boolean | undefined;
|
|
924
939
|
enabled?: boolean | undefined;
|
|
940
|
+
confirmed?: boolean | undefined;
|
|
925
941
|
};
|
|
926
942
|
date?: string | undefined;
|
|
927
943
|
privileges: import("../modules").TById;
|
|
@@ -955,6 +971,7 @@ export declare const selectExplorer: ((state: import("redux").EmptyObject & {
|
|
|
955
971
|
loading?: boolean | undefined;
|
|
956
972
|
old?: boolean | undefined;
|
|
957
973
|
enabled?: boolean | undefined;
|
|
974
|
+
confirmed?: boolean | undefined;
|
|
958
975
|
};
|
|
959
976
|
date?: string | undefined;
|
|
960
977
|
privileges: import("../modules").TById;
|
|
@@ -993,6 +1010,7 @@ export declare const selectWebFormsFolder: ((state: import("redux").EmptyObject
|
|
|
993
1010
|
loading?: boolean | undefined;
|
|
994
1011
|
old?: boolean | undefined;
|
|
995
1012
|
enabled?: boolean | undefined;
|
|
1013
|
+
confirmed?: boolean | undefined;
|
|
996
1014
|
};
|
|
997
1015
|
date?: string | undefined;
|
|
998
1016
|
privileges: import("../modules").TById;
|
|
@@ -1026,6 +1044,7 @@ export declare const selectWebFormsFolder: ((state: import("redux").EmptyObject
|
|
|
1026
1044
|
loading?: boolean | undefined;
|
|
1027
1045
|
old?: boolean | undefined;
|
|
1028
1046
|
enabled?: boolean | undefined;
|
|
1047
|
+
confirmed?: boolean | undefined;
|
|
1029
1048
|
};
|
|
1030
1049
|
date?: string | undefined;
|
|
1031
1050
|
privileges: import("../modules").TById;
|
|
@@ -1064,6 +1083,7 @@ export declare const selectMethodsFolder: ((state: import("redux").EmptyObject &
|
|
|
1064
1083
|
loading?: boolean | undefined;
|
|
1065
1084
|
old?: boolean | undefined;
|
|
1066
1085
|
enabled?: boolean | undefined;
|
|
1086
|
+
confirmed?: boolean | undefined;
|
|
1067
1087
|
};
|
|
1068
1088
|
date?: string | undefined;
|
|
1069
1089
|
privileges: import("../modules").TById;
|
|
@@ -1097,6 +1117,7 @@ export declare const selectMethodsFolder: ((state: import("redux").EmptyObject &
|
|
|
1097
1117
|
loading?: boolean | undefined;
|
|
1098
1118
|
old?: boolean | undefined;
|
|
1099
1119
|
enabled?: boolean | undefined;
|
|
1120
|
+
confirmed?: boolean | undefined;
|
|
1100
1121
|
};
|
|
1101
1122
|
date?: string | undefined;
|
|
1102
1123
|
privileges: import("../modules").TById;
|
|
@@ -1135,6 +1156,7 @@ export declare const selectClassesFolder: ((state: import("redux").EmptyObject &
|
|
|
1135
1156
|
loading?: boolean | undefined;
|
|
1136
1157
|
old?: boolean | undefined;
|
|
1137
1158
|
enabled?: boolean | undefined;
|
|
1159
|
+
confirmed?: boolean | undefined;
|
|
1138
1160
|
};
|
|
1139
1161
|
date?: string | undefined;
|
|
1140
1162
|
privileges: import("../modules").TById;
|
|
@@ -1168,6 +1190,7 @@ export declare const selectClassesFolder: ((state: import("redux").EmptyObject &
|
|
|
1168
1190
|
loading?: boolean | undefined;
|
|
1169
1191
|
old?: boolean | undefined;
|
|
1170
1192
|
enabled?: boolean | undefined;
|
|
1193
|
+
confirmed?: boolean | undefined;
|
|
1171
1194
|
};
|
|
1172
1195
|
date?: string | undefined;
|
|
1173
1196
|
privileges: import("../modules").TById;
|
|
@@ -1206,6 +1229,7 @@ export declare const selectMethods: ((state: import("redux").EmptyObject & {
|
|
|
1206
1229
|
loading?: boolean | undefined;
|
|
1207
1230
|
old?: boolean | undefined;
|
|
1208
1231
|
enabled?: boolean | undefined;
|
|
1232
|
+
confirmed?: boolean | undefined;
|
|
1209
1233
|
};
|
|
1210
1234
|
date?: string | undefined;
|
|
1211
1235
|
privileges: import("../modules").TById;
|
|
@@ -1244,6 +1268,7 @@ export declare const selectWebForms: ((state: import("redux").EmptyObject & {
|
|
|
1244
1268
|
loading?: boolean | undefined;
|
|
1245
1269
|
old?: boolean | undefined;
|
|
1246
1270
|
enabled?: boolean | undefined;
|
|
1271
|
+
confirmed?: boolean | undefined;
|
|
1247
1272
|
};
|
|
1248
1273
|
date?: string | undefined;
|
|
1249
1274
|
privileges: import("../modules").TById;
|
|
@@ -1282,6 +1307,7 @@ export declare const selectClasses: ((state: import("redux").EmptyObject & {
|
|
|
1282
1307
|
loading?: boolean | undefined;
|
|
1283
1308
|
old?: boolean | undefined;
|
|
1284
1309
|
enabled?: boolean | undefined;
|
|
1310
|
+
confirmed?: boolean | undefined;
|
|
1285
1311
|
};
|
|
1286
1312
|
date?: string | undefined;
|
|
1287
1313
|
privileges: import("../modules").TById;
|
|
@@ -21,6 +21,7 @@ export declare const selectModals: ((state: import("redux").EmptyObject & {
|
|
|
21
21
|
loading?: boolean | undefined;
|
|
22
22
|
old?: boolean | undefined;
|
|
23
23
|
enabled?: boolean | undefined;
|
|
24
|
+
confirmed?: boolean | undefined;
|
|
24
25
|
};
|
|
25
26
|
date?: string | undefined;
|
|
26
27
|
privileges: import("../modules").TById;
|