@autoafleveren/ui 0.20.2 → 1.0.2
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 +7 -7
- package/dist/icons.cjs +81 -81
- package/dist/icons.css +1 -0
- package/dist/icons.js +8645 -8378
- package/dist/theme.css +205 -0
- package/dist/types/components/AppActionBar/AppActionBar.vue.d.ts +4 -1
- package/dist/types/components/AppActionBar/Components/MultiSelect.vue.d.ts +2 -2
- package/dist/types/components/AppBackButton/AppBackButton.vue.d.ts +18 -12
- package/dist/types/components/AppColor/AppColor.vue.d.ts +6 -5
- package/dist/types/components/AppConfirm/AppConfirm.vue.d.ts +286 -12
- package/dist/types/components/AppContextMenu/AppContextMenu.vue.d.ts +4 -3
- package/dist/types/components/AppDataTable/AppDataTable.vue.d.ts +7 -2
- package/dist/types/components/AppDataTable/AppDataTableFooter.vue.d.ts +37 -12
- package/dist/types/components/AppDefinitionList/AppDefinitionList.vue.d.ts +14 -11
- package/dist/types/components/AppDisclosure/AppDisclosure.vue.d.ts +13 -11
- package/dist/types/components/AppDisclosure/AppDisclosurePanel.vue.d.ts +14 -11
- package/dist/types/components/AppDrawer/AppDrawer.vue.d.ts +68 -0
- package/dist/types/components/AppDropdownButton/AppDropdownItem.vue.d.ts +15 -11
- package/dist/types/components/AppError/AppError.vue.d.ts +49 -12
- package/dist/types/components/AppImageDropzone/AppImageDropzone.vue.d.ts +5 -4
- package/dist/types/components/AppInput/AppInput.vue.d.ts +7 -8
- package/dist/types/components/AppInput/FileInput.vue.d.ts +20 -11
- package/dist/types/components/AppInput/Input.vue.d.ts +1 -1
- package/dist/types/components/AppInput/LocationInput.vue.d.ts +4 -3
- package/dist/types/components/AppInput/choice.d.ts +2 -2
- package/dist/types/components/AppInput/index.d.ts +1 -1
- package/dist/types/components/AppInputLabel/AppInputLabel.vue.d.ts +8 -11
- package/dist/types/components/AppLicensePlate/AppLicensePlate.vue.d.ts +12 -11
- package/dist/types/components/AppMaps/AppMaps.vue.d.ts +4 -3
- package/dist/types/components/AppPagination/AppPaginationItem.vue.d.ts +12 -11
- package/dist/types/components/AppProgressBar/AppProgressBar.vue.d.ts +4 -12
- package/dist/types/components/AppProgressBar/AppProgressBarStep.vue.d.ts +8 -11
- package/dist/types/components/AppRating/AppRating.vue.d.ts +24 -11
- package/dist/types/components/AppRating/VueStarRating/StarRating.vue.d.ts +65 -13
- package/dist/types/components/AppSection/AppSection.vue.d.ts +17 -14
- package/dist/types/components/AppStepper/AppStepper.vue.d.ts +29 -15
- package/dist/types/components/AppTable/AppTable.vue.d.ts +8 -11
- package/dist/types/components/AppTimeline/AppTimeline.vue.d.ts +13 -11
- package/dist/types/components/AppTimeline/AppTimelineItem.vue.d.ts +37 -21
- package/dist/types/components/AppToggle/AppToggle.vue.d.ts +2 -2
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/composables/index.d.ts +1 -0
- package/dist/types/composables/useComputedPosition/index.d.ts +4 -4
- package/dist/types/composables/useDrawer/index.d.ts +16 -0
- package/dist/types/layouts/Auth/Auth.vue.d.ts +16 -12
- package/dist/types/layouts/Base/Base.vue.d.ts +23 -17
- package/dist/types/layouts/Platform/Platform.vue.d.ts +30 -17
- package/dist/ui-library.css +2 -1
- package/dist/ui-storybook.css +2 -1
- package/dist/ui.cjs +45 -45
- package/dist/ui.css +1 -1
- package/dist/ui.js +16530 -16035
- package/package.json +36 -35
- package/dist/style.css +0 -1
- package/dist/types/components/AppActionBar/AppActionBarItem.vue.d.ts +0 -29
- package/dist/types/components/AppAlert/AppAlert.vue.d.ts +0 -32
- package/dist/types/components/AppBadge/AppBadge.vue.d.ts +0 -26
- package/dist/types/components/AppButton/AppButton.vue.d.ts +0 -29
- package/dist/types/components/AppButton/ButtonIconSlot.vue.d.ts +0 -20
- package/dist/types/components/AppCard/AppCard.vue.d.ts +0 -40
- package/dist/types/components/AppCard/CardIconSlot.vue.d.ts +0 -22
- package/dist/types/components/AppColorCard/AppColorCard.vue.d.ts +0 -31
- package/dist/types/components/AppDefinitionList/AppDefinitionItem.vue.d.ts +0 -34
- package/dist/types/components/AppDisclosure/AppDisclosureButton.vue.d.ts +0 -122
- package/dist/types/components/AppDropdownButton/AppDropdownButton.vue.d.ts +0 -249
- package/dist/types/components/AppInput/InputIconSlot.vue.d.ts +0 -20
- package/dist/types/components/AppMenu/AppMenuItem.vue.d.ts +0 -20
- package/dist/types/components/AppModal/AppModal.vue.d.ts +0 -61
- package/dist/types/components/AppSelect/AppSelect.vue.d.ts +0 -67
- package/dist/types/components/AppToggleCard/AppToggleCard.vue.d.ts +0 -31
|
@@ -1,21 +1,13 @@
|
|
|
1
1
|
import type { DefaultSlotProps, Props } from './index.d';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
default?: (props: DefaultSlotProps) => void;
|
|
6
|
-
}> & {
|
|
7
|
-
default?: (props: DefaultSlotProps) => void;
|
|
8
|
-
};
|
|
9
|
-
refs: {};
|
|
10
|
-
rootEl: HTMLDivElement;
|
|
2
|
+
type __VLS_Slots = {
|
|
3
|
+
default?: (props: DefaultSlotProps) => void;
|
|
11
4
|
};
|
|
12
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
5
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
14
6
|
unmount: boolean;
|
|
15
7
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
|
-
declare const _default:
|
|
8
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
9
|
export default _default;
|
|
18
|
-
type
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
11
|
new (): {
|
|
20
12
|
$slots: S;
|
|
21
13
|
};
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
rootEl: HTMLDivElement;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
2
|
+
declare var __VLS_0: {};
|
|
3
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
4
|
+
default?: (props: typeof __VLS_0) => any;
|
|
5
|
+
}>;
|
|
6
|
+
declare const __VLS_self: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
7
|
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
11
|
-
declare const _default:
|
|
8
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
9
|
export default _default;
|
|
13
|
-
type
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
11
|
new (): {
|
|
15
12
|
$slots: S;
|
|
16
13
|
};
|
|
@@ -1,21 +1,34 @@
|
|
|
1
|
+
import StarRating from './VueStarRating/StarRating.vue';
|
|
2
|
+
import { AppCard } from '~components';
|
|
1
3
|
type __VLS_Props = {
|
|
2
4
|
title?: string;
|
|
3
5
|
stars?: number;
|
|
4
6
|
showRating?: boolean;
|
|
5
7
|
readonly?: boolean;
|
|
6
8
|
};
|
|
9
|
+
declare const model: import("vue").ModelRef<number, string, number, number>;
|
|
7
10
|
type __VLS_PublicProps = {
|
|
8
11
|
modelValue: number;
|
|
9
12
|
} & __VLS_Props;
|
|
10
|
-
declare
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
14
|
+
declare var __VLS_7: {};
|
|
15
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
16
|
+
default?: (props: typeof __VLS_7) => any;
|
|
17
|
+
}>;
|
|
18
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
19
|
+
StarRating: typeof StarRating;
|
|
20
|
+
AppCard: typeof AppCard;
|
|
21
|
+
model: typeof model;
|
|
22
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
+
"update:modelValue": (value: number) => any;
|
|
24
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
25
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
title: string;
|
|
28
|
+
stars: number;
|
|
29
|
+
readonly: boolean;
|
|
30
|
+
showRating: boolean;
|
|
31
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
32
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
33
|
"update:modelValue": (value: number) => any;
|
|
21
34
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -26,9 +39,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
26
39
|
readonly: boolean;
|
|
27
40
|
showRating: boolean;
|
|
28
41
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
29
|
-
declare const _default:
|
|
42
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
30
43
|
export default _default;
|
|
31
|
-
type
|
|
44
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
45
|
new (): {
|
|
33
46
|
$slots: S;
|
|
34
47
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Star from './Star.vue';
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
rating?: number;
|
|
3
4
|
increment?: number;
|
|
@@ -24,18 +25,69 @@ type __VLS_Props = {
|
|
|
24
25
|
activeOnClick?: boolean;
|
|
25
26
|
animate?: boolean;
|
|
26
27
|
};
|
|
27
|
-
declare
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
28
|
+
declare const step: import("vue").Ref<number, number>;
|
|
29
|
+
declare const fillLevel: import("vue").Ref<number[], number[]>;
|
|
30
|
+
declare const selectedRating: import("vue").Ref<number, number>;
|
|
31
|
+
declare const formattedRating: import("vue").ComputedRef<string | number>;
|
|
32
|
+
declare const margin: import("vue").ComputedRef<number>;
|
|
33
|
+
declare const currentActiveColor: import("vue").ComputedRef<string>;
|
|
34
|
+
declare const currentActiveBorderColor: import("vue").ComputedRef<string>;
|
|
35
|
+
declare function setRating($event: {
|
|
36
|
+
id: number;
|
|
37
|
+
position: number;
|
|
38
|
+
}, persist?: boolean): void;
|
|
39
|
+
declare function resetRating(): void;
|
|
40
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
41
|
+
declare var __VLS_0: {
|
|
42
|
+
rating: number;
|
|
43
|
+
stars: number;
|
|
37
44
|
};
|
|
38
|
-
type
|
|
45
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
46
|
+
'screen-reader'?: (props: typeof __VLS_0) => any;
|
|
47
|
+
}>;
|
|
48
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
49
|
+
Star: typeof Star;
|
|
50
|
+
step: typeof step;
|
|
51
|
+
fillLevel: typeof fillLevel;
|
|
52
|
+
selectedRating: typeof selectedRating;
|
|
53
|
+
formattedRating: typeof formattedRating;
|
|
54
|
+
margin: typeof margin;
|
|
55
|
+
currentActiveColor: typeof currentActiveColor;
|
|
56
|
+
currentActiveBorderColor: typeof currentActiveBorderColor;
|
|
57
|
+
setRating: typeof setRating;
|
|
58
|
+
resetRating: typeof resetRating;
|
|
59
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
60
|
+
"update:rating": (value: number) => any;
|
|
61
|
+
"hover:rating": (value: number) => any;
|
|
62
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
63
|
+
"onUpdate:rating"?: ((value: number) => any) | undefined;
|
|
64
|
+
"onHover:rating"?: ((value: number) => any) | undefined;
|
|
65
|
+
}>, {
|
|
66
|
+
animate: boolean;
|
|
67
|
+
inline: boolean;
|
|
68
|
+
clearable: boolean;
|
|
69
|
+
rtl: boolean;
|
|
70
|
+
activeColor: string | string[];
|
|
71
|
+
inactiveColor: string;
|
|
72
|
+
borderColor: string;
|
|
73
|
+
activeBorderColor: null | string | string[];
|
|
74
|
+
borderWidth: number;
|
|
75
|
+
roundedCorners: boolean;
|
|
76
|
+
glow: number;
|
|
77
|
+
glowColor: string;
|
|
78
|
+
starSize: number;
|
|
79
|
+
rating: number;
|
|
80
|
+
increment: number;
|
|
81
|
+
roundStartRating: boolean;
|
|
82
|
+
maxRating: number;
|
|
83
|
+
starPoints: number[];
|
|
84
|
+
showRating: boolean;
|
|
85
|
+
readOnly: boolean;
|
|
86
|
+
textClass: string;
|
|
87
|
+
padding: number;
|
|
88
|
+
fixedPoints: number | null;
|
|
89
|
+
activeOnClick: boolean;
|
|
90
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
91
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
40
92
|
"update:rating": (value: number) => any;
|
|
41
93
|
"hover:rating": (value: number) => any;
|
|
@@ -68,9 +120,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
|
|
|
68
120
|
fixedPoints: number | null;
|
|
69
121
|
activeOnClick: boolean;
|
|
70
122
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
71
|
-
declare const _default:
|
|
123
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
72
124
|
export default _default;
|
|
73
|
-
type
|
|
125
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
74
126
|
new (): {
|
|
75
127
|
$slots: S;
|
|
76
128
|
};
|
|
@@ -2,22 +2,25 @@ type __VLS_Props = {
|
|
|
2
2
|
title?: string;
|
|
3
3
|
description?: string;
|
|
4
4
|
};
|
|
5
|
-
declare
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
5
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
|
+
declare var __VLS_0: {};
|
|
7
|
+
declare var __VLS_1: {};
|
|
8
|
+
declare var __VLS_2: {};
|
|
9
|
+
declare var __VLS_3: {};
|
|
10
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
11
|
+
titleDescription?: (props: typeof __VLS_0) => any;
|
|
12
|
+
} & {
|
|
13
|
+
title?: (props: typeof __VLS_1) => any;
|
|
14
|
+
} & {
|
|
15
|
+
description?: (props: typeof __VLS_2) => any;
|
|
16
|
+
} & {
|
|
17
|
+
default?: (props: typeof __VLS_3) => any;
|
|
18
|
+
}>;
|
|
19
|
+
declare const __VLS_self: 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>;
|
|
17
20
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLElement>;
|
|
18
|
-
declare const _default:
|
|
21
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
19
22
|
export default _default;
|
|
20
|
-
type
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
24
|
new (): {
|
|
22
25
|
$slots: S;
|
|
23
26
|
};
|
|
@@ -1,30 +1,44 @@
|
|
|
1
|
+
import { FontAwesomeIcon, byPrefixAndName } from '~icons';
|
|
2
|
+
import { AppCard } from '~components';
|
|
1
3
|
type __VLS_Props = {
|
|
2
4
|
title?: string;
|
|
3
5
|
};
|
|
6
|
+
declare const model: import("vue").ModelRef<number, string, number, number>;
|
|
7
|
+
declare const flipRef: Readonly<import("vue").ShallowRef<HTMLDivElement | null>>;
|
|
8
|
+
declare function increment(): void;
|
|
9
|
+
declare function decrement(): void;
|
|
4
10
|
type __VLS_PublicProps = {
|
|
5
11
|
modelValue: number;
|
|
6
12
|
} & __VLS_Props;
|
|
7
|
-
declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
};
|
|
15
|
-
rootEl: HTMLDivElement;
|
|
13
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
14
|
+
declare var __VLS_7: {};
|
|
15
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
16
|
+
default?: (props: typeof __VLS_7) => any;
|
|
17
|
+
}>;
|
|
18
|
+
type __VLS_TemplateRefs = {
|
|
19
|
+
flipRef: typeof __VLS_nativeElements['div'];
|
|
16
20
|
};
|
|
17
|
-
|
|
21
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
22
|
+
FontAwesomeIcon: typeof FontAwesomeIcon;
|
|
23
|
+
byPrefixAndName: typeof byPrefixAndName;
|
|
24
|
+
AppCard: typeof AppCard;
|
|
25
|
+
model: typeof model;
|
|
26
|
+
flipRef: typeof flipRef;
|
|
27
|
+
increment: typeof increment;
|
|
28
|
+
decrement: typeof decrement;
|
|
29
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
+
"update:modelValue": (value: number) => any;
|
|
31
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
32
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
33
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
34
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
35
|
"update:modelValue": (value: number) => any;
|
|
20
36
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
37
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
22
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false,
|
|
23
|
-
|
|
24
|
-
}, HTMLDivElement>;
|
|
25
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
38
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, __VLS_TemplateRefs, HTMLDivElement>;
|
|
39
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
26
40
|
export default _default;
|
|
27
|
-
type
|
|
41
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
42
|
new (): {
|
|
29
43
|
$slots: S;
|
|
30
44
|
};
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
rootEl: HTMLDivElement;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
2
|
+
declare var __VLS_0: {};
|
|
3
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
4
|
+
default?: (props: typeof __VLS_0) => any;
|
|
5
|
+
}>;
|
|
6
|
+
declare const __VLS_self: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
7
|
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
11
|
-
declare const _default:
|
|
8
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
9
|
export default _default;
|
|
13
|
-
type
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
11
|
new (): {
|
|
15
12
|
$slots: S;
|
|
16
13
|
};
|
|
@@ -1,19 +1,21 @@
|
|
|
1
|
+
import AppTimelineItem from './AppTimelineItem.vue';
|
|
1
2
|
import type { TimelineProps } from './index.d';
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
type
|
|
3
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
4
|
+
declare var __VLS_0: {};
|
|
5
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
6
|
+
default?: (props: typeof __VLS_0) => any;
|
|
7
|
+
}>;
|
|
8
|
+
declare const __VLS_self: import("vue").DefineComponent<TimelineProps, {
|
|
9
|
+
AppTimelineItem: typeof AppTimelineItem;
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TimelineProps> & Readonly<{}>, {
|
|
11
|
+
type: import("./index.d").TimelineType;
|
|
12
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
13
|
declare const __VLS_component: import("vue").DefineComponent<TimelineProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TimelineProps> & Readonly<{}>, {
|
|
12
14
|
type: import("./index.d").TimelineType;
|
|
13
15
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
|
-
declare const _default:
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
15
17
|
export default _default;
|
|
16
|
-
type
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
19
|
new (): {
|
|
18
20
|
$slots: S;
|
|
19
21
|
};
|
|
@@ -1,30 +1,46 @@
|
|
|
1
|
+
import { AppBadge } from '~components';
|
|
2
|
+
import AppTimelineItemIcon from './AppTimelineItemIcon.vue';
|
|
3
|
+
import { domClassesPerType } from './index';
|
|
1
4
|
import type { TimelineItemProps } from './index.d';
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}): any;
|
|
14
|
-
default?(_: {
|
|
15
|
-
value: string | undefined;
|
|
16
|
-
}): any;
|
|
17
|
-
};
|
|
18
|
-
refs: {};
|
|
19
|
-
rootEl: HTMLElement;
|
|
5
|
+
declare const dateFormat: import("vue").ComputedRef<string | number | never[]>;
|
|
6
|
+
declare const badgeType: import("vue").ComputedRef<"success" | "warning" | "error" | "default" | "plain" | "info" | "inactive">;
|
|
7
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
8
|
+
declare var __VLS_0: {
|
|
9
|
+
value: import("vue").Component | undefined;
|
|
10
|
+
};
|
|
11
|
+
declare var __VLS_12: {
|
|
12
|
+
value: string | number | never[];
|
|
13
|
+
};
|
|
14
|
+
declare var __VLS_13: {
|
|
15
|
+
value: string;
|
|
20
16
|
};
|
|
21
|
-
|
|
17
|
+
declare var __VLS_14: {
|
|
18
|
+
value: string | undefined;
|
|
19
|
+
};
|
|
20
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
21
|
+
icon?: (props: typeof __VLS_0) => any;
|
|
22
|
+
} & {
|
|
23
|
+
date?: (props: typeof __VLS_12) => any;
|
|
24
|
+
} & {
|
|
25
|
+
title?: (props: typeof __VLS_13) => any;
|
|
26
|
+
} & {
|
|
27
|
+
default?: (props: typeof __VLS_14) => any;
|
|
28
|
+
}>;
|
|
29
|
+
declare const __VLS_self: import("vue").DefineComponent<TimelineItemProps, {
|
|
30
|
+
AppBadge: typeof AppBadge;
|
|
31
|
+
AppTimelineItemIcon: typeof AppTimelineItemIcon;
|
|
32
|
+
domClassesPerType: typeof domClassesPerType;
|
|
33
|
+
dateFormat: typeof dateFormat;
|
|
34
|
+
badgeType: typeof badgeType;
|
|
35
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TimelineItemProps> & Readonly<{}>, {
|
|
36
|
+
itemType: import("./index.d").TimelineType;
|
|
37
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
38
|
declare const __VLS_component: import("vue").DefineComponent<TimelineItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TimelineItemProps> & Readonly<{}>, {
|
|
23
39
|
itemType: import("./index.d").TimelineType;
|
|
24
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLElement>;
|
|
25
|
-
declare const _default:
|
|
41
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
26
42
|
export default _default;
|
|
27
|
-
type
|
|
43
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
44
|
new (): {
|
|
29
45
|
$slots: S;
|
|
30
46
|
};
|
|
@@ -4,9 +4,9 @@ type __VLS_PublicProps = {
|
|
|
4
4
|
modelValue?: boolean;
|
|
5
5
|
} & __VLS_Props;
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (value: boolean) => any;
|
|
7
|
+
"update:modelValue": (value: boolean | undefined) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
9
|
+
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
disabled: boolean;
|
|
12
12
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
@@ -39,3 +39,4 @@ export { default as AppProgressBar } from './AppProgressBar/AppProgressBar.vue';
|
|
|
39
39
|
export { default as AppProgressBarStep } from './AppProgressBar/AppProgressBarStep.vue';
|
|
40
40
|
export { default as AppRating } from './AppRating/AppRating.vue';
|
|
41
41
|
export { default as AppStepper } from './AppStepper/AppStepper.vue';
|
|
42
|
+
export { default as AppDrawer } from './AppDrawer/AppDrawer.vue';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import type { Options, ReferenceElement } from './index.d';
|
|
2
|
+
export declare function useComputedPosition(referenceComponent: ReferenceElement, floatingComponent: ReferenceElement, options?: Options): {
|
|
3
|
+
isActive: import("vue").Ref<boolean, boolean>;
|
|
4
|
+
setComputedPosition: () => void;
|
|
5
5
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { App, Component, MaybeRef } from 'vue';
|
|
2
|
+
import type { ModalInstance, DrawerProps } from '~components/AppDrawer/index.d';
|
|
3
|
+
export declare function useDrawer(component?: MaybeRef<Component | string>, options?: DrawerProps): {
|
|
4
|
+
instance: import("vue").Ref<ModalInstance | undefined, ModalInstance | undefined>;
|
|
5
|
+
open: (openOptions: DrawerProps) => Promise<unknown>;
|
|
6
|
+
close: () => Promise<void>;
|
|
7
|
+
instances: import("vue").Ref<{
|
|
8
|
+
ref: AppDrawer;
|
|
9
|
+
instance: App;
|
|
10
|
+
element: HTMLDivElement;
|
|
11
|
+
}[], ModalInstance[] | {
|
|
12
|
+
ref: AppDrawer;
|
|
13
|
+
instance: App;
|
|
14
|
+
element: HTMLDivElement;
|
|
15
|
+
}[]>;
|
|
16
|
+
};
|
|
@@ -1,17 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import { AppNavigationMenu } from '~components';
|
|
2
|
+
declare const layoutImage: import("vue").Ref<import("~composables").LayoutImage, import("~composables").LayoutImage>;
|
|
3
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
4
|
+
declare var __VLS_6: {};
|
|
5
|
+
declare var __VLS_7: {};
|
|
6
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
7
|
+
secondaryNavBar?: (props: typeof __VLS_6) => any;
|
|
8
|
+
} & {
|
|
9
|
+
default?: (props: typeof __VLS_7) => any;
|
|
10
|
+
}>;
|
|
11
|
+
declare const __VLS_self: import("vue").DefineComponent<{}, {
|
|
12
|
+
AppNavigationMenu: typeof AppNavigationMenu;
|
|
13
|
+
layoutImage: typeof layoutImage;
|
|
14
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
15
|
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
12
|
-
declare const _default:
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
13
17
|
export default _default;
|
|
14
|
-
type
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
19
|
new (): {
|
|
16
20
|
$slots: S;
|
|
17
21
|
};
|
|
@@ -1,22 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { AppNavigationMenu, AppActionBar } from '~components';
|
|
2
|
+
declare const sidebarLeft: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
3
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
4
|
+
declare var __VLS_6: {};
|
|
5
|
+
declare var __VLS_13: {};
|
|
6
|
+
declare var __VLS_14: {};
|
|
7
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
8
|
+
sidebarLeft?: (props: typeof __VLS_6) => any;
|
|
9
|
+
} & {
|
|
10
|
+
default?: (props: typeof __VLS_13) => any;
|
|
11
|
+
} & {
|
|
12
|
+
sidebar?: (props: typeof __VLS_14) => any;
|
|
13
|
+
}>;
|
|
14
|
+
type __VLS_TemplateRefs = {
|
|
15
|
+
sidebarLeft: typeof __VLS_nativeElements['div'];
|
|
12
16
|
};
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
17
|
+
declare const __VLS_self: import("vue").DefineComponent<{}, {
|
|
18
|
+
AppNavigationMenu: typeof AppNavigationMenu;
|
|
19
|
+
AppActionBar: typeof AppActionBar;
|
|
20
|
+
sidebarLeft: typeof sidebarLeft;
|
|
21
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, __VLS_TemplateRefs, HTMLDivElement>;
|
|
23
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
24
|
export default _default;
|
|
19
|
-
type
|
|
25
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
26
|
new (): {
|
|
21
27
|
$slots: S;
|
|
22
28
|
};
|