@autoafleveren/ui 0.15.6 → 0.16.0
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/config/eslint.cjs +0 -3
- package/dist/icons.cjs +1168 -38
- package/dist/icons.js +11434 -7192
- package/dist/style.css +1 -1
- package/dist/types/components/AppActionBar/AppActionBarItem.vue.d.ts +6 -4
- package/dist/types/components/AppAlert/AppAlert.vue.d.ts +19 -17
- package/dist/types/components/AppAvatar/AppAvatar.vue.d.ts +1 -1
- package/dist/types/components/AppAvatar/DefaultAvatar.vue.d.ts +2 -2
- package/dist/types/components/AppBackButton/AppBackButton.vue.d.ts +10 -8
- package/dist/types/components/AppBadge/AppBadge.vue.d.ts +28 -14
- package/dist/types/components/AppButton/AppButton.vue.d.ts +8 -6
- package/dist/types/components/AppButton/ButtonIconSlot.vue.d.ts +8 -6
- package/dist/types/components/AppCard/AppCard.vue.d.ts +22 -20
- package/dist/types/components/AppCard/CardIconSlot.vue.d.ts +8 -6
- package/dist/types/components/AppConfirm/AppConfirm.vue.d.ts +7 -5
- package/dist/types/components/AppDataTable/AppDataTable.vue.d.ts +19 -87
- package/dist/types/components/AppDataTable/AppDataTableFooter.vue.d.ts +12 -10
- package/dist/types/components/AppDefinitionList/AppDefinitionItem.vue.d.ts +19 -20
- package/dist/types/components/AppDefinitionList/AppDefinitionList.vue.d.ts +2 -2
- package/dist/types/components/AppDisclosure/AppDisclosure.vue.d.ts +8 -6
- package/dist/types/components/AppDisclosure/AppDisclosureButton.vue.d.ts +4 -2
- package/dist/types/components/AppDisclosure/AppDisclosurePanel.vue.d.ts +10 -8
- package/dist/types/components/AppDropdownButton/AppDropdownButton.vue.d.ts +9 -7
- package/dist/types/components/AppDropdownButton/AppDropdownItem.vue.d.ts +4 -2
- package/dist/types/components/AppInput/AppInput.vue.d.ts +11 -87
- package/dist/types/components/AppInput/FileInput.vue.d.ts +6 -4
- package/dist/types/components/AppInput/Input.vue.d.ts +16 -45
- package/dist/types/components/AppInput/InputIconSlot.vue.d.ts +8 -6
- package/dist/types/components/AppInput/LocationInput.vue.d.ts +0 -1
- package/dist/types/components/AppInput/index.d.ts +1 -0
- package/dist/types/components/AppInputLabel/AppInputLabel.vue.d.ts +4 -2
- package/dist/types/components/AppLicensePlate/AppLicensePlate.vue.d.ts +14 -11
- package/dist/types/components/AppLoader/AppLoader.vue.d.ts +2 -2
- package/dist/types/components/AppMaps/AppMaps.vue.d.ts +16 -17
- package/dist/types/components/AppMaps/index.d.ts +0 -1
- package/dist/types/components/AppMenu/AppMenuItem.vue.d.ts +6 -4
- package/dist/types/components/AppModal/AppModal.vue.d.ts +17 -6
- package/dist/types/components/AppNavigationMenu/NavigationItem.vue.d.ts +2 -2
- package/dist/types/components/AppPagination/AppPagination.vue.d.ts +8 -8
- package/dist/types/components/AppPagination/AppPaginationItem.vue.d.ts +12 -10
- package/dist/types/components/AppSection/AppSection.vue.d.ts +10 -8
- package/dist/types/components/AppSelect/AppSelect.vue.d.ts +62 -60
- package/dist/types/components/AppTable/AppTable.vue.d.ts +4 -2
- package/dist/types/components/AppTimeline/AppTimeline.vue.d.ts +6 -4
- package/dist/types/components/AppTimeline/AppTimelineItem.vue.d.ts +11 -9
- package/dist/types/components/AppTimeline/AppTimelineItemIcon.vue.d.ts +1 -1
- package/dist/types/components/AppTimeline/index.d.ts +3 -0
- package/dist/types/composables/useNavigation/index.d.ts +13 -13
- package/dist/types/icons/ChatPersonRoundedIcon.vue.d.ts +2 -2
- package/dist/types/icons/HeroGirlIcon.vue.d.ts +5 -4
- package/dist/types/icons/HeroPersonIcon.vue.d.ts +4 -4
- package/dist/types/icons/HeroPersonRoundedIcon.vue.d.ts +4 -4
- package/dist/types/icons/HeroPersonWithBgIcon.vue.d.ts +4 -4
- package/dist/types/icons/index.d.ts +3 -1
- package/dist/types/layouts/Auth/Auth.vue.d.ts +4 -2
- package/dist/types/layouts/Base/Base.vue.d.ts +4 -2
- package/dist/types/layouts/Platform/Platform.vue.d.ts +4 -2
- package/dist/types/plugins/Toast/Toast.vue.d.ts +4 -4
- package/dist/types/plugins/index.d.ts +1 -0
- package/dist/ui-library.css +1 -1
- package/dist/ui.cjs +601 -53
- package/dist/ui.css +1 -1
- package/dist/ui.js +30014 -27464
- package/package.json +53 -59
|
@@ -1,108 +1,40 @@
|
|
|
1
|
-
import
|
|
2
|
-
import type { DataTableInstance } from '.';
|
|
1
|
+
import type { Props, DataTableInstance } from '.';
|
|
3
2
|
declare const _default: <Item extends {
|
|
4
3
|
id: number;
|
|
5
|
-
}>(__VLS_props: {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
modelValue?: number[] | undefined;
|
|
14
|
-
currentPage?: number | undefined;
|
|
15
|
-
rowItems?: number[] | undefined;
|
|
16
|
-
rowsPerPage?: number | undefined;
|
|
17
|
-
actionBarSelection?: boolean | undefined;
|
|
18
|
-
actionBarSelectionKey?: string | undefined;
|
|
19
|
-
hideFooter?: boolean | undefined;
|
|
20
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
21
|
-
slots: Partial<Record<string, (_: any) => any>> & {
|
|
22
|
-
"footer-results"?(_: {
|
|
23
|
-
results: number;
|
|
24
|
-
}): any;
|
|
25
|
-
};
|
|
26
|
-
attrs: any;
|
|
27
|
-
emit: {
|
|
28
|
-
(event: 'update:modelValue', value: number[]): void;
|
|
29
|
-
(event: 'updatePage', value: number): void;
|
|
30
|
-
(event: 'clickItem', value: Item): void;
|
|
31
|
-
(event: 'contextMenuOpen', value: Item): void;
|
|
32
|
-
(event: 'clickContextItem', value: Item): void;
|
|
33
|
-
};
|
|
34
|
-
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{
|
|
35
|
-
dataTableInstance: import("vue").ComputedRef<DataTableInstance | undefined>;
|
|
36
|
-
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
37
|
-
props: {
|
|
4
|
+
}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_Prettify<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5
|
+
props: __VLS_Prettify<Pick<Partial<{}> & Omit<{
|
|
6
|
+
"onUpdate:modelValue"?: ((value: number[]) => any) | undefined;
|
|
7
|
+
onUpdatePage?: ((value: number) => any) | undefined;
|
|
8
|
+
onClickItem?: ((value: Item) => any) | undefined;
|
|
9
|
+
onContextMenuOpen?: ((value: Item) => any) | undefined;
|
|
10
|
+
onClickContextItem?: ((value: Item) => any) | undefined;
|
|
11
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
38
12
|
"onUpdate:modelValue"?: ((value: number[]) => any) | undefined;
|
|
39
13
|
onUpdatePage?: ((value: number) => any) | undefined;
|
|
40
14
|
onClickItem?: ((value: Item) => any) | undefined;
|
|
41
15
|
onContextMenuOpen?: ((value: Item) => any) | undefined;
|
|
42
16
|
onClickContextItem?: ((value: Item) => any) | undefined;
|
|
43
|
-
|
|
44
|
-
items: Item[];
|
|
45
|
-
modelValue?: number[] | undefined;
|
|
46
|
-
currentPage?: number | undefined;
|
|
47
|
-
rowItems?: number[] | undefined;
|
|
48
|
-
rowsPerPage?: number | undefined;
|
|
49
|
-
actionBarSelection?: boolean | undefined;
|
|
50
|
-
actionBarSelectionKey?: string | undefined;
|
|
51
|
-
hideFooter?: boolean | undefined;
|
|
52
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
17
|
+
}, never>, "onUpdate:modelValue" | "onUpdatePage" | "onClickItem" | "onContextMenuOpen" | "onClickContextItem"> & Props<Item>> & import("vue").PublicProps;
|
|
53
18
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
54
19
|
dataTableInstance: import("vue").ComputedRef<DataTableInstance | undefined>;
|
|
55
20
|
}>): void;
|
|
56
21
|
attrs: any;
|
|
57
|
-
slots: Partial<Record<string, (_: any) => any>> & {
|
|
22
|
+
slots: ReturnType<() => Partial<Record<string, (_: any) => any>> & {
|
|
58
23
|
"footer-results"?(_: {
|
|
59
24
|
results: number;
|
|
60
25
|
}): any;
|
|
61
|
-
}
|
|
26
|
+
}>;
|
|
62
27
|
emit: {
|
|
63
|
-
(event:
|
|
64
|
-
(event:
|
|
65
|
-
(event:
|
|
66
|
-
(event:
|
|
67
|
-
(event:
|
|
68
|
-
};
|
|
28
|
+
(event: "update:modelValue", value: number[]): void;
|
|
29
|
+
(event: "updatePage", value: number): void;
|
|
30
|
+
(event: "clickItem", value: Item): void;
|
|
31
|
+
(event: "contextMenuOpen", value: Item): void;
|
|
32
|
+
(event: "clickContextItem", value: Item): void;
|
|
33
|
+
} & {};
|
|
69
34
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
70
35
|
[key: string]: any;
|
|
71
36
|
}> & {
|
|
72
|
-
__ctx?:
|
|
73
|
-
props: {
|
|
74
|
-
"onUpdate:modelValue"?: ((value: number[]) => any) | undefined;
|
|
75
|
-
onUpdatePage?: ((value: number) => any) | undefined;
|
|
76
|
-
onClickItem?: ((value: Item) => any) | undefined;
|
|
77
|
-
onContextMenuOpen?: ((value: Item) => any) | undefined;
|
|
78
|
-
onClickContextItem?: ((value: Item) => any) | undefined;
|
|
79
|
-
headers: Vue3EasyDataTable.Header[];
|
|
80
|
-
items: Item[];
|
|
81
|
-
modelValue?: number[] | undefined;
|
|
82
|
-
currentPage?: number | undefined;
|
|
83
|
-
rowItems?: number[] | undefined;
|
|
84
|
-
rowsPerPage?: number | undefined;
|
|
85
|
-
actionBarSelection?: boolean | undefined;
|
|
86
|
-
actionBarSelectionKey?: string | undefined;
|
|
87
|
-
hideFooter?: boolean | undefined;
|
|
88
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
89
|
-
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
90
|
-
dataTableInstance: import("vue").ComputedRef<DataTableInstance | undefined>;
|
|
91
|
-
}>): void;
|
|
92
|
-
attrs: any;
|
|
93
|
-
slots: Partial<Record<string, (_: any) => any>> & {
|
|
94
|
-
"footer-results"?(_: {
|
|
95
|
-
results: number;
|
|
96
|
-
}): any;
|
|
97
|
-
};
|
|
98
|
-
emit: {
|
|
99
|
-
(event: 'update:modelValue', value: number[]): void;
|
|
100
|
-
(event: 'updatePage', value: number): void;
|
|
101
|
-
(event: 'clickItem', value: Item): void;
|
|
102
|
-
(event: 'contextMenuOpen', value: Item): void;
|
|
103
|
-
(event: 'clickContextItem', value: Item): void;
|
|
104
|
-
};
|
|
105
|
-
} | undefined;
|
|
37
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
106
38
|
};
|
|
107
39
|
export default _default;
|
|
108
40
|
type __VLS_Prettify<T> = {
|
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
import type { DataTableInstance } from '.';
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
results?(_: {
|
|
4
|
+
results: number;
|
|
5
|
+
}): any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
8
|
+
dataTable?: DataTableInstance;
|
|
9
|
+
currentPage?: number;
|
|
5
10
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
11
|
nextPage: () => void;
|
|
7
12
|
previousPage: () => void;
|
|
8
13
|
updatePage: (page: number) => void;
|
|
9
14
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
10
|
-
dataTable?: DataTableInstance
|
|
11
|
-
currentPage?: number
|
|
15
|
+
dataTable?: DataTableInstance;
|
|
16
|
+
currentPage?: number;
|
|
12
17
|
}>>> & {
|
|
13
18
|
onNextPage?: (() => any) | undefined;
|
|
14
19
|
onPreviousPage?: (() => any) | undefined;
|
|
15
20
|
onUpdatePage?: ((page: number) => any) | undefined;
|
|
16
|
-
}, {}, {}
|
|
17
|
-
|
|
18
|
-
results: number;
|
|
19
|
-
}): any;
|
|
20
|
-
}>;
|
|
21
|
+
}, {}, {}>;
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
21
23
|
export default _default;
|
|
22
24
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
23
25
|
new (): {
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import type { DefinitionItem } from './index.d';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
title?(_: {}): any;
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
7
|
+
title?: DefinitionItem["title"];
|
|
8
|
+
description?: DefinitionItem["description"];
|
|
9
|
+
component?: DefinitionItem["component"];
|
|
10
|
+
componentProperties?: DefinitionItem["componentProperties"];
|
|
11
|
+
hideEmptyValues?: boolean;
|
|
9
12
|
}>, {
|
|
10
13
|
title: undefined;
|
|
11
14
|
description: undefined;
|
|
@@ -13,13 +16,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
16
|
componentProperties: undefined;
|
|
14
17
|
hideEmptyValues: boolean;
|
|
15
18
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
16
|
-
title?:
|
|
17
|
-
description?:
|
|
18
|
-
component?:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
componentProperties?: Record<string, unknown> | undefined;
|
|
22
|
-
hideEmptyValues?: boolean | undefined;
|
|
19
|
+
title?: DefinitionItem["title"];
|
|
20
|
+
description?: DefinitionItem["description"];
|
|
21
|
+
component?: DefinitionItem["component"];
|
|
22
|
+
componentProperties?: DefinitionItem["componentProperties"];
|
|
23
|
+
hideEmptyValues?: boolean;
|
|
23
24
|
}>, {
|
|
24
25
|
title: undefined;
|
|
25
26
|
description: undefined;
|
|
@@ -27,17 +28,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
27
28
|
componentProperties: undefined;
|
|
28
29
|
hideEmptyValues: boolean;
|
|
29
30
|
}>>>, {
|
|
30
|
-
title:
|
|
31
|
+
title: DefinitionItem["title"];
|
|
31
32
|
description: string;
|
|
32
33
|
component: import("vue").Component | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
33
34
|
[key: string]: any;
|
|
34
35
|
}>;
|
|
35
36
|
componentProperties: Record<string, unknown>;
|
|
36
37
|
hideEmptyValues: boolean;
|
|
37
|
-
}, {}
|
|
38
|
-
|
|
39
|
-
default?(_: {}): any;
|
|
40
|
-
}>;
|
|
38
|
+
}, {}>;
|
|
39
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
41
40
|
export default _default;
|
|
42
41
|
type __VLS_WithDefaults<P, D> = {
|
|
43
42
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { DefinitionItem } from './index.d';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
3
|
items: DefinitionItem[];
|
|
4
|
-
hideEmptyValues?: boolean
|
|
4
|
+
hideEmptyValues?: boolean;
|
|
5
5
|
}>, {
|
|
6
6
|
hideEmptyValues: boolean;
|
|
7
7
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
8
8
|
items: DefinitionItem[];
|
|
9
|
-
hideEmptyValues?: boolean
|
|
9
|
+
hideEmptyValues?: boolean;
|
|
10
10
|
}>, {
|
|
11
11
|
hideEmptyValues: boolean;
|
|
12
12
|
}>>>, {
|
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
5
|
+
defaultOpen?: boolean;
|
|
3
6
|
}>, {
|
|
4
7
|
defaultOpen: boolean;
|
|
5
8
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
6
|
-
defaultOpen?: boolean
|
|
9
|
+
defaultOpen?: boolean;
|
|
7
10
|
}>, {
|
|
8
11
|
defaultOpen: boolean;
|
|
9
12
|
}>>>, {
|
|
10
13
|
defaultOpen: boolean;
|
|
11
|
-
}, {}
|
|
12
|
-
|
|
13
|
-
}>;
|
|
14
|
+
}, {}>;
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
14
16
|
export default _default;
|
|
15
17
|
type __VLS_WithDefaults<P, D> = {
|
|
16
18
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
2
|
default?(_: {}): any;
|
|
3
3
|
icon?(_: {
|
|
4
4
|
open: any;
|
|
5
5
|
}): any;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
7
9
|
export default _default;
|
|
8
10
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
9
11
|
new (): {
|
|
@@ -1,21 +1,23 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
5
|
+
static?: boolean;
|
|
6
|
+
unmount?: boolean;
|
|
4
7
|
}>, {
|
|
5
8
|
static: boolean;
|
|
6
9
|
unmount: boolean;
|
|
7
10
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
8
|
-
static?: boolean
|
|
9
|
-
unmount?: boolean
|
|
11
|
+
static?: boolean;
|
|
12
|
+
unmount?: boolean;
|
|
10
13
|
}>, {
|
|
11
14
|
static: boolean;
|
|
12
15
|
unmount: boolean;
|
|
13
16
|
}>>>, {
|
|
14
17
|
static: boolean;
|
|
15
18
|
unmount: boolean;
|
|
16
|
-
}, {}
|
|
17
|
-
|
|
18
|
-
}>;
|
|
19
|
+
}, {}>;
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
19
21
|
export default _default;
|
|
20
22
|
type __VLS_WithDefaults<P, D> = {
|
|
21
23
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import type { Props } from './index.d';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): Partial<Record<`item-${string}`, (_: {
|
|
3
|
+
item: import("./index.d").DropdownItem;
|
|
4
|
+
}) => any>> & {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
trailingIcon?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
3
9
|
horizontalAlign: string;
|
|
4
10
|
openDirection: string;
|
|
5
11
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
@@ -8,12 +14,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
8
14
|
}>>>, {
|
|
9
15
|
horizontalAlign: "left" | "right";
|
|
10
16
|
openDirection: "up" | "down";
|
|
11
|
-
}, {}
|
|
12
|
-
|
|
13
|
-
}) => any>> & {
|
|
14
|
-
default?(_: {}): any;
|
|
15
|
-
trailingIcon?(_: {}): any;
|
|
16
|
-
}>;
|
|
17
|
+
}, {}>;
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
17
19
|
export default _default;
|
|
18
20
|
type __VLS_WithDefaults<P, D> = {
|
|
19
21
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import type { DropdownItem } from './index.d';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
3
|
default?(_: {}): any;
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<DropdownItem>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<DropdownItem>>>, {}, {}>;
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
5
7
|
export default _default;
|
|
6
8
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
7
9
|
new (): {
|
|
@@ -1,58 +1,15 @@
|
|
|
1
1
|
import '@vuepic/vue-datepicker/dist/main.css';
|
|
2
2
|
import type { VNode } from 'vue';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
disabled?: boolean | undefined;
|
|
9
|
-
loading?: boolean | undefined;
|
|
10
|
-
custom?: boolean | undefined;
|
|
11
|
-
required?: boolean | undefined;
|
|
12
|
-
hasError?: boolean | undefined;
|
|
13
|
-
errorMessage?: string | undefined;
|
|
14
|
-
label?: string | undefined;
|
|
15
|
-
wrapperClasses?: string | undefined;
|
|
16
|
-
errorWrapperClasses?: string | undefined;
|
|
17
|
-
inputWrapperClasses?: string | undefined;
|
|
18
|
-
iconClasses?: string | undefined;
|
|
19
|
-
labelClasses?: string | undefined;
|
|
20
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
21
|
-
slots: {
|
|
22
|
-
label?(_: {}): any;
|
|
23
|
-
leadingIcon?(_: {}): any;
|
|
24
|
-
default?(_: {}): any;
|
|
25
|
-
default?(_: {}): any;
|
|
26
|
-
input?(_: {
|
|
27
|
-
check: () => void;
|
|
28
|
-
checked: boolean;
|
|
29
|
-
}): any;
|
|
30
|
-
trailingIcon?(_: {}): any;
|
|
31
|
-
};
|
|
32
|
-
attrs: any;
|
|
33
|
-
emit: (event: 'update:modelValue', value: ModelValue) => void;
|
|
34
|
-
} | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
35
|
-
props: {
|
|
3
|
+
import type { AppInputProps } from './index.d';
|
|
4
|
+
declare const _default: <ModelValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_Prettify<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5
|
+
props: __VLS_Prettify<Pick<Partial<{}> & Omit<{
|
|
6
|
+
"onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
|
|
7
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
36
8
|
"onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
readonly?: boolean | undefined;
|
|
40
|
-
disabled?: boolean | undefined;
|
|
41
|
-
loading?: boolean | undefined;
|
|
42
|
-
custom?: boolean | undefined;
|
|
43
|
-
required?: boolean | undefined;
|
|
44
|
-
hasError?: boolean | undefined;
|
|
45
|
-
errorMessage?: string | undefined;
|
|
46
|
-
label?: string | undefined;
|
|
47
|
-
wrapperClasses?: string | undefined;
|
|
48
|
-
errorWrapperClasses?: string | undefined;
|
|
49
|
-
inputWrapperClasses?: string | undefined;
|
|
50
|
-
iconClasses?: string | undefined;
|
|
51
|
-
labelClasses?: string | undefined;
|
|
52
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
53
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
9
|
+
}, never>, "onUpdate:modelValue"> & AppInputProps<ModelValue>> & import("vue").PublicProps;
|
|
10
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
54
11
|
attrs: any;
|
|
55
|
-
slots: {
|
|
12
|
+
slots: ReturnType<() => {
|
|
56
13
|
label?(_: {}): any;
|
|
57
14
|
leadingIcon?(_: {}): any;
|
|
58
15
|
default?(_: {}): any;
|
|
@@ -62,45 +19,12 @@ declare const _default: <ModelValue>(__VLS_props: {
|
|
|
62
19
|
checked: boolean;
|
|
63
20
|
}): any;
|
|
64
21
|
trailingIcon?(_: {}): any;
|
|
65
|
-
}
|
|
66
|
-
emit: (event:
|
|
22
|
+
}>;
|
|
23
|
+
emit: ((event: "update:modelValue", value: ModelValue) => void) & {};
|
|
67
24
|
}>) => VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
68
25
|
[key: string]: any;
|
|
69
26
|
}> & {
|
|
70
|
-
__ctx?:
|
|
71
|
-
props: {
|
|
72
|
-
"onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
|
|
73
|
-
type: import("./index.d").InputType;
|
|
74
|
-
modelValue: ModelValue;
|
|
75
|
-
readonly?: boolean | undefined;
|
|
76
|
-
disabled?: boolean | undefined;
|
|
77
|
-
loading?: boolean | undefined;
|
|
78
|
-
custom?: boolean | undefined;
|
|
79
|
-
required?: boolean | undefined;
|
|
80
|
-
hasError?: boolean | undefined;
|
|
81
|
-
errorMessage?: string | undefined;
|
|
82
|
-
label?: string | undefined;
|
|
83
|
-
wrapperClasses?: string | undefined;
|
|
84
|
-
errorWrapperClasses?: string | undefined;
|
|
85
|
-
inputWrapperClasses?: string | undefined;
|
|
86
|
-
iconClasses?: string | undefined;
|
|
87
|
-
labelClasses?: string | undefined;
|
|
88
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
89
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
90
|
-
attrs: any;
|
|
91
|
-
slots: {
|
|
92
|
-
label?(_: {}): any;
|
|
93
|
-
leadingIcon?(_: {}): any;
|
|
94
|
-
default?(_: {}): any;
|
|
95
|
-
default?(_: {}): any;
|
|
96
|
-
input?(_: {
|
|
97
|
-
check: () => void;
|
|
98
|
-
checked: boolean;
|
|
99
|
-
}): any;
|
|
100
|
-
trailingIcon?(_: {}): any;
|
|
101
|
-
};
|
|
102
|
-
emit: (event: 'update:modelValue', value: ModelValue) => void;
|
|
103
|
-
} | undefined;
|
|
27
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
104
28
|
};
|
|
105
29
|
export default _default;
|
|
106
30
|
type __VLS_Prettify<T> = {
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import type { FileInputProps } from './index.d';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<FileInputProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
6
|
"update:modelValue": (value: File | File[] | null) => void;
|
|
4
7
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<FileInputProps>>> & {
|
|
5
8
|
"onUpdate:modelValue"?: ((value: File | File[] | null) => any) | undefined;
|
|
6
|
-
}, {}, {}
|
|
7
|
-
|
|
8
|
-
}>;
|
|
9
|
+
}, {}, {}>;
|
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
9
11
|
export default _default;
|
|
10
12
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
11
13
|
new (): {
|
|
@@ -1,56 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
8
|
-
slots: {
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
};
|
|
11
|
-
attrs: any;
|
|
12
|
-
emit: {
|
|
13
|
-
(event: 'update:modelValue', value: ModelValue): void;
|
|
14
|
-
(event: 'open'): void;
|
|
15
|
-
};
|
|
16
|
-
} | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
17
|
-
props: {
|
|
1
|
+
import type { InputProps } from './index.d';
|
|
2
|
+
declare const _default: <ModelValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_Prettify<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
+
props: __VLS_Prettify<Pick<Partial<{}> & Omit<{
|
|
4
|
+
onOpen?: (() => any) | undefined;
|
|
5
|
+
"onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
|
|
6
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
18
7
|
onOpen?: (() => any) | undefined;
|
|
19
8
|
"onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
9
|
+
}, never>, "onOpen" | "onUpdate:modelValue"> & (InputProps<ModelValue> & {
|
|
10
|
+
custom?: boolean;
|
|
11
|
+
})> & import("vue").PublicProps;
|
|
12
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
25
13
|
attrs: any;
|
|
26
|
-
slots: {
|
|
14
|
+
slots: ReturnType<() => {
|
|
27
15
|
default?(_: {}): any;
|
|
28
|
-
}
|
|
16
|
+
}>;
|
|
29
17
|
emit: {
|
|
30
|
-
(event:
|
|
31
|
-
(event:
|
|
32
|
-
};
|
|
18
|
+
(event: "update:modelValue", value: ModelValue): void;
|
|
19
|
+
(event: "open"): void;
|
|
20
|
+
} & {};
|
|
33
21
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
34
22
|
[key: string]: any;
|
|
35
23
|
}> & {
|
|
36
|
-
__ctx?:
|
|
37
|
-
props: {
|
|
38
|
-
onOpen?: (() => any) | undefined;
|
|
39
|
-
"onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
|
|
40
|
-
type: import("./index.d").InputType;
|
|
41
|
-
modelValue: ModelValue;
|
|
42
|
-
custom?: boolean | undefined;
|
|
43
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
44
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
45
|
-
attrs: any;
|
|
46
|
-
slots: {
|
|
47
|
-
default?(_: {}): any;
|
|
48
|
-
};
|
|
49
|
-
emit: {
|
|
50
|
-
(event: 'update:modelValue', value: ModelValue): void;
|
|
51
|
-
(event: 'open'): void;
|
|
52
|
-
};
|
|
53
|
-
} | undefined;
|
|
24
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
54
25
|
};
|
|
55
26
|
export default _default;
|
|
56
27
|
type __VLS_Prettify<T> = {
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
declare
|
|
2
|
-
loading?: boolean | undefined;
|
|
3
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
4
|
-
loading?: boolean | undefined;
|
|
5
|
-
}>>>, {}, {}>, {
|
|
1
|
+
declare function __VLS_template(): {
|
|
6
2
|
default?(_: {}): any;
|
|
7
|
-
}
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
5
|
+
loading?: boolean;
|
|
6
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
7
|
+
loading?: boolean;
|
|
8
|
+
}>>>, {}, {}>;
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
8
10
|
export default _default;
|
|
9
11
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
12
|
new (): {
|
|
@@ -12,6 +12,7 @@ export declare const appInputPropDefaults: {
|
|
|
12
12
|
readonly label: undefined;
|
|
13
13
|
readonly custom: false;
|
|
14
14
|
readonly errorMessage: "";
|
|
15
|
+
readonly modelModifiers: () => {};
|
|
15
16
|
};
|
|
16
17
|
export declare function getInputComponent(inputType: InputType): string | Component;
|
|
17
18
|
export declare function isLicenseInputCheck(inputType: InputType): boolean;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import type { Props } from './index.d';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
3
|
default?(_: {}): any;
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}, {}>;
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
5
7
|
export default _default;
|
|
6
8
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
7
9
|
new (): {
|