@ws-ui/store 1.6.8 → 1.6.9
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.
|
@@ -53,6 +53,9 @@ export interface ICommonVariable {
|
|
|
53
53
|
export interface ICallChainVariable extends ICommonVariable {
|
|
54
54
|
frameId: number;
|
|
55
55
|
}
|
|
56
|
+
export interface IArgumentVariable extends ICommonVariable {
|
|
57
|
+
frameId: number;
|
|
58
|
+
}
|
|
56
59
|
export interface ILocalVariable extends ICommonVariable {
|
|
57
60
|
frameId: number;
|
|
58
61
|
}
|
|
@@ -61,7 +64,7 @@ export interface ICurrentLineVariable extends ICommonVariable {
|
|
|
61
64
|
}
|
|
62
65
|
export interface IExpressionVariable extends ICommonVariable {
|
|
63
66
|
}
|
|
64
|
-
export type ISessionVariable = ICallChainVariable | ILocalVariable | ICurrentLineVariable | IExpressionVariable;
|
|
67
|
+
export type ISessionVariable = ICallChainVariable | IArgumentVariable | ILocalVariable | ICurrentLineVariable | IExpressionVariable;
|
|
65
68
|
export interface IException {
|
|
66
69
|
errMess: string;
|
|
67
70
|
location: string;
|
|
@@ -91,9 +94,11 @@ export interface IDebuggerSession {
|
|
|
91
94
|
variables: {
|
|
92
95
|
callchain: ICallChainVariable[];
|
|
93
96
|
expressions: IExpressionVariable[];
|
|
97
|
+
argument: IArgumentVariable[];
|
|
94
98
|
local: ILocalVariable[];
|
|
95
99
|
currentLine: ICurrentLineVariable[];
|
|
96
100
|
};
|
|
101
|
+
expandedVariables: DebuggerVariablesKey<'expressions'>[];
|
|
97
102
|
stopped?: boolean;
|
|
98
103
|
}
|
|
99
104
|
export type DebuggerVariablesKey<K extends string = ''> = keyof Omit<IDebuggerSession['variables'], K>;
|
|
@@ -637,7 +637,7 @@ export declare const selectStackFrames: (threadId: number) => ((state: import('r
|
|
|
637
637
|
}> & {
|
|
638
638
|
clearCache: () => void;
|
|
639
639
|
};
|
|
640
|
-
export declare const selectCommonVariables: (threadId: number, key: CommonDebuggerVariablesKey) => ((state: import('redux').EmptyObject & {
|
|
640
|
+
export declare const selectCommonVariables: (threadId: number, key: CommonDebuggerVariablesKey, frameId: number) => ((state: import('redux').EmptyObject & {
|
|
641
641
|
root: import('../modules').IRootState;
|
|
642
642
|
explorer: import('../modules').ITreeItem[];
|
|
643
643
|
debugger: import('../modules').IDebuggerState;
|
|
@@ -660,7 +660,7 @@ export declare const selectCommonVariables: (threadId: number, key: CommonDebugg
|
|
|
660
660
|
sharedCSS: import('../modules').ISharedCSSState;
|
|
661
661
|
model: import('../modules').IModelState;
|
|
662
662
|
tasks: import('@ws-ui/shared').ISingleTask[];
|
|
663
|
-
}) => import('../modules').
|
|
663
|
+
}) => import('../modules').IVariable[]) & import('reselect').OutputSelectorFields<(args_0: IDebuggerSession[]) => import('../modules').IVariable[], {
|
|
664
664
|
clearCache: () => void;
|
|
665
665
|
}> & {
|
|
666
666
|
clearCache: () => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ws-ui/store",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.9",
|
|
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.6.
|
|
25
|
-
"@ws-ui/shared": "1.6.
|
|
24
|
+
"@ws-ui/icons": "1.6.9",
|
|
25
|
+
"@ws-ui/shared": "1.6.9",
|
|
26
26
|
"lodash": "^4.17.21",
|
|
27
27
|
"minimatch": "^10.0.1",
|
|
28
28
|
"react": "^17.0.2",
|