@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
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ITab } from '@ws-ui/shared';
|
|
2
2
|
export declare const selectRoot: ((state: import('redux').EmptyObject & {
|
|
3
3
|
root: import('../modules').IRootState;
|
|
4
|
-
explorer: import('
|
|
4
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
5
5
|
debugger: import('../modules').IDebuggerState;
|
|
6
|
-
settings: import('
|
|
6
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
7
7
|
catalog: {
|
|
8
8
|
state: "loading";
|
|
9
9
|
} | {
|
|
@@ -29,9 +29,9 @@ export declare const selectRoot: ((state: import('redux').EmptyObject & {
|
|
|
29
29
|
};
|
|
30
30
|
export declare const selectTabs: ((state: import('redux').EmptyObject & {
|
|
31
31
|
root: import('../modules').IRootState;
|
|
32
|
-
explorer: import('
|
|
32
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
33
33
|
debugger: import('../modules').IDebuggerState;
|
|
34
|
-
settings: import('
|
|
34
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
35
35
|
catalog: {
|
|
36
36
|
state: "loading";
|
|
37
37
|
} | {
|
|
@@ -89,9 +89,9 @@ export declare const selectTabs: ((state: import('redux').EmptyObject & {
|
|
|
89
89
|
};
|
|
90
90
|
export declare const selectActiveTab: ((state: import('redux').EmptyObject & {
|
|
91
91
|
root: import('../modules').IRootState;
|
|
92
|
-
explorer: import('
|
|
92
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
93
93
|
debugger: import('../modules').IDebuggerState;
|
|
94
|
-
settings: import('
|
|
94
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
95
95
|
catalog: {
|
|
96
96
|
state: "loading";
|
|
97
97
|
} | {
|
|
@@ -117,9 +117,9 @@ export declare const selectActiveTab: ((state: import('redux').EmptyObject & {
|
|
|
117
117
|
};
|
|
118
118
|
export declare const selectRecentFiles: ((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
|
} | {
|
|
@@ -177,9 +177,9 @@ export declare const selectRecentFiles: ((state: import('redux').EmptyObject & {
|
|
|
177
177
|
};
|
|
178
178
|
export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
|
|
179
179
|
root: import('../modules').IRootState;
|
|
180
|
-
explorer: import('
|
|
180
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
181
181
|
debugger: import('../modules').IDebuggerState;
|
|
182
|
-
settings: import('
|
|
182
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
183
183
|
catalog: {
|
|
184
184
|
state: "loading";
|
|
185
185
|
} | {
|
|
@@ -237,9 +237,9 @@ export declare const selectCurrentTab: ((state: import('redux').EmptyObject & {
|
|
|
237
237
|
};
|
|
238
238
|
export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject & {
|
|
239
239
|
root: import('../modules').IRootState;
|
|
240
|
-
explorer: import('
|
|
240
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
241
241
|
debugger: import('../modules').IDebuggerState;
|
|
242
|
-
settings: import('
|
|
242
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
243
243
|
catalog: {
|
|
244
244
|
state: "loading";
|
|
245
245
|
} | {
|
|
@@ -297,9 +297,9 @@ export declare const selectTabMaxWeight: ((state: import('redux').EmptyObject &
|
|
|
297
297
|
};
|
|
298
298
|
export declare const selectPreviewedWebformsPaths: ((state: import('redux').EmptyObject & {
|
|
299
299
|
root: import('../modules').IRootState;
|
|
300
|
-
explorer: import('
|
|
300
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
301
301
|
debugger: import('../modules').IDebuggerState;
|
|
302
|
-
settings: import('
|
|
302
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
303
303
|
catalog: {
|
|
304
304
|
state: "loading";
|
|
305
305
|
} | {
|
|
@@ -341,9 +341,9 @@ export declare const selectPreviewedWebformsPaths: ((state: import('redux').Empt
|
|
|
341
341
|
};
|
|
342
342
|
export declare const selectHasTabs: ((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
|
} | {
|
|
@@ -385,9 +385,9 @@ export declare const selectHasTabs: ((state: import('redux').EmptyObject & {
|
|
|
385
385
|
};
|
|
386
386
|
export declare const selectTabByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
387
387
|
root: import('../modules').IRootState;
|
|
388
|
-
explorer: import('
|
|
388
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
389
389
|
debugger: import('../modules').IDebuggerState;
|
|
390
|
-
settings: import('
|
|
390
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
391
391
|
catalog: {
|
|
392
392
|
state: "loading";
|
|
393
393
|
} | {
|
|
@@ -445,9 +445,9 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import('redu
|
|
|
445
445
|
};
|
|
446
446
|
export declare const selectTabNameByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
447
447
|
root: import('../modules').IRootState;
|
|
448
|
-
explorer: import('
|
|
448
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
449
449
|
debugger: import('../modules').IDebuggerState;
|
|
450
|
-
settings: import('
|
|
450
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
451
451
|
catalog: {
|
|
452
452
|
state: "loading";
|
|
453
453
|
} | {
|
|
@@ -489,9 +489,9 @@ export declare const selectTabNameByPath: (tabPath: string) => ((state: import('
|
|
|
489
489
|
};
|
|
490
490
|
export declare const selectContentByPath: (tabPath: string, contentPath?: string) => ((state: import('redux').EmptyObject & {
|
|
491
491
|
root: import('../modules').IRootState;
|
|
492
|
-
explorer: import('
|
|
492
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
493
493
|
debugger: import('../modules').IDebuggerState;
|
|
494
|
-
settings: import('
|
|
494
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
495
495
|
catalog: {
|
|
496
496
|
state: "loading";
|
|
497
497
|
} | {
|
|
@@ -533,9 +533,9 @@ export declare const selectContentByPath: (tabPath: string, contentPath?: string
|
|
|
533
533
|
};
|
|
534
534
|
export declare const selectTabExtraByPath: (tabPath: string) => ((state: import('redux').EmptyObject & {
|
|
535
535
|
root: import('../modules').IRootState;
|
|
536
|
-
explorer: import('
|
|
536
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
537
537
|
debugger: import('../modules').IDebuggerState;
|
|
538
|
-
settings: import('
|
|
538
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
539
539
|
catalog: {
|
|
540
540
|
state: "loading";
|
|
541
541
|
} | {
|
|
@@ -609,9 +609,9 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
609
609
|
};
|
|
610
610
|
export declare const selectWebformNodes: (path: string, transformer?: (value: object) => any) => ((state: import('redux').EmptyObject & {
|
|
611
611
|
root: import('../modules').IRootState;
|
|
612
|
-
explorer: import('
|
|
612
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
613
613
|
debugger: import('../modules').IDebuggerState;
|
|
614
|
-
settings: import('
|
|
614
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
615
615
|
catalog: {
|
|
616
616
|
state: "loading";
|
|
617
617
|
} | {
|
|
@@ -637,9 +637,9 @@ export declare const selectWebformNodes: (path: string, transformer?: (value: ob
|
|
|
637
637
|
};
|
|
638
638
|
export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
639
639
|
root: import('../modules').IRootState;
|
|
640
|
-
explorer: import('
|
|
640
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
641
641
|
debugger: import('../modules').IDebuggerState;
|
|
642
|
-
settings: import('
|
|
642
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
643
643
|
catalog: {
|
|
644
644
|
state: "loading";
|
|
645
645
|
} | {
|
|
@@ -713,9 +713,9 @@ export declare const selectTouchedTabs: ((state: import('redux').EmptyObject & {
|
|
|
713
713
|
};
|
|
714
714
|
export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObject & {
|
|
715
715
|
root: import('../modules').IRootState;
|
|
716
|
-
explorer: import('
|
|
716
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
717
717
|
debugger: import('../modules').IDebuggerState;
|
|
718
|
-
settings: import('
|
|
718
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
719
719
|
catalog: {
|
|
720
720
|
state: "loading";
|
|
721
721
|
} | {
|
|
@@ -757,9 +757,9 @@ export declare const selectTouchedTabsLength: ((state: import('redux').EmptyObje
|
|
|
757
757
|
};
|
|
758
758
|
export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
759
759
|
root: import('../modules').IRootState;
|
|
760
|
-
explorer: import('
|
|
760
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
761
761
|
debugger: import('../modules').IDebuggerState;
|
|
762
|
-
settings: import('
|
|
762
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
763
763
|
catalog: {
|
|
764
764
|
state: "loading";
|
|
765
765
|
} | {
|
|
@@ -778,11 +778,11 @@ export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
|
778
778
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
779
779
|
model: import('../modules').IModelState;
|
|
780
780
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
781
|
-
}) => import('
|
|
781
|
+
}) => import('@ws-ui/shared').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
782
782
|
root: import('../modules').IRootState;
|
|
783
|
-
explorer: import('
|
|
783
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
784
784
|
debugger: import('../modules').IDebuggerState;
|
|
785
|
-
settings: import('
|
|
785
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
786
786
|
catalog: {
|
|
787
787
|
state: "loading";
|
|
788
788
|
} | {
|
|
@@ -801,16 +801,16 @@ export declare const selectExplorer: ((state: import('redux').EmptyObject & {
|
|
|
801
801
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
802
802
|
model: import('../modules').IModelState;
|
|
803
803
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
804
|
-
}>) => import('
|
|
804
|
+
}>) => import('@ws-ui/shared').ITreeItem[], {
|
|
805
805
|
clearCache: () => void;
|
|
806
806
|
}> & {
|
|
807
807
|
clearCache: () => void;
|
|
808
808
|
};
|
|
809
809
|
export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject & {
|
|
810
810
|
root: import('../modules').IRootState;
|
|
811
|
-
explorer: import('
|
|
811
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
812
812
|
debugger: import('../modules').IDebuggerState;
|
|
813
|
-
settings: import('
|
|
813
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
814
814
|
catalog: {
|
|
815
815
|
state: "loading";
|
|
816
816
|
} | {
|
|
@@ -829,11 +829,11 @@ export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject
|
|
|
829
829
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
830
830
|
model: import('../modules').IModelState;
|
|
831
831
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
832
|
-
}) => import('
|
|
832
|
+
}) => import('@ws-ui/shared').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
833
833
|
root: import('../modules').IRootState;
|
|
834
|
-
explorer: import('
|
|
834
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
835
835
|
debugger: import('../modules').IDebuggerState;
|
|
836
|
-
settings: import('
|
|
836
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
837
837
|
catalog: {
|
|
838
838
|
state: "loading";
|
|
839
839
|
} | {
|
|
@@ -852,16 +852,16 @@ export declare const selectWebFormsFolder: ((state: import('redux').EmptyObject
|
|
|
852
852
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
853
853
|
model: import('../modules').IModelState;
|
|
854
854
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
855
|
-
}>) => import('
|
|
855
|
+
}>) => import('@ws-ui/shared').ITreeItem | undefined, {
|
|
856
856
|
clearCache: () => void;
|
|
857
857
|
}> & {
|
|
858
858
|
clearCache: () => void;
|
|
859
859
|
};
|
|
860
860
|
export declare const selectMethodsFolder: ((state: import('redux').EmptyObject & {
|
|
861
861
|
root: import('../modules').IRootState;
|
|
862
|
-
explorer: import('
|
|
862
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
863
863
|
debugger: import('../modules').IDebuggerState;
|
|
864
|
-
settings: import('
|
|
864
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
865
865
|
catalog: {
|
|
866
866
|
state: "loading";
|
|
867
867
|
} | {
|
|
@@ -880,11 +880,11 @@ export declare const selectMethodsFolder: ((state: import('redux').EmptyObject &
|
|
|
880
880
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
881
881
|
model: import('../modules').IModelState;
|
|
882
882
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
883
|
-
}) => import('
|
|
883
|
+
}) => import('@ws-ui/shared').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
884
884
|
root: import('../modules').IRootState;
|
|
885
|
-
explorer: import('
|
|
885
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
886
886
|
debugger: import('../modules').IDebuggerState;
|
|
887
|
-
settings: import('
|
|
887
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
888
888
|
catalog: {
|
|
889
889
|
state: "loading";
|
|
890
890
|
} | {
|
|
@@ -903,16 +903,16 @@ export declare const selectMethodsFolder: ((state: import('redux').EmptyObject &
|
|
|
903
903
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
904
904
|
model: import('../modules').IModelState;
|
|
905
905
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
906
|
-
}>) => import('
|
|
906
|
+
}>) => import('@ws-ui/shared').ITreeItem | undefined, {
|
|
907
907
|
clearCache: () => void;
|
|
908
908
|
}> & {
|
|
909
909
|
clearCache: () => void;
|
|
910
910
|
};
|
|
911
911
|
export declare const selectClassesFolder: ((state: import('redux').EmptyObject & {
|
|
912
912
|
root: import('../modules').IRootState;
|
|
913
|
-
explorer: import('
|
|
913
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
914
914
|
debugger: import('../modules').IDebuggerState;
|
|
915
|
-
settings: import('
|
|
915
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
916
916
|
catalog: {
|
|
917
917
|
state: "loading";
|
|
918
918
|
} | {
|
|
@@ -931,11 +931,11 @@ export declare const selectClassesFolder: ((state: import('redux').EmptyObject &
|
|
|
931
931
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
932
932
|
model: import('../modules').IModelState;
|
|
933
933
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
934
|
-
}) => import('
|
|
934
|
+
}) => import('@ws-ui/shared').ITreeItem | undefined) & import('reselect').OutputSelectorFields<(args_0: import('redux').CombinedState<{
|
|
935
935
|
root: import('../modules').IRootState;
|
|
936
|
-
explorer: import('
|
|
936
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
937
937
|
debugger: import('../modules').IDebuggerState;
|
|
938
|
-
settings: import('
|
|
938
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
939
939
|
catalog: {
|
|
940
940
|
state: "loading";
|
|
941
941
|
} | {
|
|
@@ -954,16 +954,16 @@ export declare const selectClassesFolder: ((state: import('redux').EmptyObject &
|
|
|
954
954
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
955
955
|
model: import('../modules').IModelState;
|
|
956
956
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
957
|
-
}>) => import('
|
|
957
|
+
}>) => import('@ws-ui/shared').ITreeItem | undefined, {
|
|
958
958
|
clearCache: () => void;
|
|
959
959
|
}> & {
|
|
960
960
|
clearCache: () => void;
|
|
961
961
|
};
|
|
962
962
|
export declare const selectMethods: ((state: import('redux').EmptyObject & {
|
|
963
963
|
root: import('../modules').IRootState;
|
|
964
|
-
explorer: import('
|
|
964
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
965
965
|
debugger: import('../modules').IDebuggerState;
|
|
966
|
-
settings: import('
|
|
966
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
967
967
|
catalog: {
|
|
968
968
|
state: "loading";
|
|
969
969
|
} | {
|
|
@@ -982,16 +982,16 @@ export declare const selectMethods: ((state: import('redux').EmptyObject & {
|
|
|
982
982
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
983
983
|
model: import('../modules').IModelState;
|
|
984
984
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
985
|
-
}) => import('
|
|
985
|
+
}) => import('@ws-ui/shared').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITreeItem | undefined) => import('@ws-ui/shared').ITreeItem[], {
|
|
986
986
|
clearCache: () => void;
|
|
987
987
|
}> & {
|
|
988
988
|
clearCache: () => void;
|
|
989
989
|
};
|
|
990
990
|
export declare const selectWebForms: ((state: import('redux').EmptyObject & {
|
|
991
991
|
root: import('../modules').IRootState;
|
|
992
|
-
explorer: import('
|
|
992
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
993
993
|
debugger: import('../modules').IDebuggerState;
|
|
994
|
-
settings: import('
|
|
994
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
995
995
|
catalog: {
|
|
996
996
|
state: "loading";
|
|
997
997
|
} | {
|
|
@@ -1010,16 +1010,16 @@ export declare const selectWebForms: ((state: import('redux').EmptyObject & {
|
|
|
1010
1010
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
1011
1011
|
model: import('../modules').IModelState;
|
|
1012
1012
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
1013
|
-
}) => import('
|
|
1013
|
+
}) => import('@ws-ui/shared').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITreeItem | undefined) => import('@ws-ui/shared').ITreeItem[], {
|
|
1014
1014
|
clearCache: () => void;
|
|
1015
1015
|
}> & {
|
|
1016
1016
|
clearCache: () => void;
|
|
1017
1017
|
};
|
|
1018
1018
|
export declare const selectClasses: ((state: import('redux').EmptyObject & {
|
|
1019
1019
|
root: import('../modules').IRootState;
|
|
1020
|
-
explorer: import('
|
|
1020
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
1021
1021
|
debugger: import('../modules').IDebuggerState;
|
|
1022
|
-
settings: import('
|
|
1022
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
1023
1023
|
catalog: {
|
|
1024
1024
|
state: "loading";
|
|
1025
1025
|
} | {
|
|
@@ -1038,7 +1038,7 @@ export declare const selectClasses: ((state: import('redux').EmptyObject & {
|
|
|
1038
1038
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
1039
1039
|
model: import('../modules').IModelState;
|
|
1040
1040
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
1041
|
-
}) => import('
|
|
1041
|
+
}) => import('@ws-ui/shared').ITreeItem[]) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ITreeItem | undefined) => import('@ws-ui/shared').ITreeItem[], {
|
|
1042
1042
|
clearCache: () => void;
|
|
1043
1043
|
}> & {
|
|
1044
1044
|
clearCache: () => void;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const selectModals: ((state: import('redux').EmptyObject & {
|
|
2
2
|
root: import('../modules').IRootState;
|
|
3
|
-
explorer: import('
|
|
3
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
4
4
|
debugger: import('../modules').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const selectRolesAndPrivileges: ((state: import('redux').EmptyObject & {
|
|
2
2
|
root: import('../modules').IRootState;
|
|
3
|
-
explorer: import('
|
|
3
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
4
4
|
debugger: import('../modules').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -44,9 +44,9 @@ export declare const selectRolesAndPrivileges: ((state: import('redux').EmptyObj
|
|
|
44
44
|
};
|
|
45
45
|
export declare const selectRoles: ((state: import('redux').EmptyObject & {
|
|
46
46
|
root: import('../modules').IRootState;
|
|
47
|
-
explorer: import('
|
|
47
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
48
48
|
debugger: import('../modules').IDebuggerState;
|
|
49
|
-
settings: import('
|
|
49
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
50
50
|
catalog: {
|
|
51
51
|
state: "loading";
|
|
52
52
|
} | {
|
|
@@ -72,9 +72,9 @@ export declare const selectRoles: ((state: import('redux').EmptyObject & {
|
|
|
72
72
|
};
|
|
73
73
|
export declare const selectPrivileges: ((state: import('redux').EmptyObject & {
|
|
74
74
|
root: import('../modules').IRootState;
|
|
75
|
-
explorer: import('
|
|
75
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
76
76
|
debugger: import('../modules').IDebuggerState;
|
|
77
|
-
settings: import('
|
|
77
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
78
78
|
catalog: {
|
|
79
79
|
state: "loading";
|
|
80
80
|
} | {
|
|
@@ -100,9 +100,9 @@ export declare const selectPrivileges: ((state: import('redux').EmptyObject & {
|
|
|
100
100
|
};
|
|
101
101
|
export declare const selectGuestPrivilege: ((state: import('redux').EmptyObject & {
|
|
102
102
|
root: import('../modules').IRootState;
|
|
103
|
-
explorer: import('
|
|
103
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
104
104
|
debugger: import('../modules').IDebuggerState;
|
|
105
|
-
settings: import('
|
|
105
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
106
106
|
catalog: {
|
|
107
107
|
state: "loading";
|
|
108
108
|
} | {
|
|
@@ -128,9 +128,9 @@ export declare const selectGuestPrivilege: ((state: import('redux').EmptyObject
|
|
|
128
128
|
};
|
|
129
129
|
export declare const selectRolesFlags: ((state: import('redux').EmptyObject & {
|
|
130
130
|
root: import('../modules').IRootState;
|
|
131
|
-
explorer: import('
|
|
131
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
132
132
|
debugger: import('../modules').IDebuggerState;
|
|
133
|
-
settings: import('
|
|
133
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
134
134
|
catalog: {
|
|
135
135
|
state: "loading";
|
|
136
136
|
} | {
|
|
@@ -174,9 +174,9 @@ export declare const selectRolesFlags: ((state: import('redux').EmptyObject & {
|
|
|
174
174
|
};
|
|
175
175
|
export declare const selectSelectedTab: ((state: import('redux').EmptyObject & {
|
|
176
176
|
root: import('../modules').IRootState;
|
|
177
|
-
explorer: import('
|
|
177
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
178
178
|
debugger: import('../modules').IDebuggerState;
|
|
179
|
-
settings: import('
|
|
179
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
180
180
|
catalog: {
|
|
181
181
|
state: "loading";
|
|
182
182
|
} | {
|
|
@@ -202,9 +202,9 @@ export declare const selectSelectedTab: ((state: import('redux').EmptyObject & {
|
|
|
202
202
|
};
|
|
203
203
|
export declare const selectForceLogin: ((state: import('redux').EmptyObject & {
|
|
204
204
|
root: import('../modules').IRootState;
|
|
205
|
-
explorer: import('
|
|
205
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
206
206
|
debugger: import('../modules').IDebuggerState;
|
|
207
|
-
settings: import('
|
|
207
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
208
208
|
catalog: {
|
|
209
209
|
state: "loading";
|
|
210
210
|
} | {
|
|
@@ -230,9 +230,9 @@ export declare const selectForceLogin: ((state: import('redux').EmptyObject & {
|
|
|
230
230
|
};
|
|
231
231
|
export declare const selectRestrictedByDefault: ((state: import('redux').EmptyObject & {
|
|
232
232
|
root: import('../modules').IRootState;
|
|
233
|
-
explorer: import('
|
|
233
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
234
234
|
debugger: import('../modules').IDebuggerState;
|
|
235
|
-
settings: import('
|
|
235
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
236
236
|
catalog: {
|
|
237
237
|
state: "loading";
|
|
238
238
|
} | {
|
|
@@ -258,9 +258,9 @@ export declare const selectRestrictedByDefault: ((state: import('redux').EmptyOb
|
|
|
258
258
|
};
|
|
259
259
|
export declare const selectRolesDate: ((state: import('redux').EmptyObject & {
|
|
260
260
|
root: import('../modules').IRootState;
|
|
261
|
-
explorer: import('
|
|
261
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
262
262
|
debugger: import('../modules').IDebuggerState;
|
|
263
|
-
settings: import('
|
|
263
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
264
264
|
catalog: {
|
|
265
265
|
state: "loading";
|
|
266
266
|
} | {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const selectSessionSettings: ((state: import('redux').EmptyObject & {
|
|
2
2
|
root: import('../modules').IRootState;
|
|
3
|
-
explorer: import('
|
|
3
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
4
4
|
debugger: import('../modules').IDebuggerState;
|
|
5
|
-
settings: import('
|
|
5
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
6
6
|
catalog: {
|
|
7
7
|
state: "loading";
|
|
8
8
|
} | {
|
|
@@ -23,7 +23,7 @@ export declare const selectSessionSettings: ((state: import('redux').EmptyObject
|
|
|
23
23
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
24
24
|
}) => {
|
|
25
25
|
[key: string]: unknown;
|
|
26
|
-
}) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
26
|
+
}) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ISettingsState) => {
|
|
27
27
|
[key: string]: unknown;
|
|
28
28
|
}, {
|
|
29
29
|
clearCache: () => void;
|
|
@@ -32,9 +32,9 @@ export declare const selectSessionSettings: ((state: import('redux').EmptyObject
|
|
|
32
32
|
};
|
|
33
33
|
export declare const selectPartialSessionSettings: <T extends string[]>(...keys: T) => ((state: import('redux').EmptyObject & {
|
|
34
34
|
root: import('../modules').IRootState;
|
|
35
|
-
explorer: import('
|
|
35
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
36
36
|
debugger: import('../modules').IDebuggerState;
|
|
37
|
-
settings: import('
|
|
37
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
38
38
|
catalog: {
|
|
39
39
|
state: "loading";
|
|
40
40
|
} | {
|
|
@@ -62,9 +62,9 @@ export declare const selectPartialSessionSettings: <T extends string[]>(...keys:
|
|
|
62
62
|
};
|
|
63
63
|
export declare const selectSessionSetting: <T = string>(key: string) => ((state: import('redux').EmptyObject & {
|
|
64
64
|
root: import('../modules').IRootState;
|
|
65
|
-
explorer: import('
|
|
65
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
66
66
|
debugger: import('../modules').IDebuggerState;
|
|
67
|
-
settings: import('
|
|
67
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
68
68
|
catalog: {
|
|
69
69
|
state: "loading";
|
|
70
70
|
} | {
|
|
@@ -92,9 +92,9 @@ export declare const selectSessionSetting: <T = string>(key: string) => ((state:
|
|
|
92
92
|
};
|
|
93
93
|
export declare const selectFeatureFlag: (key: string) => ((state: import('redux').EmptyObject & {
|
|
94
94
|
root: import('../modules').IRootState;
|
|
95
|
-
explorer: import('
|
|
95
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
96
96
|
debugger: import('../modules').IDebuggerState;
|
|
97
|
-
settings: import('
|
|
97
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
98
98
|
catalog: {
|
|
99
99
|
state: "loading";
|
|
100
100
|
} | {
|
|
@@ -122,9 +122,9 @@ export declare const selectFeatureFlag: (key: string) => ((state: import('redux'
|
|
|
122
122
|
};
|
|
123
123
|
export declare const selectProjectSettings: ((state: import('redux').EmptyObject & {
|
|
124
124
|
root: import('../modules').IRootState;
|
|
125
|
-
explorer: import('
|
|
125
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
126
126
|
debugger: import('../modules').IDebuggerState;
|
|
127
|
-
settings: import('
|
|
127
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
128
128
|
catalog: {
|
|
129
129
|
state: "loading";
|
|
130
130
|
} | {
|
|
@@ -145,7 +145,7 @@ export declare const selectProjectSettings: ((state: import('redux').EmptyObject
|
|
|
145
145
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
146
146
|
}) => {
|
|
147
147
|
[key: string]: unknown;
|
|
148
|
-
}) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
148
|
+
}) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ISettingsState) => {
|
|
149
149
|
[key: string]: unknown;
|
|
150
150
|
}, {
|
|
151
151
|
clearCache: () => void;
|
|
@@ -154,9 +154,9 @@ export declare const selectProjectSettings: ((state: import('redux').EmptyObject
|
|
|
154
154
|
};
|
|
155
155
|
export declare const selectPreferences: ((state: import('redux').EmptyObject & {
|
|
156
156
|
root: import('../modules').IRootState;
|
|
157
|
-
explorer: import('
|
|
157
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
158
158
|
debugger: import('../modules').IDebuggerState;
|
|
159
|
-
settings: import('
|
|
159
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
160
160
|
catalog: {
|
|
161
161
|
state: "loading";
|
|
162
162
|
} | {
|
|
@@ -175,16 +175,16 @@ export declare const selectPreferences: ((state: import('redux').EmptyObject & {
|
|
|
175
175
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
176
176
|
model: import('../modules').IModelState;
|
|
177
177
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
178
|
-
}) => import('
|
|
178
|
+
}) => import('@ws-ui/shared').ISettingsState) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ISettingsState) => import('@ws-ui/shared').ISettingsState, {
|
|
179
179
|
clearCache: () => void;
|
|
180
180
|
}> & {
|
|
181
181
|
clearCache: () => void;
|
|
182
182
|
};
|
|
183
183
|
export declare const selectServerSettings: ((state: import('redux').EmptyObject & {
|
|
184
184
|
root: import('../modules').IRootState;
|
|
185
|
-
explorer: import('
|
|
185
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
186
186
|
debugger: import('../modules').IDebuggerState;
|
|
187
|
-
settings: import('
|
|
187
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
188
188
|
catalog: {
|
|
189
189
|
state: "loading";
|
|
190
190
|
} | {
|
|
@@ -203,16 +203,16 @@ export declare const selectServerSettings: ((state: import('redux').EmptyObject
|
|
|
203
203
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
204
204
|
model: import('../modules').IModelState;
|
|
205
205
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
206
|
-
}) => import('@ws-ui/shared').IAppSettingsResponse) & import('reselect').OutputSelectorFields<(args_0: import('
|
|
206
|
+
}) => import('@ws-ui/shared').IAppSettingsResponse) & import('reselect').OutputSelectorFields<(args_0: import('@ws-ui/shared').ISettingsState) => import('@ws-ui/shared').IAppSettingsResponse, {
|
|
207
207
|
clearCache: () => void;
|
|
208
208
|
}> & {
|
|
209
209
|
clearCache: () => void;
|
|
210
210
|
};
|
|
211
211
|
export declare const selectRemoteDebuggerMode: ((state: import('redux').EmptyObject & {
|
|
212
212
|
root: import('../modules').IRootState;
|
|
213
|
-
explorer: import('
|
|
213
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
214
214
|
debugger: import('../modules').IDebuggerState;
|
|
215
|
-
settings: import('
|
|
215
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
216
216
|
catalog: {
|
|
217
217
|
state: "loading";
|
|
218
218
|
} | {
|
|
@@ -238,9 +238,9 @@ export declare const selectRemoteDebuggerMode: ((state: import('redux').EmptyObj
|
|
|
238
238
|
};
|
|
239
239
|
export declare const selectQodly: ((state: import('redux').EmptyObject & {
|
|
240
240
|
root: import('../modules').IRootState;
|
|
241
|
-
explorer: import('
|
|
241
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
242
242
|
debugger: import('../modules').IDebuggerState;
|
|
243
|
-
settings: import('
|
|
243
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
244
244
|
catalog: {
|
|
245
245
|
state: "loading";
|
|
246
246
|
} | {
|
|
@@ -266,9 +266,9 @@ export declare const selectQodly: ((state: import('redux').EmptyObject & {
|
|
|
266
266
|
};
|
|
267
267
|
export declare const selectMonacoZoom: ((state: import('redux').EmptyObject & {
|
|
268
268
|
root: import('../modules').IRootState;
|
|
269
|
-
explorer: import('
|
|
269
|
+
explorer: import('@ws-ui/shared').ITreeItem[];
|
|
270
270
|
debugger: import('../modules').IDebuggerState;
|
|
271
|
-
settings: import('
|
|
271
|
+
settings: import('@ws-ui/shared').ISettingsState;
|
|
272
272
|
catalog: {
|
|
273
273
|
state: "loading";
|
|
274
274
|
} | {
|