@muenchen/muc-patternlab-vue 1.11.0-beta.2 → 1.11.0-beta.3

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.
Files changed (47) hide show
  1. package/README.md +1 -4
  2. package/dist/components/Form/MucCheckbox.stories.d.ts +34 -0
  3. package/dist/components/Form/MucCheckbox.vue.d.ts +18 -0
  4. package/dist/components/Form/MucCheckboxGroup.stories.d.ts +223 -0
  5. package/dist/components/Form/MucCheckboxGroup.vue.d.ts +46 -0
  6. package/dist/components/Form/MucErrorList.stories.d.ts +41 -0
  7. package/dist/components/Form/MucErrorList.vue.d.ts +17 -0
  8. package/dist/components/Form/MucInput.stories.d.ts +225 -0
  9. package/dist/components/Form/MucInput.vue.d.ts +86 -0
  10. package/dist/components/Form/MucRadioButton.stories.d.ts +154 -0
  11. package/dist/components/Form/MucRadioButton.vue.d.ts +59 -0
  12. package/dist/components/Form/MucRadioButtonGroup.vue.d.ts +37 -0
  13. package/dist/components/Form/MucSelect.stories.d.ts +64 -0
  14. package/dist/components/Form/MucSelect.vue.d.ts +36 -0
  15. package/dist/components/Form/MucTextArea.stories.d.ts +86 -0
  16. package/dist/components/Form/MucTextArea.vue.d.ts +49 -0
  17. package/dist/components/Form/RadioButtonTypes.d.ts +30 -0
  18. package/dist/components/Form/index.d.ts +10 -0
  19. package/dist/components/index.d.ts +2 -1
  20. package/dist/muc-patternlab-vue.es.js +311 -240
  21. package/dist/style.css +1 -1
  22. package/package.json +1 -1
  23. package/src/components/Banner/MucBanner.vue +6 -6
  24. package/src/components/BuisnessHours/MucBusinessHours.vue +7 -11
  25. package/src/components/Button/MucButton.vue +5 -5
  26. package/src/components/Callout/MucCallout.vue +3 -6
  27. package/src/components/Comment/MucComment.vue +7 -21
  28. package/src/components/Form/MucCheckbox.stories.ts +25 -0
  29. package/src/components/Form/MucCheckbox.vue +47 -0
  30. package/src/components/Form/MucCheckboxGroup.stories.ts +43 -0
  31. package/src/components/Form/MucCheckboxGroup.vue +80 -0
  32. package/src/components/Form/MucErrorList.stories.ts +31 -0
  33. package/src/components/Form/MucErrorList.vue +34 -0
  34. package/src/components/Form/MucInput.stories.ts +90 -0
  35. package/src/components/Form/MucInput.vue +198 -0
  36. package/src/components/Form/MucRadioButton.stories.ts +32 -0
  37. package/src/components/Form/MucRadioButton.vue +81 -0
  38. package/src/components/Form/MucRadioButtonGroup.vue +62 -0
  39. package/src/components/Form/MucSelect.stories.ts +34 -0
  40. package/src/components/Form/MucSelect.vue +201 -0
  41. package/src/components/Form/MucTextArea.stories.ts +47 -0
  42. package/src/components/Form/MucTextArea.vue +80 -0
  43. package/src/components/Form/RadioButtonTypes.ts +41 -0
  44. package/src/components/Form/index.ts +23 -0
  45. package/src/components/Icon/MucIcon.vue +7 -1
  46. package/src/components/Intro/MucIntro.vue +2 -2
  47. package/src/components/index.ts +2 -0
package/README.md CHANGED
@@ -69,10 +69,7 @@ So to use an icon from Patternlab you can simply follow the official
69
69
  documentation: https://patternlab.muenchen.space/?p=viewall-guidelines-icons
70
70
 
71
71
  ```html
72
-
73
- <svg aria-hidden="true" class="icon">
74
- <use xlink:href="#icon-{name}"></use>
75
- </svg>
72
+ <muc-icon :icon="name"/>
76
73
  ```
77
74
 
78
75
  ## Contributing
