@ws-ui/store 1.11.12-rc7 → 1.11.12
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 +10524 -9885
- 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 +10 -2
- package/dist/modules/explorer/types.d.ts +26 -1
- package/dist/modules/explorer/utils.d.ts +2 -2
- package/dist/modules/index.d.ts +3 -3
- package/dist/modules/modals/thunks.d.ts +9 -1
- package/dist/modules/roles/adapter.d.ts +180 -1
- package/dist/modules/roles/index.d.ts +2 -1
- package/dist/modules/roles/reducer.d.ts +1 -1
- package/dist/modules/roles/thunks.d.ts +2 -1
- package/dist/modules/roles/types.d.ts +108 -0
- package/dist/modules/settings/index.d.ts +1 -1
- package/dist/modules/settings/reducer.d.ts +19 -3
- package/dist/modules/settings/types.d.ts +6 -2
- 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 +3 -3
|
@@ -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('../modules').ITreeItem[];
|
|
4
4
|
debugger: import('../modules').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('../modules').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -12,7 +12,7 @@ export declare const selectCatalog: ((state: import('redux').EmptyObject & {
|
|
|
12
12
|
state: "error";
|
|
13
13
|
error: string;
|
|
14
14
|
};
|
|
15
|
-
roles: import('
|
|
15
|
+
roles: import('../modules').IRolesState;
|
|
16
16
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
17
17
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
18
18
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
27
27
|
debugger: import('../modules').IDebuggerState;
|
|
28
|
-
settings: import('
|
|
28
|
+
settings: import('../modules').ISettingsState;
|
|
29
29
|
catalog: {
|
|
30
30
|
state: "loading";
|
|
31
31
|
} | {
|
|
@@ -35,7 +35,7 @@ export declare const selectCatalog: ((state: import('redux').EmptyObject & {
|
|
|
35
35
|
state: "error";
|
|
36
36
|
error: string;
|
|
37
37
|
};
|
|
38
|
-
roles: import('
|
|
38
|
+
roles: import('../modules').IRolesState;
|
|
39
39
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
40
40
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
41
41
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
55
55
|
debugger: import('../modules').IDebuggerState;
|
|
56
|
-
settings: import('
|
|
56
|
+
settings: import('../modules').ISettingsState;
|
|
57
57
|
catalog: {
|
|
58
58
|
state: "loading";
|
|
59
59
|
} | {
|
|
@@ -63,7 +63,7 @@ export declare const selectCatalogState: ((state: import('redux').EmptyObject &
|
|
|
63
63
|
state: "error";
|
|
64
64
|
error: string;
|
|
65
65
|
};
|
|
66
|
-
roles: import('
|
|
66
|
+
roles: import('../modules').IRolesState;
|
|
67
67
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
68
68
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
69
69
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
78
78
|
debugger: import('../modules').IDebuggerState;
|
|
79
|
-
settings: import('
|
|
79
|
+
settings: import('../modules').ISettingsState;
|
|
80
80
|
catalog: {
|
|
81
81
|
state: "loading";
|
|
82
82
|
} | {
|
|
@@ -86,7 +86,7 @@ export declare const selectCatalogState: ((state: import('redux').EmptyObject &
|
|
|
86
86
|
state: "error";
|
|
87
87
|
error: string;
|
|
88
88
|
};
|
|
89
|
-
roles: import('
|
|
89
|
+
roles: import('../modules').IRolesState;
|
|
90
90
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
91
91
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
92
92
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
106
106
|
debugger: import('../modules').IDebuggerState;
|
|
107
|
-
settings: import('
|
|
107
|
+
settings: import('../modules').ISettingsState;
|
|
108
108
|
catalog: {
|
|
109
109
|
state: "loading";
|
|
110
110
|
} | {
|
|
@@ -114,7 +114,7 @@ export declare const selectDataclasses: ((state: import('redux').EmptyObject & {
|
|
|
114
114
|
state: "error";
|
|
115
115
|
error: string;
|
|
116
116
|
};
|
|
117
|
-
roles: import('
|
|
117
|
+
roles: import('../modules').IRolesState;
|
|
118
118
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
119
119
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
120
120
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -123,16 +123,16 @@ export declare const selectDataclasses: ((state: import('redux').EmptyObject & {
|
|
|
123
123
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
124
124
|
model: import('../modules').IModelState;
|
|
125
125
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
126
|
-
}) => datasources.IDataClasses) & import('reselect').OutputSelectorFields<(args_0: datasources.IEnhancedCatalog | null) => datasources.IDataClasses, {
|
|
126
|
+
}) => never[] | datasources.IDataClasses) & import('reselect').OutputSelectorFields<(args_0: datasources.IEnhancedCatalog | null) => never[] | datasources.IDataClasses, {
|
|
127
127
|
clearCache: () => void;
|
|
128
128
|
}> & {
|
|
129
129
|
clearCache: () => void;
|
|
130
130
|
};
|
|
131
131
|
export declare const selectSingletons: ((state: import('redux').EmptyObject & {
|
|
132
132
|
root: import('../modules').IRootState;
|
|
133
|
-
explorer: import('
|
|
133
|
+
explorer: import('../modules').ITreeItem[];
|
|
134
134
|
debugger: import('../modules').IDebuggerState;
|
|
135
|
-
settings: import('
|
|
135
|
+
settings: import('../modules').ISettingsState;
|
|
136
136
|
catalog: {
|
|
137
137
|
state: "loading";
|
|
138
138
|
} | {
|
|
@@ -142,7 +142,7 @@ export declare const selectSingletons: ((state: import('redux').EmptyObject & {
|
|
|
142
142
|
state: "error";
|
|
143
143
|
error: string;
|
|
144
144
|
};
|
|
145
|
-
roles: import('
|
|
145
|
+
roles: import('../modules').IRolesState;
|
|
146
146
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
147
147
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
148
148
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -151,16 +151,16 @@ export declare const selectSingletons: ((state: import('redux').EmptyObject & {
|
|
|
151
151
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
152
152
|
model: import('../modules').IModelState;
|
|
153
153
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
154
|
-
}) => datasources.ISingletons) & import('reselect').OutputSelectorFields<(args_0: datasources.IEnhancedCatalog | null) => datasources.ISingletons, {
|
|
154
|
+
}) => never[] | datasources.ISingletons) & import('reselect').OutputSelectorFields<(args_0: datasources.IEnhancedCatalog | null) => never[] | datasources.ISingletons, {
|
|
155
155
|
clearCache: () => void;
|
|
156
156
|
}> & {
|
|
157
157
|
clearCache: () => void;
|
|
158
158
|
};
|
|
159
159
|
export declare const selectVirtualDataClasses: ((state: import('redux').EmptyObject & {
|
|
160
160
|
root: import('../modules').IRootState;
|
|
161
|
-
explorer: import('
|
|
161
|
+
explorer: import('../modules').ITreeItem[];
|
|
162
162
|
debugger: import('../modules').IDebuggerState;
|
|
163
|
-
settings: import('
|
|
163
|
+
settings: import('../modules').ISettingsState;
|
|
164
164
|
catalog: {
|
|
165
165
|
state: "loading";
|
|
166
166
|
} | {
|
|
@@ -170,7 +170,7 @@ export declare const selectVirtualDataClasses: ((state: import('redux').EmptyObj
|
|
|
170
170
|
state: "error";
|
|
171
171
|
error: string;
|
|
172
172
|
};
|
|
173
|
-
roles: import('
|
|
173
|
+
roles: import('../modules').IRolesState;
|
|
174
174
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
175
175
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
176
176
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -179,16 +179,16 @@ export declare const selectVirtualDataClasses: ((state: import('redux').EmptyObj
|
|
|
179
179
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
180
180
|
model: import('../modules').IModelState;
|
|
181
181
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
182
|
-
}) => datasources.IDetailedDataClass[]) & import('reselect').OutputSelectorFields<(args_0: datasources.IDataClasses) => datasources.IDetailedDataClass[], {
|
|
182
|
+
}) => datasources.IDetailedDataClass[]) & import('reselect').OutputSelectorFields<(args_0: never[] | datasources.IDataClasses) => datasources.IDetailedDataClass[], {
|
|
183
183
|
clearCache: () => void;
|
|
184
184
|
}> & {
|
|
185
185
|
clearCache: () => void;
|
|
186
186
|
};
|
|
187
187
|
export declare const selectCatalogMethods: ((state: import('redux').EmptyObject & {
|
|
188
188
|
root: import('../modules').IRootState;
|
|
189
|
-
explorer: import('
|
|
189
|
+
explorer: import('../modules').ITreeItem[];
|
|
190
190
|
debugger: import('../modules').IDebuggerState;
|
|
191
|
-
settings: import('
|
|
191
|
+
settings: import('../modules').ISettingsState;
|
|
192
192
|
catalog: {
|
|
193
193
|
state: "loading";
|
|
194
194
|
} | {
|
|
@@ -198,7 +198,7 @@ export declare const selectCatalogMethods: ((state: import('redux').EmptyObject
|
|
|
198
198
|
state: "error";
|
|
199
199
|
error: string;
|
|
200
200
|
};
|
|
201
|
-
roles: import('
|
|
201
|
+
roles: import('../modules').IRolesState;
|
|
202
202
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
203
203
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
204
204
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
4
4
|
debugger: import('../modules').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('../modules').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -12,7 +12,7 @@ export declare const selectAppState: ((state: import('redux').EmptyObject & {
|
|
|
12
12
|
state: "error";
|
|
13
13
|
error: string;
|
|
14
14
|
};
|
|
15
|
-
roles: import('
|
|
15
|
+
roles: import('../modules').IRolesState;
|
|
16
16
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
17
17
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
18
18
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
27
27
|
debugger: import('../modules').IDebuggerState;
|
|
28
|
-
settings: import('
|
|
28
|
+
settings: import('../modules').ISettingsState;
|
|
29
29
|
catalog: {
|
|
30
30
|
state: "loading";
|
|
31
31
|
} | {
|
|
@@ -35,7 +35,7 @@ export declare const selectAppState: ((state: import('redux').EmptyObject & {
|
|
|
35
35
|
state: "error";
|
|
36
36
|
error: string;
|
|
37
37
|
};
|
|
38
|
-
roles: import('
|
|
38
|
+
roles: import('../modules').IRolesState;
|
|
39
39
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
40
40
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
41
41
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
50
50
|
debugger: import('../modules').IDebuggerState;
|
|
51
|
-
settings: import('
|
|
51
|
+
settings: import('../modules').ISettingsState;
|
|
52
52
|
catalog: {
|
|
53
53
|
state: "loading";
|
|
54
54
|
} | {
|
|
@@ -58,7 +58,7 @@ export declare const selectAppState: ((state: import('redux').EmptyObject & {
|
|
|
58
58
|
state: "error";
|
|
59
59
|
error: string;
|
|
60
60
|
};
|
|
61
|
-
roles: import('
|
|
61
|
+
roles: import('../modules').IRolesState;
|
|
62
62
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
63
63
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
64
64
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
73
73
|
debugger: import('../modules').IDebuggerState;
|
|
74
|
-
settings: import('
|
|
74
|
+
settings: import('../modules').ISettingsState;
|
|
75
75
|
catalog: {
|
|
76
76
|
state: "loading";
|
|
77
77
|
} | {
|
|
@@ -81,7 +81,7 @@ export declare const selectAppState: ((state: import('redux').EmptyObject & {
|
|
|
81
81
|
state: "error";
|
|
82
82
|
error: string;
|
|
83
83
|
};
|
|
84
|
-
roles: import('
|
|
84
|
+
roles: import('../modules').IRolesState;
|
|
85
85
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
86
86
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
87
87
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('..').ITreeItem[];
|
|
9
9
|
debugger: import('..').IDebuggerState;
|
|
10
|
-
settings: import('
|
|
10
|
+
settings: import('..').ISettingsState;
|
|
11
11
|
catalog: {
|
|
12
12
|
state: "loading";
|
|
13
13
|
} | {
|
|
@@ -17,7 +17,7 @@ export declare const selectComponentsByPath: (tabPath: string) => ((state: impor
|
|
|
17
17
|
state: "error";
|
|
18
18
|
error: string;
|
|
19
19
|
};
|
|
20
|
-
roles: import('
|
|
20
|
+
roles: import('..').IRolesState;
|
|
21
21
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
22
22
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
23
23
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
9
9
|
debugger: import('../modules').IDebuggerState;
|
|
10
|
-
settings: import('
|
|
10
|
+
settings: import('../modules').ISettingsState;
|
|
11
11
|
catalog: {
|
|
12
12
|
state: "loading";
|
|
13
13
|
} | {
|
|
@@ -17,7 +17,7 @@ export declare const selectDatasourcesByPath: (tabPath: string) => ((state: impo
|
|
|
17
17
|
state: "error";
|
|
18
18
|
error: string;
|
|
19
19
|
};
|
|
20
|
-
roles: import('
|
|
20
|
+
roles: import('../modules').IRolesState;
|
|
21
21
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
22
22
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
23
23
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
44
44
|
debugger: import('../modules').IDebuggerState;
|
|
45
|
-
settings: import('
|
|
45
|
+
settings: import('../modules').ISettingsState;
|
|
46
46
|
catalog: {
|
|
47
47
|
state: "loading";
|
|
48
48
|
} | {
|
|
@@ -52,7 +52,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
52
52
|
state: "error";
|
|
53
53
|
error: string;
|
|
54
54
|
};
|
|
55
|
-
roles: import('
|
|
55
|
+
roles: import('../modules').IRolesState;
|
|
56
56
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
57
57
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
58
58
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
67
67
|
debugger: import('../modules').IDebuggerState;
|
|
68
|
-
settings: import('
|
|
68
|
+
settings: import('../modules').ISettingsState;
|
|
69
69
|
catalog: {
|
|
70
70
|
state: "loading";
|
|
71
71
|
} | {
|
|
@@ -75,7 +75,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
75
75
|
state: "error";
|
|
76
76
|
error: string;
|
|
77
77
|
};
|
|
78
|
-
roles: import('
|
|
78
|
+
roles: import('../modules').IRolesState;
|
|
79
79
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
80
80
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
81
81
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
98
98
|
debugger: import('../modules').IDebuggerState;
|
|
99
|
-
settings: import('
|
|
99
|
+
settings: import('../modules').ISettingsState;
|
|
100
100
|
catalog: {
|
|
101
101
|
state: "loading";
|
|
102
102
|
} | {
|
|
@@ -106,7 +106,7 @@ export declare const selectSharedDatasources: ((state: import('redux').EmptyObje
|
|
|
106
106
|
state: "error";
|
|
107
107
|
error: string;
|
|
108
108
|
};
|
|
109
|
-
roles: import('
|
|
109
|
+
roles: import('../modules').IRolesState;
|
|
110
110
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
111
111
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
112
112
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
123
123
|
debugger: import('../modules').IDebuggerState;
|
|
124
|
-
settings: import('
|
|
124
|
+
settings: import('../modules').ISettingsState;
|
|
125
125
|
catalog: {
|
|
126
126
|
state: "loading";
|
|
127
127
|
} | {
|
|
@@ -131,7 +131,7 @@ export declare const selectSharedDatasources: ((state: import('redux').EmptyObje
|
|
|
131
131
|
state: "error";
|
|
132
132
|
error: string;
|
|
133
133
|
};
|
|
134
|
-
roles: import('
|
|
134
|
+
roles: import('../modules').IRolesState;
|
|
135
135
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
136
136
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
137
137
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
153
153
|
debugger: import('../modules').IDebuggerState;
|
|
154
|
-
settings: import('
|
|
154
|
+
settings: import('../modules').ISettingsState;
|
|
155
155
|
catalog: {
|
|
156
156
|
state: "loading";
|
|
157
157
|
} | {
|
|
@@ -161,7 +161,7 @@ export declare const selectSharedDatasourcesState: ((state: import('redux').Empt
|
|
|
161
161
|
state: "error";
|
|
162
162
|
error: string;
|
|
163
163
|
};
|
|
164
|
-
roles: import('
|
|
164
|
+
roles: import('../modules').IRolesState;
|
|
165
165
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
166
166
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
167
167
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
176
176
|
debugger: import('../modules').IDebuggerState;
|
|
177
|
-
settings: import('
|
|
177
|
+
settings: import('../modules').ISettingsState;
|
|
178
178
|
catalog: {
|
|
179
179
|
state: "loading";
|
|
180
180
|
} | {
|
|
@@ -184,7 +184,7 @@ export declare const selectSharedDatasourcesState: ((state: import('redux').Empt
|
|
|
184
184
|
state: "error";
|
|
185
185
|
error: string;
|
|
186
186
|
};
|
|
187
|
-
roles: import('
|
|
187
|
+
roles: import('../modules').IRolesState;
|
|
188
188
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
189
189
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
190
190
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -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('../modules').ITreeItem[];
|
|
214
214
|
debugger: import('../modules').IDebuggerState;
|
|
215
|
-
settings: import('
|
|
215
|
+
settings: import('../modules').ISettingsState;
|
|
216
216
|
catalog: {
|
|
217
217
|
state: "loading";
|
|
218
218
|
} | {
|
|
@@ -222,7 +222,7 @@ export declare const selectAllDatasourcesByPath: (tabPath: string, exclude?: "pr
|
|
|
222
222
|
state: "error";
|
|
223
223
|
error: string;
|
|
224
224
|
};
|
|
225
|
-
roles: import('
|
|
225
|
+
roles: import('../modules').IRolesState;
|
|
226
226
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
227
227
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
228
228
|
savedConditions: import('../modules').ISavedConditionsState;
|