@vanjana/vue-ui 0.1.59
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/theme-light.css +1 -0
- package/dist/theme-light.js +1 -0
- package/dist/types/components/button-bar.vue.d.ts +15 -0
- package/dist/types/components/button.vue.d.ts +11 -0
- package/dist/types/components/card.vue.d.ts +21 -0
- package/dist/types/components/carousel.vue.d.ts +21 -0
- package/dist/types/components/checkbox.vue.d.ts +15 -0
- package/dist/types/components/data/data.vue.d.ts +7 -0
- package/dist/types/components/dialog.vue.d.ts +47 -0
- package/dist/types/components/dot-menu.vue.d.ts +16 -0
- package/dist/types/components/form/form-field.vue.d.ts +33 -0
- package/dist/types/components/form/form-layout.vue.d.ts +34 -0
- package/dist/types/components/form/form-section.vue.d.ts +16 -0
- package/dist/types/components/form/index.d.ts +10 -0
- package/dist/types/components/form/input-select.vue.d.ts +34 -0
- package/dist/types/components/form/input-slider.vue.d.ts +19 -0
- package/dist/types/components/form/input-text-area.vue.d.ts +17 -0
- package/dist/types/components/form/input-text.vue.d.ts +14 -0
- package/dist/types/components/form/input.vue.d.ts +23 -0
- package/dist/types/components/form/select.vue.d.ts +43 -0
- package/dist/types/components/form/textarea.vue.d.ts +23 -0
- package/dist/types/components/icon.vue.d.ts +8 -0
- package/dist/types/components/index.d.ts +20 -0
- package/dist/types/components/link-button.vue.d.ts +13 -0
- package/dist/types/components/menu-action.vue.d.ts +8 -0
- package/dist/types/components/menu.vue.d.ts +13 -0
- package/dist/types/components/nav-bar.vue.d.ts +3 -0
- package/dist/types/components/page.vue.d.ts +28 -0
- package/dist/types/components/paginator.vue.d.ts +36 -0
- package/dist/types/components/search-field.vue.d.ts +17 -0
- package/dist/types/components/separator.vue.d.ts +6 -0
- package/dist/types/components/shell/index.d.ts +4 -0
- package/dist/types/components/shell/shell-navigation-item.vue.d.ts +8 -0
- package/dist/types/components/shell/shell-navigation.vue.d.ts +13 -0
- package/dist/types/components/shell/shell.vue.d.ts +20 -0
- package/dist/types/components/slider.vue.d.ts +22 -0
- package/dist/types/components/tab-view.vue.d.ts +20 -0
- package/dist/types/components/tab.vue.d.ts +17 -0
- package/dist/types/directives/focus.directive.d.ts +28 -0
- package/dist/types/directives/index.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/model/FormFieldProps.d.ts +11 -0
- package/dist/types/model/IconSize.d.ts +5 -0
- package/dist/types/model/Icons.d.ts +39 -0
- package/dist/types/model/VjRouteRecord.d.ts +12 -0
- package/dist/types/model/index.d.ts +4 -0
- package/dist/types/provider/index.d.ts +2 -0
- package/dist/types/provider/router-navigation-provider.d.ts +19 -0
- package/dist/types/provider/static-navigation-provider.d.ts +26 -0
- package/dist/types/public-api.d.ts +9 -0
- package/dist/types/services/aside.service.d.ts +247 -0
- package/dist/types/services/aside.store.d.ts +257 -0
- package/dist/types/services/debounce.d.ts +1 -0
- package/dist/types/services/dialog.service.d.ts +31 -0
- package/dist/types/services/index.d.ts +3 -0
- package/dist/types/stories/components/AsideDemo.vue.d.ts +8 -0
- package/dist/types/stories/components/button.stories.d.ts +77 -0
- package/dist/types/stories/components/card.stories.d.ts +49 -0
- package/dist/types/stories/components/carousel.stories.d.ts +122 -0
- package/dist/types/stories/components/checkbox.stories.d.ts +68 -0
- package/dist/types/stories/components/data.stories.d.ts +10 -0
- package/dist/types/stories/components/dialog.stories.d.ts +116 -0
- package/dist/types/stories/components/dot-menu.stories.d.ts +67 -0
- package/dist/types/stories/components/form-field.stories.d.ts +28 -0
- package/dist/types/stories/components/form-layout.stories.d.ts +87 -0
- package/dist/types/stories/components/icon.stories.d.ts +42 -0
- package/dist/types/stories/components/input-slider.stories.d.ts +6 -0
- package/dist/types/stories/components/input-text.stories.d.ts +12 -0
- package/dist/types/stories/components/input.stories.d.ts +62 -0
- package/dist/types/stories/components/menu-action.stories.d.ts +60 -0
- package/dist/types/stories/components/page.stories.d.ts +103 -0
- package/dist/types/stories/components/paginator.stories.d.ts +11 -0
- package/dist/types/stories/components/search-field.stories.d.ts +48 -0
- package/dist/types/stories/components/select.stories.d.ts +13 -0
- package/dist/types/stories/components/shell.stories.d.ts +96 -0
- package/dist/types/stories/components/slider.stories.d.ts +10 -0
- package/dist/types/stories/components/tab-view.stories.d.ts +118 -0
- package/dist/types/stories/components/textarea.stories.d.ts +62 -0
- package/dist/types/stories/router.d.ts +2 -0
- package/dist/types/theme-light.d.ts +2 -0
- package/dist/vanjana-vue-ui.es.js +2862 -0
- package/dist/vanjana-vue-ui.umd.js +1 -0
- package/dist/vue-ui.css +1 -0
- package/package.json +79 -0
- package/themes/common/_components.scss +19 -0
- package/themes/common/_mixins.scss +78 -0
- package/themes/common/components/_button-bar.scss +8 -0
- package/themes/common/components/_button.scss +44 -0
- package/themes/common/components/_card.scss +21 -0
- package/themes/common/components/_checkbox.scss +26 -0
- package/themes/common/components/_dialog.scss +15 -0
- package/themes/common/components/_dot-menu.scss +10 -0
- package/themes/common/components/_icon.scss +11 -0
- package/themes/common/components/_menu-action.scss +10 -0
- package/themes/common/components/_menu.scss +6 -0
- package/themes/common/components/_page.scss +21 -0
- package/themes/common/components/_search-field.scss +34 -0
- package/themes/common/components/_shell.scss +101 -0
- package/themes/common/components/_tab-view.scss +40 -0
- package/themes/common/components/_tab.scss +12 -0
- package/themes/common/components/form/_form-field.scss +32 -0
- package/themes/common/components/form/_input.scss +40 -0
- package/themes/common/components/form/_select.scss +60 -0
- package/themes/common/components/form/_textarea.scss +38 -0
- package/themes/default.scss +12 -0
- package/themes/light/_shell.scss +56 -0
- package/themes/light/theme.scss +51 -0
- package/themes/mixins.scss +1 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
placeholder?: string;
|
|
3
|
+
};
|
|
4
|
+
type __VLS_Props = Props;
|
|
5
|
+
type __VLS_ModelProps = {
|
|
6
|
+
modelValue?: string;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
9
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
13
|
+
}>, {
|
|
14
|
+
placeholder: string;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
vertical?: boolean;
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
label: string;
|
|
3
|
+
icon?: string;
|
|
4
|
+
to: string | object;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare var __VLS_11: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
fixed?: (props: typeof __VLS_11) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
title: string;
|
|
3
|
+
icon?: string;
|
|
4
|
+
showNavigation?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_1: {}, __VLS_8: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
'header-actions'?: (props: typeof __VLS_1) => any;
|
|
9
|
+
} & {
|
|
10
|
+
default?: (props: typeof __VLS_8) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
modelValue?: number | [number, number];
|
|
3
|
+
min?: number;
|
|
4
|
+
max?: number;
|
|
5
|
+
step?: number;
|
|
6
|
+
range?: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (...args: any[]) => void;
|
|
10
|
+
change: (...args: any[]) => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
12
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
modelValue: number | [number, number];
|
|
16
|
+
range: boolean;
|
|
17
|
+
step: number;
|
|
18
|
+
min: number;
|
|
19
|
+
max: number;
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const _default: typeof __VLS_export;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
type __VLS_ModelProps = {
|
|
2
|
+
modelValue?: string;
|
|
3
|
+
};
|
|
4
|
+
declare var __VLS_1: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_1) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
11
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
name: string;
|
|
3
|
+
label: string;
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_1: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Directive } from 'vue';
|
|
2
|
+
/**
|
|
3
|
+
* Vue3 Direktive: v-focus-first
|
|
4
|
+
*
|
|
5
|
+
* Fokussiert das erste fokussierbare Element innerhalb des Containers.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ```vue
|
|
9
|
+
* <div v-focus-first>
|
|
10
|
+
* <input type="text" /> <!-- Wird fokussiert -->
|
|
11
|
+
* </div>
|
|
12
|
+
*
|
|
13
|
+
* <form v-focus-first>
|
|
14
|
+
* <div class="nested">
|
|
15
|
+
* <input type="text" /> <!-- Wird auch in verschachtelten Elementen gefunden -->
|
|
16
|
+
* </div>
|
|
17
|
+
* </form>
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* Mit Verzögerung (nützlich wenn DOM noch nicht fertig ist):
|
|
21
|
+
* ```vue
|
|
22
|
+
* <div v-focus-first="100"> <!-- 100ms Verzögerung -->
|
|
23
|
+
* <input type="text" />
|
|
24
|
+
* </div>
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
export declare const vFocusFirst: Directive<HTMLElement, number | boolean>;
|
|
28
|
+
export default vFocusFirst;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { vFocusFirst } from './focus.directive';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './public-api';
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export declare enum IconNames {
|
|
2
|
+
HOME = "fa-regular fa-house",
|
|
3
|
+
DASHBOARD = "fa-solid fa-gauge",
|
|
4
|
+
MENU = "fa-solid fa-bars",
|
|
5
|
+
DOT_MENU = "fa-solid fa-ellipsis-vertical",
|
|
6
|
+
BACK = "fa-regular fa-hand-point-left",
|
|
7
|
+
CHEVRON_LEFT = "fa-solid fa-chevron-left",
|
|
8
|
+
CHEVRON_RIGHT = "fa-solid fa-chevron-right",
|
|
9
|
+
CHEVRON_UP = "fa-solid fa-chevron-up",
|
|
10
|
+
CHEVRON_DOWN = "fa-solid fa-chevron-down",
|
|
11
|
+
PREVIOUS = "fa-solid fa-angle-left",
|
|
12
|
+
FIRST = "fa-solid fa-angles-left",
|
|
13
|
+
NEXT = "fa-solid fa-angle-right",
|
|
14
|
+
LAST = "fa-solid fa-angles-right",
|
|
15
|
+
USER = "fa-regular fa-user",
|
|
16
|
+
CHARACTER = "fa-solid fa-person",
|
|
17
|
+
SETTINGS = "fa-solid fa-gear",
|
|
18
|
+
ADD = "fa-regular fa-plus",
|
|
19
|
+
EDIT = "fa-solid fa-pen",
|
|
20
|
+
REMOVE = "fa-regular fa-trash-can",
|
|
21
|
+
DELETE = "fa-regular fa-trash-can",
|
|
22
|
+
SHARE = "fa-solid fa-share-nodes",
|
|
23
|
+
SORT = "fa-regular fa-arrow-up-arrow-down",
|
|
24
|
+
CLOSE = "fa-regular fa-circle-xmark",
|
|
25
|
+
INFO = "fa-regular fa-circle-info",
|
|
26
|
+
WARNING = "fa-regular fa-triangle-exclamation",
|
|
27
|
+
ERROR = "fa-regular fa-circle-xmark",
|
|
28
|
+
CHECK = "fa-regular fa-circle-check",
|
|
29
|
+
LOVE = "fa-regular fa-heart",
|
|
30
|
+
PROJECT = "fa-regular fa-folder-open",
|
|
31
|
+
FOLDER = "fa-regular fa-folder",
|
|
32
|
+
FILE_TEXT = "fa-regular fa-file-lines",
|
|
33
|
+
UPLOAD = "fa-solid fa-cloud-arrow-up",
|
|
34
|
+
DOWNLOAD = "fa-solid fa-cloud-arrow-down",
|
|
35
|
+
SEARCH = "fa-solid fa-magnifying-glass",
|
|
36
|
+
MESSAGE_SQUARE = "fa-regular fa-message",
|
|
37
|
+
MAIL = "fa-regular fa-envelope",
|
|
38
|
+
SHOPPING_BAG = "fa-regular fa-bag-shopping"
|
|
39
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { VjRouteRecord } from '../model';
|
|
2
|
+
export declare const VjNavigationProviderKey = "navigationProvider";
|
|
3
|
+
export declare const useRouterNavigationProvider: () => {
|
|
4
|
+
hasParent: import("vue").ComputedRef<boolean>;
|
|
5
|
+
backRoute: import("vue").ComputedRef<{
|
|
6
|
+
name: import("vue-router").RouteRecordNameGeneric;
|
|
7
|
+
path?: undefined;
|
|
8
|
+
} | {
|
|
9
|
+
path: string;
|
|
10
|
+
name?: undefined;
|
|
11
|
+
} | null>;
|
|
12
|
+
childRoutes: import("vue").ComputedRef<(VjRouteRecord & {
|
|
13
|
+
meta: {
|
|
14
|
+
icon: string;
|
|
15
|
+
label: string;
|
|
16
|
+
};
|
|
17
|
+
})[]>;
|
|
18
|
+
showLabels: boolean;
|
|
19
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { type ComputedRef, type Ref } from 'vue';
|
|
2
|
+
export type NavigationItem = {
|
|
3
|
+
name: string;
|
|
4
|
+
meta?: {
|
|
5
|
+
label?: string;
|
|
6
|
+
icon?: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
export declare const useStaticNavigationProvider: (items: NavigationItem[] | Ref<NavigationItem[]> | ComputedRef<NavigationItem[]>, showLabels?: boolean, parent?: NavigationItem | undefined) => {
|
|
10
|
+
hasParent: boolean;
|
|
11
|
+
backRoute: Ref<{
|
|
12
|
+
name: string;
|
|
13
|
+
meta?: {
|
|
14
|
+
label?: string | undefined;
|
|
15
|
+
icon?: string | undefined;
|
|
16
|
+
} | undefined;
|
|
17
|
+
} | null, NavigationItem | {
|
|
18
|
+
name: string;
|
|
19
|
+
meta?: {
|
|
20
|
+
label?: string | undefined;
|
|
21
|
+
icon?: string | undefined;
|
|
22
|
+
} | undefined;
|
|
23
|
+
} | null>;
|
|
24
|
+
childRoutes: Ref<NavigationItem[], NavigationItem[]> | ComputedRef<NavigationItem[]>;
|
|
25
|
+
showLabels: boolean;
|
|
26
|
+
};
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
export declare const useAsideService: () => {
|
|
2
|
+
asideComponent: import("vue").Ref<import("vue").FunctionalComponent<any, {}, any, {}> | {
|
|
3
|
+
new (...args: any[]): any;
|
|
4
|
+
__isFragment?: never;
|
|
5
|
+
__isTeleport?: never;
|
|
6
|
+
__isSuspense?: never;
|
|
7
|
+
} | {
|
|
8
|
+
[x: string]: any;
|
|
9
|
+
setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: {
|
|
10
|
+
attrs: {
|
|
11
|
+
[x: string]: unknown;
|
|
12
|
+
};
|
|
13
|
+
slots: Readonly<{
|
|
14
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
15
|
+
}>;
|
|
16
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
17
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
18
|
+
}) => any) | undefined;
|
|
19
|
+
name?: string | undefined;
|
|
20
|
+
template?: string | object | undefined;
|
|
21
|
+
render?: Function | undefined;
|
|
22
|
+
components?: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>> | undefined;
|
|
23
|
+
directives?: Record<string, import("vue").Directive<any, any, string, any>> | undefined;
|
|
24
|
+
inheritAttrs?: boolean | undefined;
|
|
25
|
+
emits?: any;
|
|
26
|
+
slots?: {} | undefined;
|
|
27
|
+
expose?: string[] | undefined;
|
|
28
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
29
|
+
compilerOptions?: {
|
|
30
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
31
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
32
|
+
comments?: boolean | undefined;
|
|
33
|
+
delimiters?: [string, string] | undefined;
|
|
34
|
+
} | undefined;
|
|
35
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
36
|
+
__isFragment?: never | undefined;
|
|
37
|
+
__isTeleport?: never | undefined;
|
|
38
|
+
__isSuspense?: never | undefined;
|
|
39
|
+
__defaults?: {} | undefined;
|
|
40
|
+
compatConfig?: {
|
|
41
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
42
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
43
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
44
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
45
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
46
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
47
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
48
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
49
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
50
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
51
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
52
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
53
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
54
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
55
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
56
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
57
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
58
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
59
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
60
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
61
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
62
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
63
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
64
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
65
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
66
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
67
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
68
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
69
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
70
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
71
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
72
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
73
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
74
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
75
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
76
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
77
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
78
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
79
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
80
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
81
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
82
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
83
|
+
MODE?: 2 | 3 | ((comp: import("vue").Component | null) => 2 | 3) | undefined;
|
|
84
|
+
} | undefined;
|
|
85
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
86
|
+
computed?: import("vue").ComputedOptions | undefined;
|
|
87
|
+
methods?: import("vue").MethodOptions | undefined;
|
|
88
|
+
watch?: {
|
|
89
|
+
[x: string]: (string | import("vue").WatchCallback | ({
|
|
90
|
+
handler: import("vue").WatchCallback | string;
|
|
91
|
+
} & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback | ({
|
|
92
|
+
handler: import("vue").WatchCallback | string;
|
|
93
|
+
} & import("vue").WatchOptions<boolean>))[];
|
|
94
|
+
} | undefined;
|
|
95
|
+
provide?: import("vue").ComponentProvideOptions | undefined;
|
|
96
|
+
inject?: {} | string[] | undefined;
|
|
97
|
+
filters?: Record<string, Function> | undefined;
|
|
98
|
+
mixins?: any[] | undefined;
|
|
99
|
+
extends?: any;
|
|
100
|
+
beforeCreate?: (() => any) | undefined;
|
|
101
|
+
created?: (() => any) | undefined;
|
|
102
|
+
beforeMount?: (() => any) | undefined;
|
|
103
|
+
mounted?: (() => any) | undefined;
|
|
104
|
+
beforeUpdate?: (() => any) | undefined;
|
|
105
|
+
updated?: (() => any) | undefined;
|
|
106
|
+
activated?: (() => any) | undefined;
|
|
107
|
+
deactivated?: (() => any) | undefined;
|
|
108
|
+
beforeDestroy?: (() => any) | undefined;
|
|
109
|
+
beforeUnmount?: (() => any) | undefined;
|
|
110
|
+
destroyed?: (() => any) | undefined;
|
|
111
|
+
unmounted?: (() => any) | undefined;
|
|
112
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined;
|
|
113
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined;
|
|
114
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
115
|
+
delimiters?: [string, string] | undefined;
|
|
116
|
+
__differentiator?: string | number | symbol | undefined;
|
|
117
|
+
__isBuiltIn?: boolean | undefined;
|
|
118
|
+
__file?: string | undefined;
|
|
119
|
+
__name?: string | undefined;
|
|
120
|
+
beforeRouteEnter?: (import("vue-router").TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import("vue-router").NavigationGuardWithThis<undefined>) | undefined;
|
|
121
|
+
beforeRouteUpdate?: (import("vue-router").TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import("vue-router").NavigationGuard) | undefined;
|
|
122
|
+
beforeRouteLeave?: (import("vue-router").TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import("vue-router").NavigationGuard) | undefined;
|
|
123
|
+
} | null, import("vue").Component | {
|
|
124
|
+
[x: string]: any;
|
|
125
|
+
setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: {
|
|
126
|
+
attrs: {
|
|
127
|
+
[x: string]: unknown;
|
|
128
|
+
};
|
|
129
|
+
slots: Readonly<{
|
|
130
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
131
|
+
}>;
|
|
132
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
133
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
134
|
+
}) => any) | undefined;
|
|
135
|
+
name?: string | undefined;
|
|
136
|
+
template?: string | object | undefined;
|
|
137
|
+
render?: Function | undefined;
|
|
138
|
+
components?: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>> | undefined;
|
|
139
|
+
directives?: Record<string, import("vue").Directive<any, any, string, any>> | undefined;
|
|
140
|
+
inheritAttrs?: boolean | undefined;
|
|
141
|
+
emits?: any;
|
|
142
|
+
slots?: {} | undefined;
|
|
143
|
+
expose?: string[] | undefined;
|
|
144
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
145
|
+
compilerOptions?: {
|
|
146
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
147
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
148
|
+
comments?: boolean | undefined;
|
|
149
|
+
delimiters?: [string, string] | undefined;
|
|
150
|
+
} | undefined;
|
|
151
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
152
|
+
__isFragment?: never | undefined;
|
|
153
|
+
__isTeleport?: never | undefined;
|
|
154
|
+
__isSuspense?: never | undefined;
|
|
155
|
+
__defaults?: {} | undefined;
|
|
156
|
+
compatConfig?: {
|
|
157
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
158
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
159
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
160
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
161
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
162
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
163
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
164
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
165
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
166
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
167
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
168
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
169
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
170
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
171
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
172
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
173
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
174
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
175
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
176
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
177
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
178
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
179
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
180
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
181
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
182
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
183
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
184
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
185
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
186
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
187
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
188
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
189
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
190
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
191
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
192
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
193
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
194
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
195
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
196
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
197
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
198
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
199
|
+
MODE?: 2 | 3 | ((comp: import("vue").Component | null) => 2 | 3) | undefined;
|
|
200
|
+
} | undefined;
|
|
201
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
202
|
+
computed?: import("vue").ComputedOptions | undefined;
|
|
203
|
+
methods?: import("vue").MethodOptions | undefined;
|
|
204
|
+
watch?: {
|
|
205
|
+
[x: string]: (string | import("vue").WatchCallback | ({
|
|
206
|
+
handler: import("vue").WatchCallback | string;
|
|
207
|
+
} & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback | ({
|
|
208
|
+
handler: import("vue").WatchCallback | string;
|
|
209
|
+
} & import("vue").WatchOptions<boolean>))[];
|
|
210
|
+
} | undefined;
|
|
211
|
+
provide?: import("vue").ComponentProvideOptions | undefined;
|
|
212
|
+
inject?: {} | string[] | undefined;
|
|
213
|
+
filters?: Record<string, Function> | undefined;
|
|
214
|
+
mixins?: any[] | undefined;
|
|
215
|
+
extends?: any;
|
|
216
|
+
beforeCreate?: (() => any) | undefined;
|
|
217
|
+
created?: (() => any) | undefined;
|
|
218
|
+
beforeMount?: (() => any) | undefined;
|
|
219
|
+
mounted?: (() => any) | undefined;
|
|
220
|
+
beforeUpdate?: (() => any) | undefined;
|
|
221
|
+
updated?: (() => any) | undefined;
|
|
222
|
+
activated?: (() => any) | undefined;
|
|
223
|
+
deactivated?: (() => any) | undefined;
|
|
224
|
+
beforeDestroy?: (() => any) | undefined;
|
|
225
|
+
beforeUnmount?: (() => any) | undefined;
|
|
226
|
+
destroyed?: (() => any) | undefined;
|
|
227
|
+
unmounted?: (() => any) | undefined;
|
|
228
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined;
|
|
229
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined;
|
|
230
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
231
|
+
delimiters?: [string, string] | undefined;
|
|
232
|
+
__differentiator?: string | number | symbol | undefined;
|
|
233
|
+
__isBuiltIn?: boolean | undefined;
|
|
234
|
+
__file?: string | undefined;
|
|
235
|
+
__name?: string | undefined;
|
|
236
|
+
beforeRouteEnter?: (import("vue-router").TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import("vue-router").NavigationGuardWithThis<undefined>) | undefined;
|
|
237
|
+
beforeRouteUpdate?: (import("vue-router").TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import("vue-router").NavigationGuard) | undefined;
|
|
238
|
+
beforeRouteLeave?: (import("vue-router").TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import("vue-router").NavigationGuard) | undefined;
|
|
239
|
+
} | null>;
|
|
240
|
+
asideData: import("vue").Ref<unknown, unknown>;
|
|
241
|
+
showAside: (component: import("vue").Component, data?: unknown) => {
|
|
242
|
+
onClose: (cb: import("./aside.store").CloseAsideCallback) => () => void;
|
|
243
|
+
};
|
|
244
|
+
closeAside: (data?: unknown) => void;
|
|
245
|
+
onAsideClose: (cb: import("./aside.store").CloseAsideCallback) => () => void;
|
|
246
|
+
hasAside: import("vue").Ref<boolean, boolean>;
|
|
247
|
+
};
|