@ws-ui/store 0.3.2 → 0.3.4
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 +9 -60
- package/dist/index.cjs.js +46 -59
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +6546 -6599
- package/dist/index.es.js.map +1 -1
- package/dist/modules/catalog/index.d.ts +1 -1
- package/dist/modules/catalog/reducer.d.ts +4 -5
- package/dist/modules/catalog/thunks.d.ts +8 -2
- package/dist/modules/debugger/index.d.ts +1 -1
- package/dist/modules/debugger/reducer.d.ts +72 -71
- package/dist/modules/debugger/thunks.d.ts +18 -3
- package/dist/modules/debugger/types.d.ts +1 -0
- package/dist/modules/debugger/utils.d.ts +1 -0
- package/dist/modules/explorer/index.d.ts +1 -1
- package/dist/modules/explorer/reducer.d.ts +17 -16
- package/dist/modules/explorer/thunks.d.ts +211 -60
- package/dist/modules/explorer/types.d.ts +1 -0
- package/dist/modules/explorer/utils.d.ts +1 -0
- package/dist/modules/index.d.ts +15 -30
- package/dist/modules/modals/index.d.ts +1 -1
- package/dist/modules/modals/reducer.d.ts +10 -9
- package/dist/modules/modals/thunks.d.ts +11 -1
- package/dist/modules/modals/types.d.ts +1 -0
- package/dist/modules/model/helpers.d.ts +3 -2
- package/dist/modules/model/index.d.ts +1 -1
- package/dist/modules/model/reducer.d.ts +7 -10
- package/dist/modules/model/selectors.d.ts +1 -1
- package/dist/modules/model/subjects.d.ts +2 -1
- package/dist/modules/model/thunks.d.ts +56 -24
- package/dist/modules/model/types.d.ts +1 -1
- package/dist/modules/model/utils.d.ts +4 -3
- package/dist/modules/roles/adapter.d.ts +1 -0
- package/dist/modules/roles/index.d.ts +1 -16
- package/dist/modules/roles/reducer.d.ts +17 -39
- package/dist/modules/roles/thunks.d.ts +24 -5
- package/dist/modules/roles/types.d.ts +1 -3
- package/dist/modules/root/index.d.ts +1 -1
- package/dist/modules/root/reducer.d.ts +92 -100
- package/dist/modules/root/thunks.d.ts +162 -44
- package/dist/modules/root/types.d.ts +1 -2
- package/dist/modules/settings/index.d.ts +1 -1
- package/dist/modules/settings/reducer.d.ts +11 -13
- package/dist/modules/settings/thunks.d.ts +18 -2
- package/dist/modules/settings/types.d.ts +1 -0
- package/dist/modules/settings/utils.d.ts +2 -1
- package/dist/modules/shared-conditions/index.d.ts +1 -1
- package/dist/modules/shared-conditions/reducer.d.ts +18 -17
- package/dist/modules/shared-conditions/thunks.d.ts +8 -1
- package/dist/modules/shared-conditions/utils.d.ts +1 -0
- package/dist/modules/shared-css/index.d.ts +1 -1
- package/dist/modules/shared-css/reducer.d.ts +9 -8
- package/dist/modules/shared-css/thunks.d.ts +8 -1
- package/dist/modules/shared-datasources/index.d.ts +1 -1
- package/dist/modules/shared-datasources/reducer.d.ts +5 -5
- package/dist/modules/shared-datasources/thunks.d.ts +50 -9
- package/dist/modules/tabs/index.d.ts +1 -1
- package/dist/modules/tabs/reducer.d.ts +1 -1
- package/dist/modules/tabs/selectors.d.ts +24 -40
- package/dist/modules/webforms/datasources.adapter.d.ts +12 -29
- package/dist/modules/webforms/index.d.ts +1 -1
- package/dist/modules/webforms/reducer.d.ts +20 -22
- package/dist/modules/webforms/thunks.d.ts +99 -17
- package/dist/modules/webforms/types.d.ts +1 -0
- package/dist/provider.d.ts +1 -0
- package/dist/selectors/catalog.d.ts +52 -174
- package/dist/selectors/common.d.ts +48 -109
- package/dist/selectors/components.d.ts +23 -39
- package/dist/selectors/datasources.d.ts +74 -165
- package/dist/selectors/debugger.d.ts +163 -493
- package/dist/selectors/explorer.d.ts +485 -875
- package/dist/selectors/modals.d.ts +13 -29
- package/dist/selectors/roles.d.ts +126 -367
- package/dist/selectors/settings.d.ts +156 -337
- package/dist/selectors/states.d.ts +63 -153
- package/dist/selectors/styles.d.ts +78 -154
- package/dist/selectors/tabs.d.ts +64 -110
- package/dist/selectors/webforms.d.ts +177 -373
- package/dist/store.d.ts +44 -1
- package/dist/utils.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { ITab } from '@ws-ui/shared';
|
|
1
|
+
import { EWebFormStyleClassScope, IWebFormStyleClass, ITab } from '@ws-ui/shared';
|
|
2
|
+
|
|
4
3
|
export declare const THEME_CLASSES: string[];
|
|
5
|
-
export declare const selectWebformStylesByPath: (path: string) => ((state: import(
|
|
6
|
-
root: import(
|
|
7
|
-
explorer: import(
|
|
8
|
-
debugger: import(
|
|
9
|
-
settings: import(
|
|
4
|
+
export declare const selectWebformStylesByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
5
|
+
root: import('..').IRootState;
|
|
6
|
+
explorer: import('..').ITreeItem[];
|
|
7
|
+
debugger: import('..').IDebuggerState;
|
|
8
|
+
settings: import('..').ISettingsState;
|
|
10
9
|
catalog: {
|
|
11
10
|
state: "loading";
|
|
12
11
|
} | {
|
|
@@ -16,54 +15,39 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
|
|
|
16
15
|
state: "error";
|
|
17
16
|
error: string;
|
|
18
17
|
};
|
|
19
|
-
roles:
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
confirmed?: boolean | undefined;
|
|
28
|
-
};
|
|
29
|
-
date?: string | undefined;
|
|
30
|
-
privileges: import("../modules").TById;
|
|
31
|
-
roles: import("../modules").TRolesDict;
|
|
32
|
-
forceLogin?: boolean | undefined;
|
|
33
|
-
selectedTab: "roles" | "privileges";
|
|
34
|
-
};
|
|
35
|
-
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
36
|
-
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
37
|
-
webforms: import("../modules").IWebformEditorState;
|
|
38
|
-
modals: import("../modules").IModalsState;
|
|
39
|
-
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
40
|
-
model: import("../modules").IModelState;
|
|
41
|
-
}) => IWebFormStyleClass[]) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<ITab<any, Partial<{
|
|
18
|
+
roles: import('..').IRolesState;
|
|
19
|
+
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
20
|
+
savedConditions: import('..').ISavedConditionsState;
|
|
21
|
+
webforms: import('..').IWebformEditorState;
|
|
22
|
+
modals: import('..').IModalsState;
|
|
23
|
+
sharedCSS: import('..').ISharedCSSState;
|
|
24
|
+
model: import('..').IModelState;
|
|
25
|
+
}) => IWebFormStyleClass[]) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
42
26
|
initialLineInfo: {
|
|
43
27
|
line: number;
|
|
44
|
-
offset?: number
|
|
28
|
+
offset?: number;
|
|
45
29
|
lastModification: number;
|
|
46
30
|
};
|
|
47
31
|
initialSelectionInfo: {
|
|
48
|
-
selection: import(
|
|
32
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
49
33
|
lastModification: number;
|
|
50
34
|
};
|
|
51
35
|
diffContent: string;
|
|
52
|
-
attributes: import(
|
|
53
|
-
source: import(
|
|
54
|
-
editor: import(
|
|
55
|
-
ext: import(
|
|
36
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
37
|
+
source: import('@ws-ui/shared').ISource;
|
|
38
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
39
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
56
40
|
kind: string;
|
|
57
|
-
}
|
|
41
|
+
}>> | undefined) => IWebFormStyleClass[], {
|
|
58
42
|
clearCache: () => void;
|
|
59
43
|
}> & {
|
|
60
44
|
clearCache: () => void;
|
|
61
45
|
};
|
|
62
|
-
export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleClassScope[]) => ((state: import(
|
|
63
|
-
root: import(
|
|
64
|
-
explorer: import(
|
|
65
|
-
debugger: import(
|
|
66
|
-
settings: import(
|
|
46
|
+
export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleClassScope[]) => ((state: import('redux').EmptyObject & {
|
|
47
|
+
root: import('..').IRootState;
|
|
48
|
+
explorer: import('..').ITreeItem[];
|
|
49
|
+
debugger: import('..').IDebuggerState;
|
|
50
|
+
settings: import('..').ISettingsState;
|
|
67
51
|
catalog: {
|
|
68
52
|
state: "loading";
|
|
69
53
|
} | {
|
|
@@ -73,38 +57,23 @@ export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleCla
|
|
|
73
57
|
state: "error";
|
|
74
58
|
error: string;
|
|
75
59
|
};
|
|
76
|
-
roles:
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
confirmed?: boolean | undefined;
|
|
85
|
-
};
|
|
86
|
-
date?: string | undefined;
|
|
87
|
-
privileges: import("../modules").TById;
|
|
88
|
-
roles: import("../modules").TRolesDict;
|
|
89
|
-
forceLogin?: boolean | undefined;
|
|
90
|
-
selectedTab: "roles" | "privileges";
|
|
91
|
-
};
|
|
92
|
-
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
93
|
-
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
94
|
-
webforms: import("../modules").IWebformEditorState;
|
|
95
|
-
modals: import("../modules").IModalsState;
|
|
96
|
-
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
97
|
-
model: import("../modules").IModelState;
|
|
98
|
-
}) => IWebFormStyleClass[]) & import("reselect").OutputSelectorFields<(args_0: IWebFormStyleClass[]) => IWebFormStyleClass[], {
|
|
60
|
+
roles: import('..').IRolesState;
|
|
61
|
+
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
62
|
+
savedConditions: import('..').ISavedConditionsState;
|
|
63
|
+
webforms: import('..').IWebformEditorState;
|
|
64
|
+
modals: import('..').IModalsState;
|
|
65
|
+
sharedCSS: import('..').ISharedCSSState;
|
|
66
|
+
model: import('..').IModelState;
|
|
67
|
+
}) => IWebFormStyleClass[]) & import('reselect').OutputSelectorFields<(args_0: IWebFormStyleClass[]) => IWebFormStyleClass[], {
|
|
99
68
|
clearCache: () => void;
|
|
100
69
|
}> & {
|
|
101
70
|
clearCache: () => void;
|
|
102
71
|
};
|
|
103
|
-
export declare const selectCSSClassesByPath: (path: string) => ((state: import(
|
|
104
|
-
root: import(
|
|
105
|
-
explorer: import(
|
|
106
|
-
debugger: import(
|
|
107
|
-
settings: import(
|
|
72
|
+
export declare const selectCSSClassesByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
73
|
+
root: import('..').IRootState;
|
|
74
|
+
explorer: import('..').ITreeItem[];
|
|
75
|
+
debugger: import('..').IDebuggerState;
|
|
76
|
+
settings: import('..').ISettingsState;
|
|
108
77
|
catalog: {
|
|
109
78
|
state: "loading";
|
|
110
79
|
} | {
|
|
@@ -114,38 +83,23 @@ export declare const selectCSSClassesByPath: (path: string) => ((state: import("
|
|
|
114
83
|
state: "error";
|
|
115
84
|
error: string;
|
|
116
85
|
};
|
|
117
|
-
roles:
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
confirmed?: boolean | undefined;
|
|
126
|
-
};
|
|
127
|
-
date?: string | undefined;
|
|
128
|
-
privileges: import("../modules").TById;
|
|
129
|
-
roles: import("../modules").TRolesDict;
|
|
130
|
-
forceLogin?: boolean | undefined;
|
|
131
|
-
selectedTab: "roles" | "privileges";
|
|
132
|
-
};
|
|
133
|
-
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
134
|
-
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
135
|
-
webforms: import("../modules").IWebformEditorState;
|
|
136
|
-
modals: import("../modules").IModalsState;
|
|
137
|
-
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
138
|
-
model: import("../modules").IModelState;
|
|
139
|
-
}) => IWebFormStyleClass[]) & import("reselect").OutputSelectorFields<(args_0: IWebFormStyleClass[]) => IWebFormStyleClass[], {
|
|
86
|
+
roles: import('..').IRolesState;
|
|
87
|
+
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
88
|
+
savedConditions: import('..').ISavedConditionsState;
|
|
89
|
+
webforms: import('..').IWebformEditorState;
|
|
90
|
+
modals: import('..').IModalsState;
|
|
91
|
+
sharedCSS: import('..').ISharedCSSState;
|
|
92
|
+
model: import('..').IModelState;
|
|
93
|
+
}) => IWebFormStyleClass[]) & import('reselect').OutputSelectorFields<(args_0: IWebFormStyleClass[]) => IWebFormStyleClass[], {
|
|
140
94
|
clearCache: () => void;
|
|
141
95
|
}> & {
|
|
142
96
|
clearCache: () => void;
|
|
143
97
|
};
|
|
144
|
-
export declare const selectSharedCSS: ((state: import(
|
|
145
|
-
root: import(
|
|
146
|
-
explorer: import(
|
|
147
|
-
debugger: import(
|
|
148
|
-
settings: import(
|
|
98
|
+
export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
99
|
+
root: import('..').IRootState;
|
|
100
|
+
explorer: import('..').ITreeItem[];
|
|
101
|
+
debugger: import('..').IDebuggerState;
|
|
102
|
+
settings: import('..').ISettingsState;
|
|
149
103
|
catalog: {
|
|
150
104
|
state: "loading";
|
|
151
105
|
} | {
|
|
@@ -155,43 +109,28 @@ export declare const selectSharedCSS: ((state: import("redux").EmptyObject & {
|
|
|
155
109
|
state: "error";
|
|
156
110
|
error: string;
|
|
157
111
|
};
|
|
158
|
-
roles:
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
enabled?: boolean | undefined;
|
|
166
|
-
confirmed?: boolean | undefined;
|
|
167
|
-
};
|
|
168
|
-
date?: string | undefined;
|
|
169
|
-
privileges: import("../modules").TById;
|
|
170
|
-
roles: import("../modules").TRolesDict;
|
|
171
|
-
forceLogin?: boolean | undefined;
|
|
172
|
-
selectedTab: "roles" | "privileges";
|
|
173
|
-
};
|
|
174
|
-
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
175
|
-
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
176
|
-
webforms: import("../modules").IWebformEditorState;
|
|
177
|
-
modals: import("../modules").IModalsState;
|
|
178
|
-
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
179
|
-
model: import("../modules").IModelState;
|
|
112
|
+
roles: import('..').IRolesState;
|
|
113
|
+
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
114
|
+
savedConditions: import('..').ISavedConditionsState;
|
|
115
|
+
webforms: import('..').IWebformEditorState;
|
|
116
|
+
modals: import('..').IModalsState;
|
|
117
|
+
sharedCSS: import('..').ISharedCSSState;
|
|
118
|
+
model: import('..').IModelState;
|
|
180
119
|
}) => {
|
|
181
120
|
scope: EWebFormStyleClassScope;
|
|
182
121
|
id: string;
|
|
183
122
|
name: string;
|
|
184
123
|
content: string;
|
|
185
124
|
parentId: string | null;
|
|
186
|
-
children?:
|
|
125
|
+
children?: {
|
|
187
126
|
[key: string]: string;
|
|
188
|
-
}
|
|
189
|
-
origin?: string
|
|
190
|
-
}[]) & import(
|
|
191
|
-
root: import(
|
|
192
|
-
explorer: import(
|
|
193
|
-
debugger: import(
|
|
194
|
-
settings: import(
|
|
127
|
+
};
|
|
128
|
+
origin?: string;
|
|
129
|
+
}[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
130
|
+
root: import('..').IRootState;
|
|
131
|
+
explorer: import('..').ITreeItem[];
|
|
132
|
+
debugger: import('..').IDebuggerState;
|
|
133
|
+
settings: import('..').ISettingsState;
|
|
195
134
|
catalog: {
|
|
196
135
|
state: "loading";
|
|
197
136
|
} | {
|
|
@@ -201,38 +140,23 @@ export declare const selectSharedCSS: ((state: import("redux").EmptyObject & {
|
|
|
201
140
|
state: "error";
|
|
202
141
|
error: string;
|
|
203
142
|
};
|
|
204
|
-
roles:
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
enabled?: boolean | undefined;
|
|
212
|
-
confirmed?: boolean | undefined;
|
|
213
|
-
};
|
|
214
|
-
date?: string | undefined;
|
|
215
|
-
privileges: import("../modules").TById;
|
|
216
|
-
roles: import("../modules").TRolesDict;
|
|
217
|
-
forceLogin?: boolean | undefined;
|
|
218
|
-
selectedTab: "roles" | "privileges";
|
|
219
|
-
};
|
|
220
|
-
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
221
|
-
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
222
|
-
webforms: import("../modules").IWebformEditorState;
|
|
223
|
-
modals: import("../modules").IModalsState;
|
|
224
|
-
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
225
|
-
model: import("../modules").IModelState;
|
|
143
|
+
roles: import('..').IRolesState;
|
|
144
|
+
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
145
|
+
savedConditions: import('..').ISavedConditionsState;
|
|
146
|
+
webforms: import('..').IWebformEditorState;
|
|
147
|
+
modals: import('..').IModalsState;
|
|
148
|
+
sharedCSS: import('..').ISharedCSSState;
|
|
149
|
+
model: import('..').IModelState;
|
|
226
150
|
}>) => {
|
|
227
151
|
scope: EWebFormStyleClassScope;
|
|
228
152
|
id: string;
|
|
229
153
|
name: string;
|
|
230
154
|
content: string;
|
|
231
155
|
parentId: string | null;
|
|
232
|
-
children?:
|
|
156
|
+
children?: {
|
|
233
157
|
[key: string]: string;
|
|
234
|
-
}
|
|
235
|
-
origin?: string
|
|
158
|
+
};
|
|
159
|
+
origin?: string;
|
|
236
160
|
}[], {
|
|
237
161
|
clearCache: () => void;
|
|
238
162
|
}> & {
|
package/dist/selectors/tabs.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
settings: import("..").ISettingsState;
|
|
1
|
+
export declare const selectFlagsByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
2
|
+
root: import('..').IRootState;
|
|
3
|
+
explorer: import('..').ITreeItem[];
|
|
4
|
+
debugger: import('..').IDebuggerState;
|
|
5
|
+
settings: import('..').ISettingsState;
|
|
7
6
|
catalog: {
|
|
8
7
|
state: "loading";
|
|
9
8
|
} | {
|
|
@@ -13,29 +12,14 @@ export declare const selectFlagsByPath: (path: string) => ((state: import("redux
|
|
|
13
12
|
state: "error";
|
|
14
13
|
error: string;
|
|
15
14
|
};
|
|
16
|
-
roles:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
confirmed?: boolean | undefined;
|
|
25
|
-
};
|
|
26
|
-
date?: string | undefined;
|
|
27
|
-
privileges: import("..").TById;
|
|
28
|
-
roles: import("..").TRolesDict;
|
|
29
|
-
forceLogin?: boolean | undefined;
|
|
30
|
-
selectedTab: "roles" | "privileges";
|
|
31
|
-
};
|
|
32
|
-
sharedDatasources: import("..").ISharedDatasourcesState;
|
|
33
|
-
savedConditions: import("immer/dist/internal.js").WritableDraft<import("..").ISavedConditionsState>;
|
|
34
|
-
webforms: import("..").IWebformEditorState;
|
|
35
|
-
modals: import("..").IModalsState;
|
|
36
|
-
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("..").ISharedCSSState>;
|
|
37
|
-
model: import("..").IModelState;
|
|
38
|
-
}) => import("immer/dist/internal.js").WritableDraft<Partial<{
|
|
15
|
+
roles: import('..').IRolesState;
|
|
16
|
+
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
17
|
+
savedConditions: import('..').ISavedConditionsState;
|
|
18
|
+
webforms: import('..').IWebformEditorState;
|
|
19
|
+
modals: import('..').IModalsState;
|
|
20
|
+
sharedCSS: import('..').ISharedCSSState;
|
|
21
|
+
model: import('..').IModelState;
|
|
22
|
+
}) => Partial<{
|
|
39
23
|
touched: boolean;
|
|
40
24
|
removed: boolean;
|
|
41
25
|
pinned: boolean;
|
|
@@ -43,23 +27,23 @@ export declare const selectFlagsByPath: (path: string) => ((state: import("redux
|
|
|
43
27
|
old: boolean;
|
|
44
28
|
enabled: boolean;
|
|
45
29
|
confirmed: boolean;
|
|
46
|
-
}
|
|
30
|
+
}> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
47
31
|
initialLineInfo: {
|
|
48
32
|
line: number;
|
|
49
|
-
offset?: number
|
|
33
|
+
offset?: number;
|
|
50
34
|
lastModification: number;
|
|
51
35
|
};
|
|
52
36
|
initialSelectionInfo: {
|
|
53
|
-
selection: import(
|
|
37
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
54
38
|
lastModification: number;
|
|
55
39
|
};
|
|
56
40
|
diffContent: string;
|
|
57
|
-
attributes: import(
|
|
58
|
-
source: import(
|
|
59
|
-
editor: import(
|
|
60
|
-
ext: import(
|
|
41
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
42
|
+
source: import('@ws-ui/shared').ISource;
|
|
43
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
44
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
61
45
|
kind: string;
|
|
62
|
-
}
|
|
46
|
+
}>> | undefined) => Partial<{
|
|
63
47
|
touched: boolean;
|
|
64
48
|
removed: boolean;
|
|
65
49
|
pinned: boolean;
|
|
@@ -67,16 +51,16 @@ export declare const selectFlagsByPath: (path: string) => ((state: import("redux
|
|
|
67
51
|
old: boolean;
|
|
68
52
|
enabled: boolean;
|
|
69
53
|
confirmed: boolean;
|
|
70
|
-
}
|
|
54
|
+
}> | undefined, {
|
|
71
55
|
clearCache: () => void;
|
|
72
56
|
}> & {
|
|
73
57
|
clearCache: () => void;
|
|
74
58
|
};
|
|
75
|
-
export declare const selectHistoryByPath: (path: string) => ((state: import(
|
|
76
|
-
root: import(
|
|
77
|
-
explorer: import(
|
|
78
|
-
debugger: import(
|
|
79
|
-
settings: import(
|
|
59
|
+
export declare const selectHistoryByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
60
|
+
root: import('..').IRootState;
|
|
61
|
+
explorer: import('..').ITreeItem[];
|
|
62
|
+
debugger: import('..').IDebuggerState;
|
|
63
|
+
settings: import('..').ISettingsState;
|
|
80
64
|
catalog: {
|
|
81
65
|
state: "loading";
|
|
82
66
|
} | {
|
|
@@ -86,62 +70,47 @@ export declare const selectHistoryByPath: (path: string) => ((state: import("red
|
|
|
86
70
|
state: "error";
|
|
87
71
|
error: string;
|
|
88
72
|
};
|
|
89
|
-
roles:
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
confirmed?: boolean | undefined;
|
|
98
|
-
};
|
|
99
|
-
date?: string | undefined;
|
|
100
|
-
privileges: import("..").TById;
|
|
101
|
-
roles: import("..").TRolesDict;
|
|
102
|
-
forceLogin?: boolean | undefined;
|
|
103
|
-
selectedTab: "roles" | "privileges";
|
|
104
|
-
};
|
|
105
|
-
sharedDatasources: import("..").ISharedDatasourcesState;
|
|
106
|
-
savedConditions: import("immer/dist/internal.js").WritableDraft<import("..").ISavedConditionsState>;
|
|
107
|
-
webforms: import("..").IWebformEditorState;
|
|
108
|
-
modals: import("..").IModalsState;
|
|
109
|
-
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("..").ISharedCSSState>;
|
|
110
|
-
model: import("..").IModelState;
|
|
111
|
-
}) => import("immer/dist/internal.js").WritableDraft<{
|
|
73
|
+
roles: import('..').IRolesState;
|
|
74
|
+
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
75
|
+
savedConditions: import('..').ISavedConditionsState;
|
|
76
|
+
webforms: import('..').IWebformEditorState;
|
|
77
|
+
modals: import('..').IModalsState;
|
|
78
|
+
sharedCSS: import('..').ISharedCSSState;
|
|
79
|
+
model: import('..').IModelState;
|
|
80
|
+
}) => {
|
|
112
81
|
stack: any[];
|
|
113
82
|
active: number;
|
|
114
83
|
locked: boolean;
|
|
115
|
-
}
|
|
84
|
+
} | undefined) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
116
85
|
initialLineInfo: {
|
|
117
86
|
line: number;
|
|
118
|
-
offset?: number
|
|
87
|
+
offset?: number;
|
|
119
88
|
lastModification: number;
|
|
120
89
|
};
|
|
121
90
|
initialSelectionInfo: {
|
|
122
|
-
selection: import(
|
|
91
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
123
92
|
lastModification: number;
|
|
124
93
|
};
|
|
125
94
|
diffContent: string;
|
|
126
|
-
attributes: import(
|
|
127
|
-
source: import(
|
|
128
|
-
editor: import(
|
|
129
|
-
ext: import(
|
|
95
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
96
|
+
source: import('@ws-ui/shared').ISource;
|
|
97
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
98
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
130
99
|
kind: string;
|
|
131
|
-
}
|
|
100
|
+
}>> | undefined) => {
|
|
132
101
|
stack: any[];
|
|
133
102
|
active: number;
|
|
134
103
|
locked: boolean;
|
|
135
|
-
}
|
|
104
|
+
} | undefined, {
|
|
136
105
|
clearCache: () => void;
|
|
137
106
|
}> & {
|
|
138
107
|
clearCache: () => void;
|
|
139
108
|
};
|
|
140
|
-
export declare const selectActiveTabHistoryActions: ((state: import(
|
|
141
|
-
root: import(
|
|
142
|
-
explorer: import(
|
|
143
|
-
debugger: import(
|
|
144
|
-
settings: import(
|
|
109
|
+
export declare const selectActiveTabHistoryActions: ((state: import('redux').EmptyObject & {
|
|
110
|
+
root: import('..').IRootState;
|
|
111
|
+
explorer: import('..').ITreeItem[];
|
|
112
|
+
debugger: import('..').IDebuggerState;
|
|
113
|
+
settings: import('..').ISettingsState;
|
|
145
114
|
catalog: {
|
|
146
115
|
state: "loading";
|
|
147
116
|
} | {
|
|
@@ -151,48 +120,33 @@ export declare const selectActiveTabHistoryActions: ((state: import("redux").Emp
|
|
|
151
120
|
state: "error";
|
|
152
121
|
error: string;
|
|
153
122
|
};
|
|
154
|
-
roles:
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
enabled?: boolean | undefined;
|
|
162
|
-
confirmed?: boolean | undefined;
|
|
163
|
-
};
|
|
164
|
-
date?: string | undefined;
|
|
165
|
-
privileges: import("..").TById;
|
|
166
|
-
roles: import("..").TRolesDict;
|
|
167
|
-
forceLogin?: boolean | undefined;
|
|
168
|
-
selectedTab: "roles" | "privileges";
|
|
169
|
-
};
|
|
170
|
-
sharedDatasources: import("..").ISharedDatasourcesState;
|
|
171
|
-
savedConditions: import("immer/dist/internal.js").WritableDraft<import("..").ISavedConditionsState>;
|
|
172
|
-
webforms: import("..").IWebformEditorState;
|
|
173
|
-
modals: import("..").IModalsState;
|
|
174
|
-
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("..").ISharedCSSState>;
|
|
175
|
-
model: import("..").IModelState;
|
|
123
|
+
roles: import('..').IRolesState;
|
|
124
|
+
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
125
|
+
savedConditions: import('..').ISavedConditionsState;
|
|
126
|
+
webforms: import('..').IWebformEditorState;
|
|
127
|
+
modals: import('..').IModalsState;
|
|
128
|
+
sharedCSS: import('..').ISharedCSSState;
|
|
129
|
+
model: import('..').IModelState;
|
|
176
130
|
}) => {
|
|
177
131
|
canUndo: boolean;
|
|
178
132
|
canRedo: boolean;
|
|
179
|
-
}) & import(
|
|
133
|
+
}) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
180
134
|
initialLineInfo: {
|
|
181
135
|
line: number;
|
|
182
|
-
offset?: number
|
|
136
|
+
offset?: number;
|
|
183
137
|
lastModification: number;
|
|
184
138
|
};
|
|
185
139
|
initialSelectionInfo: {
|
|
186
|
-
selection: import(
|
|
140
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
187
141
|
lastModification: number;
|
|
188
142
|
};
|
|
189
143
|
diffContent: string;
|
|
190
|
-
attributes: import(
|
|
191
|
-
source: import(
|
|
192
|
-
editor: import(
|
|
193
|
-
ext: import(
|
|
144
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
145
|
+
source: import('@ws-ui/shared').ISource;
|
|
146
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
147
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
194
148
|
kind: string;
|
|
195
|
-
}
|
|
149
|
+
}>> | undefined) => {
|
|
196
150
|
canUndo: boolean;
|
|
197
151
|
canRedo: boolean;
|
|
198
152
|
}, {
|