@ws-ui/store 1.5.6 → 1.5.8

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.
Files changed (65) hide show
  1. package/dist/hooks/store.d.ts +0 -1
  2. package/dist/index.cjs.js +44 -44
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.es.js +12036 -10942
  5. package/dist/index.es.js.map +1 -1
  6. package/dist/modules/catalog/reducer.d.ts +3 -3
  7. package/dist/modules/catalog/thunks.d.ts +1 -1
  8. package/dist/modules/debugger/reducer.d.ts +22 -23
  9. package/dist/modules/debugger/thunks.d.ts +2 -3
  10. package/dist/modules/debugger/types.d.ts +0 -1
  11. package/dist/modules/debugger/utils.d.ts +0 -1
  12. package/dist/modules/explorer/reducer.d.ts +0 -1
  13. package/dist/modules/explorer/thunks.d.ts +38 -39
  14. package/dist/modules/explorer/types.d.ts +0 -1
  15. package/dist/modules/explorer/utils.d.ts +0 -1
  16. package/dist/modules/index.d.ts +0 -1
  17. package/dist/modules/modals/reducer.d.ts +1 -2
  18. package/dist/modules/modals/thunks.d.ts +1 -2
  19. package/dist/modules/modals/types.d.ts +0 -1
  20. package/dist/modules/model/helpers.d.ts +1 -2
  21. package/dist/modules/model/reducer.d.ts +0 -1
  22. package/dist/modules/model/selectors.d.ts +0 -1
  23. package/dist/modules/model/subjects.d.ts +1 -2
  24. package/dist/modules/model/thunks.d.ts +6 -7
  25. package/dist/modules/model/types.d.ts +0 -1
  26. package/dist/modules/model/utils.d.ts +3 -4
  27. package/dist/modules/roles/adapter.d.ts +1 -2
  28. package/dist/modules/roles/reducer.d.ts +7 -17
  29. package/dist/modules/roles/thunks.d.ts +3 -4
  30. package/dist/modules/roles/types.d.ts +0 -1
  31. package/dist/modules/root/reducer.d.ts +11 -21
  32. package/dist/modules/root/thunks.d.ts +25 -31
  33. package/dist/modules/root/types.d.ts +0 -1
  34. package/dist/modules/settings/reducer.d.ts +0 -1
  35. package/dist/modules/settings/thunks.d.ts +2 -3
  36. package/dist/modules/settings/types.d.ts +0 -1
  37. package/dist/modules/settings/utils.d.ts +0 -1
  38. package/dist/modules/shared-conditions/reducer.d.ts +0 -1
  39. package/dist/modules/shared-conditions/thunks.d.ts +1 -2
  40. package/dist/modules/shared-conditions/utils.d.ts +0 -1
  41. package/dist/modules/shared-css/reducer.d.ts +0 -1
  42. package/dist/modules/shared-css/thunks.d.ts +1 -2
  43. package/dist/modules/shared-datasources/reducer.d.ts +0 -1
  44. package/dist/modules/shared-datasources/thunks.d.ts +6 -7
  45. package/dist/modules/shared-datasources/utils.d.ts +0 -1
  46. package/dist/modules/tabs/selectors.d.ts +3 -3
  47. package/dist/modules/tasks/reducer.d.ts +0 -1
  48. package/dist/modules/webforms/datasources.adapter.d.ts +1 -2
  49. package/dist/modules/webforms/reducer.d.ts +2 -2
  50. package/dist/modules/webforms/thunks.d.ts +15 -107
  51. package/dist/modules/webforms/types.d.ts +0 -1
  52. package/dist/provider.d.ts +0 -1
  53. package/dist/selectors/catalog.d.ts +0 -1
  54. package/dist/selectors/components.d.ts +8 -8
  55. package/dist/selectors/datasources.d.ts +1 -2
  56. package/dist/selectors/debugger.d.ts +12 -13
  57. package/dist/selectors/explorer.d.ts +21 -22
  58. package/dist/selectors/states.d.ts +3 -4
  59. package/dist/selectors/styles.d.ts +5 -6
  60. package/dist/selectors/tabs.d.ts +6 -6
  61. package/dist/selectors/webforms.d.ts +0 -1
  62. package/dist/store.d.ts +0 -1
  63. package/dist/utils.d.ts +0 -1
  64. package/package.json +15 -22
  65. package/dist/package.json +0 -61
