@ws-ui/store 1.11.12-rc8 → 1.12.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/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 +10538 -9881
- 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 +18 -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/model/thunks.d.ts +4 -0
- 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/root/reducer.d.ts +8 -0
- package/dist/modules/root/thunks.d.ts +6 -0
- package/dist/modules/settings/index.d.ts +1 -1
- package/dist/modules/settings/reducer.d.ts +19 -3
- package/dist/modules/settings/thunks.d.ts +6 -0
- 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 +88 -84
- package/dist/selectors/explorer.d.ts +131 -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 +24 -18
- package/dist/selectors/styles.d.ts +17 -15
- package/dist/selectors/tabs.d.ts +29 -15
- package/dist/selectors/webforms.d.ts +42 -42
- package/package.json +3 -3
|
@@ -12,9 +12,9 @@ export declare const isBaseState: (state: WebformState) => boolean;
|
|
|
12
12
|
*/
|
|
13
13
|
export declare const selectWebformStatesByPath: (tabPath: string, exclude?: string[]) => ((state: import('redux').EmptyObject & {
|
|
14
14
|
root: import('../modules').IRootState;
|
|
15
|
-
explorer: import('
|
|
15
|
+
explorer: import('../modules').ITreeItem[];
|
|
16
16
|
debugger: import('../modules').IDebuggerState;
|
|
17
|
-
settings: import('
|
|
17
|
+
settings: import('../modules').ISettingsState;
|
|
18
18
|
catalog: {
|
|
19
19
|
state: "loading";
|
|
20
20
|
} | {
|
|
@@ -24,7 +24,7 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
24
24
|
state: "error";
|
|
25
25
|
error: string;
|
|
26
26
|
};
|
|
27
|
-
roles: import('
|
|
27
|
+
roles: import('../modules').IRolesState;
|
|
28
28
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
29
29
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
30
30
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -49,6 +49,8 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
49
49
|
editor: import('@ws-ui/shared').IEditor;
|
|
50
50
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
51
51
|
kind: string;
|
|
52
|
+
eventReportView: "full" | "compact";
|
|
53
|
+
eventReportFilters: string[];
|
|
52
54
|
}>> | undefined) => WebformState[], {
|
|
53
55
|
clearCache: () => void;
|
|
54
56
|
}> & {
|
|
@@ -62,9 +64,9 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
|
|
|
62
64
|
*/
|
|
63
65
|
export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?: string[]) => ((state: import('redux').EmptyObject & {
|
|
64
66
|
root: import('../modules').IRootState;
|
|
65
|
-
explorer: import('
|
|
67
|
+
explorer: import('../modules').ITreeItem[];
|
|
66
68
|
debugger: import('../modules').IDebuggerState;
|
|
67
|
-
settings: import('
|
|
69
|
+
settings: import('../modules').ISettingsState;
|
|
68
70
|
catalog: {
|
|
69
71
|
state: "loading";
|
|
70
72
|
} | {
|
|
@@ -74,7 +76,7 @@ export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?
|
|
|
74
76
|
state: "error";
|
|
75
77
|
error: string;
|
|
76
78
|
};
|
|
77
|
-
roles: import('
|
|
79
|
+
roles: import('../modules').IRolesState;
|
|
78
80
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
79
81
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
80
82
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -95,9 +97,9 @@ export declare const selectWebformStatesLabelsByPath: (tabPath: string, exclude?
|
|
|
95
97
|
*/
|
|
96
98
|
export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
97
99
|
root: import('../modules').IRootState;
|
|
98
|
-
explorer: import('
|
|
100
|
+
explorer: import('../modules').ITreeItem[];
|
|
99
101
|
debugger: import('../modules').IDebuggerState;
|
|
100
|
-
settings: import('
|
|
102
|
+
settings: import('../modules').ISettingsState;
|
|
101
103
|
catalog: {
|
|
102
104
|
state: "loading";
|
|
103
105
|
} | {
|
|
@@ -107,7 +109,7 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
|
|
|
107
109
|
state: "error";
|
|
108
110
|
error: string;
|
|
109
111
|
};
|
|
110
|
-
roles: import('
|
|
112
|
+
roles: import('../modules').IRolesState;
|
|
111
113
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
112
114
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
113
115
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -132,6 +134,8 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
|
|
|
132
134
|
editor: import('@ws-ui/shared').IEditor;
|
|
133
135
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
134
136
|
kind: string;
|
|
137
|
+
eventReportView: "full" | "compact";
|
|
138
|
+
eventReportFilters: string[];
|
|
135
139
|
}>> | undefined) => string[], {
|
|
136
140
|
clearCache: () => void;
|
|
137
141
|
}> & {
|
|
@@ -139,9 +143,9 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
|
|
|
139
143
|
};
|
|
140
144
|
export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
141
145
|
root: import('../modules').IRootState;
|
|
142
|
-
explorer: import('
|
|
146
|
+
explorer: import('../modules').ITreeItem[];
|
|
143
147
|
debugger: import('../modules').IDebuggerState;
|
|
144
|
-
settings: import('
|
|
148
|
+
settings: import('../modules').ISettingsState;
|
|
145
149
|
catalog: {
|
|
146
150
|
state: "loading";
|
|
147
151
|
} | {
|
|
@@ -151,7 +155,7 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
151
155
|
state: "error";
|
|
152
156
|
error: string;
|
|
153
157
|
};
|
|
154
|
-
roles: import('
|
|
158
|
+
roles: import('../modules').IRolesState;
|
|
155
159
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
156
160
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
157
161
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -176,6 +180,8 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
176
180
|
editor: import('@ws-ui/shared').IEditor;
|
|
177
181
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
178
182
|
kind: string;
|
|
183
|
+
eventReportView: "full" | "compact";
|
|
184
|
+
eventReportFilters: string[];
|
|
179
185
|
}>> | undefined) => WebformState, {
|
|
180
186
|
clearCache: () => void;
|
|
181
187
|
}> & {
|
|
@@ -186,9 +192,9 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
|
|
|
186
192
|
*/
|
|
187
193
|
export declare const selectSavedConditions: ((state: import('redux').EmptyObject & {
|
|
188
194
|
root: import('../modules').IRootState;
|
|
189
|
-
explorer: import('
|
|
195
|
+
explorer: import('../modules').ITreeItem[];
|
|
190
196
|
debugger: import('../modules').IDebuggerState;
|
|
191
|
-
settings: import('
|
|
197
|
+
settings: import('../modules').ISettingsState;
|
|
192
198
|
catalog: {
|
|
193
199
|
state: "loading";
|
|
194
200
|
} | {
|
|
@@ -198,7 +204,7 @@ export declare const selectSavedConditions: ((state: import('redux').EmptyObject
|
|
|
198
204
|
state: "error";
|
|
199
205
|
error: string;
|
|
200
206
|
};
|
|
201
|
-
roles: import('
|
|
207
|
+
roles: import('../modules').IRolesState;
|
|
202
208
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
203
209
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
204
210
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -209,9 +215,9 @@ export declare const selectSavedConditions: ((state: import('redux').EmptyObject
|
|
|
209
215
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
210
216
|
}) => import('@ws-ui/shared').WebformStateCondition[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
211
217
|
root: import('../modules').IRootState;
|
|
212
|
-
explorer: import('
|
|
218
|
+
explorer: import('../modules').ITreeItem[];
|
|
213
219
|
debugger: import('../modules').IDebuggerState;
|
|
214
|
-
settings: import('
|
|
220
|
+
settings: import('../modules').ISettingsState;
|
|
215
221
|
catalog: {
|
|
216
222
|
state: "loading";
|
|
217
223
|
} | {
|
|
@@ -221,7 +227,7 @@ export declare const selectSavedConditions: ((state: import('redux').EmptyObject
|
|
|
221
227
|
state: "error";
|
|
222
228
|
error: string;
|
|
223
229
|
};
|
|
224
|
-
roles: import('
|
|
230
|
+
roles: import('../modules').IRolesState;
|
|
225
231
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
226
232
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
227
233
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -2,9 +2,9 @@ import { EWebFormStyleClassScope, IWebFormStyleClass, ITab } from '@ws-ui/shared
|
|
|
2
2
|
export declare const THEME_CLASSES: string[];
|
|
3
3
|
export declare const selectWebformStylesByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
4
4
|
root: import('../modules').IRootState;
|
|
5
|
-
explorer: import('
|
|
5
|
+
explorer: import('../modules').ITreeItem[];
|
|
6
6
|
debugger: import('../modules').IDebuggerState;
|
|
7
|
-
settings: import('
|
|
7
|
+
settings: import('../modules').ISettingsState;
|
|
8
8
|
catalog: {
|
|
9
9
|
state: "loading";
|
|
10
10
|
} | {
|
|
@@ -14,7 +14,7 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
|
|
|
14
14
|
state: "error";
|
|
15
15
|
error: string;
|
|
16
16
|
};
|
|
17
|
-
roles: import('
|
|
17
|
+
roles: import('../modules').IRolesState;
|
|
18
18
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
19
19
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
20
20
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -39,6 +39,8 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
|
|
|
39
39
|
editor: import('@ws-ui/shared').IEditor;
|
|
40
40
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
41
41
|
kind: string;
|
|
42
|
+
eventReportView: "full" | "compact";
|
|
43
|
+
eventReportFilters: string[];
|
|
42
44
|
}>> | undefined) => IWebFormStyleClass[], {
|
|
43
45
|
clearCache: () => void;
|
|
44
46
|
}> & {
|
|
@@ -46,9 +48,9 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
|
|
|
46
48
|
};
|
|
47
49
|
export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleClassScope[]) => ((state: import('redux').EmptyObject & {
|
|
48
50
|
root: import('../modules').IRootState;
|
|
49
|
-
explorer: import('
|
|
51
|
+
explorer: import('../modules').ITreeItem[];
|
|
50
52
|
debugger: import('../modules').IDebuggerState;
|
|
51
|
-
settings: import('
|
|
53
|
+
settings: import('../modules').ISettingsState;
|
|
52
54
|
catalog: {
|
|
53
55
|
state: "loading";
|
|
54
56
|
} | {
|
|
@@ -58,7 +60,7 @@ export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleCla
|
|
|
58
60
|
state: "error";
|
|
59
61
|
error: string;
|
|
60
62
|
};
|
|
61
|
-
roles: import('
|
|
63
|
+
roles: import('../modules').IRolesState;
|
|
62
64
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
63
65
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
64
66
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -74,9 +76,9 @@ export declare const selectStylesByPath: (path: string, scopes: EWebFormStyleCla
|
|
|
74
76
|
};
|
|
75
77
|
export declare const selectCSSClassesByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
76
78
|
root: import('../modules').IRootState;
|
|
77
|
-
explorer: import('
|
|
79
|
+
explorer: import('../modules').ITreeItem[];
|
|
78
80
|
debugger: import('../modules').IDebuggerState;
|
|
79
|
-
settings: import('
|
|
81
|
+
settings: import('../modules').ISettingsState;
|
|
80
82
|
catalog: {
|
|
81
83
|
state: "loading";
|
|
82
84
|
} | {
|
|
@@ -86,7 +88,7 @@ export declare const selectCSSClassesByPath: (path: string) => ((state: import('
|
|
|
86
88
|
state: "error";
|
|
87
89
|
error: string;
|
|
88
90
|
};
|
|
89
|
-
roles: import('
|
|
91
|
+
roles: import('../modules').IRolesState;
|
|
90
92
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
91
93
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
92
94
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -102,9 +104,9 @@ export declare const selectCSSClassesByPath: (path: string) => ((state: import('
|
|
|
102
104
|
};
|
|
103
105
|
export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
104
106
|
root: import('../modules').IRootState;
|
|
105
|
-
explorer: import('
|
|
107
|
+
explorer: import('../modules').ITreeItem[];
|
|
106
108
|
debugger: import('../modules').IDebuggerState;
|
|
107
|
-
settings: import('
|
|
109
|
+
settings: import('../modules').ISettingsState;
|
|
108
110
|
catalog: {
|
|
109
111
|
state: "loading";
|
|
110
112
|
} | {
|
|
@@ -114,7 +116,7 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
|
114
116
|
state: "error";
|
|
115
117
|
error: string;
|
|
116
118
|
};
|
|
117
|
-
roles: import('
|
|
119
|
+
roles: import('../modules').IRolesState;
|
|
118
120
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
119
121
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
120
122
|
savedConditions: import('../modules').ISavedConditionsState;
|
|
@@ -135,9 +137,9 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
|
135
137
|
origin?: string;
|
|
136
138
|
}[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
137
139
|
root: import('../modules').IRootState;
|
|
138
|
-
explorer: import('
|
|
140
|
+
explorer: import('../modules').ITreeItem[];
|
|
139
141
|
debugger: import('../modules').IDebuggerState;
|
|
140
|
-
settings: import('
|
|
142
|
+
settings: import('../modules').ISettingsState;
|
|
141
143
|
catalog: {
|
|
142
144
|
state: "loading";
|
|
143
145
|
} | {
|
|
@@ -147,7 +149,7 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
|
|
|
147
149
|
state: "error";
|
|
148
150
|
error: string;
|
|
149
151
|
};
|
|
150
|
-
roles: import('
|
|
152
|
+
roles: import('../modules').IRolesState;
|
|
151
153
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
152
154
|
sharedAppEvents: import('../modules').ISharedAppEventsState;
|
|
153
155
|
savedConditions: import('../modules').ISavedConditionsState;
|
package/dist/selectors/tabs.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const selectPanelByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
2
2
|
root: import('..').IRootState;
|
|
3
|
-
explorer: import('
|
|
3
|
+
explorer: import('..').ITreeItem[];
|
|
4
4
|
debugger: import('..').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('..').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -12,7 +12,7 @@ export declare const selectPanelByPath: (path: string) => ((state: import('redux
|
|
|
12
12
|
state: "error";
|
|
13
13
|
error: string;
|
|
14
14
|
};
|
|
15
|
-
roles: import('
|
|
15
|
+
roles: import('..').IRolesState;
|
|
16
16
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
17
17
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
18
18
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -43,6 +43,8 @@ export declare const selectPanelByPath: (path: string) => ((state: import('redux
|
|
|
43
43
|
editor: import('@ws-ui/shared').IEditor;
|
|
44
44
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
45
45
|
kind: string;
|
|
46
|
+
eventReportView: "full" | "compact";
|
|
47
|
+
eventReportFilters: string[];
|
|
46
48
|
}>>[]) => {
|
|
47
49
|
isOpen: boolean;
|
|
48
50
|
type: string;
|
|
@@ -56,9 +58,9 @@ export declare const selectPanelByPath: (path: string) => ((state: import('redux
|
|
|
56
58
|
};
|
|
57
59
|
export declare const selectFlagsByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
58
60
|
root: import('..').IRootState;
|
|
59
|
-
explorer: import('
|
|
61
|
+
explorer: import('..').ITreeItem[];
|
|
60
62
|
debugger: import('..').IDebuggerState;
|
|
61
|
-
settings: import('
|
|
63
|
+
settings: import('..').ISettingsState;
|
|
62
64
|
catalog: {
|
|
63
65
|
state: "loading";
|
|
64
66
|
} | {
|
|
@@ -68,7 +70,7 @@ export declare const selectFlagsByPath: (path: string) => ((state: import('redux
|
|
|
68
70
|
state: "error";
|
|
69
71
|
error: string;
|
|
70
72
|
};
|
|
71
|
-
roles: import('
|
|
73
|
+
roles: import('..').IRolesState;
|
|
72
74
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
73
75
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
74
76
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -102,6 +104,8 @@ export declare const selectFlagsByPath: (path: string) => ((state: import('redux
|
|
|
102
104
|
editor: import('@ws-ui/shared').IEditor;
|
|
103
105
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
104
106
|
kind: string;
|
|
107
|
+
eventReportView: "full" | "compact";
|
|
108
|
+
eventReportFilters: string[];
|
|
105
109
|
}>> | undefined) => Partial<{
|
|
106
110
|
touched: boolean;
|
|
107
111
|
removed: boolean;
|
|
@@ -118,9 +122,9 @@ export declare const selectFlagsByPath: (path: string) => ((state: import('redux
|
|
|
118
122
|
};
|
|
119
123
|
export declare const selectHistoryByPath: (path: string) => ((state: import('redux').EmptyObject & {
|
|
120
124
|
root: import('..').IRootState;
|
|
121
|
-
explorer: import('
|
|
125
|
+
explorer: import('..').ITreeItem[];
|
|
122
126
|
debugger: import('..').IDebuggerState;
|
|
123
|
-
settings: import('
|
|
127
|
+
settings: import('..').ISettingsState;
|
|
124
128
|
catalog: {
|
|
125
129
|
state: "loading";
|
|
126
130
|
} | {
|
|
@@ -130,7 +134,7 @@ export declare const selectHistoryByPath: (path: string) => ((state: import('red
|
|
|
130
134
|
state: "error";
|
|
131
135
|
error: string;
|
|
132
136
|
};
|
|
133
|
-
roles: import('
|
|
137
|
+
roles: import('..').IRolesState;
|
|
134
138
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
135
139
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
136
140
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -159,6 +163,8 @@ export declare const selectHistoryByPath: (path: string) => ((state: import('red
|
|
|
159
163
|
editor: import('@ws-ui/shared').IEditor;
|
|
160
164
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
161
165
|
kind: string;
|
|
166
|
+
eventReportView: "full" | "compact";
|
|
167
|
+
eventReportFilters: string[];
|
|
162
168
|
}>> | undefined) => {
|
|
163
169
|
stack: any[];
|
|
164
170
|
active: number;
|
|
@@ -170,9 +176,9 @@ export declare const selectHistoryByPath: (path: string) => ((state: import('red
|
|
|
170
176
|
};
|
|
171
177
|
export declare const selectActiveTabHistoryActions: ((state: import('redux').EmptyObject & {
|
|
172
178
|
root: import('..').IRootState;
|
|
173
|
-
explorer: import('
|
|
179
|
+
explorer: import('..').ITreeItem[];
|
|
174
180
|
debugger: import('..').IDebuggerState;
|
|
175
|
-
settings: import('
|
|
181
|
+
settings: import('..').ISettingsState;
|
|
176
182
|
catalog: {
|
|
177
183
|
state: "loading";
|
|
178
184
|
} | {
|
|
@@ -182,7 +188,7 @@ export declare const selectActiveTabHistoryActions: ((state: import('redux').Emp
|
|
|
182
188
|
state: "error";
|
|
183
189
|
error: string;
|
|
184
190
|
};
|
|
185
|
-
roles: import('
|
|
191
|
+
roles: import('..').IRolesState;
|
|
186
192
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
187
193
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
188
194
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -210,6 +216,8 @@ export declare const selectActiveTabHistoryActions: ((state: import('redux').Emp
|
|
|
210
216
|
editor: import('@ws-ui/shared').IEditor;
|
|
211
217
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
212
218
|
kind: string;
|
|
219
|
+
eventReportView: "full" | "compact";
|
|
220
|
+
eventReportFilters: string[];
|
|
213
221
|
}>> | undefined) => {
|
|
214
222
|
canUndo: boolean;
|
|
215
223
|
canRedo: boolean;
|
|
@@ -220,9 +228,9 @@ export declare const selectActiveTabHistoryActions: ((state: import('redux').Emp
|
|
|
220
228
|
};
|
|
221
229
|
export declare const selectAllTabsByType: (type: string) => ((state: import('redux').EmptyObject & {
|
|
222
230
|
root: import('..').IRootState;
|
|
223
|
-
explorer: import('
|
|
231
|
+
explorer: import('..').ITreeItem[];
|
|
224
232
|
debugger: import('..').IDebuggerState;
|
|
225
|
-
settings: import('
|
|
233
|
+
settings: import('..').ISettingsState;
|
|
226
234
|
catalog: {
|
|
227
235
|
state: "loading";
|
|
228
236
|
} | {
|
|
@@ -232,7 +240,7 @@ export declare const selectAllTabsByType: (type: string) => ((state: import('red
|
|
|
232
240
|
state: "error";
|
|
233
241
|
error: string;
|
|
234
242
|
};
|
|
235
|
-
roles: import('
|
|
243
|
+
roles: import('..').IRolesState;
|
|
236
244
|
sharedDatasources: import('..').ISharedDatasourcesState;
|
|
237
245
|
sharedAppEvents: import('..').ISharedAppEventsState;
|
|
238
246
|
savedConditions: import('..').ISavedConditionsState;
|
|
@@ -257,6 +265,8 @@ export declare const selectAllTabsByType: (type: string) => ((state: import('red
|
|
|
257
265
|
editor: import('@ws-ui/shared').IEditor;
|
|
258
266
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
259
267
|
kind: string;
|
|
268
|
+
eventReportView: "full" | "compact";
|
|
269
|
+
eventReportFilters: string[];
|
|
260
270
|
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
|
|
261
271
|
initialLineInfo: {
|
|
262
272
|
line: number;
|
|
@@ -273,6 +283,8 @@ export declare const selectAllTabsByType: (type: string) => ((state: import('red
|
|
|
273
283
|
editor: import('@ws-ui/shared').IEditor;
|
|
274
284
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
275
285
|
kind: string;
|
|
286
|
+
eventReportView: "full" | "compact";
|
|
287
|
+
eventReportFilters: string[];
|
|
276
288
|
}>>[]) => import('@ws-ui/shared').ITab<any, Partial<{
|
|
277
289
|
initialLineInfo: {
|
|
278
290
|
line: number;
|
|
@@ -289,6 +301,8 @@ export declare const selectAllTabsByType: (type: string) => ((state: import('red
|
|
|
289
301
|
editor: import('@ws-ui/shared').IEditor;
|
|
290
302
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
291
303
|
kind: string;
|
|
304
|
+
eventReportView: "full" | "compact";
|
|
305
|
+
eventReportFilters: string[];
|
|
292
306
|
}>>[], {
|
|
293
307
|
clearCache: () => void;
|
|
294
308
|
}> & {
|