@ws-ui/store 0.0.2 → 0.0.4
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 +142 -97
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.es.js +13580 -12691
- package/dist/index.es.js.map +1 -1
- package/dist/modules/debugger/reducer.d.ts +4 -4
- package/dist/modules/debugger/types.d.ts +1 -13
- package/dist/modules/debugger/utils.d.ts +1 -1
- package/dist/modules/explorer/thunks.d.ts +9 -9
- package/dist/modules/model/thunks.d.ts +5 -5
- package/dist/modules/model/types.d.ts +0 -1
- package/dist/modules/roles/thunks.d.ts +1 -1
- package/dist/modules/roles/types.d.ts +1 -1
- package/dist/modules/root/reducer.d.ts +9 -9
- package/dist/modules/root/thunks.d.ts +7 -7
- package/dist/modules/root/types.d.ts +1 -2
- package/dist/modules/tabs/selectors.d.ts +3 -3
- package/dist/selectors/debugger.d.ts +3 -3
- package/dist/selectors/explorer.d.ts +45 -45
- package/dist/selectors/styles.d.ts +3 -3
- package/dist/selectors/tabs.d.ts +3 -3
- package/dist/utils.d.ts +1 -1
- package/package.json +2 -2
- package/dist/interfaces/index.d.ts +0 -1
- package/dist/interfaces/shared.d.ts +0 -60
|
@@ -34,8 +34,8 @@ export declare const addBreakpointDecoration: import("@reduxjs/toolkit").ActionC
|
|
|
34
34
|
fileType: import("./types").IDebuggerFileType;
|
|
35
35
|
methodName: string;
|
|
36
36
|
className?: string | undefined;
|
|
37
|
-
ext: import("
|
|
38
|
-
source: import("
|
|
37
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
38
|
+
source: import("@ws-ui/shared").ISource;
|
|
39
39
|
breakpoint: IBreakpointDecoration;
|
|
40
40
|
}, string>, removeBreakpointDecoration: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
41
41
|
filePath: string;
|
|
@@ -48,8 +48,8 @@ export declare const addBreakpointDecoration: import("@reduxjs/toolkit").ActionC
|
|
|
48
48
|
fileType: import("./types").IDebuggerFileType;
|
|
49
49
|
methodName: string;
|
|
50
50
|
className?: string | undefined;
|
|
51
|
-
ext: import("
|
|
52
|
-
source: import("
|
|
51
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
52
|
+
source: import("@ws-ui/shared").ISource;
|
|
53
53
|
breakpoints: IBreakpoint[];
|
|
54
54
|
offset?: number | undefined;
|
|
55
55
|
type?: "draft" | "saved" | undefined;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
2
|
import { DebugProtocol } from 'vscode-debugprotocol';
|
|
3
|
-
import { FileFolderType } from '@ws-ui/shared';
|
|
4
|
-
export type DebuggerFileExtension = '4dm' | '4qs';
|
|
3
|
+
import { DebuggerFileExtension, FileFolderType, ICodeDescriptor, ISource } from '@ws-ui/shared';
|
|
5
4
|
export interface IExpression {
|
|
6
5
|
label: string;
|
|
7
6
|
result?: string;
|
|
@@ -17,17 +16,6 @@ interface IBreakpointsData {
|
|
|
17
16
|
locations: IBreakpoint[];
|
|
18
17
|
offset?: number;
|
|
19
18
|
}
|
|
20
|
-
export interface ICodeDescriptor {
|
|
21
|
-
type: number;
|
|
22
|
-
methodName?: string;
|
|
23
|
-
className?: string;
|
|
24
|
-
functionName?: string;
|
|
25
|
-
methodPath?: string;
|
|
26
|
-
}
|
|
27
|
-
export interface ISource extends DebugProtocol.Source {
|
|
28
|
-
codeDescriptor?: ICodeDescriptor;
|
|
29
|
-
codeDescriptorInfo?: ICodeDescriptor;
|
|
30
|
-
}
|
|
31
19
|
export type IDebuggerData = {
|
|
32
20
|
filePath: string;
|
|
33
21
|
fileType: IDebuggerFileType;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/// <reference types="@ws-ui/shared/dist/declarations/datasources/interfaces/dataclass-attribute" />
|
|
3
3
|
import { Action, ThunkDispatch } from '@reduxjs/toolkit';
|
|
4
4
|
import { FileFolderType, FileFolderTypeWithContent, IFileInfo, ISaveFileResponse, ITextEditorSelection } from '@ws-ui/shared';
|
|
5
|
-
import { ITab } from '
|
|
5
|
+
import { ITab } from '@ws-ui/shared';
|
|
6
6
|
import { ClassFileTypes } from '../../modules/root/types';
|
|
7
7
|
import { AppState } from '..';
|
|
8
8
|
import { ITreeItem } from './types';
|
|
@@ -30,9 +30,9 @@ export declare const tryEditMethod: import("@reduxjs/toolkit").AsyncThunk<ITab<a
|
|
|
30
30
|
};
|
|
31
31
|
diffContent: string;
|
|
32
32
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
33
|
-
source: import("
|
|
33
|
+
source: import("@ws-ui/shared").ISource;
|
|
34
34
|
editor: import("@ws-ui/shared").IEditor;
|
|
35
|
-
ext: import("
|
|
35
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
36
36
|
}>>, {
|
|
37
37
|
method: catalog.IMethod;
|
|
38
38
|
}, {
|
|
@@ -109,9 +109,9 @@ export declare const openFile: import("@reduxjs/toolkit").AsyncThunk<ITab<any, P
|
|
|
109
109
|
};
|
|
110
110
|
diffContent: string;
|
|
111
111
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
112
|
-
source: import("
|
|
112
|
+
source: import("@ws-ui/shared").ISource;
|
|
113
113
|
editor: import("@ws-ui/shared").IEditor;
|
|
114
|
-
ext: import("
|
|
114
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
115
115
|
}>>, {
|
|
116
116
|
file: IFileInfo;
|
|
117
117
|
inactive?: boolean | undefined;
|
|
@@ -130,9 +130,9 @@ export declare const openFileAtLine: import("@reduxjs/toolkit").AsyncThunk<ITab<
|
|
|
130
130
|
};
|
|
131
131
|
diffContent: string;
|
|
132
132
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
133
|
-
source: import("
|
|
133
|
+
source: import("@ws-ui/shared").ISource;
|
|
134
134
|
editor: import("@ws-ui/shared").IEditor;
|
|
135
|
-
ext: import("
|
|
135
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
136
136
|
}>>, {
|
|
137
137
|
file: IFileInfo;
|
|
138
138
|
line: number;
|
|
@@ -165,9 +165,9 @@ export declare const openFileAtSelection: import("@reduxjs/toolkit").AsyncThunk<
|
|
|
165
165
|
};
|
|
166
166
|
diffContent: string;
|
|
167
167
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
168
|
-
source: import("
|
|
168
|
+
source: import("@ws-ui/shared").ISource;
|
|
169
169
|
editor: import("@ws-ui/shared").IEditor;
|
|
170
|
-
ext: import("
|
|
170
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
171
171
|
}>>, IOpenFileAtSelectionPayload, {
|
|
172
172
|
state: AppState;
|
|
173
173
|
}>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ITab } from '
|
|
1
|
+
import { ITab } from '@ws-ui/shared';
|
|
2
2
|
import { ServerModel } from '../../modules/model/types';
|
|
3
3
|
import { AppState } from '..';
|
|
4
4
|
type AppThunkOpts<T = string> = {
|
|
@@ -27,9 +27,9 @@ export declare const saveModel: import("@reduxjs/toolkit").AsyncThunk<{
|
|
|
27
27
|
};
|
|
28
28
|
diffContent: string;
|
|
29
29
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
30
|
-
source: import("
|
|
30
|
+
source: import("@ws-ui/shared").ISource;
|
|
31
31
|
editor: import("@ws-ui/shared").IEditor;
|
|
32
|
-
ext: import("
|
|
32
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
33
33
|
}>>, AppThunkOpts<string>>;
|
|
34
34
|
export declare const openModel: import("@reduxjs/toolkit").AsyncThunk<void | ITab<any, Partial<{
|
|
35
35
|
initialLineInfo: {
|
|
@@ -43,9 +43,9 @@ export declare const openModel: import("@reduxjs/toolkit").AsyncThunk<void | ITa
|
|
|
43
43
|
};
|
|
44
44
|
diffContent: string;
|
|
45
45
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
46
|
-
source: import("
|
|
46
|
+
source: import("@ws-ui/shared").ISource;
|
|
47
47
|
editor: import("@ws-ui/shared").IEditor;
|
|
48
|
-
ext: import("
|
|
48
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
49
49
|
}>>, {}, AppThunkOpts<string>>;
|
|
50
50
|
export declare const tryRenameDataclass: import("@reduxjs/toolkit").AsyncThunk<void, {
|
|
51
51
|
dataclassId: string;
|
|
@@ -45,7 +45,6 @@ export interface ServerModel {
|
|
|
45
45
|
extraProperties?: catalog.IModelProperties;
|
|
46
46
|
dataClasses: catalog.IDataClass[];
|
|
47
47
|
}
|
|
48
|
-
export declare const MODEL_TAB_PATH = "model.4DModel";
|
|
49
48
|
export type DataclassScope = 'public' | 'publicOnServer';
|
|
50
49
|
export type AttributeScope = 'public' | 'publicOnServer' | 'protected' | 'private';
|
|
51
50
|
export type TIndexType = 'btree' | 'cluster' | 'auto' | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
2
|
import { IWebFormStyleClass } from '@ws-ui/shared';
|
|
3
|
-
import { ITab, ITabExtra, ITabFlags } from '
|
|
3
|
+
import { ITab, ITabExtra, ITabFlags } from '@ws-ui/shared';
|
|
4
4
|
import { IRootState, TActionAddDataSource, TActionRemoveDataSource, TActionSetDataSources } from './types';
|
|
5
5
|
export declare const stateSlice: import("@reduxjs/toolkit").Slice<import("immer/dist/internal.js").WritableDraft<IRootState>, {
|
|
6
6
|
setPanelState(state: import("immer/dist/internal.js").WritableDraft<IRootState>, action: PayloadAction<Partial<ITab['view']['panel']> & {
|
|
@@ -56,9 +56,9 @@ export declare const setTabs: import("@reduxjs/toolkit").ActionCreatorWithPayloa
|
|
|
56
56
|
};
|
|
57
57
|
diffContent: string;
|
|
58
58
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
59
|
-
source: import("
|
|
59
|
+
source: import("@ws-ui/shared").ISource;
|
|
60
60
|
editor: import("@ws-ui/shared").IEditor;
|
|
61
|
-
ext: import("
|
|
61
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
62
62
|
}>>[], string>, closeTab: import("@reduxjs/toolkit").ActionCreatorWithPayload<number, string>, setContent: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
63
63
|
path: string;
|
|
64
64
|
content: any;
|
|
@@ -101,9 +101,9 @@ export declare const setTabs: import("@reduxjs/toolkit").ActionCreatorWithPayloa
|
|
|
101
101
|
};
|
|
102
102
|
diffContent: string;
|
|
103
103
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
104
|
-
source: import("
|
|
104
|
+
source: import("@ws-ui/shared").ISource;
|
|
105
105
|
editor: import("@ws-ui/shared").IEditor;
|
|
106
|
-
ext: import("
|
|
106
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
107
107
|
}>>, string>, openTabUnselected: import("@reduxjs/toolkit").ActionCreatorWithPayload<ITab<any, Partial<{
|
|
108
108
|
initialLineInfo: {
|
|
109
109
|
line: number;
|
|
@@ -116,9 +116,9 @@ export declare const setTabs: import("@reduxjs/toolkit").ActionCreatorWithPayloa
|
|
|
116
116
|
};
|
|
117
117
|
diffContent: string;
|
|
118
118
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
119
|
-
source: import("
|
|
119
|
+
source: import("@ws-ui/shared").ISource;
|
|
120
120
|
editor: import("@ws-ui/shared").IEditor;
|
|
121
|
-
ext: import("
|
|
121
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
122
122
|
}>>, string>, addWebFormStyles: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
123
123
|
path: string;
|
|
124
124
|
styles: IWebFormStyleClass[];
|
|
@@ -134,9 +134,9 @@ export declare const setTabs: import("@reduxjs/toolkit").ActionCreatorWithPayloa
|
|
|
134
134
|
};
|
|
135
135
|
diffContent: string;
|
|
136
136
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
137
|
-
source: import("
|
|
137
|
+
source: import("@ws-ui/shared").ISource;
|
|
138
138
|
editor: import("@ws-ui/shared").IEditor;
|
|
139
|
-
ext: import("
|
|
139
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
140
140
|
}>>, string>, openSettingsTab: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, setPanelState: import("@reduxjs/toolkit").ActionCreatorWithPayload<Partial<{
|
|
141
141
|
isOpen: boolean;
|
|
142
142
|
type: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
|
|
2
2
|
import { FileFolderTypeWithContent, IFileInfoResponse, IMultilineMessage, INodeInfo } from '@ws-ui/shared';
|
|
3
|
-
import { ITab } from '
|
|
3
|
+
import { ITab } from '@ws-ui/shared';
|
|
4
4
|
import { AppState } from '..';
|
|
5
5
|
import { ClassFileTypes, TActionRenameDataSource } from './types';
|
|
6
6
|
export declare const fetchFiles: import("@reduxjs/toolkit").AsyncThunk<{
|
|
@@ -60,9 +60,9 @@ export declare const reloadTab: import("@reduxjs/toolkit").AsyncThunk<void | INo
|
|
|
60
60
|
};
|
|
61
61
|
diffContent: string;
|
|
62
62
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
63
|
-
source: import("
|
|
63
|
+
source: import("@ws-ui/shared").ISource;
|
|
64
64
|
editor: import("@ws-ui/shared").IEditor;
|
|
65
|
-
ext: import("
|
|
65
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
66
66
|
}>>, {
|
|
67
67
|
state: AppState;
|
|
68
68
|
}>;
|
|
@@ -86,9 +86,9 @@ export declare const tryInjectMethod: import("@reduxjs/toolkit").AsyncThunk<ITab
|
|
|
86
86
|
};
|
|
87
87
|
diffContent: string;
|
|
88
88
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
89
|
-
source: import("
|
|
89
|
+
source: import("@ws-ui/shared").ISource;
|
|
90
90
|
editor: import("@ws-ui/shared").IEditor;
|
|
91
|
-
ext: import("
|
|
91
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
92
92
|
}>> | null, {
|
|
93
93
|
name: string;
|
|
94
94
|
type?: ClassFileTypes | undefined;
|
|
@@ -108,9 +108,9 @@ export declare const openRoles: import("@reduxjs/toolkit").AsyncThunk<void | ITa
|
|
|
108
108
|
};
|
|
109
109
|
diffContent: string;
|
|
110
110
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
111
|
-
source: import("
|
|
111
|
+
source: import("@ws-ui/shared").ISource;
|
|
112
112
|
editor: import("@ws-ui/shared").IEditor;
|
|
113
|
-
ext: import("
|
|
113
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
114
114
|
}>>, {}, {
|
|
115
115
|
state: AppState;
|
|
116
116
|
rejectValue: string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
|
|
2
2
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
3
|
-
import { IWebFormContent } from '@ws-ui/shared';
|
|
4
|
-
import { ITab } from '../../interfaces';
|
|
3
|
+
import { IWebFormContent, ITab } from '@ws-ui/shared';
|
|
5
4
|
export interface IRootState {
|
|
6
5
|
tabs: ITab[];
|
|
7
6
|
filesLoading: boolean;
|
|
@@ -23,7 +23,7 @@ export declare const selectPanelByPath: (path: string) => ((state: import("redux
|
|
|
23
23
|
isOpen: boolean;
|
|
24
24
|
type: string;
|
|
25
25
|
current: string;
|
|
26
|
-
}> | undefined) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<import("
|
|
26
|
+
}> | undefined) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<import("@ws-ui/shared").ITab<any, Partial<{
|
|
27
27
|
initialLineInfo: {
|
|
28
28
|
line: number;
|
|
29
29
|
offset?: number | undefined;
|
|
@@ -35,9 +35,9 @@ export declare const selectPanelByPath: (path: string) => ((state: import("redux
|
|
|
35
35
|
};
|
|
36
36
|
diffContent: string;
|
|
37
37
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
38
|
-
source: import("
|
|
38
|
+
source: import("@ws-ui/shared").ISource;
|
|
39
39
|
editor: import("@ws-ui/shared").IEditor;
|
|
40
|
-
ext: import("
|
|
40
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
41
41
|
}>>>[]) => import("immer/dist/internal.js").WritableDraft<{
|
|
42
42
|
isOpen: boolean;
|
|
43
43
|
type: string;
|
|
@@ -330,7 +330,7 @@ export declare const selectSourceByPath: (filePath: string, methodName: string)
|
|
|
330
330
|
modals: import('../modules').IModalsState;
|
|
331
331
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
332
332
|
model: import('../modules').IModelState;
|
|
333
|
-
}) => import(
|
|
333
|
+
}) => import("@ws-ui/shared").ISource | undefined) & import("reselect").OutputSelectorFields<(args_0: IDebuggerData[]) => import("@ws-ui/shared").ISource | undefined, {
|
|
334
334
|
clearCache: () => void;
|
|
335
335
|
}> & {
|
|
336
336
|
clearCache: () => void;
|
|
@@ -381,10 +381,10 @@ export declare const selectSourceByThreadId: (threadId: number) => ((state: impo
|
|
|
381
381
|
sharedCSS: import("immer/dist/internal.js").WritableDraft<import('../modules').ISharedCSSState>;
|
|
382
382
|
model: import('../modules').IModelState;
|
|
383
383
|
}) => (import("vscode-debugprotocol").DebugProtocol.Source & {
|
|
384
|
-
codeDescriptorInfo?: import(
|
|
384
|
+
codeDescriptorInfo?: import("@ws-ui/shared").ICodeDescriptor | undefined;
|
|
385
385
|
content?: string | undefined;
|
|
386
386
|
}) | undefined) & import("reselect").OutputSelectorFields<(args_0: IDebuggerSession[]) => (import("vscode-debugprotocol").DebugProtocol.Source & {
|
|
387
|
-
codeDescriptorInfo?: import(
|
|
387
|
+
codeDescriptorInfo?: import("@ws-ui/shared").ICodeDescriptor | undefined;
|
|
388
388
|
content?: string | undefined;
|
|
389
389
|
}) | undefined, {
|
|
390
390
|
clearCache: () => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
|
|
2
|
-
import { ITab } from '
|
|
2
|
+
import { ITab } from '@ws-ui/shared';
|
|
3
3
|
export declare const selectRoot: ((state: import("redux").EmptyObject & {
|
|
4
4
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
5
5
|
explorer: import("immer/dist/internal.js").WritableDraft<import("../modules").ITreeItem>[];
|
|
@@ -57,9 +57,9 @@ export declare const selectTabs: ((state: import("redux").EmptyObject & {
|
|
|
57
57
|
};
|
|
58
58
|
diffContent: string;
|
|
59
59
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
60
|
-
source: import("
|
|
60
|
+
source: import("@ws-ui/shared").ISource;
|
|
61
61
|
editor: import("@ws-ui/shared").IEditor;
|
|
62
|
-
ext: import("
|
|
62
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
63
63
|
}>>>[]) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>) => import("immer/dist/internal.js").WritableDraft<ITab<any, Partial<{
|
|
64
64
|
initialLineInfo: {
|
|
65
65
|
line: number;
|
|
@@ -72,9 +72,9 @@ export declare const selectTabs: ((state: import("redux").EmptyObject & {
|
|
|
72
72
|
};
|
|
73
73
|
diffContent: string;
|
|
74
74
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
75
|
-
source: import("
|
|
75
|
+
source: import("@ws-ui/shared").ISource;
|
|
76
76
|
editor: import("@ws-ui/shared").IEditor;
|
|
77
|
-
ext: import("
|
|
77
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
78
78
|
}>>>[], {
|
|
79
79
|
clearCache: () => void;
|
|
80
80
|
}> & {
|
|
@@ -137,9 +137,9 @@ export declare const selectRecentFiles: ((state: import("redux").EmptyObject & {
|
|
|
137
137
|
};
|
|
138
138
|
diffContent: string;
|
|
139
139
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
140
|
-
source: import("
|
|
140
|
+
source: import("@ws-ui/shared").ISource;
|
|
141
141
|
editor: import("@ws-ui/shared").IEditor;
|
|
142
|
-
ext: import("
|
|
142
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
143
143
|
}>>>[]) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>) => import("immer/dist/internal.js").WritableDraft<ITab<any, Partial<{
|
|
144
144
|
initialLineInfo: {
|
|
145
145
|
line: number;
|
|
@@ -152,9 +152,9 @@ export declare const selectRecentFiles: ((state: import("redux").EmptyObject & {
|
|
|
152
152
|
};
|
|
153
153
|
diffContent: string;
|
|
154
154
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
155
|
-
source: import("
|
|
155
|
+
source: import("@ws-ui/shared").ISource;
|
|
156
156
|
editor: import("@ws-ui/shared").IEditor;
|
|
157
|
-
ext: import("
|
|
157
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
158
158
|
}>>>[], {
|
|
159
159
|
clearCache: () => void;
|
|
160
160
|
}> & {
|
|
@@ -192,9 +192,9 @@ export declare const selectCurrentTab: ((state: import("redux").EmptyObject & {
|
|
|
192
192
|
};
|
|
193
193
|
diffContent: string;
|
|
194
194
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
195
|
-
source: import("
|
|
195
|
+
source: import("@ws-ui/shared").ISource;
|
|
196
196
|
editor: import("@ws-ui/shared").IEditor;
|
|
197
|
-
ext: import("
|
|
197
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
198
198
|
}>>> | undefined) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>) => import("immer/dist/internal.js").WritableDraft<ITab<any, Partial<{
|
|
199
199
|
initialLineInfo: {
|
|
200
200
|
line: number;
|
|
@@ -207,9 +207,9 @@ export declare const selectCurrentTab: ((state: import("redux").EmptyObject & {
|
|
|
207
207
|
};
|
|
208
208
|
diffContent: string;
|
|
209
209
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
210
|
-
source: import("
|
|
210
|
+
source: import("@ws-ui/shared").ISource;
|
|
211
211
|
editor: import("@ws-ui/shared").IEditor;
|
|
212
|
-
ext: import("
|
|
212
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
213
213
|
}>>> | undefined, {
|
|
214
214
|
clearCache: () => void;
|
|
215
215
|
}> & {
|
|
@@ -247,9 +247,9 @@ export declare const selectTabMaxWeight: ((state: import("redux").EmptyObject &
|
|
|
247
247
|
};
|
|
248
248
|
diffContent: string;
|
|
249
249
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
250
|
-
source: import("
|
|
250
|
+
source: import("@ws-ui/shared").ISource;
|
|
251
251
|
editor: import("@ws-ui/shared").IEditor;
|
|
252
|
-
ext: import("
|
|
252
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
253
253
|
}>> | null) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>) => ITab<any, Partial<{
|
|
254
254
|
initialLineInfo: {
|
|
255
255
|
line: number;
|
|
@@ -262,9 +262,9 @@ export declare const selectTabMaxWeight: ((state: import("redux").EmptyObject &
|
|
|
262
262
|
};
|
|
263
263
|
diffContent: string;
|
|
264
264
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
265
|
-
source: import("
|
|
265
|
+
source: import("@ws-ui/shared").ISource;
|
|
266
266
|
editor: import("@ws-ui/shared").IEditor;
|
|
267
|
-
ext: import("
|
|
267
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
268
268
|
}>> | null, {
|
|
269
269
|
clearCache: () => void;
|
|
270
270
|
}> & {
|
|
@@ -302,9 +302,9 @@ export declare const selectPreviewedWebformsPaths: ((state: import("redux").Empt
|
|
|
302
302
|
};
|
|
303
303
|
diffContent: string;
|
|
304
304
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
305
|
-
source: import("
|
|
305
|
+
source: import("@ws-ui/shared").ISource;
|
|
306
306
|
editor: import("@ws-ui/shared").IEditor;
|
|
307
|
-
ext: import("
|
|
307
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
308
308
|
}>>>[]) => string[], {
|
|
309
309
|
clearCache: () => void;
|
|
310
310
|
}> & {
|
|
@@ -342,9 +342,9 @@ export declare const selectHasTabs: ((state: import("redux").EmptyObject & {
|
|
|
342
342
|
};
|
|
343
343
|
diffContent: string;
|
|
344
344
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
345
|
-
source: import("
|
|
345
|
+
source: import("@ws-ui/shared").ISource;
|
|
346
346
|
editor: import("@ws-ui/shared").IEditor;
|
|
347
|
-
ext: import("
|
|
347
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
348
348
|
}>>>[]) => boolean, {
|
|
349
349
|
clearCache: () => void;
|
|
350
350
|
}> & {
|
|
@@ -382,9 +382,9 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import("redu
|
|
|
382
382
|
};
|
|
383
383
|
diffContent: string;
|
|
384
384
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
385
|
-
source: import("
|
|
385
|
+
source: import("@ws-ui/shared").ISource;
|
|
386
386
|
editor: import("@ws-ui/shared").IEditor;
|
|
387
|
-
ext: import("
|
|
387
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
388
388
|
}>>> | undefined) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>) => import("immer/dist/internal.js").WritableDraft<ITab<any, Partial<{
|
|
389
389
|
initialLineInfo: {
|
|
390
390
|
line: number;
|
|
@@ -397,9 +397,9 @@ export declare const selectTabByPath: (tabPath: string) => ((state: import("redu
|
|
|
397
397
|
};
|
|
398
398
|
diffContent: string;
|
|
399
399
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
400
|
-
source: import("
|
|
400
|
+
source: import("@ws-ui/shared").ISource;
|
|
401
401
|
editor: import("@ws-ui/shared").IEditor;
|
|
402
|
-
ext: import("
|
|
402
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
403
403
|
}>>> | undefined, {
|
|
404
404
|
clearCache: () => void;
|
|
405
405
|
}> & {
|
|
@@ -437,9 +437,9 @@ export declare const selectContentByPath: (tabPath: string, contentPath?: string
|
|
|
437
437
|
};
|
|
438
438
|
diffContent: string;
|
|
439
439
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
440
|
-
source: import("
|
|
440
|
+
source: import("@ws-ui/shared").ISource;
|
|
441
441
|
editor: import("@ws-ui/shared").IEditor;
|
|
442
|
-
ext: import("
|
|
442
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
443
443
|
}>>> | undefined) => any, {
|
|
444
444
|
clearCache: () => void;
|
|
445
445
|
}> & {
|
|
@@ -477,9 +477,9 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
477
477
|
};
|
|
478
478
|
diffContent: string;
|
|
479
479
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
480
|
-
source: import("
|
|
480
|
+
source: import("@ws-ui/shared").ISource;
|
|
481
481
|
editor: import("@ws-ui/shared").IEditor;
|
|
482
|
-
ext: import("
|
|
482
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
483
483
|
}>> | undefined) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<ITab<any, Partial<{
|
|
484
484
|
initialLineInfo: {
|
|
485
485
|
line: number;
|
|
@@ -492,9 +492,9 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
492
492
|
};
|
|
493
493
|
diffContent: string;
|
|
494
494
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
495
|
-
source: import("
|
|
495
|
+
source: import("@ws-ui/shared").ISource;
|
|
496
496
|
editor: import("@ws-ui/shared").IEditor;
|
|
497
|
-
ext: import("
|
|
497
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
498
498
|
}>>> | undefined) => import("immer/dist/internal.js").WritableDraft<Partial<{
|
|
499
499
|
initialLineInfo: {
|
|
500
500
|
line: number;
|
|
@@ -507,9 +507,9 @@ export declare const selectTabExtraByPath: (tabPath: string) => ((state: import(
|
|
|
507
507
|
};
|
|
508
508
|
diffContent: string;
|
|
509
509
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
510
|
-
source: import("
|
|
510
|
+
source: import("@ws-ui/shared").ISource;
|
|
511
511
|
editor: import("@ws-ui/shared").IEditor;
|
|
512
|
-
ext: import("
|
|
512
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
513
513
|
}>> | undefined, {
|
|
514
514
|
clearCache: () => void;
|
|
515
515
|
}> & {
|
|
@@ -572,9 +572,9 @@ export declare const selectTouchedTabs: ((state: import("redux").EmptyObject & {
|
|
|
572
572
|
};
|
|
573
573
|
diffContent: string;
|
|
574
574
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
575
|
-
source: import("
|
|
575
|
+
source: import("@ws-ui/shared").ISource;
|
|
576
576
|
editor: import("@ws-ui/shared").IEditor;
|
|
577
|
-
ext: import("
|
|
577
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
578
578
|
}>>>[]) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<ITab<any, Partial<{
|
|
579
579
|
initialLineInfo: {
|
|
580
580
|
line: number;
|
|
@@ -587,9 +587,9 @@ export declare const selectTouchedTabs: ((state: import("redux").EmptyObject & {
|
|
|
587
587
|
};
|
|
588
588
|
diffContent: string;
|
|
589
589
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
590
|
-
source: import("
|
|
590
|
+
source: import("@ws-ui/shared").ISource;
|
|
591
591
|
editor: import("@ws-ui/shared").IEditor;
|
|
592
|
-
ext: import("
|
|
592
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
593
593
|
}>>>[]) => import("immer/dist/internal.js").WritableDraft<ITab<any, Partial<{
|
|
594
594
|
initialLineInfo: {
|
|
595
595
|
line: number;
|
|
@@ -602,9 +602,9 @@ export declare const selectTouchedTabs: ((state: import("redux").EmptyObject & {
|
|
|
602
602
|
};
|
|
603
603
|
diffContent: string;
|
|
604
604
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
605
|
-
source: import("
|
|
605
|
+
source: import("@ws-ui/shared").ISource;
|
|
606
606
|
editor: import("@ws-ui/shared").IEditor;
|
|
607
|
-
ext: import("
|
|
607
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
608
608
|
}>>>[], {
|
|
609
609
|
clearCache: () => void;
|
|
610
610
|
}> & {
|
|
@@ -642,9 +642,9 @@ export declare const selectTouchedTabsLength: ((state: import("redux").EmptyObje
|
|
|
642
642
|
};
|
|
643
643
|
diffContent: string;
|
|
644
644
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
645
|
-
source: import("
|
|
645
|
+
source: import("@ws-ui/shared").ISource;
|
|
646
646
|
editor: import("@ws-ui/shared").IEditor;
|
|
647
|
-
ext: import("
|
|
647
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
648
648
|
}>>>[]) => number, {
|
|
649
649
|
clearCache: () => void;
|
|
650
650
|
}> & {
|
|
@@ -682,9 +682,9 @@ export declare const selectDebuggers: ((state: import("redux").EmptyObject & {
|
|
|
682
682
|
};
|
|
683
683
|
diffContent: string;
|
|
684
684
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
685
|
-
source: import("
|
|
685
|
+
source: import("@ws-ui/shared").ISource;
|
|
686
686
|
editor: import("@ws-ui/shared").IEditor;
|
|
687
|
-
ext: import("
|
|
687
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
688
688
|
}>>[]) & import("reselect").OutputSelectorFields<(args_0: import("../modules").IDebuggerSession[]) => ITab<any, Partial<{
|
|
689
689
|
initialLineInfo: {
|
|
690
690
|
line: number;
|
|
@@ -697,9 +697,9 @@ export declare const selectDebuggers: ((state: import("redux").EmptyObject & {
|
|
|
697
697
|
};
|
|
698
698
|
diffContent: string;
|
|
699
699
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
700
|
-
source: import("
|
|
700
|
+
source: import("@ws-ui/shared").ISource;
|
|
701
701
|
editor: import("@ws-ui/shared").IEditor;
|
|
702
|
-
ext: import("
|
|
702
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
703
703
|
}>>[], {
|
|
704
704
|
clearCache: () => void;
|
|
705
705
|
}> & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="@ws-ui/shared/dist/declarations/datasources/datasource" />
|
|
2
2
|
import { EWebFormStyleClassScope, IWebFormStyleClass } from '@ws-ui/shared';
|
|
3
|
-
import { ITab } from '
|
|
3
|
+
import { ITab } from '@ws-ui/shared';
|
|
4
4
|
export declare const THEME_CLASSES: string[];
|
|
5
5
|
export declare const selectWebformStylesByPath: (path: string) => ((state: import("redux").EmptyObject & {
|
|
6
6
|
root: import("immer/dist/internal.js").WritableDraft<import("../modules").IRootState>;
|
|
@@ -34,9 +34,9 @@ export declare const selectWebformStylesByPath: (path: string) => ((state: impor
|
|
|
34
34
|
};
|
|
35
35
|
diffContent: string;
|
|
36
36
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
37
|
-
source: import("
|
|
37
|
+
source: import("@ws-ui/shared").ISource;
|
|
38
38
|
editor: import("@ws-ui/shared").IEditor;
|
|
39
|
-
ext: import("
|
|
39
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
40
40
|
}>>> | undefined) => IWebFormStyleClass[], {
|
|
41
41
|
clearCache: () => void;
|
|
42
42
|
}> & {
|
package/dist/selectors/tabs.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export declare const selectFlagsByPath: (path: string) => ((state: import("redux
|
|
|
26
26
|
loading: boolean;
|
|
27
27
|
old: boolean;
|
|
28
28
|
enabled: boolean;
|
|
29
|
-
}>> | undefined) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<import("
|
|
29
|
+
}>> | undefined) & import("reselect").OutputSelectorFields<(args_0: import("immer/dist/internal.js").WritableDraft<import("@ws-ui/shared").ITab<any, Partial<{
|
|
30
30
|
initialLineInfo: {
|
|
31
31
|
line: number;
|
|
32
32
|
offset?: number | undefined;
|
|
@@ -38,9 +38,9 @@ export declare const selectFlagsByPath: (path: string) => ((state: import("redux
|
|
|
38
38
|
};
|
|
39
39
|
diffContent: string;
|
|
40
40
|
attributes: import("@ws-ui/shared").IMethodAttributes;
|
|
41
|
-
source: import("
|
|
41
|
+
source: import("@ws-ui/shared").ISource;
|
|
42
42
|
editor: import("@ws-ui/shared").IEditor;
|
|
43
|
-
ext: import("
|
|
43
|
+
ext: import("@ws-ui/shared").DebuggerFileExtension;
|
|
44
44
|
}>>> | undefined) => import("immer/dist/internal.js").WritableDraft<Partial<{
|
|
45
45
|
touched: boolean;
|
|
46
46
|
removed: boolean;
|
package/dist/utils.d.ts
CHANGED