@ws-ui/store 0.1.35 → 0.1.37
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 +2 -2
- package/dist/index.cjs.js +29 -29
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1140 -1148
- 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 +1 -1
- package/dist/modules/index.d.ts +1 -1
- package/dist/modules/settings/reducer.d.ts +5 -5
- package/dist/modules/tabs/selectors.d.ts +1 -1
- package/dist/modules/webforms/datasources.adapter.d.ts +1 -1
- package/dist/selectors/catalog.d.ts +8 -8
- package/dist/selectors/common.d.ts +4 -4
- package/dist/selectors/components.d.ts +1 -1
- package/dist/selectors/datasources.d.ts +6 -6
- package/dist/selectors/debugger.d.ts +22 -22
- package/dist/selectors/explorer.d.ts +37 -37
- package/dist/selectors/modals.d.ts +1 -1
- package/dist/selectors/roles.d.ts +8 -8
- package/dist/selectors/settings.d.ts +28 -28
- package/dist/selectors/states.d.ts +5 -5
- package/dist/selectors/styles.d.ts +5 -5
- package/dist/selectors/tabs.d.ts +3 -3
- package/dist/selectors/webforms.d.ts +11 -11
- package/package.json +2 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("redux").Reducer<import("./types").ITreeItem[]>;
|
|
1
|
+
declare const _default: import("redux").Reducer<import("immer/dist/internal.js").WritableDraft<import("./types").ITreeItem>[]>;
|
|
2
2
|
export default _default;
|
|
3
3
|
export * from './reducer';
|
|
4
4
|
export * from './thunks';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
2
|
import { ITreeItem } from './types';
|
|
3
3
|
export declare const findNodeByPath: (tree: ITreeItem[], path: string) => ITreeItem | null;
|
|
4
|
-
declare const stateSlice: import("@reduxjs/toolkit").Slice<ITreeItem[], {
|
|
4
|
+
declare const stateSlice: import("@reduxjs/toolkit").Slice<import("immer/dist/internal.js").WritableDraft<ITreeItem>[], {
|
|
5
5
|
renameClassesFolder: (state: ITreeItem[], action: PayloadAction<{
|
|
6
6
|
newName: string;
|
|
7
7
|
prevName: string;
|
|
@@ -111,7 +111,7 @@ export declare const fetchFolderContent: import("@reduxjs/toolkit").AsyncThunk<I
|
|
|
111
111
|
export declare const fetchFolderContentWithoutExpanding: import("@reduxjs/toolkit").AsyncThunk<ITreeItem[], string, {}>;
|
|
112
112
|
export declare const uploadFileAndGetResponse: import("@reduxjs/toolkit").AsyncThunk<{
|
|
113
113
|
status: number;
|
|
114
|
-
data:
|
|
114
|
+
data: unknown;
|
|
115
115
|
}, File, {}>;
|
|
116
116
|
export declare const uploadFile: import("@reduxjs/toolkit").AsyncThunk<{
|
|
117
117
|
status: number;
|
package/dist/modules/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import rootReducer from './root';
|
|
3
3
|
export declare const stateReducer: import("redux").Reducer<import("redux").CombinedState<{
|
|
4
4
|
root: import("immer/dist/internal.js").WritableDraft<import("./root").IRootState>;
|
|
5
|
-
explorer: import("./explorer").ITreeItem[];
|
|
5
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("./explorer").ITreeItem>[];
|
|
6
6
|
debugger: import("./debugger").IDebuggerState;
|
|
7
7
|
settings: import("./settings").ISettingsState;
|
|
8
8
|
catalog: {
|
|
@@ -3,14 +3,14 @@ import { IAppSettingsResponse } from '@ws-ui/shared';
|
|
|
3
3
|
import { TSetSettingPayload, TSettingPath } from './types';
|
|
4
4
|
export interface ISettingsState {
|
|
5
5
|
session: {
|
|
6
|
-
[key: string]:
|
|
6
|
+
[key: string]: unknown;
|
|
7
7
|
};
|
|
8
8
|
project: {
|
|
9
|
-
[key: string]:
|
|
9
|
+
[key: string]: unknown;
|
|
10
10
|
};
|
|
11
11
|
server: IAppSettingsResponse;
|
|
12
12
|
welcometour: {
|
|
13
|
-
[key: string]:
|
|
13
|
+
[key: string]: unknown;
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
16
|
declare const stateSlice: import("@reduxjs/toolkit").Slice<ISettingsState, {
|
|
@@ -23,7 +23,7 @@ declare const stateSlice: import("@reduxjs/toolkit").Slice<ISettingsState, {
|
|
|
23
23
|
payload: {
|
|
24
24
|
path: TSettingPath;
|
|
25
25
|
settings: {
|
|
26
|
-
[key: string]:
|
|
26
|
+
[key: string]: unknown;
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
29
|
type: string;
|
|
@@ -39,7 +39,7 @@ export declare const setSetting: import("@reduxjs/toolkit").ActionCreatorWithPay
|
|
|
39
39
|
}, string>, setSettingsAsText: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
40
40
|
path: TSettingPath;
|
|
41
41
|
settings: {
|
|
42
|
-
[key: string]:
|
|
42
|
+
[key: string]: unknown;
|
|
43
43
|
};
|
|
44
44
|
}, string>;
|
|
45
45
|
export default stateSlice;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
|
|
2
2
|
export declare const selectPanelByPath: (path: string) => ((state: import("redux").EmptyObject & {
|
|
3
3
|
root: import("immer/dist/internal.js").WritableDraft<import("..").IRootState>;
|
|
4
|
-
explorer: import("..").ITreeItem[];
|
|
4
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("..").ITreeItem>[];
|
|
5
5
|
debugger: import("..").IDebuggerState;
|
|
6
6
|
settings: import("..").ISettingsState;
|
|
7
7
|
catalog: {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/// <reference types="lodash" />
|
|
3
3
|
export declare const listDsNamespaces: import("lodash").CurriedFunction2<string, import("redux").CombinedState<{
|
|
4
4
|
root: import("immer/dist/internal.js").WritableDraft<import("..").IRootState>;
|
|
5
|
-
explorer: import("..").ITreeItem[];
|
|
5
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("..").ITreeItem>[];
|
|
6
6
|
debugger: import("..").IDebuggerState;
|
|
7
7
|
settings: import("..").ISettingsState;
|
|
8
8
|
catalog: {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/// <reference types="@ws-ui/shared/dist/declarations/datasources/interfaces/catalog" />
|
|
3
3
|
export declare const selectCatalog: ((state: import("redux").EmptyObject & {
|
|
4
4
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
5
|
-
explorer: import('../modules').ITreeItem[];
|
|
5
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
6
6
|
debugger: import('../modules').IDebuggerState;
|
|
7
7
|
settings: import('../modules').ISettingsState;
|
|
8
8
|
catalog: {
|
|
@@ -38,7 +38,7 @@ export declare const selectCatalog: ((state: import("redux").EmptyObject & {
|
|
|
38
38
|
model: import('../modules').IModelState;
|
|
39
39
|
}) => datasources.IEnhancedCatalog | null) & import("reselect").OutputSelectorFields<(args_0: import("redux").CombinedState<{
|
|
40
40
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
41
|
-
explorer: import('../modules').ITreeItem[];
|
|
41
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
42
42
|
debugger: import('../modules').IDebuggerState;
|
|
43
43
|
settings: import('../modules').ISettingsState;
|
|
44
44
|
catalog: {
|
|
@@ -79,7 +79,7 @@ export declare const selectCatalog: ((state: import("redux").EmptyObject & {
|
|
|
79
79
|
};
|
|
80
80
|
export declare const selectCatalogState: ((state: import("redux").EmptyObject & {
|
|
81
81
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
82
|
-
explorer: import('../modules').ITreeItem[];
|
|
82
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
83
83
|
debugger: import('../modules').IDebuggerState;
|
|
84
84
|
settings: import('../modules').ISettingsState;
|
|
85
85
|
catalog: {
|
|
@@ -115,7 +115,7 @@ export declare const selectCatalogState: ((state: import("redux").EmptyObject &
|
|
|
115
115
|
model: import('../modules').IModelState;
|
|
116
116
|
}) => "loading" | "error" | "loaded") & import("reselect").OutputSelectorFields<(args_0: import("redux").CombinedState<{
|
|
117
117
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
118
|
-
explorer: import('../modules').ITreeItem[];
|
|
118
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
119
119
|
debugger: import('../modules').IDebuggerState;
|
|
120
120
|
settings: import('../modules').ISettingsState;
|
|
121
121
|
catalog: {
|
|
@@ -156,7 +156,7 @@ export declare const selectCatalogState: ((state: import("redux").EmptyObject &
|
|
|
156
156
|
};
|
|
157
157
|
export declare const selectDataclasses: ((state: import("redux").EmptyObject & {
|
|
158
158
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
159
|
-
explorer: import('../modules').ITreeItem[];
|
|
159
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
160
160
|
debugger: import('../modules').IDebuggerState;
|
|
161
161
|
settings: import('../modules').ISettingsState;
|
|
162
162
|
catalog: {
|
|
@@ -197,7 +197,7 @@ export declare const selectDataclasses: ((state: import("redux").EmptyObject & {
|
|
|
197
197
|
};
|
|
198
198
|
export declare const selectSingletons: ((state: import("redux").EmptyObject & {
|
|
199
199
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
200
|
-
explorer: import('../modules').ITreeItem[];
|
|
200
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
201
201
|
debugger: import('../modules').IDebuggerState;
|
|
202
202
|
settings: import('../modules').ISettingsState;
|
|
203
203
|
catalog: {
|
|
@@ -238,7 +238,7 @@ export declare const selectSingletons: ((state: import("redux").EmptyObject & {
|
|
|
238
238
|
};
|
|
239
239
|
export declare const selectVirtualDataClasses: ((state: import("redux").EmptyObject & {
|
|
240
240
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
241
|
-
explorer: import('../modules').ITreeItem[];
|
|
241
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
242
242
|
debugger: import('../modules').IDebuggerState;
|
|
243
243
|
settings: import('../modules').ISettingsState;
|
|
244
244
|
catalog: {
|
|
@@ -279,7 +279,7 @@ export declare const selectVirtualDataClasses: ((state: import("redux").EmptyObj
|
|
|
279
279
|
};
|
|
280
280
|
export declare const selectCatalogMethods: ((state: import("redux").EmptyObject & {
|
|
281
281
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
282
|
-
explorer: import('../modules').ITreeItem[];
|
|
282
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
283
283
|
debugger: import('../modules').IDebuggerState;
|
|
284
284
|
settings: import('../modules').ISettingsState;
|
|
285
285
|
catalog: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
|
|
2
2
|
export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
3
3
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
4
|
-
explorer: import("../modules").ITreeItem[];
|
|
4
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
5
5
|
debugger: import("../modules").IDebuggerState;
|
|
6
6
|
settings: import("../modules").ISettingsState;
|
|
7
7
|
catalog: {
|
|
@@ -37,7 +37,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
37
37
|
model: import("../modules").IModelState;
|
|
38
38
|
}) => import("redux").CombinedState<{
|
|
39
39
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
40
|
-
explorer: import("../modules").ITreeItem[];
|
|
40
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
41
41
|
debugger: import("../modules").IDebuggerState;
|
|
42
42
|
settings: import("../modules").ISettingsState;
|
|
43
43
|
catalog: {
|
|
@@ -73,7 +73,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
73
73
|
model: import("../modules").IModelState;
|
|
74
74
|
}>) & import("reselect").OutputSelectorFields<(args_0: import("redux").CombinedState<{
|
|
75
75
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
76
|
-
explorer: import("../modules").ITreeItem[];
|
|
76
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
77
77
|
debugger: import("../modules").IDebuggerState;
|
|
78
78
|
settings: import("../modules").ISettingsState;
|
|
79
79
|
catalog: {
|
|
@@ -109,7 +109,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
109
109
|
model: import("../modules").IModelState;
|
|
110
110
|
}>) => import("redux").CombinedState<{
|
|
111
111
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
112
|
-
explorer: import("../modules").ITreeItem[];
|
|
112
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
113
113
|
debugger: import("../modules").IDebuggerState;
|
|
114
114
|
settings: import("../modules").ISettingsState;
|
|
115
115
|
catalog: {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export declare const selectComponentsByPath: (tabPath: string) => ((state: import("redux").EmptyObject & {
|
|
8
8
|
root: import("immer/dist/internal.js").WritableDraft<import("..").IRootState>;
|
|
9
|
-
explorer: import("..").ITreeItem[];
|
|
9
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("..").ITreeItem>[];
|
|
10
10
|
debugger: import("..").IDebuggerState;
|
|
11
11
|
settings: import("..").ISettingsState;
|
|
12
12
|
catalog: {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export declare const selectDatasourcesByPath: (tabPath: string) => ((state: import("redux").EmptyObject & {
|
|
8
8
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
9
|
-
explorer: import("../modules").ITreeItem[];
|
|
9
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
10
10
|
debugger: import("../modules").IDebuggerState;
|
|
11
11
|
settings: import("../modules").ISettingsState;
|
|
12
12
|
catalog: {
|
|
@@ -54,7 +54,7 @@ export declare const selectDatasourcesByPath: (tabPath: string) => ((state: impo
|
|
|
54
54
|
*/
|
|
55
55
|
export declare const selectDatasource: (id: string, namespace: string, tabPath: string) => ((state: import("redux").EmptyObject & {
|
|
56
56
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
57
|
-
explorer: import("../modules").ITreeItem[];
|
|
57
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
58
58
|
debugger: import("../modules").IDebuggerState;
|
|
59
59
|
settings: import("../modules").ISettingsState;
|
|
60
60
|
catalog: {
|
|
@@ -90,7 +90,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
90
90
|
model: import("../modules").IModelState;
|
|
91
91
|
}) => datasources.ICreateDataSourceScalar | datasources.ICreateDataSourceEntity | datasources.ICreateDataSourceEntitySelection | undefined) & import("reselect").OutputSelectorFields<(args_0: import("redux").CombinedState<{
|
|
92
92
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
93
|
-
explorer: import("../modules").ITreeItem[];
|
|
93
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
94
94
|
debugger: import("../modules").IDebuggerState;
|
|
95
95
|
settings: import("../modules").ISettingsState;
|
|
96
96
|
catalog: {
|
|
@@ -134,7 +134,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
134
134
|
*/
|
|
135
135
|
export declare const selectSharedDatasources: ((state: import("redux").EmptyObject & {
|
|
136
136
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
137
|
-
explorer: import("../modules").ITreeItem[];
|
|
137
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
138
138
|
debugger: import("../modules").IDebuggerState;
|
|
139
139
|
settings: import("../modules").ISettingsState;
|
|
140
140
|
catalog: {
|
|
@@ -172,7 +172,7 @@ export declare const selectSharedDatasources: ((state: import("redux").EmptyObje
|
|
|
172
172
|
[key: string]: datasources.ICreateDataSource[];
|
|
173
173
|
}) & import("reselect").OutputSelectorFields<(args_0: import("redux").CombinedState<{
|
|
174
174
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
175
|
-
explorer: import("../modules").ITreeItem[];
|
|
175
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
176
176
|
debugger: import("../modules").IDebuggerState;
|
|
177
177
|
settings: import("../modules").ISettingsState;
|
|
178
178
|
catalog: {
|
|
@@ -225,7 +225,7 @@ export type TDatasourcesNotIn = {
|
|
|
225
225
|
*/
|
|
226
226
|
export declare const selectAllDatasourcesByPath: (tabPath: string, exclude?: 'private' | 'shared', filter?: TDatasourcesFilter | null, notIn?: TDatasourcesNotIn) => ((state: import("redux").EmptyObject & {
|
|
227
227
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
228
|
-
explorer: import("../modules").ITreeItem[];
|
|
228
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
229
229
|
debugger: import("../modules").IDebuggerState;
|
|
230
230
|
settings: import("../modules").ISettingsState;
|
|
231
231
|
catalog: {
|
|
@@ -3,7 +3,7 @@ import { IBreakpoint, IDebuggerData, IDebuggerSession } from '../modules/debugge
|
|
|
3
3
|
import { FileFolderType } from '@ws-ui/shared';
|
|
4
4
|
export declare const selectDebuggerMeta: ((state: import("redux").EmptyObject & {
|
|
5
5
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
6
|
-
explorer: import('../modules').ITreeItem[];
|
|
6
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
7
7
|
debugger: import('../modules').IDebuggerState;
|
|
8
8
|
settings: import('../modules').ISettingsState;
|
|
9
9
|
catalog: {
|
|
@@ -44,7 +44,7 @@ export declare const selectDebuggerMeta: ((state: import("redux").EmptyObject &
|
|
|
44
44
|
};
|
|
45
45
|
export declare const selectDebuggerData: ((state: import("redux").EmptyObject & {
|
|
46
46
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
47
|
-
explorer: import('../modules').ITreeItem[];
|
|
47
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
48
48
|
debugger: import('../modules').IDebuggerState;
|
|
49
49
|
settings: import('../modules').ISettingsState;
|
|
50
50
|
catalog: {
|
|
@@ -85,7 +85,7 @@ export declare const selectDebuggerData: ((state: import("redux").EmptyObject &
|
|
|
85
85
|
};
|
|
86
86
|
export declare const selectDebuggerSessions: ((state: import("redux").EmptyObject & {
|
|
87
87
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
88
|
-
explorer: import('../modules').ITreeItem[];
|
|
88
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
89
89
|
debugger: import('../modules').IDebuggerState;
|
|
90
90
|
settings: import('../modules').ISettingsState;
|
|
91
91
|
catalog: {
|
|
@@ -126,7 +126,7 @@ export declare const selectDebuggerSessions: ((state: import("redux").EmptyObjec
|
|
|
126
126
|
};
|
|
127
127
|
export declare const selectDebuggerSessionsCount: ((state: import("redux").EmptyObject & {
|
|
128
128
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
129
|
-
explorer: import('../modules').ITreeItem[];
|
|
129
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
130
130
|
debugger: import('../modules').IDebuggerState;
|
|
131
131
|
settings: import('../modules').ISettingsState;
|
|
132
132
|
catalog: {
|
|
@@ -170,7 +170,7 @@ export declare const findSession: (sessions: IDebuggerSession[], threadId: numbe
|
|
|
170
170
|
export declare const findSessionByPath: (sessions: IDebuggerSession[], tabPath: string) => IDebuggerSession | undefined;
|
|
171
171
|
export declare const selectBreakpoints: (filePath: string, methodName: string) => ((state: import("redux").EmptyObject & {
|
|
172
172
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
173
|
-
explorer: import('../modules').ITreeItem[];
|
|
173
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
174
174
|
debugger: import('../modules').IDebuggerState;
|
|
175
175
|
settings: import('../modules').ISettingsState;
|
|
176
176
|
catalog: {
|
|
@@ -211,7 +211,7 @@ export declare const selectBreakpoints: (filePath: string, methodName: string) =
|
|
|
211
211
|
};
|
|
212
212
|
export declare const selectDraftBreakpoints: (filePath: string, methodName: string) => ((state: import("redux").EmptyObject & {
|
|
213
213
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
214
|
-
explorer: import('../modules').ITreeItem[];
|
|
214
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
215
215
|
debugger: import('../modules').IDebuggerState;
|
|
216
216
|
settings: import('../modules').ISettingsState;
|
|
217
217
|
catalog: {
|
|
@@ -252,7 +252,7 @@ export declare const selectDraftBreakpoints: (filePath: string, methodName: stri
|
|
|
252
252
|
};
|
|
253
253
|
export declare const selectClassBreakpoints: (filePath: string) => ((state: import("redux").EmptyObject & {
|
|
254
254
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
255
|
-
explorer: import('../modules').ITreeItem[];
|
|
255
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
256
256
|
debugger: import('../modules').IDebuggerState;
|
|
257
257
|
settings: import('../modules').ISettingsState;
|
|
258
258
|
catalog: {
|
|
@@ -293,7 +293,7 @@ export declare const selectClassBreakpoints: (filePath: string) => ((state: impo
|
|
|
293
293
|
};
|
|
294
294
|
export declare const selectDraftClassBreakpoints: (filePath: string) => ((state: import("redux").EmptyObject & {
|
|
295
295
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
296
|
-
explorer: import('../modules').ITreeItem[];
|
|
296
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
297
297
|
debugger: import('../modules').IDebuggerState;
|
|
298
298
|
settings: import('../modules').ISettingsState;
|
|
299
299
|
catalog: {
|
|
@@ -334,7 +334,7 @@ export declare const selectDraftClassBreakpoints: (filePath: string) => ((state:
|
|
|
334
334
|
};
|
|
335
335
|
export declare const selectHighlightedLines: (threadId: number) => ((state: import("redux").EmptyObject & {
|
|
336
336
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
337
|
-
explorer: import('../modules').ITreeItem[];
|
|
337
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
338
338
|
debugger: import('../modules').IDebuggerState;
|
|
339
339
|
settings: import('../modules').ISettingsState;
|
|
340
340
|
catalog: {
|
|
@@ -381,7 +381,7 @@ export declare const selectHighlightedLines: (threadId: number) => ((state: impo
|
|
|
381
381
|
};
|
|
382
382
|
export declare const selectActiveLine: (threadId: number) => ((state: import("redux").EmptyObject & {
|
|
383
383
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
384
|
-
explorer: import('../modules').ITreeItem[];
|
|
384
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
385
385
|
debugger: import('../modules').IDebuggerState;
|
|
386
386
|
settings: import('../modules').ISettingsState;
|
|
387
387
|
catalog: {
|
|
@@ -422,7 +422,7 @@ export declare const selectActiveLine: (threadId: number) => ((state: import("re
|
|
|
422
422
|
};
|
|
423
423
|
export declare const selectExpressions: (threadId: number) => ((state: import("redux").EmptyObject & {
|
|
424
424
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
425
|
-
explorer: import('../modules').ITreeItem[];
|
|
425
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
426
426
|
debugger: import('../modules').IDebuggerState;
|
|
427
427
|
settings: import('../modules').ISettingsState;
|
|
428
428
|
catalog: {
|
|
@@ -463,7 +463,7 @@ export declare const selectExpressions: (threadId: number) => ((state: import("r
|
|
|
463
463
|
};
|
|
464
464
|
export declare const selectStoppedFromDebugSession: (threadId: number) => ((state: import("redux").EmptyObject & {
|
|
465
465
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
466
|
-
explorer: import('../modules').ITreeItem[];
|
|
466
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
467
467
|
debugger: import('../modules').IDebuggerState;
|
|
468
468
|
settings: import('../modules').ISettingsState;
|
|
469
469
|
catalog: {
|
|
@@ -504,7 +504,7 @@ export declare const selectStoppedFromDebugSession: (threadId: number) => ((stat
|
|
|
504
504
|
};
|
|
505
505
|
export declare const selectSourceByPath: (filePath: string, methodName: string) => ((state: import("redux").EmptyObject & {
|
|
506
506
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
507
|
-
explorer: import('../modules').ITreeItem[];
|
|
507
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
508
508
|
debugger: import('../modules').IDebuggerState;
|
|
509
509
|
settings: import('../modules').ISettingsState;
|
|
510
510
|
catalog: {
|
|
@@ -545,7 +545,7 @@ export declare const selectSourceByPath: (filePath: string, methodName: string)
|
|
|
545
545
|
};
|
|
546
546
|
export declare const selectThreadIdByPath: (tabPath: string) => ((state: import("redux").EmptyObject & {
|
|
547
547
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
548
|
-
explorer: import('../modules').ITreeItem[];
|
|
548
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
549
549
|
debugger: import('../modules').IDebuggerState;
|
|
550
550
|
settings: import('../modules').ISettingsState;
|
|
551
551
|
catalog: {
|
|
@@ -586,7 +586,7 @@ export declare const selectThreadIdByPath: (tabPath: string) => ((state: import(
|
|
|
586
586
|
};
|
|
587
587
|
export declare const selectSourceByThreadId: (threadId: number) => ((state: import("redux").EmptyObject & {
|
|
588
588
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
589
|
-
explorer: import('../modules').ITreeItem[];
|
|
589
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
590
590
|
debugger: import('../modules').IDebuggerState;
|
|
591
591
|
settings: import('../modules').ISettingsState;
|
|
592
592
|
catalog: {
|
|
@@ -633,7 +633,7 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
|
|
|
633
633
|
};
|
|
634
634
|
export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state: import("redux").EmptyObject & {
|
|
635
635
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
636
|
-
explorer: import('../modules').ITreeItem[];
|
|
636
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
637
637
|
debugger: import('../modules').IDebuggerState;
|
|
638
638
|
settings: import('../modules').ISettingsState;
|
|
639
639
|
catalog: {
|
|
@@ -674,7 +674,7 @@ export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state
|
|
|
674
674
|
};
|
|
675
675
|
export declare const selectDebuggerChannels: ((state: import("redux").EmptyObject & {
|
|
676
676
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
677
|
-
explorer: import('../modules').ITreeItem[];
|
|
677
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
678
678
|
debugger: import('../modules').IDebuggerState;
|
|
679
679
|
settings: import('../modules').ISettingsState;
|
|
680
680
|
catalog: {
|
|
@@ -721,7 +721,7 @@ export declare const selectDebuggerChannels: ((state: import("redux").EmptyObjec
|
|
|
721
721
|
};
|
|
722
722
|
export declare const selectStackFrames: (threadId: number) => ((state: import("redux").EmptyObject & {
|
|
723
723
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
724
|
-
explorer: import('../modules').ITreeItem[];
|
|
724
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
725
725
|
debugger: import('../modules').IDebuggerState;
|
|
726
726
|
settings: import('../modules').ISettingsState;
|
|
727
727
|
catalog: {
|
|
@@ -762,7 +762,7 @@ export declare const selectStackFrames: (threadId: number) => ((state: import("r
|
|
|
762
762
|
};
|
|
763
763
|
export declare const selectCallChainVariables: (threadId: number) => ((state: import("redux").EmptyObject & {
|
|
764
764
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
765
|
-
explorer: import('../modules').ITreeItem[];
|
|
765
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
766
766
|
debugger: import('../modules').IDebuggerState;
|
|
767
767
|
settings: import('../modules').ISettingsState;
|
|
768
768
|
catalog: {
|
|
@@ -803,7 +803,7 @@ export declare const selectCallChainVariables: (threadId: number) => ((state: im
|
|
|
803
803
|
};
|
|
804
804
|
export declare const selectExpressionsVariables: (threadId: number) => ((state: import("redux").EmptyObject & {
|
|
805
805
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
806
|
-
explorer: import('../modules').ITreeItem[];
|
|
806
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
807
807
|
debugger: import('../modules').IDebuggerState;
|
|
808
808
|
settings: import('../modules').ISettingsState;
|
|
809
809
|
catalog: {
|
|
@@ -844,7 +844,7 @@ export declare const selectExpressionsVariables: (threadId: number) => ((state:
|
|
|
844
844
|
};
|
|
845
845
|
export declare const selectClassOffset: (filePath: string, type?: keyof IDebuggerData['breakpoints']) => ((state: import("redux").EmptyObject & {
|
|
846
846
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
847
|
-
explorer: import('../modules').ITreeItem[];
|
|
847
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
848
848
|
debugger: import('../modules').IDebuggerState;
|
|
849
849
|
settings: import('../modules').ISettingsState;
|
|
850
850
|
catalog: {
|
|
@@ -885,7 +885,7 @@ export declare const selectClassOffset: (filePath: string, type?: keyof IDebugge
|
|
|
885
885
|
};
|
|
886
886
|
export declare const selectExceptions: (threadId: number, fileType: FileFolderType.CLASS | FileFolderType.METHOD, methodName: string, className?: string) => ((state: import("redux").EmptyObject & {
|
|
887
887
|
root: import("immer/dist/internal.js").WritableDraft<import('../modules').IRootState>;
|
|
888
|
-
explorer: import('../modules').ITreeItem[];
|
|
888
|
+
explorer: import("immer/dist/internal.js").WritableDraft<import('../modules').ITreeItem>[];
|
|
889
889
|
debugger: import('../modules').IDebuggerState;
|
|
890
890
|
settings: import('../modules').ISettingsState;
|
|
891
891
|
catalog: {
|