@ws-ui/store 0.1.24 → 0.1.26
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 +2 -2
- package/dist/index.cjs.js +36 -36
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2711 -2632
- package/dist/index.es.js.map +1 -1
- package/dist/modules/index.d.ts +1 -1
- package/dist/modules/root/reducer.d.ts +10 -1
- package/dist/modules/root/types.d.ts +9 -0
- package/dist/modules/shared-conditions/index.d.ts +1 -1
- package/dist/modules/shared-conditions/reducer.d.ts +16 -15
- package/dist/modules/shared-conditions/thunks.d.ts +1 -1
- package/dist/modules/tabs/selectors.d.ts +1 -1
- package/dist/modules/webforms/datasources.adapter.d.ts +1 -1
- package/dist/selectors/catalog.d.ts +7 -7
- package/dist/selectors/common.d.ts +4 -4
- package/dist/selectors/components.d.ts +1 -1
- package/dist/selectors/datasources.d.ts +6 -6
- package/dist/selectors/debugger.d.ts +22 -22
- package/dist/selectors/explorer.d.ts +26 -26
- package/dist/selectors/modals.d.ts +1 -1
- package/dist/selectors/roles.d.ts +8 -8
- package/dist/selectors/settings.d.ts +10 -10
- package/dist/selectors/states.d.ts +67 -6
- package/dist/selectors/styles.d.ts +5 -5
- package/dist/selectors/tabs.d.ts +3 -3
- package/dist/selectors/webforms.d.ts +11 -11
- package/package.json +3 -3
package/dist/modules/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export declare const stateReducer: import("redux").Reducer<import("redux").Combi
|
|
|
31
31
|
selectedTab: "roles" | "privileges";
|
|
32
32
|
};
|
|
33
33
|
sharedDatasources: import("./shared-datasources").ISharedDatasourcesState;
|
|
34
|
-
|
|
34
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("./shared-conditions").ISavedConditionsState>;
|
|
35
35
|
webforms: import("./webforms").IWebformEditorState;
|
|
36
36
|
modals: import("./modals").IModalsState;
|
|
37
37
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("./shared-css").ISharedCSSState>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
2
|
import { IWebFormStyleClass } from '@ws-ui/shared';
|
|
3
3
|
import { ITab, ITabExtra, ITabFlags, WebformState } from '@ws-ui/shared';
|
|
4
|
-
import { IRootState, TActionAddDataSource, TActionAddWebformState, TActionEditWebformState, TActionRemoveDataSource, TActionRemoveWebformState, TActionSetDataSources } from './types';
|
|
4
|
+
import { IRootState, TActionAddDataSource, TActionAddWebformState, TActionEditWebformState, TActionRemoveDataSource, TActionRemoveWebformState, TActionSetDataSources, TActionSetDefaultWebformStates, TResetComponentState } from './types';
|
|
5
5
|
export declare const stateSlice: import("@reduxjs/toolkit").Slice<import("immer/dist/internal.js").WritableDraft<IRootState>, {
|
|
6
6
|
setPanelState(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: PayloadAction<Partial<ITab['view']['panel']> & {
|
|
7
7
|
path: string;
|
|
@@ -11,6 +11,8 @@ export declare const stateSlice: import("@reduxjs/toolkit").Slice<import("immer/
|
|
|
11
11
|
addWebformState(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: TActionAddWebformState): void;
|
|
12
12
|
removeWebformState(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: TActionRemoveWebformState): void;
|
|
13
13
|
editWebformState(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: TActionEditWebformState): void;
|
|
14
|
+
resetComponentState(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: TResetComponentState): void;
|
|
15
|
+
setDefaultWebformStates(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: TActionSetDefaultWebformStates): void;
|
|
14
16
|
removeDataSource(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: TActionRemoveDataSource): void;
|
|
15
17
|
setDataSources(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: TActionSetDataSources): void;
|
|
16
18
|
setTabs(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: PayloadAction<ITab[]>): void;
|
|
@@ -166,5 +168,12 @@ export declare const setTabs: import("@reduxjs/toolkit").ActionCreatorWithPayloa
|
|
|
166
168
|
}, string>, removeWebformState: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
167
169
|
path: string;
|
|
168
170
|
id: string;
|
|
171
|
+
}, string>, resetComponentState: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
172
|
+
path: string;
|
|
173
|
+
id: string;
|
|
174
|
+
state: WebformState;
|
|
175
|
+
}, string>, setDefaultWebformStates: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
176
|
+
path: string;
|
|
177
|
+
states: WebformState[];
|
|
169
178
|
}, string>, setHistoryContent: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, unlockHistory: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, undo: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, redo: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
|
|
170
179
|
export default stateSlice;
|
|
@@ -23,6 +23,15 @@ export type TActionEditWebformState = PayloadAction<{
|
|
|
23
23
|
path: string;
|
|
24
24
|
state: WebformState;
|
|
25
25
|
}>;
|
|
26
|
+
export type TResetComponentState = PayloadAction<{
|
|
27
|
+
path: string;
|
|
28
|
+
id: string;
|
|
29
|
+
state: WebformState;
|
|
30
|
+
}>;
|
|
31
|
+
export type TActionSetDefaultWebformStates = PayloadAction<{
|
|
32
|
+
path: string;
|
|
33
|
+
states: WebformState[];
|
|
34
|
+
}>;
|
|
26
35
|
export type TActionEditDataSource = PayloadAction<{
|
|
27
36
|
path: string;
|
|
28
37
|
datasourceId: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("redux").Reducer<import("immer/dist/internal.js").WritableDraft<import("./reducer").
|
|
1
|
+
declare const _default: import("redux").Reducer<import("immer/dist/internal.js").WritableDraft<import("./reducer").ISavedConditionsState>>;
|
|
2
2
|
export default _default;
|
|
3
3
|
export * from './reducer';
|
|
4
4
|
export * from './thunks';
|
|
@@ -1,35 +1,36 @@
|
|
|
1
1
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
2
|
import { WebformStateCondition } from '@ws-ui/shared';
|
|
3
|
-
export type
|
|
3
|
+
export type ISavedConditionsState = {
|
|
4
4
|
state: 'loading' | 'loaded' | 'error' | 'unknown';
|
|
5
5
|
conditions: WebformStateCondition[];
|
|
6
6
|
error?: string;
|
|
7
7
|
};
|
|
8
8
|
export declare const deepDeleteCondition: (condition: WebformStateCondition, targetId: string) => WebformStateCondition | null;
|
|
9
|
-
declare const
|
|
10
|
-
|
|
9
|
+
export declare const deepSanitizeCondition: (condition: WebformStateCondition) => WebformStateCondition;
|
|
10
|
+
declare const stateSlice: import("@reduxjs/toolkit").Slice<import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>, {
|
|
11
|
+
updateSavedConditions: (state: import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>, action: PayloadAction<{
|
|
11
12
|
conditions: WebformStateCondition[];
|
|
12
|
-
}>) => import("immer/dist/internal.js").WritableDraft<
|
|
13
|
-
|
|
13
|
+
}>) => import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>;
|
|
14
|
+
setSavedCondition: (state: import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>, action: PayloadAction<{
|
|
14
15
|
id: string;
|
|
15
16
|
condition: WebformStateCondition;
|
|
16
|
-
}>) => import("immer/dist/internal.js").WritableDraft<
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
}>) => import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>;
|
|
18
|
+
addSavedCondition: (state: import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>, action: PayloadAction<WebformStateCondition>) => import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>;
|
|
19
|
+
removeSavedCondition: (state: import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>, action: PayloadAction<{
|
|
19
20
|
id: string;
|
|
20
|
-
}>) => import("immer/dist/internal.js").WritableDraft<
|
|
21
|
-
|
|
21
|
+
}>) => import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>;
|
|
22
|
+
initSavedConditions: (state: import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>, action: PayloadAction<{
|
|
22
23
|
conditions: WebformStateCondition[];
|
|
23
|
-
}>) => import("immer/dist/internal.js").WritableDraft<
|
|
24
|
+
}>) => import("immer/dist/internal.js").WritableDraft<ISavedConditionsState>;
|
|
24
25
|
}, "shared-conditions">;
|
|
25
|
-
export declare const
|
|
26
|
+
export declare const updateSavedConditions: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
26
27
|
conditions: WebformStateCondition[];
|
|
27
|
-
}, string>,
|
|
28
|
+
}, string>, setSavedCondition: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
28
29
|
id: string;
|
|
29
30
|
condition: WebformStateCondition;
|
|
30
|
-
}, string>,
|
|
31
|
+
}, string>, addSavedCondition: import("@reduxjs/toolkit").ActionCreatorWithPayload<WebformStateCondition, string>, removeSavedCondition: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
31
32
|
id: string;
|
|
32
|
-
}, string>,
|
|
33
|
+
}, string>, initSavedConditions: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
33
34
|
conditions: WebformStateCondition[];
|
|
34
35
|
}, string>;
|
|
35
36
|
export default stateSlice;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { WebformStateCondition } from '@ws-ui/shared';
|
|
2
2
|
import { AppState } from '..';
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const fetchSavedConditions: import("@reduxjs/toolkit").AsyncThunk<WebformStateCondition[], void, {
|
|
4
4
|
state: AppState;
|
|
5
5
|
rejectValue: string;
|
|
6
6
|
}>;
|
|
@@ -30,7 +30,7 @@ export declare const selectPanelByPath: (path: string) => ((state: import("redux
|
|
|
30
30
|
selectedTab: "roles" | "privileges";
|
|
31
31
|
};
|
|
32
32
|
sharedDatasources: import("..").ISharedDatasourcesState;
|
|
33
|
-
|
|
33
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("..").ISavedConditionsState>;
|
|
34
34
|
webforms: import("..").IWebformEditorState;
|
|
35
35
|
modals: import("..").IModalsState;
|
|
36
36
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("..").ISharedCSSState>;
|
|
@@ -31,7 +31,7 @@ export declare const listDsNamespaces: import("lodash").CurriedFunction2<string,
|
|
|
31
31
|
selectedTab: "roles" | "privileges";
|
|
32
32
|
};
|
|
33
33
|
sharedDatasources: import("..").ISharedDatasourcesState;
|
|
34
|
-
|
|
34
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("..").ISavedConditionsState>;
|
|
35
35
|
webforms: import("./types").IWebformEditorState;
|
|
36
36
|
modals: import("..").IModalsState;
|
|
37
37
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("..").ISharedCSSState>;
|
|
@@ -31,7 +31,7 @@ export declare const selectCatalog: ((state: import("redux").EmptyObject & {
|
|
|
31
31
|
selectedTab: "roles" | "privileges";
|
|
32
32
|
};
|
|
33
33
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
34
|
-
|
|
34
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
35
35
|
webforms: import('../modules').IWebformEditorState;
|
|
36
36
|
modals: import('../modules').IModalsState;
|
|
37
37
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -67,7 +67,7 @@ export declare const selectCatalog: ((state: import("redux").EmptyObject & {
|
|
|
67
67
|
selectedTab: "roles" | "privileges";
|
|
68
68
|
};
|
|
69
69
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
70
|
-
|
|
70
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
71
71
|
webforms: import('../modules').IWebformEditorState;
|
|
72
72
|
modals: import('../modules').IModalsState;
|
|
73
73
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -108,7 +108,7 @@ export declare const selectCatalogState: ((state: import("redux").EmptyObject &
|
|
|
108
108
|
selectedTab: "roles" | "privileges";
|
|
109
109
|
};
|
|
110
110
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
111
|
-
|
|
111
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
112
112
|
webforms: import('../modules').IWebformEditorState;
|
|
113
113
|
modals: import('../modules').IModalsState;
|
|
114
114
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -144,7 +144,7 @@ export declare const selectCatalogState: ((state: import("redux").EmptyObject &
|
|
|
144
144
|
selectedTab: "roles" | "privileges";
|
|
145
145
|
};
|
|
146
146
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
147
|
-
|
|
147
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
148
148
|
webforms: import('../modules').IWebformEditorState;
|
|
149
149
|
modals: import('../modules').IModalsState;
|
|
150
150
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -185,7 +185,7 @@ export declare const selectDataclasses: ((state: import("redux").EmptyObject & {
|
|
|
185
185
|
selectedTab: "roles" | "privileges";
|
|
186
186
|
};
|
|
187
187
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
188
|
-
|
|
188
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
189
189
|
webforms: import('../modules').IWebformEditorState;
|
|
190
190
|
modals: import('../modules').IModalsState;
|
|
191
191
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -226,7 +226,7 @@ export declare const selectVirtualDataClasses: ((state: import("redux").EmptyObj
|
|
|
226
226
|
selectedTab: "roles" | "privileges";
|
|
227
227
|
};
|
|
228
228
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
229
|
-
|
|
229
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
230
230
|
webforms: import('../modules').IWebformEditorState;
|
|
231
231
|
modals: import('../modules').IModalsState;
|
|
232
232
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -267,7 +267,7 @@ export declare const selectCatalogMethods: ((state: import("redux").EmptyObject
|
|
|
267
267
|
selectedTab: "roles" | "privileges";
|
|
268
268
|
};
|
|
269
269
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
270
|
-
|
|
270
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
271
271
|
webforms: import('../modules').IWebformEditorState;
|
|
272
272
|
modals: import('../modules').IModalsState;
|
|
273
273
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -30,7 +30,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
30
30
|
selectedTab: "roles" | "privileges";
|
|
31
31
|
};
|
|
32
32
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
33
|
-
|
|
33
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
34
34
|
webforms: import("../modules").IWebformEditorState;
|
|
35
35
|
modals: import("../modules").IModalsState;
|
|
36
36
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -66,7 +66,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
66
66
|
selectedTab: "roles" | "privileges";
|
|
67
67
|
};
|
|
68
68
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
69
|
-
|
|
69
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
70
70
|
webforms: import("../modules").IWebformEditorState;
|
|
71
71
|
modals: import("../modules").IModalsState;
|
|
72
72
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -102,7 +102,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
102
102
|
selectedTab: "roles" | "privileges";
|
|
103
103
|
};
|
|
104
104
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
105
|
-
|
|
105
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
106
106
|
webforms: import("../modules").IWebformEditorState;
|
|
107
107
|
modals: import("../modules").IModalsState;
|
|
108
108
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -138,7 +138,7 @@ export declare const selectAppState: ((state: import("redux").EmptyObject & {
|
|
|
138
138
|
selectedTab: "roles" | "privileges";
|
|
139
139
|
};
|
|
140
140
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
141
|
-
|
|
141
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
142
142
|
webforms: import("../modules").IWebformEditorState;
|
|
143
143
|
modals: import("../modules").IModalsState;
|
|
144
144
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -35,7 +35,7 @@ export declare const selectComponentsByPath: (tabPath: string) => ((state: impor
|
|
|
35
35
|
selectedTab: "roles" | "privileges";
|
|
36
36
|
};
|
|
37
37
|
sharedDatasources: import("..").ISharedDatasourcesState;
|
|
38
|
-
|
|
38
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("..").ISavedConditionsState>;
|
|
39
39
|
webforms: import("..").IWebformEditorState;
|
|
40
40
|
modals: import("..").IModalsState;
|
|
41
41
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("..").ISharedCSSState>;
|
|
@@ -35,7 +35,7 @@ export declare const selectDatasourcesByPath: (tabPath: string) => ((state: impo
|
|
|
35
35
|
selectedTab: "roles" | "privileges";
|
|
36
36
|
};
|
|
37
37
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
38
|
-
|
|
38
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
39
39
|
webforms: import("../modules").IWebformEditorState;
|
|
40
40
|
modals: import("../modules").IModalsState;
|
|
41
41
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -83,7 +83,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
83
83
|
selectedTab: "roles" | "privileges";
|
|
84
84
|
};
|
|
85
85
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
86
|
-
|
|
86
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
87
87
|
webforms: import("../modules").IWebformEditorState;
|
|
88
88
|
modals: import("../modules").IModalsState;
|
|
89
89
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -119,7 +119,7 @@ export declare const selectDatasource: (id: string, namespace: string, tabPath:
|
|
|
119
119
|
selectedTab: "roles" | "privileges";
|
|
120
120
|
};
|
|
121
121
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
122
|
-
|
|
122
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
123
123
|
webforms: import("../modules").IWebformEditorState;
|
|
124
124
|
modals: import("../modules").IModalsState;
|
|
125
125
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -163,7 +163,7 @@ export declare const selectSharedDatasources: ((state: import("redux").EmptyObje
|
|
|
163
163
|
selectedTab: "roles" | "privileges";
|
|
164
164
|
};
|
|
165
165
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
166
|
-
|
|
166
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
167
167
|
webforms: import("../modules").IWebformEditorState;
|
|
168
168
|
modals: import("../modules").IModalsState;
|
|
169
169
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -201,7 +201,7 @@ export declare const selectSharedDatasources: ((state: import("redux").EmptyObje
|
|
|
201
201
|
selectedTab: "roles" | "privileges";
|
|
202
202
|
};
|
|
203
203
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
204
|
-
|
|
204
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
205
205
|
webforms: import("../modules").IWebformEditorState;
|
|
206
206
|
modals: import("../modules").IModalsState;
|
|
207
207
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -254,7 +254,7 @@ export declare const selectAllDatasourcesByPath: (tabPath: string, exclude?: 'pr
|
|
|
254
254
|
selectedTab: "roles" | "privileges";
|
|
255
255
|
};
|
|
256
256
|
sharedDatasources: import("../modules").ISharedDatasourcesState;
|
|
257
|
-
|
|
257
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import("../modules").ISavedConditionsState>;
|
|
258
258
|
webforms: import("../modules").IWebformEditorState;
|
|
259
259
|
modals: import("../modules").IModalsState;
|
|
260
260
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import("../modules").ISharedCSSState>;
|
|
@@ -32,7 +32,7 @@ export declare const selectDebuggerMeta: ((state: import("redux").EmptyObject &
|
|
|
32
32
|
selectedTab: "roles" | "privileges";
|
|
33
33
|
};
|
|
34
34
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
35
|
-
|
|
35
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
36
36
|
webforms: import('../modules').IWebformEditorState;
|
|
37
37
|
modals: import('../modules').IModalsState;
|
|
38
38
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -73,7 +73,7 @@ export declare const selectDebuggerData: ((state: import("redux").EmptyObject &
|
|
|
73
73
|
selectedTab: "roles" | "privileges";
|
|
74
74
|
};
|
|
75
75
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
76
|
-
|
|
76
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
77
77
|
webforms: import('../modules').IWebformEditorState;
|
|
78
78
|
modals: import('../modules').IModalsState;
|
|
79
79
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -114,7 +114,7 @@ export declare const selectDebuggerSessions: ((state: import("redux").EmptyObjec
|
|
|
114
114
|
selectedTab: "roles" | "privileges";
|
|
115
115
|
};
|
|
116
116
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
117
|
-
|
|
117
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
118
118
|
webforms: import('../modules').IWebformEditorState;
|
|
119
119
|
modals: import('../modules').IModalsState;
|
|
120
120
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -155,7 +155,7 @@ export declare const selectDebuggerSessionsCount: ((state: import("redux").Empty
|
|
|
155
155
|
selectedTab: "roles" | "privileges";
|
|
156
156
|
};
|
|
157
157
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
158
|
-
|
|
158
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
159
159
|
webforms: import('../modules').IWebformEditorState;
|
|
160
160
|
modals: import('../modules').IModalsState;
|
|
161
161
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -199,7 +199,7 @@ export declare const selectBreakpoints: (filePath: string, methodName: string) =
|
|
|
199
199
|
selectedTab: "roles" | "privileges";
|
|
200
200
|
};
|
|
201
201
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
202
|
-
|
|
202
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
203
203
|
webforms: import('../modules').IWebformEditorState;
|
|
204
204
|
modals: import('../modules').IModalsState;
|
|
205
205
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -240,7 +240,7 @@ export declare const selectDraftBreakpoints: (filePath: string, methodName: stri
|
|
|
240
240
|
selectedTab: "roles" | "privileges";
|
|
241
241
|
};
|
|
242
242
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
243
|
-
|
|
243
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
244
244
|
webforms: import('../modules').IWebformEditorState;
|
|
245
245
|
modals: import('../modules').IModalsState;
|
|
246
246
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -281,7 +281,7 @@ export declare const selectClassBreakpoints: (filePath: string) => ((state: impo
|
|
|
281
281
|
selectedTab: "roles" | "privileges";
|
|
282
282
|
};
|
|
283
283
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
284
|
-
|
|
284
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
285
285
|
webforms: import('../modules').IWebformEditorState;
|
|
286
286
|
modals: import('../modules').IModalsState;
|
|
287
287
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -322,7 +322,7 @@ export declare const selectDraftClassBreakpoints: (filePath: string) => ((state:
|
|
|
322
322
|
selectedTab: "roles" | "privileges";
|
|
323
323
|
};
|
|
324
324
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
325
|
-
|
|
325
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
326
326
|
webforms: import('../modules').IWebformEditorState;
|
|
327
327
|
modals: import('../modules').IModalsState;
|
|
328
328
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -363,7 +363,7 @@ export declare const selectHighlightedLines: (threadId: number) => ((state: impo
|
|
|
363
363
|
selectedTab: "roles" | "privileges";
|
|
364
364
|
};
|
|
365
365
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
366
|
-
|
|
366
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
367
367
|
webforms: import('../modules').IWebformEditorState;
|
|
368
368
|
modals: import('../modules').IModalsState;
|
|
369
369
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -410,7 +410,7 @@ export declare const selectActiveLine: (threadId: number) => ((state: import("re
|
|
|
410
410
|
selectedTab: "roles" | "privileges";
|
|
411
411
|
};
|
|
412
412
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
413
|
-
|
|
413
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
414
414
|
webforms: import('../modules').IWebformEditorState;
|
|
415
415
|
modals: import('../modules').IModalsState;
|
|
416
416
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -451,7 +451,7 @@ export declare const selectExpressions: (threadId: number) => ((state: import("r
|
|
|
451
451
|
selectedTab: "roles" | "privileges";
|
|
452
452
|
};
|
|
453
453
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
454
|
-
|
|
454
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
455
455
|
webforms: import('../modules').IWebformEditorState;
|
|
456
456
|
modals: import('../modules').IModalsState;
|
|
457
457
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -492,7 +492,7 @@ export declare const selectStoppedFromDebugSession: (threadId: number) => ((stat
|
|
|
492
492
|
selectedTab: "roles" | "privileges";
|
|
493
493
|
};
|
|
494
494
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
495
|
-
|
|
495
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
496
496
|
webforms: import('../modules').IWebformEditorState;
|
|
497
497
|
modals: import('../modules').IModalsState;
|
|
498
498
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -533,7 +533,7 @@ export declare const selectSourceByPath: (filePath: string, methodName: string)
|
|
|
533
533
|
selectedTab: "roles" | "privileges";
|
|
534
534
|
};
|
|
535
535
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
536
|
-
|
|
536
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
537
537
|
webforms: import('../modules').IWebformEditorState;
|
|
538
538
|
modals: import('../modules').IModalsState;
|
|
539
539
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -574,7 +574,7 @@ export declare const selectThreadIdByPath: (tabPath: string) => ((state: import(
|
|
|
574
574
|
selectedTab: "roles" | "privileges";
|
|
575
575
|
};
|
|
576
576
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
577
|
-
|
|
577
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
578
578
|
webforms: import('../modules').IWebformEditorState;
|
|
579
579
|
modals: import('../modules').IModalsState;
|
|
580
580
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -615,7 +615,7 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
|
|
|
615
615
|
selectedTab: "roles" | "privileges";
|
|
616
616
|
};
|
|
617
617
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
618
|
-
|
|
618
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
619
619
|
webforms: import('../modules').IWebformEditorState;
|
|
620
620
|
modals: import('../modules').IModalsState;
|
|
621
621
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -662,7 +662,7 @@ export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state
|
|
|
662
662
|
selectedTab: "roles" | "privileges";
|
|
663
663
|
};
|
|
664
664
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
665
|
-
|
|
665
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
666
666
|
webforms: import('../modules').IWebformEditorState;
|
|
667
667
|
modals: import('../modules').IModalsState;
|
|
668
668
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -703,7 +703,7 @@ export declare const selectDebuggerChannels: ((state: import("redux").EmptyObjec
|
|
|
703
703
|
selectedTab: "roles" | "privileges";
|
|
704
704
|
};
|
|
705
705
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
706
|
-
|
|
706
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
707
707
|
webforms: import('../modules').IWebformEditorState;
|
|
708
708
|
modals: import('../modules').IModalsState;
|
|
709
709
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -750,7 +750,7 @@ export declare const selectStackFrames: (threadId: number) => ((state: import("r
|
|
|
750
750
|
selectedTab: "roles" | "privileges";
|
|
751
751
|
};
|
|
752
752
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
753
|
-
|
|
753
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
754
754
|
webforms: import('../modules').IWebformEditorState;
|
|
755
755
|
modals: import('../modules').IModalsState;
|
|
756
756
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -791,7 +791,7 @@ export declare const selectCallChainVariables: (threadId: number) => ((state: im
|
|
|
791
791
|
selectedTab: "roles" | "privileges";
|
|
792
792
|
};
|
|
793
793
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
794
|
-
|
|
794
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
795
795
|
webforms: import('../modules').IWebformEditorState;
|
|
796
796
|
modals: import('../modules').IModalsState;
|
|
797
797
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -832,7 +832,7 @@ export declare const selectExpressionsVariables: (threadId: number) => ((state:
|
|
|
832
832
|
selectedTab: "roles" | "privileges";
|
|
833
833
|
};
|
|
834
834
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
835
|
-
|
|
835
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
836
836
|
webforms: import('../modules').IWebformEditorState;
|
|
837
837
|
modals: import('../modules').IModalsState;
|
|
838
838
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -873,7 +873,7 @@ export declare const selectClassOffset: (filePath: string, type?: keyof IDebugge
|
|
|
873
873
|
selectedTab: "roles" | "privileges";
|
|
874
874
|
};
|
|
875
875
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
876
|
-
|
|
876
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
877
877
|
webforms: import('../modules').IWebformEditorState;
|
|
878
878
|
modals: import('../modules').IModalsState;
|
|
879
879
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
@@ -914,7 +914,7 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
|
|
|
914
914
|
selectedTab: "roles" | "privileges";
|
|
915
915
|
};
|
|
916
916
|
sharedDatasources: import('../modules').ISharedDatasourcesState;
|
|
917
|
-
|
|
917
|
+
savedConditions: import("immer/dist/internal.js").WritableDraft<import('../modules').ISavedConditionsState>;
|
|
918
918
|
webforms: import('../modules').IWebformEditorState;
|
|
919
919
|
modals: import('../modules').IModalsState;
|
|
920
920
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|