@@ -2,10 +2,9 @@ import { PayloadAction } from '@reduxjs/toolkit';
2
2
  import { IComponentTemplate, OrNull } from '@ws-ui/shared';
3
3
  import { AppState } from '..';
4
4
  import { ITemplatedGroup, ITemplatedGroupItem } from './types';
5
-
6
5
  export declare const fetchTemplates: import('@reduxjs/toolkit').AsyncThunk<ITemplatedGroup[], void, {
7
6
  state: AppState;
8
- dispatch?: import('redux').Dispatch<import('redux').AnyAction> | undefined;
7
+ dispatch?: import('redux').Dispatch | undefined;
9
8
  extra?: unknown;
10
9
  rejectValue?: unknown;
11
10
  serializedErrorType?: unknown;
@@ -17,7 +16,7 @@ export declare const fetchTemplate: import('@reduxjs/toolkit').AsyncThunk<ITempl
17
16
  name: string;
18
17
  }, {
19
18
  state: AppState;
20
- dispatch?: import('redux').Dispatch<import('redux').AnyAction> | undefined;
19
+ dispatch?: import('redux').Dispatch | undefined;
21
20
  extra?: unknown;
22
21
  rejectValue?: unknown;
23
22
  serializedErrorType?: unknown;
@@ -27,7 +26,7 @@ export declare const fetchTemplate: import('@reduxjs/toolkit').AsyncThunk<ITempl
27
26
  }>;
28
27
  export declare const fetchCraftedComponents: import('@reduxjs/toolkit').AsyncThunk<any, void, {
29
28
  state?: unknown;
30
- dispatch?: import('redux').Dispatch<import('redux').AnyAction> | undefined;
29
+ dispatch?: import('redux').Dispatch;
31
30
  extra?: unknown;
32
31
  rejectValue?: unknown;
33
32
  serializedErrorType?: unknown;
@@ -37,7 +36,7 @@ export declare const fetchCraftedComponents: import('@reduxjs/toolkit').AsyncThu
37
36
  }>;
38
37
  export declare const addCraftedComponent: import('@reduxjs/toolkit').AsyncThunk<undefined, IComponentTemplate, {
39
38
  state?: unknown;
40
- dispatch?: import('redux').Dispatch<import('redux').AnyAction> | undefined;
39
+ dispatch?: import('redux').Dispatch;
41
40
  extra?: unknown;
42
41
  rejectValue?: unknown;
43
42
  serializedErrorType?: unknown;
@@ -50,7 +49,7 @@ export declare const editCraftedComponent: import('@reduxjs/toolkit').AsyncThunk
50
49
  changes: Partial<IComponentTemplate>;
51
50
  }, {
52
51
  state?: unknown;
53
- dispatch?: import('redux').Dispatch<import('redux').AnyAction> | undefined;
52
+ dispatch?: import('redux').Dispatch;
54
53
  extra?: unknown;
55
54
  rejectValue?: unknown;
56
55
  serializedErrorType?: unknown;
@@ -60,7 +59,7 @@ export declare const editCraftedComponent: import('@reduxjs/toolkit').AsyncThunk
60
59
  }>;
