sd-render 1.0.18 → 1.0.19
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/package.json
CHANGED
|
@@ -518,6 +518,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
518
518
|
versionStore: any;
|
|
519
519
|
appParams: any;
|
|
520
520
|
wsConn: import('../../types/StateStore').ConnectWs | undefined;
|
|
521
|
+
router: import('vue-router').Router;
|
|
522
|
+
returnUrl: any;
|
|
521
523
|
}, {}, {
|
|
522
524
|
connectWebSocket(channel: string, clientId: string, widgetId: string, onMessage: (data: import('../../types/Notify').wsDataReceive) => void, onError?: (event: Event) => void): import('../../types/StateStore').ConnectWs;
|
|
523
525
|
getAvatar(): string;
|
|
@@ -770,6 +770,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
770
770
|
versionStore: any;
|
|
771
771
|
appParams: any;
|
|
772
772
|
wsConn: import('../../types/StateStore').ConnectWs | undefined;
|
|
773
|
+
router: import('vue-router').Router;
|
|
774
|
+
returnUrl: any;
|
|
773
775
|
}, {}, {
|
|
774
776
|
connectWebSocket(channel: string, clientId: string, widgetId: string, onMessage: (data: import('../../types/Notify').wsDataReceive) => void, onError?: (event: Event) => void): import('../../types/StateStore').ConnectWs;
|
|
775
777
|
getAvatar(): string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { Router } from 'vue-router';
|
|
1
2
|
import { ConnectProject } from './Connect';
|
|
2
3
|
import { wsDataReceive, wsDataSend } from './Notify';
|
|
3
4
|
import { SdProvider } from './SdGridType';
|
|
4
|
-
import { OptionsSetting } from './Setting';
|
|
5
5
|
import { SdUserLogin } from './User';
|
|
6
6
|
export type ConnectStateStore = ReturnType<typeof useConnectStateStore>;
|
|
7
7
|
export type ConnectWs = {
|
|
@@ -20,6 +20,8 @@ export declare const useConnectStateStore: import('pinia').StoreDefinition<'conn
|
|
|
20
20
|
versionStore: any;
|
|
21
21
|
appParams: any;
|
|
22
22
|
wsConn: ConnectWs | undefined;
|
|
23
|
+
router: Router;
|
|
24
|
+
returnUrl: any;
|
|
23
25
|
}, {}, {
|
|
24
26
|
connectWebSocket(channel: string, clientId: string, widgetId: string, onMessage: (data: wsDataReceive) => void, onError?: (event: Event) => void): ConnectWs;
|
|
25
27
|
getAvatar(): string;
|