@muenchen/muc-patternlab-vue 4.0.0-beta.1 → 4.0.0-beta.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/components/Form/MucSelect.stories.d.ts +21 -4
- package/components/Form/MucSelect.vue.d.ts +5 -0
- package/components/Form/MucSelectTypes.d.ts +6 -0
- package/muc-patternlab-vue.es.js +5104 -2169
- package/package.json +14 -13
- package/style.css +1 -1
- package/components/Form/MucSelectItem.vue.d.ts +0 -13
|
@@ -9,6 +9,7 @@ declare const _default: {
|
|
|
9
9
|
multiple?: boolean;
|
|
10
10
|
noItemFoundMessage?: string;
|
|
11
11
|
itemTitle?: string;
|
|
12
|
+
placeholder?: string;
|
|
12
13
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
14
|
"update:modelValue": (value: import('./MucSelectTypes').MucSelectItemTypes | import('./MucSelectTypes').MucSelectItemTypes[]) => any;
|
|
14
15
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -21,10 +22,12 @@ declare const _default: {
|
|
|
21
22
|
multiple?: boolean;
|
|
22
23
|
noItemFoundMessage?: string;
|
|
23
24
|
itemTitle?: string;
|
|
25
|
+
placeholder?: string;
|
|
24
26
|
}> & Readonly<{
|
|
25
27
|
"onUpdate:modelValue"?: ((value: import('./MucSelectTypes').MucSelectItemTypes | import('./MucSelectTypes').MucSelectItemTypes[]) => any) | undefined;
|
|
26
28
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
29
|
selectComponent: HTMLDivElement;
|
|
30
|
+
elementRef: HTMLSelectElement;
|
|
28
31
|
}, HTMLDivElement>;
|
|
29
32
|
title: string;
|
|
30
33
|
tags: string[];
|
|
@@ -57,14 +60,14 @@ export declare const Default: {
|
|
|
57
60
|
};
|
|
58
61
|
export declare const MultiSelect: {
|
|
59
62
|
args: {
|
|
60
|
-
id: string;
|
|
61
|
-
label: string;
|
|
62
|
-
multiple: boolean;
|
|
63
63
|
modelValue: {
|
|
64
64
|
id: string;
|
|
65
65
|
name: string;
|
|
66
66
|
quantity: number;
|
|
67
|
-
};
|
|
67
|
+
}[];
|
|
68
|
+
id: string;
|
|
69
|
+
label: string;
|
|
70
|
+
multiple: boolean;
|
|
68
71
|
items: {
|
|
69
72
|
id: string;
|
|
70
73
|
name: string;
|
|
@@ -83,3 +86,17 @@ export declare const StringSelect: {
|
|
|
83
86
|
hint: string;
|
|
84
87
|
};
|
|
85
88
|
};
|
|
89
|
+
export declare const Placeholder: {
|
|
90
|
+
args: {
|
|
91
|
+
id: string;
|
|
92
|
+
items: {
|
|
93
|
+
id: string;
|
|
94
|
+
name: string;
|
|
95
|
+
quantity: number;
|
|
96
|
+
}[];
|
|
97
|
+
label: string;
|
|
98
|
+
hint: string;
|
|
99
|
+
itemTitle: string;
|
|
100
|
+
placeholder: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
@@ -28,6 +28,10 @@ type __VLS_Props = {
|
|
|
28
28
|
* Property that contains the value to be displayed in the list when a list of objects is used
|
|
29
29
|
*/
|
|
30
30
|
itemTitle?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Optional placeholder shown on the input
|
|
33
|
+
*/
|
|
34
|
+
placeholder?: string;
|
|
31
35
|
};
|
|
32
36
|
type __VLS_PublicProps = {
|
|
33
37
|
"modelValue"?: MucSelectItemTypes | MucSelectItemTypes[];
|
|
@@ -38,5 +42,6 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
38
42
|
"onUpdate:modelValue"?: ((value: MucSelectItemTypes | MucSelectItemTypes[]) => any) | undefined;
|
|
39
43
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
40
44
|
selectComponent: HTMLDivElement;
|
|
45
|
+
elementRef: HTMLSelectElement;
|
|
41
46
|
}, HTMLDivElement>;
|
|
42
47
|
export default _default;
|