@newview/base-vue 1.1.6 → 1.1.8
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/base-vue.js +157 -25
- package/dist/base-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/readme.md +4 -0
- package/types/BaseInstance.d.ts +6 -0
- package/types/FreeLoginCenter.d.ts +4 -0
- package/types/OtherCommon.ts +7 -0
package/package.json
CHANGED
package/readme.md
CHANGED
package/types/BaseInstance.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { MessageInstance } from "./MessageInstance";
|
|
2
2
|
import { ModalInstance } from "./ModalInstance";
|
|
3
|
+
import { OtherCommon } from "./OtherCommon";
|
|
3
4
|
import { Utilities } from '@newview/tools';
|
|
4
5
|
import { StorageInfo } from "@newview/infrastructure";
|
|
5
6
|
import { Emitter, EventType } from "mitt";
|
|
@@ -25,6 +26,11 @@ export declare class BaseInstance {
|
|
|
25
26
|
*/
|
|
26
27
|
storageInfo: StorageInfo;
|
|
27
28
|
|
|
29
|
+
/**
|
|
30
|
+
* 其他公共方法(业务相关)
|
|
31
|
+
*/
|
|
32
|
+
otherCommon:OtherCommon
|
|
33
|
+
|
|
28
34
|
/**
|
|
29
35
|
* 事件总线
|
|
30
36
|
*/
|