@ws-ui/store 0.3.12 → 1.1.0
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 +6 -2
- package/dist/index.cjs.js +57 -68
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +7900 -7883
- package/dist/index.es.js.map +1 -1
- package/dist/modules/catalog/reducer.d.ts +3 -3
- package/dist/modules/catalog/thunks.d.ts +1 -1
- package/dist/modules/debugger/reducer.d.ts +40 -40
- package/dist/modules/debugger/thunks.d.ts +2 -2
- package/dist/modules/explorer/reducer.d.ts +9 -9
- package/dist/modules/explorer/thunks.d.ts +49 -36
- package/dist/modules/modals/reducer.d.ts +5 -5
- package/dist/modules/modals/thunks.d.ts +1 -1
- package/dist/modules/model/helpers.d.ts +1 -1
- package/dist/modules/model/selectors.d.ts +1 -0
- package/dist/modules/model/subjects.d.ts +1 -1
- package/dist/modules/model/thunks.d.ts +8 -8
- package/dist/modules/model/utils.d.ts +3 -3
- package/dist/modules/roles/reducer.d.ts +22 -12
- package/dist/modules/roles/thunks.d.ts +4 -3
- package/dist/modules/root/reducer.d.ts +56 -47
- package/dist/modules/root/thunks.d.ts +27 -27
- package/dist/modules/settings/thunks.d.ts +2 -2
- package/dist/modules/shared-conditions/reducer.d.ts +10 -10
- package/dist/modules/shared-conditions/thunks.d.ts +1 -1
- package/dist/modules/shared-css/reducer.d.ts +4 -4
- package/dist/modules/shared-css/thunks.d.ts +1 -1
- package/dist/modules/shared-datasources/index.d.ts +1 -0
- package/dist/modules/shared-datasources/reducer.d.ts +1 -1
- package/dist/modules/shared-datasources/thunks.d.ts +10 -10
- package/dist/modules/shared-datasources/utils.d.ts +6 -0
- package/dist/modules/tabs/selectors.d.ts +3 -3
- package/dist/modules/webforms/datasources.adapter.d.ts +1 -1
- package/dist/modules/webforms/reducer.d.ts +10 -10
- package/dist/modules/webforms/thunks.d.ts +102 -15
- package/dist/package.json +61 -0
- package/dist/selectors/catalog.d.ts +1 -0
- package/dist/selectors/common.d.ts +44 -44
- package/dist/selectors/components.d.ts +8 -8
- package/dist/selectors/datasources.d.ts +123 -75
- package/dist/selectors/debugger.d.ts +9 -9
- package/dist/selectors/explorer.d.ts +369 -327
- package/dist/selectors/modals.d.ts +12 -12
- package/dist/selectors/roles.d.ts +104 -102
- package/dist/selectors/settings.d.ts +136 -136
- package/dist/selectors/states.d.ts +3 -3
- package/dist/selectors/styles.d.ts +60 -60
- package/dist/selectors/tabs.d.ts +5 -3
- package/dist/selectors/webforms.d.ts +157 -157
- package/dist/store.d.ts +1 -1
- package/package.json +10 -17
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const selectSessionSettings: ((state: import('redux').EmptyObject & {
|
|
2
|
-
root: import('
|
|
3
|
-
explorer: import('
|
|
4
|
-
debugger: import('
|
|
5
|
-
settings: import('
|
|
2
|
+
root: import('../modules').IRootState;
|
|
3
|
+
explorer: import('../modules').ITreeItem[];
|
|
4
|
+
debugger: import('../modules').IDebuggerState;
|
|
5
|
+
settings: import('../modules').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -12,16 +12,16 @@ export declare const selectSessionSettings: ((state: import('redux').EmptyObject
|
|
|
12
12
|
state: "error";
|
|
13
13
|
error: string;
|
|
14
14
|
};
|
|
15
|
-
roles: import('
|
|
16
|
-
sharedDatasources: import('
|
|
17
|
-
savedConditions: import('
|
|
18
|
-
webforms: import('
|
|
19
|
-
modals: import('
|
|
20
|
-
sharedCSS: import('
|
|
21
|
-
model: import('
|
|
15
|
+
roles: import('../modules').IRolesState;
|
|
16
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
17
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
18
|
+
webforms: import('../modules').IWebformEditorState;
|
|
19
|
+
modals: import('../modules').IModalsState;
|
|
20
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
21
|
+
model: import('../modules').IModelState;
|
|
22
22
|
}) => {
|
|
23
23
|
[key: string]: unknown;
|
|
24
|
-
}) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
24
|
+
}) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ISettingsState) => {
|
|
25
25
|
[key: string]: unknown;
|
|
26
26
|
}, {
|
|
27
27
|
clearCache: () => void;
|
|
@@ -29,10 +29,10 @@ export declare const selectSessionSettings: ((state: import('redux').EmptyObject
|
|
|
29
29
|
clearCache: () => void;
|
|
30
30
|
};
|
|
31
31
|
export declare const selectPartialSessionSettings: <T extends string[]>(...keys: T) => ((state: import('redux').EmptyObject & {
|
|
32
|
-
root: import('
|
|
33
|
-
explorer: import('
|
|
34
|
-
debugger: import('
|
|
35
|
-
settings: import('
|
|
32
|
+
root: import('../modules').IRootState;
|
|
33
|
+
explorer: import('../modules').ITreeItem[];
|
|
34
|
+
debugger: import('../modules').IDebuggerState;
|
|
35
|
+
settings: import('../modules').ISettingsState;
|
|
36
36
|
catalog: {
|
|
37
37
|
state: "loading";
|
|
38
38
|
} | {
|
|
@@ -42,13 +42,13 @@ export declare const selectPartialSessionSettings: <T extends string[]>(...keys:
|
|
|
42
42
|
state: "error";
|
|
43
43
|
error: string;
|
|
44
44
|
};
|
|
45
|
-
roles: import('
|
|
46
|
-
sharedDatasources: import('
|
|
47
|
-
savedConditions: import('
|
|
48
|
-
webforms: import('
|
|
49
|
-
modals: import('
|
|
50
|
-
sharedCSS: import('
|
|
51
|
-
model: import('
|
|
45
|
+
roles: import('../modules').IRolesState;
|
|
46
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
47
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
48
|
+
webforms: import('../modules').IWebformEditorState;
|
|
49
|
+
modals: import('../modules').IModalsState;
|
|
50
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
51
|
+
model: import('../modules').IModelState;
|
|
52
52
|
}) => { [K in T[number]]: unknown; }) & import('reselect').OutputSelectorFields<(args_0: {
|
|
53
53
|
[key: string]: unknown;
|
|
54
54
|
}) => { [K in T[number]]: unknown; }, {
|
|
@@ -57,10 +57,10 @@ export declare const selectPartialSessionSettings: <T extends string[]>(...keys:
|
|
|
57
57
|
clearCache: () => void;
|
|
58
58
|
};
|
|
59
59
|
export declare const selectSessionSetting: <T = string>(key: string) => ((state: import('redux').EmptyObject & {
|
|
60
|
-
root: import('
|
|
61
|
-
explorer: import('
|
|
62
|
-
debugger: import('
|
|
63
|
-
settings: import('
|
|
60
|
+
root: import('../modules').IRootState;
|
|
61
|
+
explorer: import('../modules').ITreeItem[];
|
|
62
|
+
debugger: import('../modules').IDebuggerState;
|
|
63
|
+
settings: import('../modules').ISettingsState;
|
|
64
64
|
catalog: {
|
|
65
65
|
state: "loading";
|
|
66
66
|
} | {
|
|
@@ -70,13 +70,13 @@ export declare const selectSessionSetting: <T = string>(key: string) => ((state:
|
|
|
70
70
|
state: "error";
|
|
71
71
|
error: string;
|
|
72
72
|
};
|
|
73
|
-
roles: import('
|
|
74
|
-
sharedDatasources: import('
|
|
75
|
-
savedConditions: import('
|
|
76
|
-
webforms: import('
|
|
77
|
-
modals: import('
|
|
78
|
-
sharedCSS: import('
|
|
79
|
-
model: import('
|
|
73
|
+
roles: import('../modules').IRolesState;
|
|
74
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
75
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
76
|
+
webforms: import('../modules').IWebformEditorState;
|
|
77
|
+
modals: import('../modules').IModalsState;
|
|
78
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
79
|
+
model: import('../modules').IModelState;
|
|
80
80
|
}) => T) & import('reselect').OutputSelectorFields<(args_0: {
|
|
81
81
|
[key: string]: unknown;
|
|
82
82
|
}) => T, {
|
|
@@ -85,10 +85,10 @@ export declare const selectSessionSetting: <T = string>(key: string) => ((state:
|
|
|
85
85
|
clearCache: () => void;
|
|
86
86
|
};
|
|
87
87
|
export declare const selectFeatureFlag: (key: string) => ((state: import('redux').EmptyObject & {
|
|
88
|
-
root: import('
|
|
89
|
-
explorer: import('
|
|
90
|
-
debugger: import('
|
|
91
|
-
settings: import('
|
|
88
|
+
root: import('../modules').IRootState;
|
|
89
|
+
explorer: import('../modules').ITreeItem[];
|
|
90
|
+
debugger: import('../modules').IDebuggerState;
|
|
91
|
+
settings: import('../modules').ISettingsState;
|
|
92
92
|
catalog: {
|
|
93
93
|
state: "loading";
|
|
94
94
|
} | {
|
|
@@ -98,13 +98,13 @@ export declare const selectFeatureFlag: (key: string) => ((state: import('redux'
|
|
|
98
98
|
state: "error";
|
|
99
99
|
error: string;
|
|
100
100
|
};
|
|
101
|
-
roles: import('
|
|
102
|
-
sharedDatasources: import('
|
|
103
|
-
savedConditions: import('
|
|
104
|
-
webforms: import('
|
|
105
|
-
modals: import('
|
|
106
|
-
sharedCSS: import('
|
|
107
|
-
model: import('
|
|
101
|
+
roles: import('../modules').IRolesState;
|
|
102
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
103
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
104
|
+
webforms: import('../modules').IWebformEditorState;
|
|
105
|
+
modals: import('../modules').IModalsState;
|
|
106
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
107
|
+
model: import('../modules').IModelState;
|
|
108
108
|
}) => boolean) & import('reselect').OutputSelectorFields<(args_0: {
|
|
109
109
|
[key: string]: unknown;
|
|
110
110
|
}) => boolean, {
|
|
@@ -113,10 +113,10 @@ export declare const selectFeatureFlag: (key: string) => ((state: import('redux'
|
|
|
113
113
|
clearCache: () => void;
|
|
114
114
|
};
|
|
115
115
|
export declare const selectProjectSettings: ((state: import('redux').EmptyObject & {
|
|
116
|
-
root: import('
|
|
117
|
-
explorer: import('
|
|
118
|
-
debugger: import('
|
|
119
|
-
settings: import('
|
|
116
|
+
root: import('../modules').IRootState;
|
|
117
|
+
explorer: import('../modules').ITreeItem[];
|
|
118
|
+
debugger: import('../modules').IDebuggerState;
|
|
119
|
+
settings: import('../modules').ISettingsState;
|
|
120
120
|
catalog: {
|
|
121
121
|
state: "loading";
|
|
122
122
|
} | {
|
|
@@ -126,16 +126,16 @@ export declare const selectProjectSettings: ((state: import('redux').EmptyObject
|
|
|
126
126
|
state: "error";
|
|
127
127
|
error: string;
|
|
128
128
|
};
|
|
129
|
-
roles: import('
|
|
130
|
-
sharedDatasources: import('
|
|
131
|
-
savedConditions: import('
|
|
132
|
-
webforms: import('
|
|
133
|
-
modals: import('
|
|
134
|
-
sharedCSS: import('
|
|
135
|
-
model: import('
|
|
129
|
+
roles: import('../modules').IRolesState;
|
|
130
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
131
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
132
|
+
webforms: import('../modules').IWebformEditorState;
|
|
133
|
+
modals: import('../modules').IModalsState;
|
|
134
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
135
|
+
model: import('../modules').IModelState;
|
|
136
136
|
}) => {
|
|
137
137
|
[key: string]: unknown;
|
|
138
|
-
}) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
138
|
+
}) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ISettingsState) => {
|
|
139
139
|
[key: string]: unknown;
|
|
140
140
|
}, {
|
|
141
141
|
clearCache: () => void;
|
|
@@ -143,10 +143,10 @@ export declare const selectProjectSettings: ((state: import('redux').EmptyObject
|
|
|
143
143
|
clearCache: () => void;
|
|
144
144
|
};
|
|
145
145
|
export declare const selectPreferences: ((state: import('redux').EmptyObject & {
|
|
146
|
-
root: import('
|
|
147
|
-
explorer: import('
|
|
148
|
-
debugger: import('
|
|
149
|
-
settings: import('
|
|
146
|
+
root: import('../modules').IRootState;
|
|
147
|
+
explorer: import('../modules').ITreeItem[];
|
|
148
|
+
debugger: import('../modules').IDebuggerState;
|
|
149
|
+
settings: import('../modules').ISettingsState;
|
|
150
150
|
catalog: {
|
|
151
151
|
state: "loading";
|
|
152
152
|
} | {
|
|
@@ -156,23 +156,23 @@ export declare const selectPreferences: ((state: import('redux').EmptyObject & {
|
|
|
156
156
|
state: "error";
|
|
157
157
|
error: string;
|
|
158
158
|
};
|
|
159
|
-
roles: import('
|
|
160
|
-
sharedDatasources: import('
|
|
161
|
-
savedConditions: import('
|
|
162
|
-
webforms: import('
|
|
163
|
-
modals: import('
|
|
164
|
-
sharedCSS: import('
|
|
165
|
-
model: import('
|
|
166
|
-
}) => import('
|
|
159
|
+
roles: import('../modules').IRolesState;
|
|
160
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
161
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
162
|
+
webforms: import('../modules').IWebformEditorState;
|
|
163
|
+
modals: import('../modules').IModalsState;
|
|
164
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
165
|
+
model: import('../modules').IModelState;
|
|
166
|
+
}) => import('../modules').ISettingsState) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ISettingsState) => import('../modules').ISettingsState, {
|
|
167
167
|
clearCache: () => void;
|
|
168
168
|
}> & {
|
|
169
169
|
clearCache: () => void;
|
|
170
170
|
};
|
|
171
171
|
export declare const selectServerSettings: ((state: import('redux').EmptyObject & {
|
|
172
|
-
root: import('
|
|
173
|
-
explorer: import('
|
|
174
|
-
debugger: import('
|
|
175
|
-
settings: import('
|
|
172
|
+
root: import('../modules').IRootState;
|
|
173
|
+
explorer: import('../modules').ITreeItem[];
|
|
174
|
+
debugger: import('../modules').IDebuggerState;
|
|
175
|
+
settings: import('../modules').ISettingsState;
|
|
176
176
|
catalog: {
|
|
177
177
|
state: "loading";
|
|
178
178
|
} | {
|
|
@@ -182,23 +182,23 @@ export declare const selectServerSettings: ((state: import('redux').EmptyObject
|
|
|
182
182
|
state: "error";
|
|
183
183
|
error: string;
|
|
184
184
|
};
|
|
185
|
-
roles: import('
|
|
186
|
-
sharedDatasources: import('
|
|
187
|
-
savedConditions: import('
|
|
188
|
-
webforms: import('
|
|
189
|
-
modals: import('
|
|
190
|
-
sharedCSS: import('
|
|
191
|
-
model: import('
|
|
192
|
-
}) => import('@ws-ui/shared').IAppSettingsResponse) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
185
|
+
roles: import('../modules').IRolesState;
|
|
186
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
187
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
188
|
+
webforms: import('../modules').IWebformEditorState;
|
|
189
|
+
modals: import('../modules').IModalsState;
|
|
190
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
191
|
+
model: import('../modules').IModelState;
|
|
192
|
+
}) => import('@ws-ui/shared').IAppSettingsResponse) & import('reselect').OutputSelectorFields<(args_0: import('../modules').ISettingsState) => import('@ws-ui/shared').IAppSettingsResponse, {
|
|
193
193
|
clearCache: () => void;
|
|
194
194
|
}> & {
|
|
195
195
|
clearCache: () => void;
|
|
196
196
|
};
|
|
197
197
|
export declare const selectRemoteDebuggerMode: ((state: import('redux').EmptyObject & {
|
|
198
|
-
root: import('
|
|
199
|
-
explorer: import('
|
|
200
|
-
debugger: import('
|
|
201
|
-
settings: import('
|
|
198
|
+
root: import('../modules').IRootState;
|
|
199
|
+
explorer: import('../modules').ITreeItem[];
|
|
200
|
+
debugger: import('../modules').IDebuggerState;
|
|
201
|
+
settings: import('../modules').ISettingsState;
|
|
202
202
|
catalog: {
|
|
203
203
|
state: "loading";
|
|
204
204
|
} | {
|
|
@@ -208,23 +208,23 @@ export declare const selectRemoteDebuggerMode: ((state: import('redux').EmptyObj
|
|
|
208
208
|
state: "error";
|
|
209
209
|
error: string;
|
|
210
210
|
};
|
|
211
|
-
roles: import('
|
|
212
|
-
sharedDatasources: import('
|
|
213
|
-
savedConditions: import('
|
|
214
|
-
webforms: import('
|
|
215
|
-
modals: import('
|
|
216
|
-
sharedCSS: import('
|
|
217
|
-
model: import('
|
|
211
|
+
roles: import('../modules').IRolesState;
|
|
212
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
213
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
214
|
+
webforms: import('../modules').IWebformEditorState;
|
|
215
|
+
modals: import('../modules').IModalsState;
|
|
216
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
217
|
+
model: import('../modules').IModelState;
|
|
218
218
|
}) => import('@ws-ui/shared').RemoteDebuggerMode) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').IAppSettingsResponse) => import('@ws-ui/shared').RemoteDebuggerMode, {
|
|
219
219
|
clearCache: () => void;
|
|
220
220
|
}> & {
|
|
221
221
|
clearCache: () => void;
|
|
222
222
|
};
|
|
223
223
|
export declare const selectQodly: ((state: import('redux').EmptyObject & {
|
|
224
|
-
root: import('
|
|
225
|
-
explorer: import('
|
|
226
|
-
debugger: import('
|
|
227
|
-
settings: import('
|
|
224
|
+
root: import('../modules').IRootState;
|
|
225
|
+
explorer: import('../modules').ITreeItem[];
|
|
226
|
+
debugger: import('../modules').IDebuggerState;
|
|
227
|
+
settings: import('../modules').ISettingsState;
|
|
228
228
|
catalog: {
|
|
229
229
|
state: "loading";
|
|
230
230
|
} | {
|
|
@@ -234,23 +234,23 @@ export declare const selectQodly: ((state: import('redux').EmptyObject & {
|
|
|
234
234
|
state: "error";
|
|
235
235
|
error: string;
|
|
236
236
|
};
|
|
237
|
-
roles: import('
|
|
238
|
-
sharedDatasources: import('
|
|
239
|
-
savedConditions: import('
|
|
240
|
-
webforms: import('
|
|
241
|
-
modals: import('
|
|
242
|
-
sharedCSS: import('
|
|
243
|
-
model: import('
|
|
237
|
+
roles: import('../modules').IRolesState;
|
|
238
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
239
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
240
|
+
webforms: import('../modules').IWebformEditorState;
|
|
241
|
+
modals: import('../modules').IModalsState;
|
|
242
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
243
|
+
model: import('../modules').IModelState;
|
|
244
244
|
}) => boolean) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').IAppSettingsResponse) => boolean, {
|
|
245
245
|
clearCache: () => void;
|
|
246
246
|
}> & {
|
|
247
247
|
clearCache: () => void;
|
|
248
248
|
};
|
|
249
249
|
export declare const selectMonacoZoom: ((state: import('redux').EmptyObject & {
|
|
250
|
-
root: import('
|
|
251
|
-
explorer: import('
|
|
252
|
-
debugger: import('
|
|
253
|
-
settings: import('
|
|
250
|
+
root: import('../modules').IRootState;
|
|
251
|
+
explorer: import('../modules').ITreeItem[];
|
|
252
|
+
debugger: import('../modules').IDebuggerState;
|
|
253
|
+
settings: import('../modules').ISettingsState;
|
|
254
254
|
catalog: {
|
|
255
255
|
state: "loading";
|
|
256
256
|
} | {
|
|
@@ -260,13 +260,13 @@ export declare const selectMonacoZoom: ((state: import('redux').EmptyObject & {
|
|
|
260
260
|
state: "error";
|
|
261
261
|
error: string;
|
|
262
262
|
};
|
|
263
|
-
roles: import('
|
|
264
|
-
sharedDatasources: import('
|
|
265
|
-
savedConditions: import('
|
|
266
|
-
webforms: import('
|
|
267
|
-
modals: import('
|
|
268
|
-
sharedCSS: import('
|
|
269
|
-
model: import('
|
|
263
|
+
roles: import('../modules').IRolesState;
|
|
264
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
265
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
266
|
+
webforms: import('../modules').IWebformEditorState;
|
|
267
|
+
modals: import('../modules').IModalsState;
|
|
268
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
269
|
+
model: import('../modules').IModelState;
|
|
270
270
|
}) => unknown) & import('reselect').OutputSelectorFields<(args_0: {
|
|
271
271
|
[key: string]: unknown;
|
|
272
272
|
}) => unknown, {
|
|
@@ -275,10 +275,10 @@ export declare const selectMonacoZoom: ((state: import('redux').EmptyObject & {
|
|
|
275
275
|
clearCache: () => void;
|
|
276
276
|
};
|
|
277
277
|
export declare const selectI18nSetting: ((state: import('redux').EmptyObject & {
|
|
278
|
-
root: import('
|
|
279
|
-
explorer: import('
|
|
280
|
-
debugger: import('
|
|
281
|
-
settings: import('
|
|
278
|
+
root: import('../modules').IRootState;
|
|
279
|
+
explorer: import('../modules').ITreeItem[];
|
|
280
|
+
debugger: import('../modules').IDebuggerState;
|
|
281
|
+
settings: import('../modules').ISettingsState;
|
|
282
282
|
catalog: {
|
|
283
283
|
state: "loading";
|
|
284
284
|
} | {
|
|
@@ -288,13 +288,13 @@ export declare const selectI18nSetting: ((state: import('redux').EmptyObject & {
|
|
|
288
288
|
state: "error";
|
|
289
289
|
error: string;
|
|
290
290
|
};
|
|
291
|
-
roles: import('
|
|
292
|
-
sharedDatasources: import('
|
|
293
|
-
savedConditions: import('
|
|
294
|
-
webforms: import('
|
|
295
|
-
modals: import('
|
|
296
|
-
sharedCSS: import('
|
|
297
|
-
model: import('
|
|
291
|
+
roles: import('../modules').IRolesState;
|
|
292
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
293
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
294
|
+
webforms: import('../modules').IWebformEditorState;
|
|
295
|
+
modals: import('../modules').IModalsState;
|
|
296
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
297
|
+
model: import('../modules').IModelState;
|
|
298
298
|
}) => unknown) & import('reselect').OutputSelectorFields<(args_0: {
|
|
299
299
|
[key: string]: unknown;
|
|
300
300
|
}) => unknown, {
|
|
@@ -303,10 +303,10 @@ export declare const selectI18nSetting: ((state: import('redux').EmptyObject & {
|
|
|
303
303
|
clearCache: () => void;
|
|
304
304
|
};
|
|
305
305
|
export declare const selectI18nCurrent: ((state: import('redux').EmptyObject & {
|
|
306
|
-
root: import('
|
|
307
|
-
explorer: import('
|
|
308
|
-
debugger: import('
|
|
309
|
-
settings: import('
|
|
306
|
+
root: import('../modules').IRootState;
|
|
307
|
+
explorer: import('../modules').ITreeItem[];
|
|
308
|
+
debugger: import('../modules').IDebuggerState;
|
|
309
|
+
settings: import('../modules').ISettingsState;
|
|
310
310
|
catalog: {
|
|
311
311
|
state: "loading";
|
|
312
312
|
} | {
|
|
@@ -316,13 +316,13 @@ export declare const selectI18nCurrent: ((state: import('redux').EmptyObject & {
|
|
|
316
316
|
state: "error";
|
|
317
317
|
error: string;
|
|
318
318
|
};
|
|
319
|
-
roles: import('
|
|
320
|
-
sharedDatasources: import('
|
|
321
|
-
savedConditions: import('
|
|
322
|
-
webforms: import('
|
|
323
|
-
modals: import('
|
|
324
|
-
sharedCSS: import('
|
|
325
|
-
model: import('
|
|
319
|
+
roles: import('../modules').IRolesState;
|
|
320
|
+
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
321
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
322
|
+
webforms: import('../modules').IWebformEditorState;
|
|
323
|
+
modals: import('../modules').IModalsState;
|
|
324
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
325
|
+
model: import('../modules').IModelState;
|
|
326
326
|
}) => unknown) & import('reselect').OutputSelectorFields<(args_0: {
|
|
327
327
|
[key: string]: unknown;
|
|
328
328
|
}) => unknown, {
|
|
@@ -35,7 +35,7 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
35
35
|
}) => WebformState[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
36
36
|
initialLineInfo: {
|
|
37
37
|
line: number;
|
|
38
|
-
offset?: number;
|
|
38
|
+
offset?: number | undefined;
|
|
39
39
|
lastModification: number;
|
|
40
40
|
};
|
|
41
41
|
initialSelectionInfo: {
|
|
@@ -114,7 +114,7 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
|
|
|
114
114
|
}) => string[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
115
115
|
initialLineInfo: {
|
|
116
116
|
line: number;
|
|
117
|
-
offset?: number;
|
|
117
|
+
offset?: number | undefined;
|
|
118
118
|
lastModification: number;
|
|
119
119
|
};
|
|
120
120
|
initialSelectionInfo: {
|
|
@@ -156,7 +156,7 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
156
156
|
}) => WebformState) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
157
157
|
initialLineInfo: {
|
|
158
158
|
line: number;
|
|
159
|
-
offset?: number;
|
|
159
|
+
offset?: number | undefined;
|
|
160
160
|
lastModification: number;
|
|
161
161
|
};
|
|
162
162
|
initialSelectionInfo: {
|