@ws-ui/store 0.3.1 → 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 +47 -60
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +6718 -6727
- 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 -3
- 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 +6 -2
- 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 +7 -1
- 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 +10 -5
- 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 +3 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
|
|
2
1
|
import { WebformState } from '@ws-ui/shared';
|
|
2
|
+
|
|
3
3
|
export declare const ROOT_WEBFORM_STATE: {
|
|
4
4
|
label: string;
|
|
5
5
|
id: string;
|
|
@@ -11,9 +11,9 @@ export declare const isBaseState: (state: WebformState) => boolean;
|
|
|
11
11
|
* @param exclude states to exclude (by id)
|
|
12
12
|
* @returns states or an empty array if not found.
|
|
13
13
|
*/
|
|
14
|
-
export declare const selectWebformStatesByPath: (tabPath: string, exclude?: string[]) => ((state: import(
|
|
15
|
-
root: import(
|
|
16
|
-
explorer: import(
|
|
14
|
+
export declare const selectWebformStatesByPath: (tabPath: string, exclude?: string[]) => ((state: import('redux').EmptyObject & {
|
|
15
|
+
root: import('../modules').IRootState;
|
|
16
|
+
explorer: import('../modules').ITreeItem[];
|
|
17
17
|
debugger: import('../modules').IDebuggerState;
|
|
18
18
|
settings: import('../modules').ISettingsState;
|
|
19
19
|
catalog: {
|
|
@@ -25,45 +25,30 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
25
25
|
state: "error";
|
|
26
26
|
error: string;
|
|
27
27
|
};
|
|
28
|
-
roles:
|
|
29
|
-
flags: {
|
|
30
|
-
touched?: boolean | undefined;
|
|
31
|
-
removed?: boolean | undefined;
|
|
32
|
-
pinned?: boolean | undefined;
|
|
33
|
-
loading?: boolean | undefined;
|
|
34
|
-
old?: boolean | undefined;
|
|
35
|
-
enabled?: boolean | undefined;
|
|
36
|
-
confirmed?: boolean | undefined;
|
|
37
|
-
};
|
|
38
|
-
date?: string | undefined;
|
|
39
|
-
privileges: import('../modules').TById;
|
|
40
|
-
roles: import('../modules').TRolesDict;
|
|
41
|
-
forceLogin?: boolean | undefined;
|
|
42
|
-
selectedTab: "roles" | "privileges";
|
|
43
|
-
};
|
|
28
|
+
roles: import('../modules').IRolesState;
|
|
44
29
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
45
|
-
savedConditions: import(
|
|
30
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
46
31
|
webforms: import('../modules').IWebformEditorState;
|
|
47
32
|
modals: import('../modules').IModalsState;
|
|
48
|
-
sharedCSS: import(
|
|
33
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
49
34
|
model: import('../modules').IModelState;
|
|
50
|
-
}) => WebformState[]) & import(
|
|
35
|
+
}) => WebformState[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
51
36
|
initialLineInfo: {
|
|
52
37
|
line: number;
|
|
53
|
-
offset?: number
|
|
38
|
+
offset?: number;
|
|
54
39
|
lastModification: number;
|
|
55
40
|
};
|
|
56
41
|
initialSelectionInfo: {
|
|
57
|
-
selection: import(
|
|
42
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
58
43
|
lastModification: number;
|
|
59
44
|
};
|
|
60
45
|
diffContent: string;
|
|
61
|
-
attributes: import(
|
|
62
|
-
source: import(
|
|
63
|
-
editor: import(
|
|
64
|
-
ext: import(
|
|
46
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
47
|
+
source: import('@ws-ui/shared').ISource;
|
|
48
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
49
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
65
50
|
kind: string;
|
|
66
|
-
}
|
|
51
|
+
}>> | undefined) => WebformState[], {
|
|
67
52
|
clearCache: () => void;
|
|
68
53
|
}> & {
|
|
69
54
|
clearCache: () => void;
|
|
@@ -74,9 +59,9 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
74
59
|
* @param exclude states to exclude (by id)
|
|
75
60
|
* @returns states labels or an empty array if not found.
|
|
76
61
|
*/
|
|
77
|
-
export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?: string[]) => ((state: import(
|
|
78
|
-
root: import(
|
|
79
|
-
explorer: import(
|
|
62
|
+
export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?: string[]) => ((state: import('redux').EmptyObject & {
|
|
63
|
+
root: import('../modules').IRootState;
|
|
64
|
+
explorer: import('../modules').ITreeItem[];
|
|
80
65
|
debugger: import('../modules').IDebuggerState;
|
|
81
66
|
settings: import('../modules').ISettingsState;
|
|
82
67
|
catalog: {
|
|
@@ -88,29 +73,14 @@ export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?
|
|
|
88
73
|
state: "error";
|
|
89
74
|
error: string;
|
|
90
75
|
};
|
|
91
|
-
roles:
|
|
92
|
-
flags: {
|
|
93
|
-
touched?: boolean | undefined;
|
|
94
|
-
removed?: boolean | undefined;
|
|
95
|
-
pinned?: boolean | undefined;
|
|
96
|
-
loading?: boolean | undefined;
|
|
97
|
-
old?: boolean | undefined;
|
|
98
|
-
enabled?: boolean | undefined;
|
|
99
|
-
confirmed?: boolean | undefined;
|
|
100
|
-
};
|
|
101
|
-
date?: string | undefined;
|
|
102
|
-
privileges: import('../modules').TById;
|
|
103
|
-
roles: import('../modules').TRolesDict;
|
|
104
|
-
forceLogin?: boolean | undefined;
|
|
105
|
-
selectedTab: "roles" | "privileges";
|
|
106
|
-
};
|
|
76
|
+
roles: import('../modules').IRolesState;
|
|
107
77
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
108
|
-
savedConditions: import(
|
|
78
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
109
79
|
webforms: import('../modules').IWebformEditorState;
|
|
110
80
|
modals: import('../modules').IModalsState;
|
|
111
|
-
sharedCSS: import(
|
|
81
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
112
82
|
model: import('../modules').IModelState;
|
|
113
|
-
}) => string[]) & import(
|
|
83
|
+
}) => string[]) & import('reselect').OutputSelectorFields<(args_0: WebformState[]) => string[], {
|
|
114
84
|
clearCache: () => void;
|
|
115
85
|
}> & {
|
|
116
86
|
clearCache: () => void;
|
|
@@ -120,9 +90,9 @@ export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?
|
|
|
120
90
|
* @param tabPath the current tab path.
|
|
121
91
|
* @returns default states ids array or an empty array if not found.
|
|
122
92
|
*/
|
|
123
|
-
export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((state: import(
|
|
124
|
-
root: import(
|
|
125
|
-
explorer: import(
|
|
93
|
+
export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
94
|
+
root: import('../modules').IRootState;
|
|
95
|
+
explorer: import('../modules').ITreeItem[];
|
|
126
96
|
debugger: import('../modules').IDebuggerState;
|
|
127
97
|
settings: import('../modules').ISettingsState;
|
|
128
98
|
catalog: {
|
|
@@ -134,52 +104,37 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
|
|
|
134
104
|
state: "error";
|
|
135
105
|
error: string;
|
|
136
106
|
};
|
|
137
|
-
roles:
|
|
138
|
-
flags: {
|
|
139
|
-
touched?: boolean | undefined;
|
|
140
|
-
removed?: boolean | undefined;
|
|
141
|
-
pinned?: boolean | undefined;
|
|
142
|
-
loading?: boolean | undefined;
|
|
143
|
-
old?: boolean | undefined;
|
|
144
|
-
enabled?: boolean | undefined;
|
|
145
|
-
confirmed?: boolean | undefined;
|
|
146
|
-
};
|
|
147
|
-
date?: string | undefined;
|
|
148
|
-
privileges: import('../modules').TById;
|
|
149
|
-
roles: import('../modules').TRolesDict;
|
|
150
|
-
forceLogin?: boolean | undefined;
|
|
151
|
-
selectedTab: "roles" | "privileges";
|
|
152
|
-
};
|
|
107
|
+
roles: import('../modules').IRolesState;
|
|
153
108
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
154
|
-
savedConditions: import(
|
|
109
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
155
110
|
webforms: import('../modules').IWebformEditorState;
|
|
156
111
|
modals: import('../modules').IModalsState;
|
|
157
|
-
sharedCSS: import(
|
|
112
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
158
113
|
model: import('../modules').IModelState;
|
|
159
|
-
}) => string[]) & import(
|
|
114
|
+
}) => string[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
160
115
|
initialLineInfo: {
|
|
161
116
|
line: number;
|
|
162
|
-
offset?: number
|
|
117
|
+
offset?: number;
|
|
163
118
|
lastModification: number;
|
|
164
119
|
};
|
|
165
120
|
initialSelectionInfo: {
|
|
166
|
-
selection: import(
|
|
121
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
167
122
|
lastModification: number;
|
|
168
123
|
};
|
|
169
124
|
diffContent: string;
|
|
170
|
-
attributes: import(
|
|
171
|
-
source: import(
|
|
172
|
-
editor: import(
|
|
173
|
-
ext: import(
|
|
125
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
126
|
+
source: import('@ws-ui/shared').ISource;
|
|
127
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
128
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
174
129
|
kind: string;
|
|
175
|
-
}
|
|
130
|
+
}>> | undefined) => string[], {
|
|
176
131
|
clearCache: () => void;
|
|
177
132
|
}> & {
|
|
178
133
|
clearCache: () => void;
|
|
179
134
|
};
|
|
180
|
-
export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((state: import(
|
|
181
|
-
root: import(
|
|
182
|
-
explorer: import(
|
|
135
|
+
export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
136
|
+
root: import('../modules').IRootState;
|
|
137
|
+
explorer: import('../modules').ITreeItem[];
|
|
183
138
|
debugger: import('../modules').IDebuggerState;
|
|
184
139
|
settings: import('../modules').ISettingsState;
|
|
185
140
|
catalog: {
|
|
@@ -191,45 +146,30 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
191
146
|
state: "error";
|
|
192
147
|
error: string;
|
|
193
148
|
};
|
|
194
|
-
roles:
|
|
195
|
-
flags: {
|
|
196
|
-
touched?: boolean | undefined;
|
|
197
|
-
removed?: boolean | undefined;
|
|
198
|
-
pinned?: boolean | undefined;
|
|
199
|
-
loading?: boolean | undefined;
|
|
200
|
-
old?: boolean | undefined;
|
|
201
|
-
enabled?: boolean | undefined;
|
|
202
|
-
confirmed?: boolean | undefined;
|
|
203
|
-
};
|
|
204
|
-
date?: string | undefined;
|
|
205
|
-
privileges: import('../modules').TById;
|
|
206
|
-
roles: import('../modules').TRolesDict;
|
|
207
|
-
forceLogin?: boolean | undefined;
|
|
208
|
-
selectedTab: "roles" | "privileges";
|
|
209
|
-
};
|
|
149
|
+
roles: import('../modules').IRolesState;
|
|
210
150
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
211
|
-
savedConditions: import(
|
|
151
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
212
152
|
webforms: import('../modules').IWebformEditorState;
|
|
213
153
|
modals: import('../modules').IModalsState;
|
|
214
|
-
sharedCSS: import(
|
|
154
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
215
155
|
model: import('../modules').IModelState;
|
|
216
|
-
}) => WebformState) & import(
|
|
156
|
+
}) => WebformState) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
217
157
|
initialLineInfo: {
|
|
218
158
|
line: number;
|
|
219
|
-
offset?: number
|
|
159
|
+
offset?: number;
|
|
220
160
|
lastModification: number;
|
|
221
161
|
};
|
|
222
162
|
initialSelectionInfo: {
|
|
223
|
-
selection: import(
|
|
163
|
+
selection: import('@ws-ui/shared').ITextEditorSelection;
|
|
224
164
|
lastModification: number;
|
|
225
165
|
};
|
|
226
166
|
diffContent: string;
|
|
227
|
-
attributes: import(
|
|
228
|
-
source: import(
|
|
229
|
-
editor: import(
|
|
230
|
-
ext: import(
|
|
167
|
+
attributes: import('@ws-ui/shared').IMethodAttributes;
|
|
168
|
+
source: import('@ws-ui/shared').ISource;
|
|
169
|
+
editor: import('@ws-ui/shared').IEditor;
|
|
170
|
+
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
231
171
|
kind: string;
|
|
232
|
-
}
|
|
172
|
+
}>> | undefined) => WebformState, {
|
|
233
173
|
clearCache: () => void;
|
|
234
174
|
}> & {
|
|
235
175
|
clearCache: () => void;
|
|
@@ -237,9 +177,9 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
237
177
|
/**
|
|
238
178
|
* Returns the shared states conditions.
|
|
239
179
|
*/
|
|
240
|
-
export declare const selectSavedConditions: ((state: import(
|
|
241
|
-
root: import(
|
|
242
|
-
explorer: import(
|
|
180
|
+
export declare const selectSavedConditions: ((state: import('redux').EmptyObject & {
|
|
181
|
+
root: import('../modules').IRootState;
|
|
182
|
+
explorer: import('../modules').ITreeItem[];
|
|
243
183
|
debugger: import('../modules').IDebuggerState;
|
|
244
184
|
settings: import('../modules').ISettingsState;
|
|
245
185
|
catalog: {
|
|
@@ -251,31 +191,16 @@ export declare const selectSavedConditions: ((state: import("redux").EmptyObject
|
|
|
251
191
|
state: "error";
|
|
252
192
|
error: string;
|
|
253
193
|
};
|
|
254
|
-
roles:
|
|
255
|
-
flags: {
|
|
256
|
-
touched?: boolean | undefined;
|
|
257
|
-
removed?: boolean | undefined;
|
|
258
|
-
pinned?: boolean | undefined;
|
|
259
|
-
loading?: boolean | undefined;
|
|
260
|
-
old?: boolean | undefined;
|
|
261
|
-
enabled?: boolean | undefined;
|
|
262
|
-
confirmed?: boolean | undefined;
|
|
263
|
-
};
|
|
264
|
-
date?: string | undefined;
|
|
265
|
-
privileges: import('../modules').TById;
|
|
266
|
-
roles: import('../modules').TRolesDict;
|
|
267
|
-
forceLogin?: boolean | undefined;
|
|
268
|
-
selectedTab: "roles" | "privileges";
|
|
269
|
-
};
|
|
194
|
+
roles: import('../modules').IRolesState;
|
|
270
195
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
271
|
-
savedConditions: import(
|
|
196
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
272
197
|
webforms: import('../modules').IWebformEditorState;
|
|
273
198
|
modals: import('../modules').IModalsState;
|
|
274
|
-
sharedCSS: import(
|
|
199
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
275
200
|
model: import('../modules').IModelState;
|
|
276
|
-
}) =>
|
|
277
|
-
root: import(
|
|
278
|
-
explorer: import(
|
|
201
|
+
}) => import('@ws-ui/shared').WebformStateCondition[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
202
|
+
root: import('../modules').IRootState;
|
|
203
|
+
explorer: import('../modules').ITreeItem[];
|
|
279
204
|
debugger: import('../modules').IDebuggerState;
|
|
280
205
|
settings: import('../modules').ISettingsState;
|
|
281
206
|
catalog: {
|
|
@@ -287,29 +212,14 @@ export declare const selectSavedConditions: ((state: import("redux").EmptyObject
|
|
|
287
212
|
state: "error";
|
|
288
213
|
error: string;
|
|
289
214
|
};
|
|
290
|
-
roles:
|
|
291
|
-
flags: {
|
|
292
|
-
touched?: boolean | undefined;
|
|
293
|
-
removed?: boolean | undefined;
|
|
294
|
-
pinned?: boolean | undefined;
|
|
295
|
-
loading?: boolean | undefined;
|
|
296
|
-
old?: boolean | undefined;
|
|
297
|
-
enabled?: boolean | undefined;
|
|
298
|
-
confirmed?: boolean | undefined;
|
|
299
|
-
};
|
|
300
|
-
date?: string | undefined;
|
|
301
|
-
privileges: import('../modules').TById;
|
|
302
|
-
roles: import('../modules').TRolesDict;
|
|
303
|
-
forceLogin?: boolean | undefined;
|
|
304
|
-
selectedTab: "roles" | "privileges";
|
|
305
|
-
};
|
|
215
|
+
roles: import('../modules').IRolesState;
|
|
306
216
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
307
|
-
savedConditions: import(
|
|
217
|
+
savedConditions: import('../modules').ISavedConditionsState;
|
|
308
218
|
webforms: import('../modules').IWebformEditorState;
|
|
309
219
|
modals: import('../modules').IModalsState;
|
|
310
|
-
sharedCSS: import(
|
|
220
|
+
sharedCSS: import('../modules').ISharedCSSState;
|
|
311
221
|
model: import('../modules').IModelState;
|
|
312
|
-
}>) =>
|
|
222
|
+
}>) => import('@ws-ui/shared').WebformStateCondition[], {
|
|
313
223
|
clearCache: () => void;
|
|
314
224
|
}> & {
|
|
315
225
|
clearCache: () => void;
|