@@ -0,0 +1,34 @@
1
+ declare const _default: {
2
+ component: import('vue').DefineComponent<{
3
+ modelValue: import('vue').PropType<boolean>;
4
+ label: {
5
+ type: import('vue').PropType<string>;
6
+ required: true;
7
+ };
8
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ click: () => void;
10
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
11
+ modelValue: import('vue').PropType<boolean>;
12
+ label: {
13
+ type: import('vue').PropType<string>;
14
+ required: true;
15
+ };
16
+ }>> & {
17
+ onClick?: (() => any) | undefined;
18
+ }, {}, {}>;
19
+ title: string;
20
+ tags: string[];
21
+ parameters: {
22
+ docs: {
23
+ description: {
24
+ component: string;
25
+ };
26
+ };
27
+ };
28
+ };
29
+ export default _default;
30
+ export declare const Default: {
31
+ args: {
32
+ label: string;
33
+ };
34
+ };
@@ -0,0 +1,18 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ modelValue: import('vue').PropType<boolean>;
3
+ label: {
4
+ type: import('vue').PropType<string>;
5
+ required: true;
6
+ };
7
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
+ click: () => void;
9
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
10
+ modelValue: import('vue').PropType<boolean>;
11
+ label: {
12
+ type: import('vue').PropType<string>;
13
+ required: true;
14
+ };
15
+ }>> & {
16
+ onClick?: (() => any) | undefined;
17
+ }, {}, {}>;
18
+ export default _default;
@@ -0,0 +1,223 @@
1
+ declare const _default: {
2
+ components: {
3
+ MucCheckboxGroup: {
4
+ new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
5
+ heading: {
6
+ type: import('vue').PropType<string>;
7
+ };
8
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
9
+ heading: {
10
+ type: import('vue').PropType<string>;
11
+ };
12
+ }>>, {}, true, {}, {}, {
13
+ P: {};
14
+ B: {};
15
+ D: {};
16
+ C: {};
17
+ M: {};
18
+ Defaults: {};
19
+ }, Readonly<import('vue').ExtractPropTypes<{
20
+ heading: {
21
+ type: import('vue').PropType<string>;
22
+ };
23
+ }>>, {}, {}, {}, {}, {}>;
24
+ __isFragment?: never;
25
+ __isTeleport?: never;
26
+ __isSuspense?: never;
27
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
28
+ heading: {
29
+ type: import('vue').PropType<string>;
30
+ };
31
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
32
+ $slots: Readonly<{
33
+ checkboxes(): any;
34
+ collapsableCheckboxes(): any;
35
+ }> & {
36
+ checkboxes(): any;
37
+ collapsableCheckboxes(): any;
38
+ };
39
+ });
40
+ MucCheckbox: import('vue').DefineComponent<{
41
+ modelValue: import('vue').PropType<boolean>;
42
+ label: {
43
+ type: import('vue').PropType<string>;
44
+ required: true;
45
+ };
46
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
47
+ click: () => void;
48
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
49
+ modelValue: import('vue').PropType<boolean>;
50
+ label: {
51
+ type: import('vue').PropType<string>;
52
+ required: true;
53
+ };
54
+ }>> & {
55
+ onClick?: (() => any) | undefined;
56
+ }, {}, {}>;
57
+ };
58
+ component: {
59
+ new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
60
+ heading: {
61
+ type: import('vue').PropType<string>;
62
+ };
63
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
64
+ heading: {
65
+ type: import('vue').PropType<string>;
66
+ };
67
+ }>>, {}, true, {}, {}, {
68
+ P: {};
69
+ B: {};
70
+ D: {};
71
+ C: {};
72
+ M: {};
73
+ Defaults: {};
74
+ }, Readonly<import('vue').ExtractPropTypes<{
75
+ heading: {
76
+ type: import('vue').PropType<string>;
77
+ };
78
+ }>>, {}, {}, {}, {}, {}>;
79
+ __isFragment?: never;
80
+ __isTeleport?: never;
81
+ __isSuspense?: never;
82
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
83
+ heading: {
84
+ type: import('vue').PropType<string>;
85
+ };
86
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
87
+ $slots: Readonly<{
88
+ checkboxes(): any;
89
+ collapsableCheckboxes(): any;
90
+ }> & {
91
+ checkboxes(): any;
92
+ collapsableCheckboxes(): any;
93
+ };
94
+ });
95
+ title: string;
96
+ tags: string[];
97
+ parameters: {
98
+ docs: {
99
+ description: {
100
+ component: string;
101
+ };
102
+ };
103
+ };
104
+ };
105
+ export default _default;
106
+ export declare const NotCollapsable: () => {
107
+ components: {
108
+ MucCheckbox: import('vue').DefineComponent<{
109
+ modelValue: import('vue').PropType<boolean>;
110
+ label: {
111
+ type: import('vue').PropType<string>;
112
+ required: true;
113
+ };
114
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
115
+ click: () => void;
116
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
117
+ modelValue: import('vue').PropType<boolean>;
118
+ label: {
119
+ type: import('vue').PropType<string>;
120
+ required: true;
121
+ };
122
+ }>> & {
123
+ onClick?: (() => any) | undefined;
124
+ }, {}, {}>;
125
+ MucCheckboxGroup: {
126
+ new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
127
+ heading: {
128
+ type: import('vue').PropType<string>;
129
+ };
130
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
131
+ heading: {
132
+ type: import('vue').PropType<string>;
133
+ };
134
+ }>>, {}, true, {}, {}, {
135
+ P: {};
136
+ B: {};
137
+ D: {};
138
+ C: {};
139
+ M: {};
140
+ Defaults: {};
141
+ }, Readonly<import('vue').ExtractPropTypes<{
142
+ heading: {
143
+ type: import('vue').PropType<string>;
144
+ };
145
+ }>>, {}, {}, {}, {}, {}>;
146
+ __isFragment?: never;
147
+ __isTeleport?: never;
148
+ __isSuspense?: never;
149
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
150
+ heading: {
151
+ type: import('vue').PropType<string>;
152
+ };
153
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
154
+ $slots: Readonly<{
155
+ checkboxes(): any;
156
+ collapsableCheckboxes(): any;
157
+ }> & {
158
+ checkboxes(): any;
159
+ collapsableCheckboxes(): any;
160
+ };
161
+ });
162
+ };
163
+ template: string;
164
+ };
165
+ export declare const Collapsable: () => {
166
+ components: {
167
+ MucCheckbox: import('vue').DefineComponent<{
168
+ modelValue: import('vue').PropType<boolean>;
169
+ label: {
170
+ type: import('vue').PropType<string>;
171
+ required: true;
172
+ };
173
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
174
+ click: () => void;
175
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
176
+ modelValue: import('vue').PropType<boolean>;
177
+ label: {
178
+ type: import('vue').PropType<string>;
179
+ required: true;
180
+ };
181
+ }>> & {
182
+ onClick?: (() => any) | undefined;
183
+ }, {}, {}>;
184
+ MucCheckboxGroup: {
185
+ new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
186
+ heading: {
187
+ type: import('vue').PropType<string>;
188
+ };
189
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
190
+ heading: {
191
+ type: import('vue').PropType<string>;
192
+ };
193
+ }>>, {}, true, {}, {}, {
194
+ P: {};
195
+ B: {};
196
+ D: {};
197
+ C: {};
198
+ M: {};
199
+ Defaults: {};
200
+ }, Readonly<import('vue').ExtractPropTypes<{
201
+ heading: {
202
+ type: import('vue').PropType<string>;
203
+ };
204
+ }>>, {}, {}, {}, {}, {}>;
205
+ __isFragment?: never;
206
+ __isTeleport?: never;
207
+ __isSuspense?: never;
208
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
209
+ heading: {
210
+ type: import('vue').PropType<string>;
211
+ };
212
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
213
+ $slots: Readonly<{
214
+ checkboxes(): any;
215
+ collapsableCheckboxes(): any;
216
+ }> & {
217
+ checkboxes(): any;
218
+ collapsableCheckboxes(): any;
219
+ };
220
+ });
221
+ };
222
+ template: string;
223
+ };
@@ -0,0 +1,46 @@
1
+ declare function __VLS_template(): Readonly<{
2
+ /**
3
+ * Slot directly beneath the heading which will be displayed at all times.
4
+ */
5
+ checkboxes(): any;
6
+ /**
7
+ * Slot beneath the regular checkbox slot which will be collapsed at first.
8
+ */
9
+ collapsableCheckboxes(): any;
10
+ }> & {
11
+ /**
12
+ * Slot directly beneath the heading which will be displayed at all times.
13
+ */
14
+ checkboxes(): any;
15
+ /**
16
+ * Slot beneath the regular checkbox slot which will be collapsed at first.
17
+ */
18
+ collapsableCheckboxes(): any;
19
+ };
20
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
21
+ /**
22
+ * Display a heading above the slots.
23
+ */
24
+ heading?: string;
25
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
26
+ /**
27
+ * Display a heading above the slots.
28
+ */
29
+ heading?: string;
30
+ }>>>, {}, {}>;
31
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
32
+ export default _default;
33
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
34
+ type __VLS_TypePropsToRuntimeProps<T> = {
35
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
36
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
37
+ } : {
38
+ type: import('vue').PropType<T[K]>;
39
+ required: true;
40
+ };
41
+ };
42
+ type __VLS_WithTemplateSlots<T, S> = T & {
43
+ new (): {
44
+ $slots: S;
45
+ };
46
+ };
@@ -0,0 +1,41 @@
1
+ declare const _default: {
2
+ component: import('vue').DefineComponent<{
3
+ title: {
4
+ type: import('vue').PropType<string>;
5
+ };
6
+ errors: {
7
+ type: import('vue').PropType<string | string[]>;
8
+ required: true;
9
+ };
10
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
11
+ title: {
12
+ type: import('vue').PropType<string>;
13
+ };
14
+ errors: {
15
+ type: import('vue').PropType<string | string[]>;
16
+ required: true;
17
+ };
18
+ }>>, {}, {}>;
19
+ title: string;
20
+ tags: string[];
21
+ parameters: {
22
+ docs: {
23
+ description: {
24
+ component: string;
25
+ };
26
+ };
27
+ };
28
+ };
29
+ export default _default;
30
+ export declare const Default: {
31
+ args: {
32
+ title: string;
33
+ errors: string;
34
+ };
35
+ };
36
+ export declare const Multiple: {
37
+ args: {
38
+ title: string;
39
+ errors: string[];
40
+ };
41
+ };
@@ -0,0 +1,17 @@
1
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
+ title?: string;
3
+ errors: string | string[];
4
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ title?: string;
6
+ errors: string | string[];
7
+ }>>>, {}, {}>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
@@ -0,0 +1,225 @@
1
+ declare const _default: {
2
+ component: {
3
+ new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
4
+ modelValue: import('vue').PropType<string>;
5
+ type: {
6
+ type: import('vue').PropType<"color" | "search" | "text" | "date" | "datetime-local" | "password">;
7
+ default: string;
8
+ };
9
+ required: {
10
+ type: import('vue').PropType<boolean>;
11
+ default: boolean;
12
+ };
13
+ datalist: {
14
+ type: import('vue').PropType<string[]>;
15
+ };
16
+ label: {
17
+ type: import('vue').PropType<string>;
18
+ };
19
+ hint: {
20
+ type: import('vue').PropType<string>;
21
+ };
22
+ errorMsg: {
23
+ type: import('vue').PropType<string>;
24
+ };
25
+ placeholder: {
26
+ type: import('vue').PropType<string>;
27
+ };
28
+ suffixIcon: {
29
+ type: import('vue').PropType<string>;
30
+ };
31
+ }>> & {
32
+ onSuffixClick?: (() => any) | undefined;
33
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
34
+ suffixClick: () => void;
35
+ }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
36
+ modelValue: import('vue').PropType<string>;
37
+ type: {
38
+ type: import('vue').PropType<"color" | "search" | "text" | "date" | "datetime-local" | "password">;
39
+ default: string;
40
+ };
41
+ required: {
42
+ type: import('vue').PropType<boolean>;
43
+ default: boolean;
44
+ };
45
+ datalist: {
46
+ type: import('vue').PropType<string[]>;
47
+ };
48
+ label: {
49
+ type: import('vue').PropType<string>;
50
+ };
51
+ hint: {
52
+ type: import('vue').PropType<string>;
53
+ };
54
+ errorMsg: {
55
+ type: import('vue').PropType<string>;
56
+ };
57
+ placeholder: {
58
+ type: import('vue').PropType<string>;
59
+ };
60
+ suffixIcon: {
61
+ type: import('vue').PropType<string>;
62
+ };
63
+ }>> & {
64
+ onSuffixClick?: (() => any) | undefined;
65
+ }, {
66
+ type: "color" | "search" | "text" | "date" | "datetime-local" | "password";
67
+ required: boolean;
68
+ }, true, {}, {}, {
69
+ P: {};
70
+ B: {};
71
+ D: {};
72
+ C: {};
73
+ M: {};
74
+ Defaults: {};
75
+ }, Readonly<import('vue').ExtractPropTypes<{
76
+ modelValue: import('vue').PropType<string>;
77
+ type: {
78
+ type: import('vue').PropType<"color" | "search" | "text" | "date" | "datetime-local" | "password">;
79
+ default: string;
80
+ };
81
+ required: {
82
+ type: import('vue').PropType<boolean>;
83
+ default: boolean;
84
+ };
85
+ datalist: {
86
+ type: import('vue').PropType<string[]>;
87
+ };
88
+ label: {
89
+ type: import('vue').PropType<string>;
90
+ };
91
+ hint: {
92
+ type: import('vue').PropType<string>;
93
+ };
94
+ errorMsg: {
95
+ type: import('vue').PropType<string>;
96
+ };
97
+ placeholder: {
98
+ type: import('vue').PropType<string>;
99
+ };
100
+ suffixIcon: {
101
+ type: import('vue').PropType<string>;
102
+ };
103
+ }>> & {
104
+ onSuffixClick?: (() => any) | undefined;
105
+ }, {}, {}, {}, {}, {
106
+ type: "color" | "search" | "text" | "date" | "datetime-local" | "password";
107
+ required: boolean;
108
+ }>;
109
+ __isFragment?: never;
110
+ __isTeleport?: never;
111
+ __isSuspense?: never;
112
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
113
+ modelValue: import('vue').PropType<string>;
114
+ type: {
115
+ type: import('vue').PropType<"color" | "search" | "text" | "date" | "datetime-local" | "password">;
116
+ default: string;
117
+ };
118
+ required: {
119
+ type: import('vue').PropType<boolean>;
120
+ default: boolean;
121
+ };
122
+ datalist: {
123
+ type: import('vue').PropType<string[]>;
124
+ };
125
+ label: {
126
+ type: import('vue').PropType<string>;
127
+ };
128
+ hint: {
129
+ type: import('vue').PropType<string>;
130
+ };
131
+ errorMsg: {
132
+ type: import('vue').PropType<string>;
133
+ };
134
+ placeholder: {
135
+ type: import('vue').PropType<string>;
136
+ };
137
+ suffixIcon: {
138
+ type: import('vue').PropType<string>;
139
+ };
140
+ }>> & {
141
+ onSuffixClick?: (() => any) | undefined;
142
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
143
+ suffixClick: () => void;
144
+ }, string, {
145
+ type: "color" | "search" | "text" | "date" | "datetime-local" | "password";
146
+ required: boolean;
147
+ }, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
148
+ $slots: Readonly<{
149
+ prefix(): any;
150
+ }> & {
151
+ prefix(): any;
152
+ };
153
+ });
154
+ title: string;
155
+ tags: string[];
156
+ parameters: {
157
+ docs: {
158
+ description: {
159
+ component: string;
160
+ };
161
+ };
162
+ };
163
+ };
164
+ export default _default;
165
+ export declare const Default: {
166
+ args: {
167
+ placeholder: string;
168
+ };
169
+ };
170
+ export declare const HintAndLabel: {
171
+ args: {
172
+ hint: string;
173
+ label: string;
174
+ placeholder: string;
175
+ };
176
+ };
177
+ export declare const Password: {
178
+ args: {
179
+ type: string;
180
+ modelValue: string;
181
+ hint: string;
182
+ placeholder: string;
183
+ };
184
+ };
185
+ export declare const Error: {
186
+ args: {
187
+ errorMsg: string;
188
+ hint: string;
189
+ placeholder: string;
190
+ };
191
+ };
192
+ export declare const Prefix: {
193
+ args: {
194
+ prefix: string;
195
+ placeholder: string;
196
+ };
197
+ };
198
+ export declare const SuffixIcon: {
199
+ args: {
200
+ suffixIcon: string;
201
+ placeholder: string;
202
+ };
203
+ };
204
+ export declare const Search: {
205
+ args: {
206
+ type: string;
207
+ datalist: string[];
208
+ placeholder: string;
209
+ };
210
+ };
211
+ export declare const Color: {
212
+ args: {
213
+ type: string;
214
+ };
215
+ };
216
+ export declare const Date: {
217
+ args: {
218
+ type: string;
219
+ };
220
+ };
221
+ export declare const Datetime_Local: {
222
+ args: {
223
+ type: string;
224
+ };
225
+ };