@indfnd/common-mobile 0.0.2 → 0.0.82
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/CHANGELOG.md +831 -4
- package/dist/ind-common-mobile.es.js +267 -399
- package/dist/ind-common-mobile.umd.cjs +31 -31
- package/dist/styles/index.css +1 -1
- package/package.json +1 -1
- package/types/api/ipm/dm/demand/demand.d.ts +6 -10
- package/types/api/ism/am/basic/item.d.ts +6 -6
- package/types/components/404/back-btn-group.vue.d.ts +5 -17
- package/types/components/404/error-content.vue.d.ts +10 -24
- package/types/components/404/index.d.ts +2 -2
- package/types/components/404/index.vue.d.ts +4 -16
- package/types/components/form/condition-manager.vue.d.ts +22 -36
- package/types/components/form/form.vue.d.ts +15 -29
- package/types/components/form/index.d.ts +1 -1
- package/types/components/index.d.ts +4 -4
- package/types/components/layout/basic/index.d.ts +1 -1
- package/types/components/layout/basic/user.vue.d.ts +26 -40
- package/types/components/layout/index.d.ts +3 -3
- package/types/components/layout/mixin/item-mixin.d.ts +19 -19
- package/types/components/layout/mixin/mixin.d.ts +9 -9
- package/types/components/layout/route-wrapper/basic-layout.vue.d.ts +16 -28
- package/types/components/layout/route-wrapper/empty-layout.vue.d.ts +6 -18
- package/types/components/layout/route-wrapper/index.d.ts +2 -2
- package/types/components/layout/view-wrapper/detail-view.vue.d.ts +31 -45
- package/types/components/layout/view-wrapper/index.d.ts +2 -2
- package/types/components/layout/view-wrapper/page-view.vue.d.ts +23 -37
- package/types/components/login/index.d.ts +1 -1
- package/types/components/login/login-form.vue.d.ts +66 -80
- package/types/components/login/login.vue.d.ts +4 -16
- package/types/components/tabbar/Tabbar.vue.d.ts +4 -16
- package/types/components/tabbar/index.d.ts +1 -1
- package/types/config.d.ts +29 -29
- package/types/index.d.ts +18 -21
- package/types/mixins/popper.d.ts +62 -62
- package/types/plugins/config-plugin.d.ts +4 -9
- package/types/plugins/index.d.ts +2 -2
- package/types/plugins/router-plugin.d.ts +8 -14
- package/types/router/basic-routes.d.ts +7 -8
- package/types/router/generator-routers.d.ts +4 -4
- package/types/router/guard.d.ts +6 -11
- package/types/router/index.d.ts +4 -4
- package/types/store/app.d.ts +68 -96
- package/types/store/index.d.ts +6 -6
- package/types/store/user.d.ts +32 -43
- package/types/utils/ag-table/ag-table-locale.d.ts +263 -263
- package/types/utils/ag-table/agGridUtils.d.ts +1 -1
- package/types/utils/ag-table/index.d.ts +2 -2
- package/types/utils/date.d.ts +10 -10
- package/types/utils/eventBus.d.ts +2 -21
- package/types/utils/excel/Export2Excel.d.ts +1 -1
- package/types/utils/excel/assist.d.ts +1 -1
- package/types/utils/excel/excel.d.ts +42 -61
- package/types/utils/excel/index.d.ts +2 -2
- package/types/utils/index.d.ts +8 -8
- package/types/utils/router.d.ts +12 -12
- package/types/utils/style.d.ts +1 -1
- package/types/utils/theme.d.ts +3 -3
- package/types/utils/transfer-queue.d.ts +2 -2
|
@@ -1,47 +1,33 @@
|
|
|
1
|
-
declare const _default: import(
|
|
2
|
-
{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
2
|
isShowHeader: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
7
6
|
isShowBackBtn: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
useGoBack: BooleanConstructor
|
|
12
|
-
customTitle: StringConstructor
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
default: boolean
|
|
36
|
-
}
|
|
37
|
-
useGoBack: BooleanConstructor
|
|
38
|
-
customTitle: StringConstructor
|
|
39
|
-
}>
|
|
40
|
-
>,
|
|
41
|
-
{
|
|
42
|
-
isShowHeader: boolean
|
|
43
|
-
isShowBackBtn: boolean
|
|
44
|
-
useGoBack: boolean
|
|
45
|
-
}
|
|
46
|
-
>
|
|
47
|
-
export default _default
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
useGoBack: BooleanConstructor;
|
|
11
|
+
customTitle: StringConstructor;
|
|
12
|
+
}, {}, {}, {
|
|
13
|
+
title(): any;
|
|
14
|
+
}, {
|
|
15
|
+
back(): void;
|
|
16
|
+
goBack(): void;
|
|
17
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
isShowHeader: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
isShowBackBtn: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
useGoBack: BooleanConstructor;
|
|
27
|
+
customTitle: StringConstructor;
|
|
28
|
+
}>>, {
|
|
29
|
+
isShowHeader: boolean;
|
|
30
|
+
isShowBackBtn: boolean;
|
|
31
|
+
useGoBack: boolean;
|
|
32
|
+
}>;
|
|
33
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as DetailView } from
|
|
2
|
-
export { default as PageView } from
|
|
1
|
+
export { default as DetailView } from "./detail-view.vue";
|
|
2
|
+
export { default as PageView } from "./page-view.vue";
|
|
@@ -1,38 +1,24 @@
|
|
|
1
|
-
declare const _default: import(
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
loading: BooleanConstructor
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
customTitle: StringConstructor;
|
|
3
|
+
loading: BooleanConstructor;
|
|
5
4
|
isShowHeader: {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
isShowBackBtn: BooleanConstructor
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
type: BooleanConstructor
|
|
27
|
-
default: boolean
|
|
28
|
-
}
|
|
29
|
-
isShowBackBtn: BooleanConstructor
|
|
30
|
-
}>
|
|
31
|
-
>,
|
|
32
|
-
{
|
|
33
|
-
loading: boolean
|
|
34
|
-
isShowHeader: boolean
|
|
35
|
-
isShowBackBtn: boolean
|
|
36
|
-
}
|
|
37
|
-
>
|
|
38
|
-
export default _default
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
isShowBackBtn: BooleanConstructor;
|
|
9
|
+
}, {}, {}, {
|
|
10
|
+
title(): any;
|
|
11
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
customTitle: StringConstructor;
|
|
13
|
+
loading: BooleanConstructor;
|
|
14
|
+
isShowHeader: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
isShowBackBtn: BooleanConstructor;
|
|
19
|
+
}>>, {
|
|
20
|
+
loading: boolean;
|
|
21
|
+
isShowHeader: boolean;
|
|
22
|
+
isShowBackBtn: boolean;
|
|
23
|
+
}>;
|
|
24
|
+
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as Login } from
|
|
1
|
+
export { default as Login } from "./login.vue";
|
|
@@ -1,88 +1,74 @@
|
|
|
1
|
-
declare const _default: import(
|
|
2
|
-
|
|
3
|
-
loading: BooleanConstructor
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
loading: BooleanConstructor;
|
|
4
3
|
userNameRules: {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
4
|
+
type: ArrayConstructor;
|
|
5
|
+
default: () => {
|
|
6
|
+
required: boolean;
|
|
7
|
+
message: string;
|
|
8
|
+
trigger: string;
|
|
9
|
+
}[];
|
|
10
|
+
};
|
|
12
11
|
passwordRules: {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
12
|
+
type: ArrayConstructor;
|
|
13
|
+
default: () => {
|
|
14
|
+
required: boolean;
|
|
15
|
+
message: string;
|
|
16
|
+
trigger: string;
|
|
17
|
+
}[];
|
|
18
|
+
};
|
|
20
19
|
validCodeRules: {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
{},
|
|
30
|
-
{
|
|
20
|
+
type: ArrayConstructor;
|
|
21
|
+
default: () => {
|
|
22
|
+
required: boolean;
|
|
23
|
+
message: string;
|
|
24
|
+
trigger: string;
|
|
25
|
+
}[];
|
|
26
|
+
};
|
|
27
|
+
}, {}, {
|
|
31
28
|
form: {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
rememberMe: boolean
|
|
37
|
-
validCodeId: string
|
|
38
|
-
|
|
39
|
-
{
|
|
29
|
+
userName: string;
|
|
30
|
+
password: string;
|
|
31
|
+
validCode: string;
|
|
32
|
+
};
|
|
33
|
+
rememberMe: boolean;
|
|
34
|
+
validCodeId: string;
|
|
35
|
+
}, {
|
|
40
36
|
rules(): {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
captchaUrl(): string
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
{},
|
|
51
|
-
string,
|
|
52
|
-
Readonly<
|
|
53
|
-
import('vue').ExtractPropTypes<{
|
|
54
|
-
loading: BooleanConstructor
|
|
55
|
-
userNameRules: {
|
|
56
|
-
type: ArrayConstructor
|
|
37
|
+
userName: any;
|
|
38
|
+
password: any;
|
|
39
|
+
validCode: any;
|
|
40
|
+
};
|
|
41
|
+
captchaUrl(): string;
|
|
42
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
43
|
+
loading: BooleanConstructor;
|
|
44
|
+
userNameRules: {
|
|
45
|
+
type: ArrayConstructor;
|
|
57
46
|
default: () => {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}[]
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
type: ArrayConstructor
|
|
47
|
+
required: boolean;
|
|
48
|
+
message: string;
|
|
49
|
+
trigger: string;
|
|
50
|
+
}[];
|
|
51
|
+
};
|
|
52
|
+
passwordRules: {
|
|
53
|
+
type: ArrayConstructor;
|
|
65
54
|
default: () => {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
}[]
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
type: ArrayConstructor
|
|
55
|
+
required: boolean;
|
|
56
|
+
message: string;
|
|
57
|
+
trigger: string;
|
|
58
|
+
}[];
|
|
59
|
+
};
|
|
60
|
+
validCodeRules: {
|
|
61
|
+
type: ArrayConstructor;
|
|
73
62
|
default: () => {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
}[]
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
}
|
|
87
|
-
>
|
|
88
|
-
export default _default
|
|
63
|
+
required: boolean;
|
|
64
|
+
message: string;
|
|
65
|
+
trigger: string;
|
|
66
|
+
}[];
|
|
67
|
+
};
|
|
68
|
+
}>>, {
|
|
69
|
+
loading: boolean;
|
|
70
|
+
userNameRules: unknown[];
|
|
71
|
+
passwordRules: unknown[];
|
|
72
|
+
validCodeRules: unknown[];
|
|
73
|
+
}>;
|
|
74
|
+
export default _default;
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
declare const _default: import(
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
loading: boolean
|
|
6
|
-
},
|
|
7
|
-
{},
|
|
8
|
-
{},
|
|
9
|
-
import('vue').ComponentOptionsMixin,
|
|
10
|
-
import('vue').ComponentOptionsMixin,
|
|
11
|
-
{},
|
|
12
|
-
string,
|
|
13
|
-
Readonly<import('vue').ExtractPropTypes<{}>>,
|
|
14
|
-
{}
|
|
15
|
-
>
|
|
16
|
-
export default _default
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, any, {
|
|
2
|
+
loading: boolean;
|
|
3
|
+
}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
4
|
+
export default _default;
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
declare const _default: import(
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
active: number
|
|
6
|
-
},
|
|
7
|
-
{},
|
|
8
|
-
{},
|
|
9
|
-
import('vue').ComponentOptionsMixin,
|
|
10
|
-
import('vue').ComponentOptionsMixin,
|
|
11
|
-
{},
|
|
12
|
-
string,
|
|
13
|
-
Readonly<import('vue').ExtractPropTypes<{}>>,
|
|
14
|
-
{}
|
|
15
|
-
>
|
|
16
|
-
export default _default
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, any, {
|
|
2
|
+
active: number;
|
|
3
|
+
}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
4
|
+
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as Tabbar } from
|
|
1
|
+
export { default as Tabbar } from "./Tabbar.vue";
|
package/types/config.d.ts
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
2
|
+
title: string;
|
|
3
|
+
icomId: string;
|
|
4
|
+
showMenus: boolean;
|
|
5
|
+
routerBase: string;
|
|
6
|
+
loginRouteName: string;
|
|
7
|
+
rootRouteName: string;
|
|
8
|
+
homeRouteName: string;
|
|
9
|
+
authServerContext: string;
|
|
10
|
+
ossServerContext: string;
|
|
11
|
+
ismAmServerContext: string;
|
|
12
|
+
ismAcServerContext: string;
|
|
13
|
+
ismSqServerContext: string;
|
|
14
|
+
ilmServerContext: string;
|
|
15
|
+
ucExtServerContext: string;
|
|
16
|
+
kkfilepreviewContext: string;
|
|
17
|
+
errorMessage: string;
|
|
18
|
+
leftLockDays: number;
|
|
19
|
+
labelStyle: {
|
|
20
|
+
labelWidthButton: number;
|
|
21
|
+
labelWidthSmall: number;
|
|
22
|
+
labelWidthMiddle: number;
|
|
23
|
+
labelWidthMiddleLarge: number;
|
|
24
|
+
labelWidthLarge: number;
|
|
25
|
+
labelWidthSuperLarge: number;
|
|
26
|
+
};
|
|
27
|
+
linkColor: string;
|
|
28
28
|
} & {
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
export default _default
|
|
29
|
+
showMenus: boolean;
|
|
30
|
+
};
|
|
31
|
+
export default _default;
|
package/types/index.d.ts
CHANGED
|
@@ -1,23 +1,20 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export default API
|
|
1
|
+
export * from "./components";
|
|
2
|
+
export * from "./plugins";
|
|
3
|
+
export * from "./router";
|
|
4
|
+
export * from "./store";
|
|
5
|
+
export default API;
|
|
6
6
|
declare namespace API {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
export let version: any;
|
|
8
|
+
export { install };
|
|
9
|
+
export { components };
|
|
10
|
+
export { plugins };
|
|
11
|
+
export { getDefaultTheme };
|
|
12
|
+
export { doChangeTheme };
|
|
13
13
|
}
|
|
14
|
-
declare function install(
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
import
|
|
21
|
-
import * as plugins from './plugins'
|
|
22
|
-
import { getDefaultTheme } from './utils'
|
|
23
|
-
import { doChangeTheme } from './utils'
|
|
14
|
+
declare function install(Vue: any, opts?: {
|
|
15
|
+
theme: string;
|
|
16
|
+
}): void;
|
|
17
|
+
import * as components from './components';
|
|
18
|
+
import * as plugins from './plugins';
|
|
19
|
+
import { getDefaultTheme } from './utils';
|
|
20
|
+
import { doChangeTheme } from './utils';
|
package/types/mixins/popper.d.ts
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
2
|
+
namespace props {
|
|
3
|
+
namespace eventsEnabled {
|
|
4
|
+
export let type: BooleanConstructor;
|
|
5
|
+
let _default: boolean;
|
|
6
|
+
export { _default as default };
|
|
7
|
+
}
|
|
8
|
+
namespace placement {
|
|
9
|
+
let type_1: StringConstructor;
|
|
10
|
+
export { type_1 as type };
|
|
11
|
+
let _default_1: string;
|
|
12
|
+
export { _default_1 as default };
|
|
13
|
+
}
|
|
14
|
+
namespace boundariesPadding {
|
|
15
|
+
let type_2: NumberConstructor;
|
|
16
|
+
export { type_2 as type };
|
|
17
|
+
let _default_2: number;
|
|
18
|
+
export { _default_2 as default };
|
|
19
|
+
}
|
|
20
|
+
let reference: ObjectConstructor;
|
|
21
|
+
let popper: ObjectConstructor;
|
|
22
|
+
namespace offset {
|
|
23
|
+
let _default_3: number;
|
|
24
|
+
export { _default_3 as default };
|
|
25
|
+
}
|
|
26
|
+
namespace value {
|
|
27
|
+
let type_3: BooleanConstructor;
|
|
28
|
+
export { type_3 as type };
|
|
29
|
+
let _default_4: boolean;
|
|
30
|
+
export { _default_4 as default };
|
|
31
|
+
}
|
|
32
|
+
let transition: StringConstructor;
|
|
33
|
+
namespace options {
|
|
34
|
+
let type_4: ObjectConstructor;
|
|
35
|
+
export { type_4 as type };
|
|
36
|
+
function _default(): {
|
|
37
|
+
modifiers: {
|
|
38
|
+
computeStyle: {
|
|
39
|
+
gpuAcceleration: boolean;
|
|
40
|
+
};
|
|
41
|
+
preventOverflow: {
|
|
42
|
+
boundariesElement: string;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export { _default as default };
|
|
47
|
+
}
|
|
31
48
|
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
gpuAcceleration: boolean
|
|
40
|
-
}
|
|
41
|
-
preventOverflow: {
|
|
42
|
-
boundariesElement: string
|
|
43
|
-
}
|
|
49
|
+
function data(): {
|
|
50
|
+
visible: any;
|
|
51
|
+
};
|
|
52
|
+
namespace watch {
|
|
53
|
+
export namespace value_1 {
|
|
54
|
+
let immediate: boolean;
|
|
55
|
+
function handler(val: any): void;
|
|
44
56
|
}
|
|
45
|
-
|
|
46
|
-
|
|
57
|
+
export { value_1 as value };
|
|
58
|
+
export function visible(val: any): void;
|
|
47
59
|
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
namespace watch {
|
|
53
|
-
export namespace value_1 {
|
|
54
|
-
let immediate: boolean
|
|
55
|
-
function handler(val: any): void
|
|
60
|
+
namespace methods {
|
|
61
|
+
function createPopper(): void;
|
|
62
|
+
function updatePopper(): void;
|
|
63
|
+
function doDestroy(): void;
|
|
56
64
|
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
}
|
|
60
|
-
namespace methods {
|
|
61
|
-
function createPopper(): void
|
|
62
|
-
function updatePopper(): void
|
|
63
|
-
function doDestroy(): void
|
|
64
|
-
}
|
|
65
|
-
function updated(): void
|
|
66
|
-
function beforeDestroy(): void
|
|
65
|
+
function updated(): void;
|
|
66
|
+
function beforeDestroy(): void;
|
|
67
67
|
}
|
|
68
|
-
export default _default
|
|
68
|
+
export default _default;
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
config: appConfig,
|
|
6
|
-
}?: {
|
|
7
|
-
config: any
|
|
8
|
-
},
|
|
9
|
-
): void
|
|
2
|
+
function install(Vue: any, { config: appConfig }?: {
|
|
3
|
+
config: any;
|
|
4
|
+
}): void;
|
|
10
5
|
}
|
|
11
|
-
export default _default
|
|
6
|
+
export default _default;
|
package/types/plugins/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as IndConfigPlugin } from
|
|
2
|
-
export { default as IndRouterPlugin } from
|
|
1
|
+
export { default as IndConfigPlugin } from "./config-plugin";
|
|
2
|
+
export { default as IndRouterPlugin } from "./router-plugin";
|
|
@@ -1,16 +1,10 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
store,
|
|
10
|
-
}: {
|
|
11
|
-
router: any
|
|
12
|
-
store: any
|
|
13
|
-
},
|
|
14
|
-
): void
|
|
2
|
+
/**
|
|
3
|
+
* 使用场景:从权限资源配置的页面回到配置的菜单
|
|
4
|
+
*/
|
|
5
|
+
function install(Vue: any, { router, store }: {
|
|
6
|
+
router: any;
|
|
7
|
+
store: any;
|
|
8
|
+
}): void;
|
|
15
9
|
}
|
|
16
|
-
export default _default
|
|
10
|
+
export default _default;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
export function createMacroBasicRoutes({
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}): any[]
|
|
8
|
-
export function createMicroBasicRoutes({ rootChildren }?: { rootChildren: any }): any[]
|
|
1
|
+
export function createMacroBasicRoutes({ homeComponent, rootChildren }?: {
|
|
2
|
+
homeComponent: any;
|
|
3
|
+
rootChildren: any;
|
|
4
|
+
}): any[];
|
|
5
|
+
export function createMicroBasicRoutes({ rootChildren }?: {
|
|
6
|
+
rootChildren: any;
|
|
7
|
+
}): any[];
|