@ws-ui/store 1.11.12-rc1 → 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 +2 -2
- package/dist/index.cjs.js +23 -23
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3293 -3313
- 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 +2 -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 +2 -2
- package/dist/modules/webforms/datasources.adapter.d.ts +2 -2
- package/dist/selectors/catalog.d.ts +16 -16
- package/dist/selectors/common.d.ts +8 -8
- package/dist/selectors/components.d.ts +2 -2
- package/dist/selectors/datasources.d.ts +16 -16
- package/dist/selectors/debugger.d.ts +56 -56
- package/dist/selectors/explorer.d.ts +63 -63
- package/dist/selectors/modals.d.ts +2 -2
- package/dist/selectors/roles.d.ts +18 -18
- package/dist/selectors/settings.d.ts +24 -24
- package/dist/selectors/states.d.ts +12 -12
- package/dist/selectors/styles.d.ts +10 -10
- package/dist/selectors/tabs.d.ts +10 -10
- package/dist/selectors/webforms.d.ts +28 -28
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
-
import { ITreeItem } from '
|
|
2
|
+
import { ITreeItem } from '@ws-ui/shared';
|
|
3
3
|
export declare const findNodeByPath: (tree: ITreeItem[], path: string) => ITreeItem | null;
|
|
4
4
|
declare const stateSlice: import('@reduxjs/toolkit').Slice<ITreeItem[], {
|
|
5
5
|
renameClassesFolder: (state: ITreeItem[], action: PayloadAction<{
|
|
@@ -1,16 +1,8 @@
|
|
|
1
|
-
import { FileFolderType, IFileInfo, ISaveFileResponse, ISetFileContentResponse, ITab, ITextEditorSelection } from '@ws-ui/shared';
|
|
1
|
+
import { FileFolderType, IFileInfo, ISaveFileResponse, ISetFileContentResponse, ITab, ITextEditorSelection, ICreateNewFilePayload, ITreeItem } from '@ws-ui/shared';
|
|
2
2
|
import { ClassFileTypes } from '../root/types';
|
|
3
3
|
import { AppState } from '..';
|
|
4
4
|
import { ISettingsState } from '../settings';
|
|
5
|
-
import { IOpenFilePayload, ISwitchEditorPayload
|
|
6
|
-
interface ICreateNewFilePayload {
|
|
7
|
-
fileName: string;
|
|
8
|
-
type: FileFolderType;
|
|
9
|
-
path: string;
|
|
10
|
-
parentNode: ITreeItem;
|
|
11
|
-
content?: string;
|
|
12
|
-
qodly: boolean;
|
|
13
|
-
}
|
|
5
|
+
import { IOpenFilePayload, ISwitchEditorPayload } from './types';
|
|
14
6
|
export declare function getDefaultContent(root: FileFolderType, projectSettings: ISettingsState['project']): never[] | "" | {
|
|
15
7
|
metadata: {
|
|
16
8
|
v: string;
|
|
@@ -1,29 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export interface ITreeItem {
|
|
3
|
-
id?: string;
|
|
4
|
-
name: string;
|
|
5
|
-
path: string;
|
|
6
|
-
children?: ITreeItem[];
|
|
7
|
-
type: FileFolderType;
|
|
8
|
-
date?: string;
|
|
9
|
-
size?: number;
|
|
10
|
-
ext?: string;
|
|
11
|
-
error: null | {
|
|
12
|
-
message: string;
|
|
13
|
-
};
|
|
14
|
-
flags: {
|
|
15
|
-
[key: string]: boolean;
|
|
16
|
-
};
|
|
17
|
-
tipKey?: string;
|
|
18
|
-
config: {
|
|
19
|
-
editor?: IEditor;
|
|
20
|
-
supportedEditors?: IEditor[];
|
|
21
|
-
};
|
|
22
|
-
isRoot?: boolean;
|
|
23
|
-
info?: {
|
|
24
|
-
[key: string]: any;
|
|
25
|
-
};
|
|
26
|
-
}
|
|
1
|
+
import { IEditor, IFileInfo, ITabFlags, ITab } from '@ws-ui/shared';
|
|
27
2
|
export interface INodePermissions {
|
|
28
3
|
canRemove: boolean;
|
|
29
4
|
canAdd: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ITreeItem, INodeInfo, IEditor } from '@ws-ui/shared';
|
|
2
|
+
import { IEditors } from './types';
|
|
2
3
|
import { AppState } from '..';
|
|
3
|
-
import { INodeInfo, IEditor } from '@ws-ui/shared';
|
|
4
4
|
export declare function getNodeRelativePath(nodePath: string): string;
|
|
5
5
|
export declare function parseEditor(path: string, key: string | null, fallbackEditor?: IEditor): IEditor;
|
|
6
6
|
export declare function getEditors(path: string): IEditors;
|
package/dist/modules/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { default as rootReducer } from './root';
|
|
2
2
|
export declare const stateReducer: import('redux').Reducer<import('redux').CombinedState<{
|
|
3
3
|
root: import('./root').IRootState;
|
|
4
|
-
explorer: import('
|
|
4
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
5
5
|
debugger: import('./debugger').IDebuggerState;
|
|
6
|
-
settings: import('
|
|
6
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
7
7
|
catalog: {
|
|
8
8
|
state: "loading";
|
|
9
9
|
} | {
|
|
@@ -1,18 +1,6 @@
|
|
|
1
1
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
-
import {
|
|
3
|
-
import { TSetSettingPayload
|
|
4
|
-
export interface ISettingsState {
|
|
5
|
-
session: {
|
|
6
|
-
[key: string]: unknown;
|
|
7
|
-
};
|
|
8
|
-
project: {
|
|
9
|
-
[key: string]: unknown;
|
|
10
|
-
};
|
|
11
|
-
server: IAppSettingsResponse;
|
|
12
|
-
welcometour: {
|
|
13
|
-
[key: string]: unknown;
|
|
14
|
-
};
|
|
15
|
-
}
|
|
2
|
+
import { ISettingsState, TSettingPath } from '@ws-ui/shared';
|
|
3
|
+
import { TSetSettingPayload } from './types';
|
|
16
4
|
declare const stateSlice: import('@reduxjs/toolkit').Slice<ISettingsState, {
|
|
17
5
|
setSetting(state: ISettingsState, action: TSetSettingPayload): void;
|
|
18
6
|
setSettings(state: ISettingsState, action: PayloadAction<{
|
|
@@ -26,11 +14,7 @@ declare const stateSlice: import('@reduxjs/toolkit').Slice<ISettingsState, {
|
|
|
26
14
|
};
|
|
27
15
|
}>): void;
|
|
28
16
|
}, "settings">;
|
|
29
|
-
export declare const setSetting: import('@reduxjs/toolkit').ActionCreatorWithPayload<{
|
|
30
|
-
path: TSettingPath;
|
|
31
|
-
settingsKey: string;
|
|
32
|
-
value: any;
|
|
33
|
-
}, "settings/setSetting">, setSettings: import('@reduxjs/toolkit').ActionCreatorWithPayload<{
|
|
17
|
+
export declare const setSetting: import('@reduxjs/toolkit').ActionCreatorWithPayload<import('@ws-ui/shared').ISetSettingPayload, "settings/setSetting">, setSettings: import('@reduxjs/toolkit').ActionCreatorWithPayload<{
|
|
34
18
|
path: TSettingPath;
|
|
35
19
|
value: any;
|
|
36
20
|
}, "settings/setSettings">, setSettingsAsText: import('@reduxjs/toolkit').ActionCreatorWithPayload<{
|
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
-
|
|
3
|
-
export type TSetSettingPayload = PayloadAction<
|
|
4
|
-
path: TSettingPath;
|
|
5
|
-
settingsKey: string;
|
|
6
|
-
value: any;
|
|
7
|
-
}>;
|
|
2
|
+
import { ISetSettingPayload } from '@ws-ui/shared';
|
|
3
|
+
export type TSetSettingPayload = PayloadAction<ISetSettingPayload>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const selectAllTasks: ((state: import('redux').EmptyObject & {
|
|
2
2
|
root: import('..').IRootState;
|
|
3
|
-
explorer: import('
|
|
3
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
4
4
|
debugger: import('..').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const listDsNamespaces: import('lodash').CurriedFunction2<string, import('redux').CombinedState<{
|
|
2
2
|
root: import('..').IRootState;
|
|
3
|
-
explorer: import('
|
|
3
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
4
4
|
debugger: import('..').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const selectCatalog: ((state: import('redux').EmptyObject & {
|
|
2
2
|
root: import('../modules').IRootState;
|
|
3
|
-
explorer: import('
|
|
3
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
4
4
|
debugger: import('../modules').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -23,9 +23,9 @@ export declare const selectCatalog: ((state: import('redux').EmptyObject & {
|
|
|
23
23
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
24
24
|
}) => datasources.IEnhancedCatalog | null) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
25
25
|
root: import('../modules').IRootState;
|
|
26
|
-
explorer: import('
|
|
26
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
27
27
|
debugger: import('../modules').IDebuggerState;
|
|
28
|
-
settings: import('
|
|
28
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
29
29
|
catalog: {
|
|
30
30
|
state: "loading";
|
|
31
31
|
} | {
|
|
@@ -51,9 +51,9 @@ export declare const selectCatalog: ((state: import('redux').EmptyObject & {
|
|
|
51
51
|
};
|
|
52
52
|
export declare const selectCatalogState: ((state: import('redux').EmptyObject & {
|
|
53
53
|
root: import('../modules').IRootState;
|
|
54
|
-
explorer: import('
|
|
54
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
55
55
|
debugger: import('../modules').IDebuggerState;
|
|
56
|
-
settings: import('
|
|
56
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
57
57
|
catalog: {
|
|
58
58
|
state: "loading";
|
|
59
59
|
} | {
|
|
@@ -74,9 +74,9 @@ export declare const selectCatalogState: ((state: import('redux').EmptyObject &
|
|
|
74
74
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
75
75
|
}) => "error" | "loading" | "loaded") & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
76
76
|
root: import('../modules').IRootState;
|
|
77
|
-
explorer: import('
|
|
77
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
78
78
|
debugger: import('../modules').IDebuggerState;
|
|
79
|
-
settings: import('
|
|
79
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
80
80
|
catalog: {
|
|
81
81
|
state: "loading";
|
|
82
82
|
} | {
|
|
@@ -102,9 +102,9 @@ export declare const selectCatalogState: ((state: import('redux').EmptyObject &
|
|
|
102
102
|
};
|
|
103
103
|
export declare const selectDataclasses: ((state: import('redux').EmptyObject & {
|
|
104
104
|
root: import('../modules').IRootState;
|
|
105
|
-
explorer: import('
|
|
105
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
106
106
|
debugger: import('../modules').IDebuggerState;
|
|
107
|
-
settings: import('
|
|
107
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
108
108
|
catalog: {
|
|
109
109
|
state: "loading";
|
|
110
110
|
} | {
|
|
@@ -130,9 +130,9 @@ export declare const selectDataclasses: ((state: import('redux').EmptyObject & {
|
|
|
130
130
|
};
|
|
131
131
|
export declare const selectSingletons: ((state: import('redux').EmptyObject & {
|
|
132
132
|
root: import('../modules').IRootState;
|
|
133
|
-
explorer: import('
|
|
133
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
134
134
|
debugger: import('../modules').IDebuggerState;
|
|
135
|
-
settings: import('
|
|
135
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
136
136
|
catalog: {
|
|
137
137
|
state: "loading";
|
|
138
138
|
} | {
|
|
@@ -158,9 +158,9 @@ export declare const selectSingletons: ((state: import('redux').EmptyObject & {
|
|
|
158
158
|
};
|
|
159
159
|
export declare const selectVirtualDataClasses: ((state: import('redux').EmptyObject & {
|
|
160
160
|
root: import('../modules').IRootState;
|
|
161
|
-
explorer: import('
|
|
161
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
162
162
|
debugger: import('../modules').IDebuggerState;
|
|
163
|
-
settings: import('
|
|
163
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
164
164
|
catalog: {
|
|
165
165
|
state: "loading";
|
|
166
166
|
} | {
|
|
@@ -186,9 +186,9 @@ export declare const selectVirtualDataClasses: ((state: import('redux').EmptyObj
|
|
|
186
186
|
};
|
|
187
187
|
export declare const selectCatalogMethods: ((state: import('redux').EmptyObject & {
|
|
188
188
|
root: import('../modules').IRootState;
|
|
189
|
-
explorer: import('
|
|
189
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
190
190
|
debugger: import('../modules').IDebuggerState;
|
|
191
|
-
settings: import('
|
|
191
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
192
192
|
catalog: {
|
|
193
193
|
state: "loading";
|
|
194
194
|
} | {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const selectAppState: ((state: import('redux').EmptyObject & {
|
|
2
2
|
root: import('../modules').IRootState;
|
|
3
|
-
explorer: import('
|
|
3
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
4
4
|
debugger: import('../modules').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -23,9 +23,9 @@ export declare const selectAppState: ((state: import('redux').EmptyObject & {
|
|
|
23
23
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
24
24
|
}) => import('redux').CombinedState<{
|
|
25
25
|
root: import('../modules').IRootState;
|
|
26
|
-
explorer: import('
|
|
26
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
27
27
|
debugger: import('../modules').IDebuggerState;
|
|
28
|
-
settings: import('
|
|
28
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
29
29
|
catalog: {
|
|
30
30
|
state: "loading";
|
|
31
31
|
} | {
|
|
@@ -46,9 +46,9 @@ export declare const selectAppState: ((state: import('redux').EmptyObject & {
|
|
|
46
46
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
47
47
|
}>) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
48
48
|
root: import('../modules').IRootState;
|
|
49
|
-
explorer: import('
|
|
49
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
50
50
|
debugger: import('../modules').IDebuggerState;
|
|
51
|
-
settings: import('
|
|
51
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
52
52
|
catalog: {
|
|
53
53
|
state: "loading";
|
|
54
54
|
} | {
|
|
@@ -69,9 +69,9 @@ export declare const selectAppState: ((state: import('redux').EmptyObject & {
|
|
|
69
69
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
70
70
|
}>) => import('redux').CombinedState<{
|
|
71
71
|
root: import('../modules').IRootState;
|
|
72
|
-
explorer: import('
|
|
72
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
73
73
|
debugger: import('../modules').IDebuggerState;
|
|
74
|
-
settings: import('
|
|
74
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
75
75
|
catalog: {
|
|
76
76
|
state: "loading";
|
|
77
77
|
} | {
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export declare const selectComponentsByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
7
7
|
root: import('..').IRootState;
|
|
8
|
-
explorer: import('
|
|
8
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
9
9
|
debugger: import('..').IDebuggerState;
|
|
10
|
-
settings: import('
|
|
10
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
11
11
|
catalog: {
|
|
12
12
|
state: "loading";
|
|
13
13
|
} | {
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export declare const selectDatasourcesByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
7
7
|
root: import('../modules').IRootState;
|
|
8
|
-
explorer: import('
|
|
8
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
9
9
|
debugger: import('../modules').IDebuggerState;
|
|
10
|
-
settings: import('
|
|
10
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
11
11
|
catalog: {
|
|
12
12
|
state: "loading";
|
|
13
13
|
} | {
|
|
@@ -40,9 +40,9 @@ export declare const selectDatasourcesByPath: (tabPath: string) => ((state: impo
|
|
|
40
40
|
*/
|
|
41
41
|
export declare const selectDatasource: (id: string, namespace: string, tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
42
42
|
root: import('../modules').IRootState;
|
|
43
|
-
explorer: import('
|
|
43
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
44
44
|
debugger: import('../modules').IDebuggerState;
|
|
45
|
-
settings: import('
|
|
45
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
46
46
|
catalog: {
|
|
47
47
|
state: "loading";
|
|
48
48
|
} | {
|
|
@@ -63,9 +63,9 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
63
63
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
64
64
|
}) => datasources.ICreateDataSourceScalar | datasources.ICreateDataSourceEntity | datasources.ICreateDataSourceEntitySelection | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
65
65
|
root: import('../modules').IRootState;
|
|
66
|
-
explorer: import('
|
|
66
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
67
67
|
debugger: import('../modules').IDebuggerState;
|
|
68
|
-
settings: import('
|
|
68
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
69
69
|
catalog: {
|
|
70
70
|
state: "loading";
|
|
71
71
|
} | {
|
|
@@ -94,9 +94,9 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
94
94
|
*/
|
|
95
95
|
export declare const selectSharedDatasources: ((state: import('redux').EmptyObject & {
|
|
96
96
|
root: import('../modules').IRootState;
|
|
97
|
-
explorer: import('
|
|
97
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
98
98
|
debugger: import('../modules').IDebuggerState;
|
|
99
|
-
settings: import('
|
|
99
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
100
100
|
catalog: {
|
|
101
101
|
state: "loading";
|
|
102
102
|
} | {
|
|
@@ -119,9 +119,9 @@ export declare const selectSharedDatasources: ((state: import('redux').EmptyObje
|
|
|
119
119
|
[key: string]: datasources.ICreateDataSource[];
|
|
120
120
|
}) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
121
121
|
root: import('../modules').IRootState;
|
|
122
|
-
explorer: import('
|
|
122
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
123
123
|
debugger: import('../modules').IDebuggerState;
|
|
124
|
-
settings: import('
|
|
124
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
125
125
|
catalog: {
|
|
126
126
|
state: "loading";
|
|
127
127
|
} | {
|
|
@@ -149,9 +149,9 @@ export declare const selectSharedDatasources: ((state: import('redux').EmptyObje
|
|
|
149
149
|
};
|
|
150
150
|
export declare const selectSharedDatasourcesState: ((state: import('redux').EmptyObject & {
|
|
151
151
|
root: import('../modules').IRootState;
|
|
152
|
-
explorer: import('
|
|
152
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
153
153
|
debugger: import('../modules').IDebuggerState;
|
|
154
|
-
settings: import('
|
|
154
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
155
155
|
catalog: {
|
|
156
156
|
state: "loading";
|
|
157
157
|
} | {
|
|
@@ -172,9 +172,9 @@ export declare const selectSharedDatasourcesState: ((state: import('redux').Empt
|
|
|
172
172
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
173
173
|
}) => "error" | "loading" | "loaded") & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
174
174
|
root: import('../modules').IRootState;
|
|
175
|
-
explorer: import('
|
|
175
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
176
176
|
debugger: import('../modules').IDebuggerState;
|
|
177
|
-
settings: import('
|
|
177
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
178
178
|
catalog: {
|
|
179
179
|
state: "loading";
|
|
180
180
|
} | {
|
|
@@ -210,9 +210,9 @@ export type TDatasourcesNotIn = {
|
|
|
210
210
|
*/
|
|
211
211
|
export declare const selectAllDatasourcesByPath: (tabPath: string, exclude?: "private" | "shared" | "user", filter?: TDatasourcesFilter | null, notIn?: TDatasourcesNotIn) => ((state: import('redux').EmptyObject & {
|
|
212
212
|
root: import('../modules').IRootState;
|
|
213
|
-
explorer: import('
|
|
213
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
214
214
|
debugger: import('../modules').IDebuggerState;
|
|
215
|
-
settings: import('
|
|
215
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
216
216
|
catalog: {
|
|
217
217
|
state: "loading";
|
|
218
218
|
} | {
|