@autoafleveren/ui 0.10.0 → 0.10.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.
|
@@ -12,6 +12,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
12
12
|
type: import("vue").PropType<Vue3EasyDataTable.Header[]>;
|
|
13
13
|
required: true;
|
|
14
14
|
};
|
|
15
|
+
rowItems: {
|
|
16
|
+
type: import("vue").PropType<number[]>;
|
|
17
|
+
default: () => number[];
|
|
18
|
+
};
|
|
19
|
+
rowsPerPage: {
|
|
20
|
+
type: import("vue").PropType<number>;
|
|
21
|
+
default: number;
|
|
22
|
+
};
|
|
15
23
|
actionBarSelection: {
|
|
16
24
|
type: import("vue").PropType<boolean>;
|
|
17
25
|
default: boolean;
|
|
@@ -37,6 +45,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
37
45
|
type: import("vue").PropType<Vue3EasyDataTable.Header[]>;
|
|
38
46
|
required: true;
|
|
39
47
|
};
|
|
48
|
+
rowItems: {
|
|
49
|
+
type: import("vue").PropType<number[]>;
|
|
50
|
+
default: () => number[];
|
|
51
|
+
};
|
|
52
|
+
rowsPerPage: {
|
|
53
|
+
type: import("vue").PropType<number>;
|
|
54
|
+
default: number;
|
|
55
|
+
};
|
|
40
56
|
actionBarSelection: {
|
|
41
57
|
type: import("vue").PropType<boolean>;
|
|
42
58
|
default: boolean;
|
|
@@ -49,6 +65,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
49
65
|
"onUpdate:modelValue"?: ((value: number[]) => any) | undefined;
|
|
50
66
|
onUpdatePage?: ((value: number) => any) | undefined;
|
|
51
67
|
}, {
|
|
68
|
+
rowItems: number[];
|
|
69
|
+
rowsPerPage: number;
|
|
52
70
|
actionBarSelection: boolean;
|
|
53
71
|
actionBarSelectionKey: string;
|
|
54
72
|
}, {}>, Partial<Record<string, (_: any) => any>> & {
|
|
@@ -31,6 +31,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
31
31
|
type: import("vue").PropType<string>;
|
|
32
32
|
default: undefined;
|
|
33
33
|
};
|
|
34
|
+
additionalClasses: {
|
|
35
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
36
|
+
default: undefined;
|
|
37
|
+
};
|
|
34
38
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
39
|
label: {
|
|
36
40
|
type: import("vue").PropType<string>;
|
|
@@ -63,6 +67,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
63
67
|
type: import("vue").PropType<string>;
|
|
64
68
|
default: undefined;
|
|
65
69
|
};
|
|
70
|
+
additionalClasses: {
|
|
71
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
72
|
+
default: undefined;
|
|
73
|
+
};
|
|
66
74
|
}>>, {
|
|
67
75
|
label: string;
|
|
68
76
|
errorMessage: string;
|
|
@@ -71,6 +79,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
71
79
|
fetchOnOpen: boolean;
|
|
72
80
|
openDirection: OpenDirection;
|
|
73
81
|
dropdownClasses: string;
|
|
82
|
+
additionalClasses: Record<string, string>;
|
|
74
83
|
}, {}>, Partial<Record<NonNullable<"option" | "placeholder" | "list" | "tag" | "caret" | "clear" | "spinner" | "groupLabel" | "afterlist" | "beforelist" | "multiplelabel" | "singlelabel" | "infinite" | "nooptions" | "noresults">, (_: {
|
|
75
84
|
classes: string | undefined;
|
|
76
85
|
}) => any>> & {
|
|
@@ -1,16 +1,21 @@
|
|
|
1
|
-
import type { Type } from '~plugins/Toast/types';
|
|
1
|
+
import type { ToastOptions, Type } from '~plugins/Toast/types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
title: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
5
5
|
required: true;
|
|
6
6
|
};
|
|
7
|
-
content: {
|
|
8
|
-
type: import("vue").PropType<string>;
|
|
9
|
-
};
|
|
10
7
|
type: {
|
|
11
8
|
type: import("vue").PropType<Type>;
|
|
12
9
|
required: true;
|
|
13
10
|
};
|
|
11
|
+
content: {
|
|
12
|
+
type: import("vue").PropType<string>;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
options: {
|
|
16
|
+
type: import("vue").PropType<ToastOptions>;
|
|
17
|
+
default: undefined;
|
|
18
|
+
};
|
|
14
19
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
20
|
closeToast: () => void;
|
|
16
21
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -18,14 +23,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
23
|
type: import("vue").PropType<string>;
|
|
19
24
|
required: true;
|
|
20
25
|
};
|
|
21
|
-
content: {
|
|
22
|
-
type: import("vue").PropType<string>;
|
|
23
|
-
};
|
|
24
26
|
type: {
|
|
25
27
|
type: import("vue").PropType<Type>;
|
|
26
28
|
required: true;
|
|
27
29
|
};
|
|
30
|
+
content: {
|
|
31
|
+
type: import("vue").PropType<string>;
|
|
32
|
+
default: undefined;
|
|
33
|
+
};
|
|
34
|
+
options: {
|
|
35
|
+
type: import("vue").PropType<ToastOptions>;
|
|
36
|
+
default: undefined;
|
|
37
|
+
};
|
|
28
38
|
}>> & {
|
|
29
39
|
onCloseToast?: (() => any) | undefined;
|
|
30
|
-
}, {
|
|
40
|
+
}, {
|
|
41
|
+
content: string;
|
|
42
|
+
options: ToastOptions;
|
|
43
|
+
}, {}>;
|
|
31
44
|
export default _default;
|