@kanaries/graphic-walker 0.2.3 → 0.2.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/store/index.d.ts
CHANGED
|
@@ -5,6 +5,16 @@ interface GlobalStore {
|
|
|
5
5
|
commonStore: CommonStore;
|
|
6
6
|
vizStore: VizSpecStore;
|
|
7
7
|
}
|
|
8
|
-
export declare
|
|
8
|
+
export declare function destroyGWStore(): void;
|
|
9
|
+
export declare function rebootGWStore(): void;
|
|
10
|
+
export declare class StoreWrapper extends React.Component<{
|
|
11
|
+
keepAlive?: boolean;
|
|
12
|
+
}> {
|
|
13
|
+
constructor(props: {
|
|
14
|
+
keepAlive?: boolean;
|
|
15
|
+
});
|
|
16
|
+
componentWillUnmount(): void;
|
|
17
|
+
render(): JSX.Element;
|
|
18
|
+
}
|
|
9
19
|
export declare function useGlobalStore(): GlobalStore;
|
|
10
20
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kanaries/graphic-walker",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev:front_end": "vite --host",
|
|
6
6
|
"dev": "npm run dev:front_end",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"prettier": {
|
|
29
|
-
"tabWidth": 4
|
|
29
|
+
"tabWidth": 4,
|
|
30
|
+
"printWidth": 120
|
|
30
31
|
},
|
|
31
32
|
"types": "./dist/index.d.ts",
|
|
32
33
|
"dependencies": {
|