61
60
  export declare const removeCraftedComponent: import('@reduxjs/toolkit').AsyncThunk<undefined, string, {
62
61
  state?: unknown;
63
- dispatch?: import('redux').Dispatch<import('redux').AnyAction> | undefined;
62
+ dispatch?: import('redux').Dispatch;
64
63
  extra?: unknown;
65
64
  rejectValue?: unknown;
66
65
  serializedErrorType?: unknown;
@@ -78,30 +77,8 @@ type TAddDatasource = {
78
77
  path: string;
79
78
  };
80
79
  export declare const addDatasource: import('@reduxjs/toolkit').AsyncThunk<TDatasourcesReturnType | undefined, TAddDatasource, {
81
- state: import('redux').CombinedState<{
82
- root: import('..').IRootState;
83
- explorer: import('..').ITreeItem[];
84
- debugger: import('..').IDebuggerState;
85
- settings: import('..').ISettingsState;
86
- catalog: {
87
- state: "loading";
88
- } | {
89
- state: "loaded";
90
- model: datasources.IEnhancedCatalog;
91
- } | {
92
- state: "error";
93
- error: string;
94
- };
95
- roles: import('..').IRolesState;
96
- sharedDatasources: import('..').ISharedDatasourcesState;
97
- savedConditions: import('..').ISavedConditionsState;
98
- webforms: import('./types').IWebformEditorState;
99
- modals: import('..').IModalsState;
100
- sharedCSS: import('..').ISharedCSSState;
101
- model: import('..').IModelState;
102
- tasks: import('@ws-ui/shared').ISingleTask[];
103
- }>;
104
- dispatch: import('redux').Dispatch<import('redux').AnyAction>;
80
+ state: AppState;
81
+ dispatch: import('redux').Dispatch;
105
82
  extra: unknown;
106
83
  rejectValue: string;
107
84
  serializedErrorType: unknown;
@@ -126,30 +103,8 @@ type TEditDatasourceProperties = {
126
103
  };
127
104
  type TEditDatasource = TEditDatasourceProperty | TEditDatasourceProperties;
128
105
  export declare const editDatasource: import('@reduxjs/toolkit').AsyncThunk<TDatasourcesReturnType | undefined, TEditDatasource, {
129
- state: import('redux').CombinedState<{
130
- root: import('..').IRootState;
131
- explorer: import('..').ITreeItem[];
132
- debugger: import('..').IDebuggerState;
133
- settings: import('..').ISettingsState;
134
- catalog: {
135
- state: "loading";
136
- } | {
137
- state: "loaded";
138
- model: datasources.IEnhancedCatalog;
139
- } | {
140
- state: "error";
141
- error: string;
142
- };
143
- roles: import('..').IRolesState;
144
- sharedDatasources: import('..').ISharedDatasourcesState;
145
- savedConditions: import('..').ISavedConditionsState;
146
- webforms: import('./types').IWebformEditorState;
147
- modals: import('..').IModalsState;
148
- sharedCSS: import('..').ISharedCSSState;
149
- model: import('..').IModelState;
150
- tasks: import('@ws-ui/shared').ISingleTask[];
151
- }>;
152
- dispatch: import('redux').Dispatch<import('redux').AnyAction>;
106
+ state: AppState;
107
+ dispatch: import('redux').Dispatch;
153
108
  extra: unknown;
154
109
  rejectValue: string;
155
110
  serializedErrorType: unknown;
@@ -157,10 +112,7 @@ export declare const editDatasource: import('@reduxjs/toolkit').AsyncThunk<TData
157
112
  fulfilledMeta: unknown;
158
113
  rejectedMeta: unknown;
159
114
  }>;
160
- export declare const isRenameDatasource: (action: PayloadAction<any>) => action is {
161
- payload: TRenameDatasource;
162
- type: string;
163
- };
115
+ export declare const isRenameDatasource: (action: PayloadAction<any>) => action is PayloadAction<TRenameDatasource>;
164
116
  type TRenameDatasource = {
165
117
  id: string;
166
118
  path: string;
@@ -169,30 +121,8 @@ type TRenameDatasource = {
169
121
  updateRefs: boolean;
170
122
  };
171
123
  export declare const renameDatasource: import('@reduxjs/toolkit').AsyncThunk<OrNull<TDatasourcesReturnType>, TRenameDatasource, {
172
- state: import('redux').CombinedState<{
173
- root: import('..').IRootState;
174
- explorer: import('..').ITreeItem[];
175
- debugger: import('..').IDebuggerState;
176
- settings: import('..').ISettingsState;
177
- catalog: {
178
- state: "loading";
179
- } | {
180
- state: "loaded";
181
- model: datasources.IEnhancedCatalog;
182
- } | {
183
- state: "error";
184
- error: string;
185
- };
186
- roles: import('..').IRolesState;
187
- sharedDatasources: import('..').ISharedDatasourcesState;
188
- savedConditions: import('..').ISavedConditionsState;
189
- webforms: import('./types').IWebformEditorState;
190
- modals: import('..').IModalsState;
191
- sharedCSS: import('..').ISharedCSSState;
192
- model: import('..').IModelState;
193
- tasks: import('@ws-ui/shared').ISingleTask[];
194
- }>;
195
- dispatch: import('redux').Dispatch<import('redux').AnyAction>;
124
+ state: AppState;
125
+ dispatch: import('redux').Dispatch;
196
126
  extra: unknown;
197
127
  rejectValue: string;
198
128
  serializedErrorType: unknown;
@@ -206,30 +136,8 @@ type TDeleteDatasource = {
206
136
  namespace: string;
207
137
  };
208
138
  export declare const deleteDatasource: import('@reduxjs/toolkit').AsyncThunk<OrNull<TDatasourcesReturnType>, TDeleteDatasource, {
209
- state: import('redux').CombinedState<{
210
- root: import('..').IRootState;
211
- explorer: import('..').ITreeItem[];
212
- debugger: import('..').IDebuggerState;
213
- settings: import('..').ISettingsState;
214
- catalog: {
215
- state: "loading";
216
- } | {
217
- state: "loaded";
218
- model: datasources.IEnhancedCatalog;
219
- } | {
220
- state: "error";
221
- error: string;
222
- };
223
- roles: import('..').IRolesState;
224
- sharedDatasources: import('..').ISharedDatasourcesState;
225
- savedConditions: import('..').ISavedConditionsState;
226
- webforms: import('./types').IWebformEditorState;
227
- modals: import('..').IModalsState;
228
- sharedCSS: import('..').ISharedCSSState;
229
- model: import('..').IModelState;
230
- tasks: import('@ws-ui/shared').ISingleTask[];
231
- }>;
232
- dispatch: import('redux').Dispatch<import('redux').AnyAction>;
139
+ state: AppState;
140
+ dispatch: import('redux').Dispatch;
233
141
  extra: unknown;
234
142
  rejectValue: string;
235
143
  serializedErrorType: unknown;
@@ -1,6 +1,5 @@
1
1
  import { PayloadAction } from '@reduxjs/toolkit';
2
2
  import { IComponentTemplate, TDatasourceTheme } from '@ws-ui/shared';
3
-
4
3
  export type TInspectorType = 'css' | 'datasource';
5
4
  export interface ITemplatedGroupItem {
6
5
  name: string;
@@ -1,6 +1,5 @@
1
1
  import { Store } from '@reduxjs/toolkit';
2
2
  import { FC } from 'react';
3
-
4
3
  export declare const ReduxProvider: FC<{
5
4
  store: Store;
6
5
  }>;
@@ -1,4 +1,3 @@
1
- /// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
2
1
  export declare const selectCatalog: ((state: import('redux').EmptyObject & {
3
2
  root: import('../modules').IRootState;
4
3
  explorer: import('../modules').ITreeItem[];
@@ -26,27 +26,27 @@ export declare const selectComponentsByPath: (tabPath: string) => ((state: impor
26
26
  model: import('..').IModelState;
27
27
  tasks: import('@ws-ui/shared').ISingleTask[];
28
28
  }) => {
29
- parent: string | null;
29
+ parent: import('@ws-ui/craftjs-core').NodeId | null;
30
30
  hidden: boolean;
31
31
  props: any;
32
32
  displayName: string;
33
33
  isCanvas: boolean;
34
- linkedNodes: Record<string, string>;
35
- nodes: string[];
34
+ linkedNodes: Record<string, import('@ws-ui/craftjs-core').NodeId>;
35
+ nodes: import('@ws-ui/craftjs-core').NodeId[];
36
36
  custom?: any;
37
- _childCanvas?: Record<string, string> | undefined;
37
+ _childCanvas?: Record<string, import('@ws-ui/craftjs-core').NodeId> | undefined;
38
38
  type: import('@ws-ui/craftjs-core').ReduceCompType;
39
39
  id: string;
40
40
  }[]) & import('reselect').OutputSelectorFields<(args_0: import('..').IRootState) => {
41
- parent: string | null;
41
+ parent: import('@ws-ui/craftjs-core').NodeId | null;
42
42
  hidden: boolean;
43
43
  props: any;
44
44
  displayName: string;
45
45
  isCanvas: boolean;
46
- linkedNodes: Record<string, string>;
47
- nodes: string[];
46
+ linkedNodes: Record<string, import('@ws-ui/craftjs-core').NodeId>;
47
+ nodes: import('@ws-ui/craftjs-core').NodeId[];
48
48
  custom?: any;
49
- _childCanvas?: Record<string, string> | undefined;
49
+ _childCanvas?: Record<string, import('@ws-ui/craftjs-core').NodeId> | undefined;
50
50
  type: import('@ws-ui/craftjs-core').ReduceCompType;
51
51
  id: string;
52
52
  }[], {
@@ -1,4 +1,3 @@
1
- /// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
2
1
  /**
3
2
  * Returns the list of declared datasources in the current tab.
4
3
  * @param tabPath the current tab path.
@@ -202,7 +201,7 @@ export type TDatasourcesNotIn = {
202
201
  * @param tabPath the current tab path.
203
202
  * @returns datasource or an empty array if not found.
204
203
  */
205
- export declare const selectAllDatasourcesByPath: (tabPath: string, exclude?: 'private' | 'shared' | 'user', filter?: TDatasourcesFilter | null, notIn?: TDatasourcesNotIn) => ((state: import('redux').EmptyObject & {
204
+ export declare const selectAllDatasourcesByPath: (tabPath: string, exclude?: "private" | "shared" | "user", filter?: TDatasourcesFilter | null, notIn?: TDatasourcesNotIn) => ((state: import('redux').EmptyObject & {
206
205
  root: import('../modules').IRootState;
207
206
  explorer: import('../modules').ITreeItem[];
208
207
  debugger: import('../modules').IDebuggerState;
@@ -1,6 +1,5 @@
1
- import { CommonDebuggerVariablesKey, IBreakpoint, IBreakpointsByFile, IDebuggerData, IDebuggerSession, IEnhancedBreakpoint } from '../modules/debugger/types';
2
1
  import { FileFolderType, ITab } from '@ws-ui/shared';
3
-
2
+ import { CommonDebuggerVariablesKey, IBreakpoint, IBreakpointsByFile, IDebuggerData, IDebuggerSession, IEnhancedBreakpoint } from '../modules/debugger/types';
4
3
  export declare const selectDebuggerMeta: ((state: import('redux').EmptyObject & {
5
4
  root: import('../modules').IRootState;
6
5
  explorer: import('../modules').ITreeItem[];
@@ -352,10 +351,10 @@ export declare const selectHighlightedLines: (threadId: number) => ((state: impo
352
351
  tasks: import('@ws-ui/shared').ISingleTask[];
353
352
  }) => {
354
353
  start: number;
355
- end?: number | undefined;
354
+ end?: number;
356
355
  } | null) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => {
357
356
  start: number;
358
- end?: number | undefined;
357
+ end?: number;
359
358
  } | null, {
360
359
  clearCache: () => void;
361
360
  }> & {
@@ -519,11 +518,11 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
519
518
  model: import('../modules').IModelState;
520
519
  tasks: import('@ws-ui/shared').ISingleTask[];
521
520
  }) => (import("vscode-debugprotocol").DebugProtocol.Source & {
522
- codeDescriptorInfo?: import('@ws-ui/shared').ICodeDescriptor | undefined;
523
- content?: string | undefined;
521
+ codeDescriptorInfo?: import('@ws-ui/shared').ICodeDescriptor;
522
+ content?: string;
524
523
  }) | undefined) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => (import("vscode-debugprotocol").DebugProtocol.Source & {
525
- codeDescriptorInfo?: import('@ws-ui/shared').ICodeDescriptor | undefined;
526
- content?: string | undefined;
524
+ codeDescriptorInfo?: import('@ws-ui/shared').ICodeDescriptor;
525
+ content?: string;
527
526
  }) | undefined, {
528
527
  clearCache: () => void;
529
528
  }> & {
@@ -697,7 +696,7 @@ export declare const selectExpressionsVariables: (threadId: number) => ((state:
697
696
  }> & {
698
697
  clearCache: () => void;
699
698
  };
700
- export declare const selectClassOffset: (filePath: string, type?: keyof IDebuggerData['breakpoints']) => ((state: import('redux').EmptyObject & {
699
+ export declare const selectClassOffset: (filePath: string, type?: keyof IDebuggerData["breakpoints"]) => ((state: import('redux').EmptyObject & {
701
700
  root: import('../modules').IRootState;
702
701
  explorer: import('../modules').ITreeItem[];
703
702
  debugger: import('../modules').IDebuggerState;
@@ -753,7 +752,7 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
753
752
  formula: string;
754
753
  formulaError_begin: number;
755
754
  formulaError_end: number;
756
- formulaError_indent?: number | undefined;
755
+ formulaError_indent?: number;
757
756
  errorIdentifier: string;
758
757
  }[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => {
759
758
  locationLine: number;
@@ -762,7 +761,7 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
762
761
  formula: string;
763
762
  formulaError_begin: number;
764
763
  formulaError_end: number;
765
- formulaError_indent?: number | undefined;
764
+ formulaError_indent?: number;
766
765
  errorIdentifier: string;
767
766
  }[], {
768
767
  clearCache: () => void;
@@ -794,7 +793,7 @@ export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
794
793
  }) => ITab<any, Partial<{
795
794
  initialLineInfo: {
796
795
  line: number;
797
- offset?: number | undefined;
796
+ offset?: number;
798
797
  lastModification: number;
799
798
  };
800
799
  initialSelectionInfo: {
@@ -810,7 +809,7 @@ export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
810
809
  }>>[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => ITab<any, Partial<{
811
810
  initialLineInfo: {
812
811
  line: number;
813
- offset?: number | undefined;
812
+ offset?: number;
814
813
  lastModification: number;
815
814
  };
816
815
  initialSelectionInfo: {
@@ -1,5 +1,4 @@
1
1
  import { ITab } from '@ws-ui/shared';
2
-
3
2
  export declare const selectRoot: ((state: import('redux').EmptyObject & {
4
3
  root: import('../modules').IRootState;
5
4
  explorer: import('../modules').ITreeItem[];
@@ -52,7 +51,7 @@ export declare const selectTabs: ((state: import('redux').EmptyObject & {
52
51
  }) => ITab<any, Partial<{
53
52
  initialLineInfo: {
54
53
  line: number;
55
- offset?: number | undefined;
54
+ offset?: number;
56
55
  lastModification: number;
57
56
  };
58
57
  initialSelectionInfo: {
@@ -68,7 +67,7 @@ export declare const selectTabs: ((state: import('redux').EmptyObject & {
68
67
  }>>[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
69
68
  initialLineInfo: {
70
69
  line: number;
71
- offset?: number | undefined;
70
+ offset?: number;
72
71
  lastModification: number;
73
72
  };
74
73
  initialSelectionInfo: {
@@ -138,7 +137,7 @@ export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
138
137
  }) => ITab<any, Partial<{
139
138
  initialLineInfo: {
140
139
  line: number;
141
- offset?: number | undefined;
140
+ offset?: number;
142
141
  lastModification: number;
143
142
  };
144
143
  initialSelectionInfo: {
@@ -154,7 +153,7 @@ export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
154
153
  }>>[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
155
154
  initialLineInfo: {
156
155
  line: number;
157
- offset?: number | undefined;
156
+ offset?: number;
158
157
  lastModification: number;
159
158
  };
160
159
  initialSelectionInfo: {
@@ -197,7 +196,7 @@ export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
197
196
  }) => ITab<any, Partial<{
198
197
  initialLineInfo: {
199
198
  line: number;
200
- offset?: number | undefined;
199
+ offset?: number;
201
200
  lastModification: number;
202
201
  };
203
202
  initialSelectionInfo: {
@@ -213,7 +212,7 @@ export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
213
212
  }>> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
214
213
  initialLineInfo: {
215
214
  line: number;
216
- offset?: number | undefined;
215
+ offset?: number;
217
216
  lastModification: number;
218
217
  };
219
218
  initialSelectionInfo: {
@@ -256,7 +255,7 @@ export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject &
256
255
  }) => ITab<any, Partial<{
257
256
  initialLineInfo: {
258
257
  line: number;
259
- offset?: number | undefined;
258
+ offset?: number;
260
259
  lastModification: number;
261
260
  };
262
261
  initialSelectionInfo: {
@@ -272,7 +271,7 @@ export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject &
272
271
  }>> | null) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
273
272
  initialLineInfo: {
274
273
  line: number;
275
- offset?: number | undefined;
274
+ offset?: number;
276
275
  lastModification: number;
277
276
  };
278
277
  initialSelectionInfo: {
@@ -315,7 +314,7 @@ export declare const selectPreviewedWebformsPaths: ((state: import('redux').Empt
315
314
  }) => string[]) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
316
315
  initialLineInfo: {
317
316
  line: number;
318
- offset?: number | undefined;
317
+ offset?: number;
319
318
  lastModification: number;
320
319
  };
321
320
  initialSelectionInfo: {
@@ -358,7 +357,7 @@ export declare const selectHasTabs: ((state: import('redux').EmptyObject & {
358
357
  }) => boolean) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
359
358
  initialLineInfo: {
360
359
  line: number;
361
- offset?: number | undefined;
360
+ offset?: number;
362
361
  lastModification: number;
363
362
  };
364
363
  initialSelectionInfo: {
@@ -401,7 +400,7 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import('redu
401
400
  }) => ITab<any, Partial<{
402
401
  initialLineInfo: {
403
402
  line: number;
404
- offset?: number | undefined;
403
+ offset?: number;
405
404
  lastModification: number;
406
405
  };
407
406
  initialSelectionInfo: {
@@ -417,7 +416,7 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import('redu
417
416
  }>> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
418
417
  initialLineInfo: {
419
418
  line: number;
420
- offset?: number | undefined;
419
+ offset?: number;
421
420
  lastModification: number;
422
421
  };
423
422
  initialSelectionInfo: {
@@ -460,7 +459,7 @@ export declare const selectTabNameByPath: (tabPath: string) => ((state: import('
460
459
  }) => string | undefined) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
461
460
  initialLineInfo: {
462
461
  line: number;
463
- offset?: number | undefined;
462
+ offset?: number;
464
463
  lastModification: number;
465
464
  };
466
465
  initialSelectionInfo: {
@@ -503,7 +502,7 @@ export declare const selectContentByPath: (tabPath: string, contentPath?: string
503
502
  }) => any) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
504
503
  initialLineInfo: {
505
504
  line: number;
506
- offset?: number | undefined;
505
+ offset?: number;
507
506
  lastModification: number;
508
507
  };
509
508
  initialSelectionInfo: {
@@ -546,7 +545,7 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
546
545
  }) => Partial<{
547
546
  initialLineInfo: {
548
547
  line: number;
549
- offset?: number | undefined;
548
+ offset?: number;
550
549
  lastModification: number;
551
550
  };
552
551
  initialSelectionInfo: {
@@ -562,7 +561,7 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
562
561
  }> | undefined) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
563
562
  initialLineInfo: {
564
563
  line: number;
565
- offset?: number | undefined;
564
+ offset?: number;
566
565
  lastModification: number;
567
566
  };
568
567
  initialSelectionInfo: {
@@ -578,7 +577,7 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
578
577
  }>> | undefined) => Partial<{
579
578
  initialLineInfo: {
580
579
  line: number;
581
- offset?: number | undefined;
580
+ offset?: number;
582
581
  lastModification: number;
583
582
  };
584
583
  initialSelectionInfo: {
@@ -648,7 +647,7 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
648
647
  }) => ITab<any, Partial<{
649
648
  initialLineInfo: {
650
649
  line: number;
651
- offset?: number | undefined;
650
+ offset?: number;
652
651
  lastModification: number;
653
652
  };
654
653
  initialSelectionInfo: {
@@ -664,7 +663,7 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
664
663
  }>>[]) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
665
664
  initialLineInfo: {
666
665
  line: number;
667
- offset?: number | undefined;
666
+ offset?: number;
668
667
  lastModification: number;
669
668
  };
670
669
  initialSelectionInfo: {
@@ -680,7 +679,7 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
680
679
  }>>[]) => ITab<any, Partial<{
681
680
  initialLineInfo: {
682
681
  line: number;
683
- offset?: number | undefined;
682
+ offset?: number;
684
683
  lastModification: number;
685
684
  };
686
685
  initialSelectionInfo: {
@@ -723,7 +722,7 @@ export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObje
723
722
  }) => number) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
724
723
  initialLineInfo: {
725
724
  line: number;
726
- offset?: number | undefined;
725
+ offset?: number;
727
726
  lastModification: number;
728
727
  };
729
728
  initialSelectionInfo: {
@@ -1,5 +1,4 @@
1
1
  import { WebformState } from '@ws-ui/shared';
2
-
3
2
  export declare const ROOT_WEBFORM_STATE: {
4
3
  label: string;
5
4
  id: string;
@@ -36,7 +35,7 @@ export declare const selectWebformStatesByPath: (tabPath: string, exclude?: stri
36
35
  }) => WebformState[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
37
36
  initialLineInfo: {
38
37
  line: number;
39
- offset?: number | undefined;
38
+ offset?: number;
40
39
  lastModification: number;
41
40
  };
42
41
  initialSelectionInfo: {
@@ -117,7 +116,7 @@ export declare const selectDefaultWebformStatesByPath: (tabPath: string) => ((st
117
116
  }) => string[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
118
117
  initialLineInfo: {
119
118
  line: number;
120
- offset?: number | undefined;
119
+ offset?: number;
121
120
  lastModification: number;
122
121
  };
123
122
  initialSelectionInfo: {
@@ -160,7 +159,7 @@ export declare const selectCurrentWebformStateByPath: (tabPath: string) => ((sta
160
159
  }) => WebformState) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
161
160
  initialLineInfo: {
162
161
  line: number;
163
- offset?: number | undefined;
162
+ offset?: number;
164
163
  lastModification: number;
165
164
  };
166
165
  initialSelectionInfo: {
@@ -1,5 +1,4 @@
1
1
  import { EWebFormStyleClassScope, IWebFormStyleClass, ITab } from '@ws-ui/shared';
2
-
3
2
  export declare const THEME_CLASSES: string[];
4
3
  export declare const selectWebformStylesByPath: (path: string) => ((state: import('redux').EmptyObject & {
5
4
  root: import('../modules').IRootState;
@@ -26,7 +25,7 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
26
25
  }) => IWebFormStyleClass[]) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
27
26
  initialLineInfo: {
28
27
  line: number;
29
- offset?: number | undefined;
28
+ offset?: number;
30
29
  lastModification: number;
31
30
  };
32
31
  initialSelectionInfo: {
@@ -128,8 +127,8 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
128
127
  parentId: string | null;
129
128
  children?: {
130
129
  [key: string]: string;
131
- } | undefined;
132
- origin?: string | undefined;
130
+ };
131
+ origin?: string;
133
132
  }[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
134
133
  root: import('../modules').IRootState;
135
134
  explorer: import('../modules').ITreeItem[];
@@ -160,8 +159,8 @@ export declare const selectSharedCSS: ((state: import('redux').EmptyObject & {
160
159
  parentId: string | null;
161
160
  children?: {
162
161
  [key: string]: string;
163
- } | undefined;
164
- origin?: string | undefined;
162
+ };
163
+ origin?: string;
165
164
  }[], {
166
165
  clearCache: () => void;
167
166
  }> & {
@@ -32,7 +32,7 @@ export declare const selectFlagsByPath: (path: string) => ((state: import('redux
32
32
  }> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
33
33
  initialLineInfo: {
34
34
  line: number;
35
- offset?: number | undefined;
35
+ offset?: number;
36
36
  lastModification: number;
37
37
  };
38
38
  initialSelectionInfo: {
@@ -88,7 +88,7 @@ export declare const selectHistoryByPath: (path: string) => ((state: import('red
88
88
  } | undefined) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
89
89
  initialLineInfo: {
90
90
  line: number;
91
- offset?: number | undefined;
91
+ offset?: number;
92
92
  lastModification: number;
93
93
  };
94
94
  initialSelectionInfo: {
@@ -138,7 +138,7 @@ export declare const selectActiveTabHistoryActions: ((state: import('redux').Emp
138
138
  }) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
139
139
  initialLineInfo: {
140
140
  line: number;
141
- offset?: number | undefined;
141
+ offset?: number;
142
142
  lastModification: number;
143
143
  };
144
144
  initialSelectionInfo: {
@@ -184,7 +184,7 @@ export declare const selectAllTabsByType: (type: string) => ((state: import('red
184
184
  }) => import('@ws-ui/shared').ITab<any, Partial<{
185
185
  initialLineInfo: {
186
186
  line: number;
187
- offset?: number | undefined;
187
+ offset?: number;
188
188
  lastModification: number;
189
189
  };
190
190
  initialSelectionInfo: {
@@ -200,7 +200,7 @@ export declare const selectAllTabsByType: (type: string) => ((state: import('red
200
200
  }>>[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITab<any, Partial<{
201
201
  initialLineInfo: {
202
202
  line: number;
203
- offset?: number | undefined;
203
+ offset?: number;
204
204
  lastModification: number;
205
205
  };
206
206
  initialSelectionInfo: {
@@ -216,7 +216,7 @@ export declare const selectAllTabsByType: (type: string) => ((state: import('red
216
216
  }>>[]) => import('@ws-ui/shared').ITab<any, Partial<{
217
217
  initialLineInfo: {
218
218
  line: number;
219
- offset?: number | undefined;
219
+ offset?: number;
220
220
  lastModification: number;
221
221
  };
222
222
  initialSelectionInfo: {
@@ -1,5 +1,4 @@
1
1
  import { TInspectorType } from '../modules/webforms/types';
2
-
3
2
  export declare const selectWebforms: ((state: import('redux').EmptyObject & {
4
3
  root: import('../modules').IRootState;
5
4
  explorer: import('../modules').ITreeItem[];