@ws-ui/store 1.11.12 → 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/index.cjs.js +22 -22
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1347 -1329
- package/dist/index.es.js.map +1 -1
- package/dist/modules/explorer/thunks.d.ts +8 -0
- package/dist/modules/model/thunks.d.ts +4 -0
- package/dist/modules/root/reducer.d.ts +8 -0
- package/dist/modules/root/thunks.d.ts +6 -0
- package/dist/modules/settings/thunks.d.ts +6 -0
- package/dist/selectors/debugger.d.ts +4 -0
- package/dist/selectors/explorer.d.ts +42 -0
- package/dist/selectors/states.d.ts +6 -0
- package/dist/selectors/styles.d.ts +2 -0
- package/dist/selectors/tabs.d.ts +14 -0
- package/package.json +3 -3
|
@@ -103,6 +103,8 @@ export declare const tryEditMethod: import('@reduxjs/toolkit').AsyncThunk<ITab<a
|
|
|
103
103
|
editor: import('@ws-ui/shared').IEditor;
|
|
104
104
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
105
105
|
kind: string;
|
|
106
|
+
eventReportView: "full" | "compact";
|
|
107
|
+
eventReportFilters: string[];
|
|
106
108
|
}>>, {
|
|
107
109
|
method: catalog.IMethod;
|
|
108
110
|
}, {
|
|
@@ -302,6 +304,8 @@ export declare const openFile: import('@reduxjs/toolkit').AsyncThunk<ITab<any, P
|
|
|
302
304
|
editor: import('@ws-ui/shared').IEditor;
|
|
303
305
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
304
306
|
kind: string;
|
|
307
|
+
eventReportView: "full" | "compact";
|
|
308
|
+
eventReportFilters: string[];
|
|
305
309
|
}>> | null, IOpenFilePayload, {
|
|
306
310
|
state: AppState;
|
|
307
311
|
extra?: unknown;
|
|
@@ -328,6 +332,8 @@ export declare const openFileAtLine: import('@reduxjs/toolkit').AsyncThunk<ITab<
|
|
|
328
332
|
editor: import('@ws-ui/shared').IEditor;
|
|
329
333
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
330
334
|
kind: string;
|
|
335
|
+
eventReportView: "full" | "compact";
|
|
336
|
+
eventReportFilters: string[];
|
|
331
337
|
}>>, {
|
|
332
338
|
file: IFileInfo;
|
|
333
339
|
line: number;
|
|
@@ -380,6 +386,8 @@ export declare const openFileAtSelection: import('@reduxjs/toolkit').AsyncThunk<
|
|
|
380
386
|
editor: import('@ws-ui/shared').IEditor;
|
|
381
387
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
382
388
|
kind: string;
|
|
389
|
+
eventReportView: "full" | "compact";
|
|
390
|
+
eventReportFilters: string[];
|
|
383
391
|
}>>, IOpenFileAtSelectionPayload, {
|
|
384
392
|
state: AppState;
|
|
385
393
|
extra?: unknown;
|
|
@@ -36,6 +36,8 @@ export declare const saveModel: import('@reduxjs/toolkit').AsyncThunk<{
|
|
|
36
36
|
editor: import('@ws-ui/shared').IEditor;
|
|
37
37
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
38
38
|
kind: string;
|
|
39
|
+
eventReportView: "full" | "compact";
|
|
40
|
+
eventReportFilters: string[];
|
|
39
41
|
}>>, {
|
|
40
42
|
state: AppState;
|
|
41
43
|
rejectValue: string;
|
|
@@ -62,6 +64,8 @@ export declare const openModel: import('@reduxjs/toolkit').AsyncThunk<void | ITa
|
|
|
62
64
|
editor: import('@ws-ui/shared').IEditor;
|
|
63
65
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
64
66
|
kind: string;
|
|
67
|
+
eventReportView: "full" | "compact";
|
|
68
|
+
eventReportFilters: string[];
|
|
65
69
|
}>>, {}, {
|
|
66
70
|
state: AppState;
|
|
67
71
|
rejectValue: string;
|
|
@@ -87,6 +87,8 @@ export declare const copyToClipBoard: import('@reduxjs/toolkit').ActionCreatorWi
|
|
|
87
87
|
editor: import('@ws-ui/shared').IEditor;
|
|
88
88
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
89
89
|
kind: string;
|
|
90
|
+
eventReportView: "full" | "compact";
|
|
91
|
+
eventReportFilters: string[];
|
|
90
92
|
}>>[], "root/setTabs">, closeDebuggerTabs: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<"root/closeDebuggerTabs">, closeTab: import('@reduxjs/toolkit').ActionCreatorWithPayload<number, "root/closeTab">, setContent: import('@reduxjs/toolkit').ActionCreatorWithPayload<{
|
|
91
93
|
path: string;
|
|
92
94
|
content: any;
|
|
@@ -127,6 +129,8 @@ export declare const copyToClipBoard: import('@reduxjs/toolkit').ActionCreatorWi
|
|
|
127
129
|
editor: import('@ws-ui/shared').IEditor;
|
|
128
130
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
129
131
|
kind: string;
|
|
132
|
+
eventReportView: "full" | "compact";
|
|
133
|
+
eventReportFilters: string[];
|
|
130
134
|
}>> & {
|
|
131
135
|
isNew?: boolean;
|
|
132
136
|
}, "root/selectTabByReference">, openTabUnselected: import('@reduxjs/toolkit').ActionCreatorWithPayload<ITab<any, Partial<{
|
|
@@ -145,6 +149,8 @@ export declare const copyToClipBoard: import('@reduxjs/toolkit').ActionCreatorWi
|
|
|
145
149
|
editor: import('@ws-ui/shared').IEditor;
|
|
146
150
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
147
151
|
kind: string;
|
|
152
|
+
eventReportView: "full" | "compact";
|
|
153
|
+
eventReportFilters: string[];
|
|
148
154
|
}>>, "root/openTabUnselected">, addWebFormStyles: import('@reduxjs/toolkit').ActionCreatorWithPayload<{
|
|
149
155
|
path: string;
|
|
150
156
|
styles: IWebFormStyleClass[];
|
|
@@ -164,6 +170,8 @@ export declare const copyToClipBoard: import('@reduxjs/toolkit').ActionCreatorWi
|
|
|
164
170
|
editor: import('@ws-ui/shared').IEditor;
|
|
165
171
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
166
172
|
kind: string;
|
|
173
|
+
eventReportView: "full" | "compact";
|
|
174
|
+
eventReportFilters: string[];
|
|
167
175
|
}>>, "root/changeTabEditor">, setWebformState: import('@reduxjs/toolkit').ActionCreatorWithPayload<{
|
|
168
176
|
currentState: WebformState;
|
|
169
177
|
path: string;
|
|
@@ -139,6 +139,8 @@ export declare const reloadTab: import('@reduxjs/toolkit').AsyncThunk<void | INo
|
|
|
139
139
|
editor: import('@ws-ui/shared').IEditor;
|
|
140
140
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
141
141
|
kind: string;
|
|
142
|
+
eventReportView: "full" | "compact";
|
|
143
|
+
eventReportFilters: string[];
|
|
142
144
|
}>>, {
|
|
143
145
|
state: AppState;
|
|
144
146
|
extra?: unknown;
|
|
@@ -209,6 +211,8 @@ export declare const tryInjectMethod: import('@reduxjs/toolkit').AsyncThunk<ITab
|
|
|
209
211
|
editor: import('@ws-ui/shared').IEditor;
|
|
210
212
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
211
213
|
kind: string;
|
|
214
|
+
eventReportView: "full" | "compact";
|
|
215
|
+
eventReportFilters: string[];
|
|
212
216
|
}>> | null, {
|
|
213
217
|
name: string;
|
|
214
218
|
type?: ClassFileTypes;
|
|
@@ -240,6 +244,8 @@ export declare const openRoles: import('@reduxjs/toolkit').AsyncThunk<void | ITa
|
|
|
240
244
|
editor: import('@ws-ui/shared').IEditor;
|
|
241
245
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
242
246
|
kind: string;
|
|
247
|
+
eventReportView: "full" | "compact";
|
|
248
|
+
eventReportFilters: string[];
|
|
243
249
|
}>>, {}, {
|
|
244
250
|
state: AppState;
|
|
245
251
|
rejectValue: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { INodeInfo } from '@ws-ui/shared';
|
|
2
2
|
import { AppState } from '..';
|
|
3
|
+
import { TSettingPath } from './types';
|
|
3
4
|
export declare const fetchSettings: import('@reduxjs/toolkit').AsyncThunk<INodeInfo, void, {
|
|
4
5
|
state: AppState;
|
|
5
6
|
rejectValue: string;
|
|
@@ -20,3 +21,8 @@ export declare const fetchAppSettings: import('@reduxjs/toolkit').AsyncThunk<imp
|
|
|
20
21
|
fulfilledMeta?: unknown;
|
|
21
22
|
rejectedMeta?: unknown;
|
|
22
23
|
}>;
|
|
24
|
+
export declare const applySetting: (payload: {
|
|
25
|
+
path: TSettingPath;
|
|
26
|
+
settingsKey: string;
|
|
27
|
+
value: any;
|
|
28
|
+
}) => (dispatch: any, getState: () => AppState) => void;
|
|
@@ -834,6 +834,8 @@ export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
|
834
834
|
editor: import('@ws-ui/shared').IEditor;
|
|
835
835
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
836
836
|
kind: string;
|
|
837
|
+
eventReportView: "full" | "compact";
|
|
838
|
+
eventReportFilters: string[];
|
|
837
839
|
}>>[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => ITab<any, Partial<{
|
|
838
840
|
initialLineInfo: {
|
|
839
841
|
line: number;
|
|
@@ -850,6 +852,8 @@ export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
|
850
852
|
editor: import('@ws-ui/shared').IEditor;
|
|
851
853
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
852
854
|
kind: string;
|
|
855
|
+
eventReportView: "full" | "compact";
|
|
856
|
+
eventReportFilters: string[];
|
|
853
857
|
}>>[], {
|
|
854
858
|
clearCache: () => void;
|
|
855
859
|
}> & {
|
|
@@ -66,6 +66,8 @@ export declare const selectTabs: ((state: import('redux').EmptyObject & {
|
|
|
66
66
|
editor: import('@ws-ui/shared').IEditor;
|
|
67
67
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
68
68
|
kind: string;
|
|
69
|
+
eventReportView: "full" | "compact";
|
|
70
|
+
eventReportFilters: string[];
|
|
69
71
|
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
70
72
|
initialLineInfo: {
|
|
71
73
|
line: number;
|
|
@@ -82,6 +84,8 @@ export declare const selectTabs: ((state: import('redux').EmptyObject & {
|
|
|
82
84
|
editor: import('@ws-ui/shared').IEditor;
|
|
83
85
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
84
86
|
kind: string;
|
|
87
|
+
eventReportView: "full" | "compact";
|
|
88
|
+
eventReportFilters: string[];
|
|
85
89
|
}>>[], {
|
|
86
90
|
clearCache: () => void;
|
|
87
91
|
}> & {
|
|
@@ -154,6 +158,8 @@ export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
|
|
|
154
158
|
editor: import('@ws-ui/shared').IEditor;
|
|
155
159
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
156
160
|
kind: string;
|
|
161
|
+
eventReportView: "full" | "compact";
|
|
162
|
+
eventReportFilters: string[];
|
|
157
163
|
}>>[]) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
158
164
|
initialLineInfo: {
|
|
159
165
|
line: number;
|
|
@@ -170,6 +176,8 @@ export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
|
|
|
170
176
|
editor: import('@ws-ui/shared').IEditor;
|
|
171
177
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
172
178
|
kind: string;
|
|
179
|
+
eventReportView: "full" | "compact";
|
|
180
|
+
eventReportFilters: string[];
|
|
173
181
|
}>>[], {
|
|
174
182
|
clearCache: () => void;
|
|
175
183
|
}> & {
|
|
@@ -214,6 +222,8 @@ export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
|
|
|
214
222
|
editor: import('@ws-ui/shared').IEditor;
|
|
215
223
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
216
224
|
kind: string;
|
|
225
|
+
eventReportView: "full" | "compact";
|
|
226
|
+
eventReportFilters: string[];
|
|
217
227
|
}>> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
218
228
|
initialLineInfo: {
|
|
219
229
|
line: number;
|
|
@@ -230,6 +240,8 @@ export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
|
|
|
230
240
|
editor: import('@ws-ui/shared').IEditor;
|
|
231
241
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
232
242
|
kind: string;
|
|
243
|
+
eventReportView: "full" | "compact";
|
|
244
|
+
eventReportFilters: string[];
|
|
233
245
|
}>> | undefined, {
|
|
234
246
|
clearCache: () => void;
|
|
235
247
|
}> & {
|
|
@@ -274,6 +286,8 @@ export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject &
|
|
|
274
286
|
editor: import('@ws-ui/shared').IEditor;
|
|
275
287
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
276
288
|
kind: string;
|
|
289
|
+
eventReportView: "full" | "compact";
|
|
290
|
+
eventReportFilters: string[];
|
|
277
291
|
}>> | null) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
278
292
|
initialLineInfo: {
|
|
279
293
|
line: number;
|
|
@@ -290,6 +304,8 @@ export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject &
|
|
|
290
304
|
editor: import('@ws-ui/shared').IEditor;
|
|
291
305
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
292
306
|
kind: string;
|
|
307
|
+
eventReportView: "full" | "compact";
|
|
308
|
+
eventReportFilters: string[];
|
|
293
309
|
}>> | null, {
|
|
294
310
|
clearCache: () => void;
|
|
295
311
|
}> & {
|
|
@@ -334,6 +350,8 @@ export declare const selectPreviewedWebformsPaths: ((state: import('redux').Empt
|
|
|
334
350
|
editor: import('@ws-ui/shared').IEditor;
|
|
335
351
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
336
352
|
kind: string;
|
|
353
|
+
eventReportView: "full" | "compact";
|
|
354
|
+
eventReportFilters: string[];
|
|
337
355
|
}>>[]) => string[], {
|
|
338
356
|
clearCache: () => void;
|
|
339
357
|
}> & {
|
|
@@ -378,6 +396,8 @@ export declare const selectHasTabs: ((state: import('redux').EmptyObject & {
|
|
|
378
396
|
editor: import('@ws-ui/shared').IEditor;
|
|
379
397
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
380
398
|
kind: string;
|
|
399
|
+
eventReportView: "full" | "compact";
|
|
400
|
+
eventReportFilters: string[];
|
|
381
401
|
}>>[]) => boolean, {
|
|
382
402
|
clearCache: () => void;
|
|
383
403
|
}> & {
|
|
@@ -422,6 +442,8 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import('redu
|
|
|
422
442
|
editor: import('@ws-ui/shared').IEditor;
|
|
423
443
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
424
444
|
kind: string;
|
|
445
|
+
eventReportView: "full" | "compact";
|
|
446
|
+
eventReportFilters: string[];
|
|
425
447
|
}>> | undefined) & import('reselect').OutputSelectorFields<(args_0: import('../modules').IRootState) => ITab<any, Partial<{
|
|
426
448
|
initialLineInfo: {
|
|
427
449
|
line: number;
|
|
@@ -438,6 +460,8 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import('redu
|
|
|
438
460
|
editor: import('@ws-ui/shared').IEditor;
|
|
439
461
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
440
462
|
kind: string;
|
|
463
|
+
eventReportView: "full" | "compact";
|
|
464
|
+
eventReportFilters: string[];
|
|
441
465
|
}>> | undefined, {
|
|
442
466
|
clearCache: () => void;
|
|
443
467
|
}> & {
|
|
@@ -482,6 +506,8 @@ export declare const selectTabNameByPath: (tabPath: string) => ((state: import('
|
|
|
482
506
|
editor: import('@ws-ui/shared').IEditor;
|
|
483
507
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
484
508
|
kind: string;
|
|
509
|
+
eventReportView: "full" | "compact";
|
|
510
|
+
eventReportFilters: string[];
|
|
485
511
|
}>> | undefined) => string | undefined, {
|
|
486
512
|
clearCache: () => void;
|
|
487
513
|
}> & {
|
|
@@ -526,6 +552,8 @@ export declare const selectContentByPath: (tabPath: string, contentPath?: string
|
|
|
526
552
|
editor: import('@ws-ui/shared').IEditor;
|
|
527
553
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
528
554
|
kind: string;
|
|
555
|
+
eventReportView: "full" | "compact";
|
|
556
|
+
eventReportFilters: string[];
|
|
529
557
|
}>> | undefined) => any, {
|
|
530
558
|
clearCache: () => void;
|
|
531
559
|
}> & {
|
|
@@ -570,6 +598,8 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
570
598
|
editor: import('@ws-ui/shared').IEditor;
|
|
571
599
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
572
600
|
kind: string;
|
|
601
|
+
eventReportView: "full" | "compact";
|
|
602
|
+
eventReportFilters: string[];
|
|
573
603
|
}> | undefined) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
574
604
|
initialLineInfo: {
|
|
575
605
|
line: number;
|
|
@@ -586,6 +616,8 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
586
616
|
editor: import('@ws-ui/shared').IEditor;
|
|
587
617
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
588
618
|
kind: string;
|
|
619
|
+
eventReportView: "full" | "compact";
|
|
620
|
+
eventReportFilters: string[];
|
|
589
621
|
}>> | undefined) => Partial<{
|
|
590
622
|
initialLineInfo: {
|
|
591
623
|
line: number;
|
|
@@ -602,6 +634,8 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
602
634
|
editor: import('@ws-ui/shared').IEditor;
|
|
603
635
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
604
636
|
kind: string;
|
|
637
|
+
eventReportView: "full" | "compact";
|
|
638
|
+
eventReportFilters: string[];
|
|
605
639
|
}> | undefined, {
|
|
606
640
|
clearCache: () => void;
|
|
607
641
|
}> & {
|
|
@@ -674,6 +708,8 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
|
674
708
|
editor: import('@ws-ui/shared').IEditor;
|
|
675
709
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
676
710
|
kind: string;
|
|
711
|
+
eventReportView: "full" | "compact";
|
|
712
|
+
eventReportFilters: string[];
|
|
677
713
|
}>>[]) & import('reselect').OutputSelectorFields<(args_0: ITab<any, Partial<{
|
|
678
714
|
initialLineInfo: {
|
|
679
715
|
line: number;
|
|
@@ -690,6 +726,8 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
|
690
726
|
editor: import('@ws-ui/shared').IEditor;
|
|
691
727
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
692
728
|
kind: string;
|
|
729
|
+
eventReportView: "full" | "compact";
|
|
730
|
+
eventReportFilters: string[];
|
|
693
731
|
}>>[]) => ITab<any, Partial<{
|
|
694
732
|
initialLineInfo: {
|
|
695
733
|
line: number;
|
|
@@ -706,6 +744,8 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
|
706
744
|
editor: import('@ws-ui/shared').IEditor;
|
|
707
745
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
708
746
|
kind: string;
|
|
747
|
+
eventReportView: "full" | "compact";
|
|
748
|
+
eventReportFilters: string[];
|
|
709
749
|
}>>[], {
|
|
710
750
|
clearCache: () => void;
|
|
711
751
|
}> & {
|
|
@@ -750,6 +790,8 @@ export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObje
|
|
|
750
790
|
editor: import('@ws-ui/shared').IEditor;
|
|
751
791
|
ext: import('@ws-ui/shared').DebuggerFileExtension;
|
|
752
792
|
kind: string;
|
|
793
|
+
eventReportView: "full" | "compact";
|
|
794
|
+
eventReportFilters: string[];
|
|
753
795
|
}>>[]) => number, {
|
|
754
796
|
clearCache: () => void;
|
|
755
797
|
}> & {
|
|
@@ -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
|
}> & {
|
|
@@ -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
|
}> & {
|
|
@@ -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
|
}> & {
|
|
@@ -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
|
}> & {
|
package/dist/selectors/tabs.d.ts
CHANGED
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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
|
}> & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ws-ui/store",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@reduxjs/toolkit": "^1.7.1",
|
|
24
|
-
"@ws-ui/icons": "1.
|
|
25
|
-
"@ws-ui/shared": "1.
|
|
24
|
+
"@ws-ui/icons": "1.12.0",
|
|
25
|
+
"@ws-ui/shared": "1.12.0",
|
|
26
26
|
"lodash": "^4.17.21",
|
|
27
27
|
"minimatch": "^10.0.1",
|
|
28
28
|
"react": "^17.0.2",
|