@fmdeui/fmui 1.0.28 → 1.0.29
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/es/component.mjs +3 -1
- package/es/components/fm-layout/index.d.ts +32 -0
- package/es/components/fm-layout/src/component/aside.vue.d.ts +5 -0
- package/es/components/fm-layout/src/component/columnsAside.vue.d.ts +5 -0
- package/es/components/fm-layout/src/component/header.vue.d.ts +16 -0
- package/es/components/fm-layout/src/component/main.vue.d.ts +7 -0
- package/es/components/fm-layout/src/footer/index.vue.d.ts +3 -0
- package/es/components/fm-layout/src/index.vue.d.ts +22 -0
- package/es/components/fm-layout/src/logo/index.vue.d.ts +3 -0
- package/es/components/fm-layout/src/main/classic.vue.d.ts +18 -0
- package/es/components/fm-layout/src/main/columns.vue.d.ts +19 -0
- package/es/components/fm-layout/src/main/defaults.vue.d.ts +48 -0
- package/es/components/fm-layout/src/main/transverse.vue.d.ts +18 -0
- package/es/components/fm-layout/src/navBars/index.vue.d.ts +16 -0
- package/es/components/fm-layout/src/navBars/tagsView/contextmenu.vue.d.ts +28 -0
- package/es/components/fm-layout/src/navBars/tagsView/tagsView.vue.d.ts +45 -0
- package/es/components/fm-layout/src/navBars/topBar/breadcrumb.vue.d.ts +3 -0
- package/es/components/fm-layout/src/navBars/topBar/index.vue.d.ts +16 -0
- package/es/components/fm-layout/src/navBars/topBar/search.vue.d.ts +7 -0
- package/es/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.d.ts +5 -0
- package/es/components/fm-layout/src/navBars/topBar/user.vue.d.ts +75 -0
- package/es/components/fm-layout/src/navBars/topBar/userNews.vue.d.ts +9 -0
- package/es/components/fm-layout/src/navMenu/horizontal.vue.d.ts +42 -0
- package/es/components/fm-layout/src/navMenu/subItem.vue.d.ts +42 -0
- package/es/components/fm-layout/src/navMenu/vertical.vue.d.ts +42 -0
- package/es/components/fm-layout/src/routerView/iframes.vue.d.ts +35 -0
- package/es/components/fm-layout/src/routerView/parent.vue.d.ts +3 -0
- package/es/components/fm-layout/src/type.d.ts +2 -0
- package/es/components/fm-layout/style/css.d.ts +0 -0
- package/es/components/fm-layout/style/index.d.ts +0 -0
- package/es/components/index.d.ts +1 -0
- package/es/packages/components/fm-layout/index.mjs +7 -0
- package/es/packages/components/fm-layout/src/component/aside.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/component/aside.vue2.mjs +175 -0
- package/es/packages/components/fm-layout/src/component/columnsAside.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/component/columnsAside.vue2.mjs +273 -0
- package/es/packages/components/fm-layout/src/component/header.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/component/header.vue2.mjs +50 -0
- package/es/packages/components/fm-layout/src/component/main.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/component/main.vue2.mjs +81 -0
- package/es/packages/components/fm-layout/src/footer/index.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/footer/index.vue2.mjs +29 -0
- package/es/packages/components/fm-layout/src/index.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/index.vue2.mjs +91 -0
- package/es/packages/components/fm-layout/src/logo/index.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/logo/index.vue2.mjs +57 -0
- package/es/packages/components/fm-layout/src/main/classic.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/main/classic.vue2.mjs +87 -0
- package/es/packages/components/fm-layout/src/main/columns.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/main/columns.vue2.mjs +100 -0
- package/es/packages/components/fm-layout/src/main/defaults.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/main/defaults.vue2.mjs +153 -0
- package/es/packages/components/fm-layout/src/main/transverse.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/main/transverse.vue2.mjs +70 -0
- package/es/packages/components/fm-layout/src/navBars/index.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navBars/index.vue2.mjs +44 -0
- package/es/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue2.mjs +156 -0
- package/es/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue2.mjs +576 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue2.mjs +169 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/index.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/index.vue2.mjs +113 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/search.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/search.vue2.mjs +120 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue2.mjs +72 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/user.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/user.vue2.mjs +699 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/userNews.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navBars/topBar/userNews.vue2.mjs +255 -0
- package/es/packages/components/fm-layout/src/navMenu/horizontal.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navMenu/horizontal.vue2.mjs +182 -0
- package/es/packages/components/fm-layout/src/navMenu/subItem.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navMenu/subItem.vue2.mjs +113 -0
- package/es/packages/components/fm-layout/src/navMenu/vertical.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/navMenu/vertical.vue2.mjs +159 -0
- package/es/packages/components/fm-layout/src/routerView/iframes.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/routerView/iframes.vue2.mjs +128 -0
- package/es/packages/components/fm-layout/src/routerView/parent.vue.mjs +5 -0
- package/es/packages/components/fm-layout/src/routerView/parent.vue2.mjs +141 -0
- package/es/packages/components/fm-layout/src/type.mjs +1 -0
- package/es/packages/components/index.mjs +1 -0
- package/index.js +4071 -73
- package/index.min.js +5 -5
- package/index.min.mjs +5 -5
- package/index.mjs +4082 -81
- package/lib/component.js +3 -1
- package/lib/components/fm-layout/index.d.ts +32 -0
- package/lib/components/fm-layout/src/component/aside.vue.d.ts +5 -0
- package/lib/components/fm-layout/src/component/columnsAside.vue.d.ts +5 -0
- package/lib/components/fm-layout/src/component/header.vue.d.ts +16 -0
- package/lib/components/fm-layout/src/component/main.vue.d.ts +7 -0
- package/lib/components/fm-layout/src/footer/index.vue.d.ts +3 -0
- package/lib/components/fm-layout/src/index.vue.d.ts +22 -0
- package/lib/components/fm-layout/src/logo/index.vue.d.ts +3 -0
- package/lib/components/fm-layout/src/main/classic.vue.d.ts +18 -0
- package/lib/components/fm-layout/src/main/columns.vue.d.ts +19 -0
- package/lib/components/fm-layout/src/main/defaults.vue.d.ts +48 -0
- package/lib/components/fm-layout/src/main/transverse.vue.d.ts +18 -0
- package/lib/components/fm-layout/src/navBars/index.vue.d.ts +16 -0
- package/lib/components/fm-layout/src/navBars/tagsView/contextmenu.vue.d.ts +28 -0
- package/lib/components/fm-layout/src/navBars/tagsView/tagsView.vue.d.ts +45 -0
- package/lib/components/fm-layout/src/navBars/topBar/breadcrumb.vue.d.ts +3 -0
- package/lib/components/fm-layout/src/navBars/topBar/index.vue.d.ts +16 -0
- package/lib/components/fm-layout/src/navBars/topBar/search.vue.d.ts +7 -0
- package/lib/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.d.ts +5 -0
- package/lib/components/fm-layout/src/navBars/topBar/user.vue.d.ts +75 -0
- package/lib/components/fm-layout/src/navBars/topBar/userNews.vue.d.ts +9 -0
- package/lib/components/fm-layout/src/navMenu/horizontal.vue.d.ts +42 -0
- package/lib/components/fm-layout/src/navMenu/subItem.vue.d.ts +42 -0
- package/lib/components/fm-layout/src/navMenu/vertical.vue.d.ts +42 -0
- package/lib/components/fm-layout/src/routerView/iframes.vue.d.ts +35 -0
- package/lib/components/fm-layout/src/routerView/parent.vue.d.ts +3 -0
- package/lib/components/fm-layout/src/type.d.ts +2 -0
- package/lib/components/fm-layout/style/css.d.ts +0 -0
- package/lib/components/fm-layout/style/index.d.ts +0 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/{index.css → defaults.css} +2 -2
- package/lib/packages/components/fm-layout/index.js +9 -0
- package/lib/packages/components/fm-layout/src/component/aside.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/component/aside.vue2.js +179 -0
- package/lib/packages/components/fm-layout/src/component/columnsAside.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/component/columnsAside.vue2.js +277 -0
- package/lib/packages/components/fm-layout/src/component/header.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/component/header.vue2.js +54 -0
- package/lib/packages/components/fm-layout/src/component/main.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/component/main.vue2.js +85 -0
- package/lib/packages/components/fm-layout/src/footer/index.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/footer/index.vue2.js +33 -0
- package/lib/packages/components/fm-layout/src/index.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/index.vue2.js +95 -0
- package/lib/packages/components/fm-layout/src/logo/index.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/logo/index.vue2.js +61 -0
- package/lib/packages/components/fm-layout/src/main/classic.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/main/classic.vue2.js +91 -0
- package/lib/packages/components/fm-layout/src/main/columns.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/main/columns.vue2.js +104 -0
- package/lib/packages/components/fm-layout/src/main/defaults.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/main/defaults.vue2.js +157 -0
- package/lib/packages/components/fm-layout/src/main/transverse.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/main/transverse.vue2.js +74 -0
- package/lib/packages/components/fm-layout/src/navBars/index.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navBars/index.vue2.js +48 -0
- package/lib/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue2.js +160 -0
- package/lib/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue2.js +580 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue2.js +173 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/index.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/index.vue2.js +117 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/search.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/search.vue2.js +124 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue2.js +76 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/user.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/user.vue2.js +703 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/userNews.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navBars/topBar/userNews.vue2.js +259 -0
- package/lib/packages/components/fm-layout/src/navMenu/horizontal.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navMenu/horizontal.vue2.js +186 -0
- package/lib/packages/components/fm-layout/src/navMenu/subItem.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navMenu/subItem.vue2.js +117 -0
- package/lib/packages/components/fm-layout/src/navMenu/vertical.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/navMenu/vertical.vue2.js +163 -0
- package/lib/packages/components/fm-layout/src/routerView/iframes.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/routerView/iframes.vue2.js +132 -0
- package/lib/packages/components/fm-layout/src/routerView/parent.vue.js +9 -0
- package/lib/packages/components/fm-layout/src/routerView/parent.vue2.js +145 -0
- package/lib/packages/components/fm-layout/src/type.js +2 -0
- package/lib/packages/components/index.js +14 -12
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/package.json +1 -1
- package/theme-chalk/f-layout.css +1 -0
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/src/index.scss +1 -0
- package/theme-chalk/src/layout.scss +655 -0
package/lib/component.js
CHANGED
|
@@ -11,6 +11,7 @@ var index$5 = require('./packages/components/select-table/index.js');
|
|
|
11
11
|
var index$6 = require('./packages/components/query-condition/index.js');
|
|
12
12
|
var index$8 = require('./packages/components/form/index.js');
|
|
13
13
|
var index$7 = require('./packages/components/chart/index.js');
|
|
14
|
+
var index$9 = require('./packages/components/fm-layout/index.js');
|
|
14
15
|
|
|
15
16
|
const plugins = [
|
|
16
17
|
index.FButton,
|
|
@@ -21,7 +22,8 @@ const plugins = [
|
|
|
21
22
|
index$5.FSelectTable,
|
|
22
23
|
index$6.FQueryCondition,
|
|
23
24
|
index$7.FChart,
|
|
24
|
-
index$8.FForm
|
|
25
|
+
index$8.FForm,
|
|
26
|
+
index$9.FLayout
|
|
25
27
|
];
|
|
26
28
|
|
|
27
29
|
exports.default = plugins;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
|
|
2
|
+
export * from './src/type';
|
|
3
|
+
export declare const FLayout: {
|
|
4
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
5
|
+
onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
|
|
6
|
+
onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
|
|
7
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
8
|
+
layoutChangePassword: (...args: any[]) => void;
|
|
9
|
+
layoutOnlineUsers: (...args: any[]) => void;
|
|
10
|
+
}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
11
|
+
P: {};
|
|
12
|
+
B: {};
|
|
13
|
+
D: {};
|
|
14
|
+
C: {};
|
|
15
|
+
M: {};
|
|
16
|
+
Defaults: {};
|
|
17
|
+
}, Readonly<{}> & Readonly<{
|
|
18
|
+
onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, {}>;
|
|
21
|
+
__isFragment?: never;
|
|
22
|
+
__isTeleport?: never;
|
|
23
|
+
__isSuspense?: never;
|
|
24
|
+
} & ComponentOptionsBase<Readonly<{}> & Readonly<{
|
|
25
|
+
onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
28
|
+
layoutChangePassword: (...args: any[]) => void;
|
|
29
|
+
layoutOnlineUsers: (...args: any[]) => void;
|
|
30
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
31
|
+
$slots: any;
|
|
32
|
+
});
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
3
|
+
layoutAsideScrollbarRef: unknown;
|
|
4
|
+
}, HTMLDivElement>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
3
|
+
columnsAsideActiveRef: HTMLDivElement;
|
|
4
|
+
}, HTMLDivElement>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: any;
|
|
5
|
+
refs: {};
|
|
6
|
+
rootEl: any;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
+
declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
|
+
export default _default;
|
|
12
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
13
|
+
new (): {
|
|
14
|
+
$slots: S;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {
|
|
3
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
4
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
5
|
+
layoutMainScrollbarRef: unknown;
|
|
6
|
+
}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: any;
|
|
5
|
+
refs: {};
|
|
6
|
+
rootEl: any;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
+
declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
10
|
+
layoutChangePassword: (...args: any[]) => void;
|
|
11
|
+
layoutOnlineUsers: (...args: any[]) => void;
|
|
12
|
+
}, string, PublicProps, Readonly<{}> & Readonly<{
|
|
13
|
+
onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
|
|
14
|
+
onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
3
|
+
layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
4
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
5
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
6
|
+
layoutMainScrollbarRef: unknown;
|
|
7
|
+
}, any, ComponentProvideOptions, {
|
|
8
|
+
P: {};
|
|
9
|
+
B: {};
|
|
10
|
+
D: {};
|
|
11
|
+
C: {};
|
|
12
|
+
M: {};
|
|
13
|
+
Defaults: {};
|
|
14
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
15
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
16
|
+
}, {}, {}, {}, {}> | null;
|
|
17
|
+
}, any>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
3
|
+
layoutScrollbarRef: unknown;
|
|
4
|
+
layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
5
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
6
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
7
|
+
layoutMainScrollbarRef: unknown;
|
|
8
|
+
}, any, ComponentProvideOptions, {
|
|
9
|
+
P: {};
|
|
10
|
+
B: {};
|
|
11
|
+
D: {};
|
|
12
|
+
C: {};
|
|
13
|
+
M: {};
|
|
14
|
+
Defaults: {};
|
|
15
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
16
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
17
|
+
}, {}, {}, {}, {}> | null;
|
|
18
|
+
}, any>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { CreateComponentPublicInstanceWithMixins, Ref, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DefineComponent } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: any;
|
|
5
|
+
refs: {
|
|
6
|
+
layoutScrollbarRef: unknown;
|
|
7
|
+
layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
8
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
9
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
10
|
+
layoutMainScrollbarRef: unknown;
|
|
11
|
+
}, any, ComponentProvideOptions, {
|
|
12
|
+
P: {};
|
|
13
|
+
B: {};
|
|
14
|
+
D: {};
|
|
15
|
+
C: {};
|
|
16
|
+
M: {};
|
|
17
|
+
Defaults: {};
|
|
18
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
19
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
20
|
+
}, {}, {}, {}, {}> | null;
|
|
21
|
+
};
|
|
22
|
+
rootEl: any;
|
|
23
|
+
};
|
|
24
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
25
|
+
declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
26
|
+
layoutScrollbarRef: unknown;
|
|
27
|
+
layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
28
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
29
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
30
|
+
layoutMainScrollbarRef: unknown;
|
|
31
|
+
}, any, ComponentProvideOptions, {
|
|
32
|
+
P: {};
|
|
33
|
+
B: {};
|
|
34
|
+
D: {};
|
|
35
|
+
C: {};
|
|
36
|
+
M: {};
|
|
37
|
+
Defaults: {};
|
|
38
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
39
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
40
|
+
}, {}, {}, {}, {}> | null;
|
|
41
|
+
}, any>;
|
|
42
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
43
|
+
export default _default;
|
|
44
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
45
|
+
new (): {
|
|
46
|
+
$slots: S;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
3
|
+
layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
4
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
5
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
6
|
+
layoutMainScrollbarRef: unknown;
|
|
7
|
+
}, any, ComponentProvideOptions, {
|
|
8
|
+
P: {};
|
|
9
|
+
B: {};
|
|
10
|
+
D: {};
|
|
11
|
+
C: {};
|
|
12
|
+
M: {};
|
|
13
|
+
Defaults: {};
|
|
14
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
15
|
+
layoutMainScrollbarRef: Ref<any, any>;
|
|
16
|
+
}, {}, {}, {}, {}> | null;
|
|
17
|
+
}, any>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: any;
|
|
5
|
+
refs: {};
|
|
6
|
+
rootEl: HTMLDivElement;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
+
declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
|
+
export default _default;
|
|
12
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
13
|
+
new (): {
|
|
14
|
+
$slots: S;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { RouteItem } from 'fmdeui-fmui/es/types';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
|
+
dropdown: {
|
|
5
|
+
type: ObjectConstructor;
|
|
6
|
+
default: () => {
|
|
7
|
+
x: number;
|
|
8
|
+
y: number;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
}>, {
|
|
12
|
+
openContextmenu: (item: RouteItem) => void;
|
|
13
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14
|
+
currentContextmenuClick: (...args: any[]) => void;
|
|
15
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
16
|
+
dropdown: {
|
|
17
|
+
type: ObjectConstructor;
|
|
18
|
+
default: () => {
|
|
19
|
+
x: number;
|
|
20
|
+
y: number;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{
|
|
24
|
+
onCurrentContextmenuClick?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
}>, {
|
|
26
|
+
dropdown: Record<string, any>;
|
|
27
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
28
|
+
export default _default;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { RouteItem } from 'fmdeui-fmui/es/types';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, ExtractPropTypes, GlobalComponents, GlobalDirectives } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
4
|
+
scrollbarRef: unknown;
|
|
5
|
+
tagsUlRef: HTMLUListElement;
|
|
6
|
+
contextmenuRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
7
|
+
dropdown: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: () => {
|
|
10
|
+
x: number;
|
|
11
|
+
y: number;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
}>> & Readonly<{
|
|
15
|
+
onCurrentContextmenuClick?: ((...args: any[]) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
openContextmenu: (item: RouteItem) => void;
|
|
18
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
19
|
+
currentContextmenuClick: (...args: any[]) => void;
|
|
20
|
+
}, PublicProps, {
|
|
21
|
+
dropdown: Record<string, any>;
|
|
22
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
23
|
+
P: {};
|
|
24
|
+
B: {};
|
|
25
|
+
D: {};
|
|
26
|
+
C: {};
|
|
27
|
+
M: {};
|
|
28
|
+
Defaults: {};
|
|
29
|
+
}, Readonly< ExtractPropTypes<{
|
|
30
|
+
dropdown: {
|
|
31
|
+
type: ObjectConstructor;
|
|
32
|
+
default: () => {
|
|
33
|
+
x: number;
|
|
34
|
+
y: number;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
}>> & Readonly<{
|
|
38
|
+
onCurrentContextmenuClick?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
}>, {
|
|
40
|
+
openContextmenu: (item: RouteItem) => void;
|
|
41
|
+
}, {}, {}, {}, {
|
|
42
|
+
dropdown: Record<string, any>;
|
|
43
|
+
}> | null;
|
|
44
|
+
}, HTMLDivElement>;
|
|
45
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: any;
|
|
5
|
+
refs: {};
|
|
6
|
+
rootEl: HTMLDivElement;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
+
declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
|
+
export default _default;
|
|
12
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
13
|
+
new (): {
|
|
14
|
+
$slots: S;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {
|
|
3
|
+
openSearch: () => void;
|
|
4
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
5
|
+
layoutMenuAutocompleteRef: unknown;
|
|
6
|
+
}, HTMLDivElement>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {
|
|
3
|
+
openDialog: (row: any) => void;
|
|
4
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DefineComponent } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
'user-before'?(_: {}): any;
|
|
6
|
+
'user-dropdown'?(_: {}): any;
|
|
7
|
+
'user-dropdown'?(_: {}): any;
|
|
8
|
+
'user-after'?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {
|
|
11
|
+
searchRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
12
|
+
openSearch: () => void;
|
|
13
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
14
|
+
layoutMenuAutocompleteRef: unknown;
|
|
15
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
16
|
+
P: {};
|
|
17
|
+
B: {};
|
|
18
|
+
D: {};
|
|
19
|
+
C: {};
|
|
20
|
+
M: {};
|
|
21
|
+
Defaults: {};
|
|
22
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
23
|
+
openSearch: () => void;
|
|
24
|
+
}, {}, {}, {}, {}> | null;
|
|
25
|
+
upgradeInfoRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
26
|
+
openDialog: (row: any) => void;
|
|
27
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
28
|
+
P: {};
|
|
29
|
+
B: {};
|
|
30
|
+
D: {};
|
|
31
|
+
C: {};
|
|
32
|
+
M: {};
|
|
33
|
+
Defaults: {};
|
|
34
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
35
|
+
openDialog: (row: any) => void;
|
|
36
|
+
}, {}, {}, {}, {}> | null;
|
|
37
|
+
};
|
|
38
|
+
rootEl: HTMLDivElement;
|
|
39
|
+
};
|
|
40
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
41
|
+
declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
42
|
+
searchRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
43
|
+
openSearch: () => void;
|
|
44
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
45
|
+
layoutMenuAutocompleteRef: unknown;
|
|
46
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
47
|
+
P: {};
|
|
48
|
+
B: {};
|
|
49
|
+
D: {};
|
|
50
|
+
C: {};
|
|
51
|
+
M: {};
|
|
52
|
+
Defaults: {};
|
|
53
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
54
|
+
openSearch: () => void;
|
|
55
|
+
}, {}, {}, {}, {}> | null;
|
|
56
|
+
upgradeInfoRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
57
|
+
openDialog: (row: any) => void;
|
|
58
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
|
59
|
+
P: {};
|
|
60
|
+
B: {};
|
|
61
|
+
D: {};
|
|
62
|
+
C: {};
|
|
63
|
+
M: {};
|
|
64
|
+
Defaults: {};
|
|
65
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
66
|
+
openDialog: (row: any) => void;
|
|
67
|
+
}, {}, {}, {}, {}> | null;
|
|
68
|
+
}, HTMLDivElement>;
|
|
69
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
70
|
+
export default _default;
|
|
71
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
72
|
+
new (): {
|
|
73
|
+
$slots: S;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
noticeList: any;
|
|
4
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
5
|
+
noticeList: any;
|
|
6
|
+
}>> & Readonly<{}>, {
|
|
7
|
+
noticeList: any;
|
|
8
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { RouteRecordRaw } from 'vue-router';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
|
+
menuList: {
|
|
5
|
+
type: {
|
|
6
|
+
(arrayLength: number): RouteRecordRaw[];
|
|
7
|
+
(...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
8
|
+
new (arrayLength: number): RouteRecordRaw[];
|
|
9
|
+
new (...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
10
|
+
isArray(arg: any): arg is any[];
|
|
11
|
+
readonly prototype: any[];
|
|
12
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
13
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
14
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
15
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
16
|
+
of<T>(...items: T[]): T[];
|
|
17
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
18
|
+
};
|
|
19
|
+
default: () => never[];
|
|
20
|
+
};
|
|
21
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
22
|
+
menuList: {
|
|
23
|
+
type: {
|
|
24
|
+
(arrayLength: number): RouteRecordRaw[];
|
|
25
|
+
(...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
26
|
+
new (arrayLength: number): RouteRecordRaw[];
|
|
27
|
+
new (...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
28
|
+
isArray(arg: any): arg is any[];
|
|
29
|
+
readonly prototype: any[];
|
|
30
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
31
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
32
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
33
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
34
|
+
of<T>(...items: T[]): T[];
|
|
35
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
36
|
+
};
|
|
37
|
+
default: () => never[];
|
|
38
|
+
};
|
|
39
|
+
}>> & Readonly<{}>, {
|
|
40
|
+
menuList: RouteRecordRaw[];
|
|
41
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
42
|
+
export default _default;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { RouteRecordRaw } from 'vue-router';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
|
+
chil: {
|
|
5
|
+
type: {
|
|
6
|
+
(arrayLength: number): RouteRecordRaw[];
|
|
7
|
+
(...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
8
|
+
new (arrayLength: number): RouteRecordRaw[];
|
|
9
|
+
new (...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
10
|
+
isArray(arg: any): arg is any[];
|
|
11
|
+
readonly prototype: any[];
|
|
12
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
13
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
14
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
15
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
16
|
+
of<T>(...items: T[]): T[];
|
|
17
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
18
|
+
};
|
|
19
|
+
default: () => never[];
|
|
20
|
+
};
|
|
21
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
22
|
+
chil: {
|
|
23
|
+
type: {
|
|
24
|
+
(arrayLength: number): RouteRecordRaw[];
|
|
25
|
+
(...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
26
|
+
new (arrayLength: number): RouteRecordRaw[];
|
|
27
|
+
new (...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
28
|
+
isArray(arg: any): arg is any[];
|
|
29
|
+
readonly prototype: any[];
|
|
30
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
31
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
32
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
33
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
34
|
+
of<T>(...items: T[]): T[];
|
|
35
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
36
|
+
};
|
|
37
|
+
default: () => never[];
|
|
38
|
+
};
|
|
39
|
+
}>> & Readonly<{}>, {
|
|
40
|
+
chil: RouteRecordRaw[];
|
|
41
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
42
|
+
export default _default;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { RouteRecordRaw } from 'vue-router';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
|
+
menuList: {
|
|
5
|
+
type: {
|
|
6
|
+
(arrayLength: number): RouteRecordRaw[];
|
|
7
|
+
(...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
8
|
+
new (arrayLength: number): RouteRecordRaw[];
|
|
9
|
+
new (...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
10
|
+
isArray(arg: any): arg is any[];
|
|
11
|
+
readonly prototype: any[];
|
|
12
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
13
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
14
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
15
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
16
|
+
of<T>(...items: T[]): T[];
|
|
17
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
18
|
+
};
|
|
19
|
+
default: () => never[];
|
|
20
|
+
};
|
|
21
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
22
|
+
menuList: {
|
|
23
|
+
type: {
|
|
24
|
+
(arrayLength: number): RouteRecordRaw[];
|
|
25
|
+
(...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
26
|
+
new (arrayLength: number): RouteRecordRaw[];
|
|
27
|
+
new (...items: RouteRecordRaw[]): RouteRecordRaw[];
|
|
28
|
+
isArray(arg: any): arg is any[];
|
|
29
|
+
readonly prototype: any[];
|
|
30
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
31
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
32
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
33
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
34
|
+
of<T>(...items: T[]): T[];
|
|
35
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
36
|
+
};
|
|
37
|
+
default: () => never[];
|
|
38
|
+
};
|
|
39
|
+
}>> & Readonly<{}>, {
|
|
40
|
+
menuList: RouteRecordRaw[];
|
|
41
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
42
|
+
export default _default;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
refreshKey: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: () => string;
|
|
6
|
+
};
|
|
7
|
+
name: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: () => string;
|
|
10
|
+
};
|
|
11
|
+
list: {
|
|
12
|
+
type: ArrayConstructor;
|
|
13
|
+
default: () => never[];
|
|
14
|
+
};
|
|
15
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
16
|
+
refreshKey: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: () => string;
|
|
19
|
+
};
|
|
20
|
+
name: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: () => string;
|
|
23
|
+
};
|
|
24
|
+
list: {
|
|
25
|
+
type: ArrayConstructor;
|
|
26
|
+
default: () => never[];
|
|
27
|
+
};
|
|
28
|
+
}>> & Readonly<{}>, {
|
|
29
|
+
name: string;
|
|
30
|
+
list: unknown[];
|
|
31
|
+
refreshKey: string;
|
|
32
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
33
|
+
iframeRef: HTMLIFrameElement;
|
|
34
|
+
}, HTMLDivElement>;
|
|
35
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
3
|
+
export default _default;
|
|
File without changes
|
|
File without changes
|