@ws-ui/store 1.11.12-rc1 → 1.11.12-rc13
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 +23 -23
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3293 -3313
- package/dist/index.es.js.map +1 -1
- package/dist/modules/explorer/index.d.ts +1 -1
- package/dist/modules/explorer/reducer.d.ts +1 -1
- package/dist/modules/explorer/thunks.d.ts +2 -10
- package/dist/modules/explorer/types.d.ts +1 -26
- package/dist/modules/explorer/utils.d.ts +2 -2
- package/dist/modules/index.d.ts +2 -2
- package/dist/modules/settings/index.d.ts +1 -1
- package/dist/modules/settings/reducer.d.ts +3 -19
- package/dist/modules/settings/types.d.ts +2 -6
- package/dist/modules/tasks/selectors.d.ts +2 -2
- package/dist/modules/webforms/datasources.adapter.d.ts +2 -2
- package/dist/selectors/catalog.d.ts +16 -16
- package/dist/selectors/common.d.ts +8 -8
- package/dist/selectors/components.d.ts +2 -2
- package/dist/selectors/datasources.d.ts +16 -16
- package/dist/selectors/debugger.d.ts +56 -56
- package/dist/selectors/explorer.d.ts +63 -63
- package/dist/selectors/modals.d.ts +2 -2
- package/dist/selectors/roles.d.ts +18 -18
- package/dist/selectors/settings.d.ts +24 -24
- package/dist/selectors/states.d.ts +12 -12
- package/dist/selectors/styles.d.ts +10 -10
- package/dist/selectors/tabs.d.ts +10 -10
- package/dist/selectors/webforms.d.ts +28 -28
- package/package.json +2 -2
|
@@ -2,9 +2,9 @@ import { FileFolderType, ITab } from '@ws-ui/shared';
|
|
|
2
2
|
import { CommonDebuggerVariablesKey, IBreakpoint, IBreakpointsByFile, IDebuggerData, IDebuggerSession, IEnhancedBreakpoint } from '../modules/debugger/types';
|
|
3
3
|
export declare const selectDebuggerMeta: ((state: import('redux').EmptyObject & {
|
|
4
4
|
root: import('../modules').IRootState;
|
|
5
|
-
explorer: import('
|
|
5
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
6
6
|
debugger: import('../modules').IDebuggerState;
|
|
7
|
-
settings: import('
|
|
7
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
8
8
|
catalog: {
|
|
9
9
|
state: "loading";
|
|
10
10
|
} | {
|
|
@@ -30,9 +30,9 @@ export declare const selectDebuggerMeta: ((state: import('redux').EmptyObject &
|
|
|
30
30
|
};
|
|
31
31
|
export declare const selectDebuggerData: ((state: import('redux').EmptyObject & {
|
|
32
32
|
root: import('../modules').IRootState;
|
|
33
|
-
explorer: import('
|
|
33
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
34
34
|
debugger: import('../modules').IDebuggerState;
|
|
35
|
-
settings: import('
|
|
35
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
36
36
|
catalog: {
|
|
37
37
|
state: "loading";
|
|
38
38
|
} | {
|
|
@@ -58,9 +58,9 @@ export declare const selectDebuggerData: ((state: import('redux').EmptyObject &
|
|
|
58
58
|
};
|
|
59
59
|
export declare const selectDebuggerSessions: ((state: import('redux').EmptyObject & {
|
|
60
60
|
root: import('../modules').IRootState;
|
|
61
|
-
explorer: import('
|
|
61
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
62
62
|
debugger: import('../modules').IDebuggerState;
|
|
63
|
-
settings: import('
|
|
63
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
64
64
|
catalog: {
|
|
65
65
|
state: "loading";
|
|
66
66
|
} | {
|
|
@@ -86,9 +86,9 @@ export declare const selectDebuggerSessions: ((state: import('redux').EmptyObjec
|
|
|
86
86
|
};
|
|
87
87
|
export declare const selectDebuggerSessionsCount: ((state: import('redux').EmptyObject & {
|
|
88
88
|
root: import('../modules').IRootState;
|
|
89
|
-
explorer: import('
|
|
89
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
90
90
|
debugger: import('../modules').IDebuggerState;
|
|
91
|
-
settings: import('
|
|
91
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
92
92
|
catalog: {
|
|
93
93
|
state: "loading";
|
|
94
94
|
} | {
|
|
@@ -117,9 +117,9 @@ export declare const findSession: (sessions: IDebuggerSession[], threadId: numbe
|
|
|
117
117
|
export declare const findSessionByPath: (sessions: IDebuggerSession[], tabPath: string) => IDebuggerSession | undefined;
|
|
118
118
|
export declare const selectAllBreakpoints: ((state: import('redux').EmptyObject & {
|
|
119
119
|
root: import('../modules').IRootState;
|
|
120
|
-
explorer: import('
|
|
120
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
121
121
|
debugger: import('../modules').IDebuggerState;
|
|
122
|
-
settings: import('
|
|
122
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
123
123
|
catalog: {
|
|
124
124
|
state: "loading";
|
|
125
125
|
} | {
|
|
@@ -145,9 +145,9 @@ export declare const selectAllBreakpoints: ((state: import('redux').EmptyObject
|
|
|
145
145
|
};
|
|
146
146
|
export declare const selectBreakpointsByFile: ((state: import('redux').EmptyObject & {
|
|
147
147
|
root: import('../modules').IRootState;
|
|
148
|
-
explorer: import('
|
|
148
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
149
149
|
debugger: import('../modules').IDebuggerState;
|
|
150
|
-
settings: import('
|
|
150
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
151
151
|
catalog: {
|
|
152
152
|
state: "loading";
|
|
153
153
|
} | {
|
|
@@ -173,9 +173,9 @@ export declare const selectBreakpointsByFile: ((state: import('redux').EmptyObje
|
|
|
173
173
|
};
|
|
174
174
|
export declare const selectAllBreakpointsCount: ((state: import('redux').EmptyObject & {
|
|
175
175
|
root: import('../modules').IRootState;
|
|
176
|
-
explorer: import('
|
|
176
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
177
177
|
debugger: import('../modules').IDebuggerState;
|
|
178
|
-
settings: import('
|
|
178
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
179
179
|
catalog: {
|
|
180
180
|
state: "loading";
|
|
181
181
|
} | {
|
|
@@ -201,9 +201,9 @@ export declare const selectAllBreakpointsCount: ((state: import('redux').EmptyOb
|
|
|
201
201
|
};
|
|
202
202
|
export declare const selectEnabledBreakpointsCount: ((state: import('redux').EmptyObject & {
|
|
203
203
|
root: import('../modules').IRootState;
|
|
204
|
-
explorer: import('
|
|
204
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
205
205
|
debugger: import('../modules').IDebuggerState;
|
|
206
|
-
settings: import('
|
|
206
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
207
207
|
catalog: {
|
|
208
208
|
state: "loading";
|
|
209
209
|
} | {
|
|
@@ -229,9 +229,9 @@ export declare const selectEnabledBreakpointsCount: ((state: import('redux').Emp
|
|
|
229
229
|
};
|
|
230
230
|
export declare const selectBreakpoints: (filePath: string, methodName: string) => ((state: import('redux').EmptyObject & {
|
|
231
231
|
root: import('../modules').IRootState;
|
|
232
|
-
explorer: import('
|
|
232
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
233
233
|
debugger: import('../modules').IDebuggerState;
|
|
234
|
-
settings: import('
|
|
234
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
235
235
|
catalog: {
|
|
236
236
|
state: "loading";
|
|
237
237
|
} | {
|
|
@@ -257,9 +257,9 @@ export declare const selectBreakpoints: (filePath: string, methodName: string) =
|
|
|
257
257
|
};
|
|
258
258
|
export declare const selectDraftBreakpoints: (filePath: string, methodName: string) => ((state: import('redux').EmptyObject & {
|
|
259
259
|
root: import('../modules').IRootState;
|
|
260
|
-
explorer: import('
|
|
260
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
261
261
|
debugger: import('../modules').IDebuggerState;
|
|
262
|
-
settings: import('
|
|
262
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
263
263
|
catalog: {
|
|
264
264
|
state: "loading";
|
|
265
265
|
} | {
|
|
@@ -285,9 +285,9 @@ export declare const selectDraftBreakpoints: (filePath: string, methodName: stri
|
|
|
285
285
|
};
|
|
286
286
|
export declare const selectClassBreakpoints: (filePath: string) => ((state: import('redux').EmptyObject & {
|
|
287
287
|
root: import('../modules').IRootState;
|
|
288
|
-
explorer: import('
|
|
288
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
289
289
|
debugger: import('../modules').IDebuggerState;
|
|
290
|
-
settings: import('
|
|
290
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
291
291
|
catalog: {
|
|
292
292
|
state: "loading";
|
|
293
293
|
} | {
|
|
@@ -313,9 +313,9 @@ export declare const selectClassBreakpoints: (filePath: string) => ((state: impo
|
|
|
313
313
|
};
|
|
314
314
|
export declare const selectDraftClassBreakpoints: (filePath: string) => ((state: import('redux').EmptyObject & {
|
|
315
315
|
root: import('../modules').IRootState;
|
|
316
|
-
explorer: import('
|
|
316
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
317
317
|
debugger: import('../modules').IDebuggerState;
|
|
318
|
-
settings: import('
|
|
318
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
319
319
|
catalog: {
|
|
320
320
|
state: "loading";
|
|
321
321
|
} | {
|
|
@@ -341,9 +341,9 @@ export declare const selectDraftClassBreakpoints: (filePath: string) => ((state:
|
|
|
341
341
|
};
|
|
342
342
|
export declare const selectHighlightedLines: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
343
343
|
root: import('../modules').IRootState;
|
|
344
|
-
explorer: import('
|
|
344
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
345
345
|
debugger: import('../modules').IDebuggerState;
|
|
346
|
-
settings: import('
|
|
346
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
347
347
|
catalog: {
|
|
348
348
|
state: "loading";
|
|
349
349
|
} | {
|
|
@@ -375,9 +375,9 @@ export declare const selectHighlightedLines: (threadId: number) => ((state: impo
|
|
|
375
375
|
};
|
|
376
376
|
export declare const selectActiveLine: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
377
377
|
root: import('../modules').IRootState;
|
|
378
|
-
explorer: import('
|
|
378
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
379
379
|
debugger: import('../modules').IDebuggerState;
|
|
380
|
-
settings: import('
|
|
380
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
381
381
|
catalog: {
|
|
382
382
|
state: "loading";
|
|
383
383
|
} | {
|
|
@@ -403,9 +403,9 @@ export declare const selectActiveLine: (threadId: number) => ((state: import('re
|
|
|
403
403
|
};
|
|
404
404
|
export declare const selectExpressions: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
405
405
|
root: import('../modules').IRootState;
|
|
406
|
-
explorer: import('
|
|
406
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
407
407
|
debugger: import('../modules').IDebuggerState;
|
|
408
|
-
settings: import('
|
|
408
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
409
409
|
catalog: {
|
|
410
410
|
state: "loading";
|
|
411
411
|
} | {
|
|
@@ -431,9 +431,9 @@ export declare const selectExpressions: (threadId: number) => ((state: import('r
|
|
|
431
431
|
};
|
|
432
432
|
export declare const selectStoppedFromDebugSession: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
433
433
|
root: import('../modules').IRootState;
|
|
434
|
-
explorer: import('
|
|
434
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
435
435
|
debugger: import('../modules').IDebuggerState;
|
|
436
|
-
settings: import('
|
|
436
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
437
437
|
catalog: {
|
|
438
438
|
state: "loading";
|
|
439
439
|
} | {
|
|
@@ -459,9 +459,9 @@ export declare const selectStoppedFromDebugSession: (threadId: number) => ((stat
|
|
|
459
459
|
};
|
|
460
460
|
export declare const selectSourceByPath: (filePath: string, methodName: string) => ((state: import('redux').EmptyObject & {
|
|
461
461
|
root: import('../modules').IRootState;
|
|
462
|
-
explorer: import('
|
|
462
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
463
463
|
debugger: import('../modules').IDebuggerState;
|
|
464
|
-
settings: import('
|
|
464
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
465
465
|
catalog: {
|
|
466
466
|
state: "loading";
|
|
467
467
|
} | {
|
|
@@ -487,9 +487,9 @@ export declare const selectSourceByPath: (filePath: string, methodName: string)
|
|
|
487
487
|
};
|
|
488
488
|
export declare const selectThreadIdByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
489
489
|
root: import('../modules').IRootState;
|
|
490
|
-
explorer: import('
|
|
490
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
491
491
|
debugger: import('../modules').IDebuggerState;
|
|
492
|
-
settings: import('
|
|
492
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
493
493
|
catalog: {
|
|
494
494
|
state: "loading";
|
|
495
495
|
} | {
|
|
@@ -515,9 +515,9 @@ export declare const selectThreadIdByPath: (tabPath: string) => ((state: import(
|
|
|
515
515
|
};
|
|
516
516
|
export declare const selectSourceByThreadId: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
517
517
|
root: import('../modules').IRootState;
|
|
518
|
-
explorer: import('
|
|
518
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
519
519
|
debugger: import('../modules').IDebuggerState;
|
|
520
|
-
settings: import('
|
|
520
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
521
521
|
catalog: {
|
|
522
522
|
state: "loading";
|
|
523
523
|
} | {
|
|
@@ -549,9 +549,9 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
|
|
|
549
549
|
};
|
|
550
550
|
export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
551
551
|
root: import('../modules').IRootState;
|
|
552
|
-
explorer: import('
|
|
552
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
553
553
|
debugger: import('../modules').IDebuggerState;
|
|
554
|
-
settings: import('
|
|
554
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
555
555
|
catalog: {
|
|
556
556
|
state: "loading";
|
|
557
557
|
} | {
|
|
@@ -577,9 +577,9 @@ export declare const selectCurrentFrameByThreadId: (threadId: number) => ((state
|
|
|
577
577
|
};
|
|
578
578
|
export declare const selectDebuggerChannels: ((state: import('redux').EmptyObject & {
|
|
579
579
|
root: import('../modules').IRootState;
|
|
580
|
-
explorer: import('
|
|
580
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
581
581
|
debugger: import('../modules').IDebuggerState;
|
|
582
|
-
settings: import('
|
|
582
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
583
583
|
catalog: {
|
|
584
584
|
state: "loading";
|
|
585
585
|
} | {
|
|
@@ -611,9 +611,9 @@ export declare const selectDebuggerChannels: ((state: import('redux').EmptyObjec
|
|
|
611
611
|
};
|
|
612
612
|
export declare const selectStackFrames: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
613
613
|
root: import('../modules').IRootState;
|
|
614
|
-
explorer: import('
|
|
614
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
615
615
|
debugger: import('../modules').IDebuggerState;
|
|
616
|
-
settings: import('
|
|
616
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
617
617
|
catalog: {
|
|
618
618
|
state: "loading";
|
|
619
619
|
} | {
|
|
@@ -639,9 +639,9 @@ export declare const selectStackFrames: (threadId: number) => ((state: import('r
|
|
|
639
639
|
};
|
|
640
640
|
export declare const selectCommonVariables: (threadId: number, key: CommonDebuggerVariablesKey, frameId: number) => ((state: import('redux').EmptyObject & {
|
|
641
641
|
root: import('../modules').IRootState;
|
|
642
|
-
explorer: import('
|
|
642
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
643
643
|
debugger: import('../modules').IDebuggerState;
|
|
644
|
-
settings: import('
|
|
644
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
645
645
|
catalog: {
|
|
646
646
|
state: "loading";
|
|
647
647
|
} | {
|
|
@@ -667,9 +667,9 @@ export declare const selectCommonVariables: (threadId: number, key: CommonDebugg
|
|
|
667
667
|
};
|
|
668
668
|
export declare const selectCallChainVariables: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
669
669
|
root: import('../modules').IRootState;
|
|
670
|
-
explorer: import('
|
|
670
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
671
671
|
debugger: import('../modules').IDebuggerState;
|
|
672
|
-
settings: import('
|
|
672
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
673
673
|
catalog: {
|
|
674
674
|
state: "loading";
|
|
675
675
|
} | {
|
|
@@ -695,9 +695,9 @@ export declare const selectCallChainVariables: (threadId: number) => ((state: im
|
|
|
695
695
|
};
|
|
696
696
|
export declare const selectExpressionsVariables: (threadId: number) => ((state: import('redux').EmptyObject & {
|
|
697
697
|
root: import('../modules').IRootState;
|
|
698
|
-
explorer: import('
|
|
698
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
699
699
|
debugger: import('../modules').IDebuggerState;
|
|
700
|
-
settings: import('
|
|
700
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
701
701
|
catalog: {
|
|
702
702
|
state: "loading";
|
|
703
703
|
} | {
|
|
@@ -723,9 +723,9 @@ export declare const selectExpressionsVariables: (threadId: number) => ((state:
|
|
|
723
723
|
};
|
|
724
724
|
export declare const selectClassOffset: (filePath: string, type?: keyof IDebuggerData["breakpoints"]) => ((state: import('redux').EmptyObject & {
|
|
725
725
|
root: import('../modules').IRootState;
|
|
726
|
-
explorer: import('
|
|
726
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
727
727
|
debugger: import('../modules').IDebuggerState;
|
|
728
|
-
settings: import('
|
|
728
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
729
729
|
catalog: {
|
|
730
730
|
state: "loading";
|
|
731
731
|
} | {
|
|
@@ -751,9 +751,9 @@ export declare const selectClassOffset: (filePath: string, type?: keyof IDebugge
|
|
|
751
751
|
};
|
|
752
752
|
export declare const selectExceptions: (threadId: number, fileType: FileFolderType.CLASS | FileFolderType.METHOD, methodName: string, className?: string) => ((state: import('redux').EmptyObject & {
|
|
753
753
|
root: import('../modules').IRootState;
|
|
754
|
-
explorer: import('
|
|
754
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
755
755
|
debugger: import('../modules').IDebuggerState;
|
|
756
|
-
settings: import('
|
|
756
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
757
757
|
catalog: {
|
|
758
758
|
state: "loading";
|
|
759
759
|
} | {
|
|
@@ -797,9 +797,9 @@ export declare const selectExceptions: (threadId: number, fileType: FileFolderTy
|
|
|
797
797
|
};
|
|
798
798
|
export declare const selectDebuggers: ((state: import('redux').EmptyObject & {
|
|
799
799
|
root: import('../modules').IRootState;
|
|
800
|
-
explorer: import('
|
|
800
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
801
801
|
debugger: import('../modules').IDebuggerState;
|
|
802
|
-
settings: import('
|
|
802
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
803
803
|
catalog: {
|
|
804
804
|
state: "loading";
|
|
805
805
|
} | {
|