@muenchen/muc-patternlab-vue 2.1.0-beta.1 → 2.1.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/Banner/MucBanner.stories.d.ts +1 -1
- package/components/Banner/MucBanner.vue.d.ts +9 -12
- package/components/BusinessHours/BusinessHours.stories.d.ts +1 -1
- package/components/BusinessHours/MucBusinessHours.vue.d.ts +18 -30
- package/components/Button/MucButton.stories.d.ts +1 -1
- package/components/Button/MucButton.vue.d.ts +22 -41
- package/components/Calendar/MucCalendar.stories.d.ts +3 -3
- package/components/Calendar/MucCalendar.vue.d.ts +5 -5
- package/components/Calendar/MucCalendarDay.vue.d.ts +5 -21
- package/components/Calendar/MucCalendarMonth.vue.d.ts +5 -9
- package/components/Calendar/MucCalendarYear.vue.d.ts +5 -9
- package/components/Calendar/MucDayTile.vue.d.ts +4 -12
- package/components/Callout/MucCallout.stories.d.ts +1 -1
- package/components/Callout/MucCallout.vue.d.ts +11 -16
- package/components/Card/MucCard.stories.d.ts +2 -2
- package/components/Card/MucCard.vue.d.ts +15 -22
- package/components/Card/MucCardContainer.stories.d.ts +4 -4
- package/components/Card/MucCardContainer.vue.d.ts +3 -2
- package/components/Comment/MucComment.stories.d.ts +1 -1
- package/components/Comment/MucComment.vue.d.ts +15 -24
- package/components/Comment/MucCommentText.stories.d.ts +1 -1
- package/components/Comment/MucCommentText.vue.d.ts +3 -39
- package/components/Divider/MucDivider.stories.d.ts +1 -1
- package/components/Divider/MucDivider.vue.d.ts +1 -1
- package/components/FileDropzone/IconFileUpload.vue.d.ts +1 -1
- package/components/FileDropzone/MucFileDropzone.vue.d.ts +4 -44
- package/components/Form/MucCheckbox.stories.d.ts +3 -3
- package/components/Form/MucCheckbox.vue.d.ts +5 -5
- package/components/Form/MucCheckboxGroup.stories.d.ts +29 -29
- package/components/Form/MucCheckboxGroup.vue.d.ts +13 -16
- package/components/Form/MucCounter.stories.d.ts +3 -3
- package/components/Form/MucCounter.vue.d.ts +5 -5
- package/components/Form/MucErrorList.stories.d.ts +1 -1
- package/components/Form/MucErrorList.vue.d.ts +3 -11
- package/components/Form/MucInput.stories.d.ts +6 -6
- package/components/Form/MucInput.vue.d.ts +7 -6
- package/components/Form/MucRadioButton.stories.d.ts +6 -6
- package/components/Form/MucRadioButton.vue.d.ts +3 -19
- package/components/Form/MucRadioButtonGroup.vue.d.ts +7 -6
- package/components/Form/MucSelect.stories.d.ts +3 -3
- package/components/Form/MucSelect.vue.d.ts +5 -5
- package/components/Form/MucSelectItem.vue.d.ts +3 -11
- package/components/Form/MucTextArea.stories.d.ts +3 -3
- package/components/Form/MucTextArea.vue.d.ts +5 -5
- package/components/Icon/MucIcon.stories.d.ts +1 -1
- package/components/Icon/MucIcon.vue.d.ts +3 -11
- package/components/Intro/MucIntro.stories.d.ts +1 -1
- package/components/Intro/MucIntro.vue.d.ts +17 -28
- package/components/Link/MucLink.stories.d.ts +1 -1
- package/components/Link/MucLink.vue.d.ts +22 -41
- package/components/PercentageSpinner/MucPercentageSpinner.stories.d.ts +1 -1
- package/components/PercentageSpinner/MucPercentageSpinner.vue.d.ts +3 -15
- package/components/Slider/MucSlider.stories.d.ts +553 -0
- package/components/Slider/MucSlider.vue.d.ts +275 -0
- package/components/Slider/MucSliderItem.vue.d.ts +25 -0
- package/components/Slider/MucSliderOptions.d.ts +2 -0
- package/components/Slider/index.d.ts +3 -0
- package/components/Stepper/MucStepper.stories.d.ts +1 -1
- package/components/Stepper/MucStepper.vue.d.ts +5 -17
- package/components/Stepper/MucStepperItem.vue.d.ts +5 -21
- package/components/index.d.ts +2 -1
- package/muc-patternlab-vue.es.js +2640 -741
- package/package.json +8 -5
- package/style.css +1 -1
|
@@ -2,7 +2,7 @@ declare const _default: {
|
|
|
2
2
|
component: {
|
|
3
3
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
4
|
type?: "info" | "success" | "warning" | "emergency";
|
|
5
|
-
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
5
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
6
6
|
P: {};
|
|
7
7
|
B: {};
|
|
8
8
|
D: {};
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
type bannerType = "info" | "success" | "warning" | "emergency";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
/**
|
|
4
|
+
* Changes the style of the banner. Available types are `info`, `warning` and `emergency`.
|
|
5
|
+
*/
|
|
6
|
+
type?: bannerType;
|
|
7
|
+
};
|
|
2
8
|
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
3
10
|
slots: Readonly<{
|
|
4
11
|
/**
|
|
5
12
|
* Text-content of the banner.
|
|
@@ -12,20 +19,10 @@ declare function __VLS_template(): {
|
|
|
12
19
|
default(): any;
|
|
13
20
|
};
|
|
14
21
|
refs: {};
|
|
15
|
-
|
|
22
|
+
rootEl: HTMLDivElement;
|
|
16
23
|
};
|
|
17
24
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
19
|
-
/**
|
|
20
|
-
* Changes the style of the banner. Available types are `info`, `warning` and `emergency`.
|
|
21
|
-
*/
|
|
22
|
-
type?: bannerType;
|
|
23
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
24
|
-
/**
|
|
25
|
-
* Changes the style of the banner. Available types are `info`, `warning` and `emergency`.
|
|
26
|
-
*/
|
|
27
|
-
type?: bannerType;
|
|
28
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
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, {}, HTMLDivElement>;
|
|
29
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
30
27
|
export default _default;
|
|
31
28
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -4,7 +4,7 @@ declare const _default: {
|
|
|
4
4
|
businessHours: import('./BusinessHourType').BusinessHourType[];
|
|
5
5
|
toggleable?: boolean;
|
|
6
6
|
icon?: string;
|
|
7
|
-
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
7
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
8
8
|
P: {};
|
|
9
9
|
B: {};
|
|
10
10
|
D: {};
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
import { BusinessHourType } from './BusinessHourType';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
/**
|
|
4
|
+
* This array includes all the opening hours for all days of the week.
|
|
5
|
+
*/
|
|
6
|
+
businessHours: BusinessHourType[];
|
|
7
|
+
/**
|
|
8
|
+
* Lets you choose between the toggleable and fixed state of the component.
|
|
9
|
+
* In the fixed state, no toggle button will be shown.
|
|
10
|
+
*/
|
|
11
|
+
toggleable?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Choose an icon for the toggle button. The default if none is given is the time icon.
|
|
14
|
+
*/
|
|
15
|
+
icon?: string;
|
|
16
|
+
};
|
|
2
17
|
declare function __VLS_template(): {
|
|
18
|
+
attrs: Partial<{}>;
|
|
3
19
|
slots: Readonly<{
|
|
4
20
|
/**
|
|
5
21
|
* Display a hint beneath all the opening hours.
|
|
@@ -12,38 +28,10 @@ declare function __VLS_template(): {
|
|
|
12
28
|
hint(): any;
|
|
13
29
|
};
|
|
14
30
|
refs: {};
|
|
15
|
-
|
|
31
|
+
rootEl: HTMLDivElement;
|
|
16
32
|
};
|
|
17
33
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
19
|
-
/**
|
|
20
|
-
* This array includes all the opening hours for all days of the week.
|
|
21
|
-
*/
|
|
22
|
-
businessHours: BusinessHourType[];
|
|
23
|
-
/**
|
|
24
|
-
* Lets you choose between the toggleable and fixed state of the component.
|
|
25
|
-
* In the fixed state, no toggle button will be shown.
|
|
26
|
-
*/
|
|
27
|
-
toggleable?: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* Choose an icon for the toggle button. The default if none is given is the time icon.
|
|
30
|
-
*/
|
|
31
|
-
icon?: string;
|
|
32
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
33
|
-
/**
|
|
34
|
-
* This array includes all the opening hours for all days of the week.
|
|
35
|
-
*/
|
|
36
|
-
businessHours: BusinessHourType[];
|
|
37
|
-
/**
|
|
38
|
-
* Lets you choose between the toggleable and fixed state of the component.
|
|
39
|
-
* In the fixed state, no toggle button will be shown.
|
|
40
|
-
*/
|
|
41
|
-
toggleable?: boolean;
|
|
42
|
-
/**
|
|
43
|
-
* Choose an icon for the toggle button. The default if none is given is the time icon.
|
|
44
|
-
*/
|
|
45
|
-
icon?: string;
|
|
46
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
34
|
+
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, {}, HTMLDivElement>;
|
|
47
35
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
48
36
|
export default _default;
|
|
49
37
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -9,7 +9,7 @@ declare const _default: {
|
|
|
9
9
|
onClick?: (() => any) | undefined;
|
|
10
10
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
11
|
click: () => any;
|
|
12
|
-
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
12
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLButtonElement, import('vue').ComponentProvideOptions, {
|
|
13
13
|
P: {};
|
|
14
14
|
B: {};
|
|
15
15
|
D: {};
|
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
type buttonType = "primary" | "secondary" | "ghost";
|
|
2
|
-
|
|
3
|
-
slots: Readonly<{
|
|
4
|
-
/**
|
|
5
|
-
* Display content inside the button.
|
|
6
|
-
*/
|
|
7
|
-
default(): any;
|
|
8
|
-
}> & {
|
|
9
|
-
/**
|
|
10
|
-
* Display content inside the button.
|
|
11
|
-
*/
|
|
12
|
-
default(): any;
|
|
13
|
-
};
|
|
14
|
-
refs: {};
|
|
15
|
-
attrs: Partial<{}>;
|
|
16
|
-
};
|
|
17
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
2
|
+
type __VLS_Props = {
|
|
19
3
|
/**
|
|
20
4
|
* The variant prop gives you easy access to several different button styles.
|
|
21
5
|
*
|
|
@@ -36,32 +20,29 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
36
20
|
* Default is `false`
|
|
37
21
|
*/
|
|
38
22
|
iconAnimated?: boolean;
|
|
39
|
-
}
|
|
23
|
+
};
|
|
24
|
+
declare function __VLS_template(): {
|
|
25
|
+
attrs: Partial<{}>;
|
|
26
|
+
slots: Readonly<{
|
|
27
|
+
/**
|
|
28
|
+
* Display content inside the button.
|
|
29
|
+
*/
|
|
30
|
+
default(): any;
|
|
31
|
+
}> & {
|
|
32
|
+
/**
|
|
33
|
+
* Display content inside the button.
|
|
34
|
+
*/
|
|
35
|
+
default(): any;
|
|
36
|
+
};
|
|
37
|
+
refs: {};
|
|
38
|
+
rootEl: HTMLButtonElement;
|
|
39
|
+
};
|
|
40
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
41
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
40
42
|
click: () => any;
|
|
41
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
42
|
-
/**
|
|
43
|
-
* The variant prop gives you easy access to several different button styles.
|
|
44
|
-
*
|
|
45
|
-
* Available are `primary`, `secondary` and `ghost`.
|
|
46
|
-
*/
|
|
47
|
-
variant?: buttonType;
|
|
48
|
-
/**
|
|
49
|
-
* Lets you indicate that the button is not currently interactive or clickable.
|
|
50
|
-
*/
|
|
51
|
-
disabled?: boolean;
|
|
52
|
-
/**
|
|
53
|
-
* Choose an icon to be appended behind the slot. No icon will be placed if the prop is left empty.
|
|
54
|
-
*/
|
|
55
|
-
icon?: string;
|
|
56
|
-
/**
|
|
57
|
-
* Whether the Icon should be animated on hover (slide-right) or not.
|
|
58
|
-
*
|
|
59
|
-
* Default is `false`
|
|
60
|
-
*/
|
|
61
|
-
iconAnimated?: boolean;
|
|
62
|
-
}> & Readonly<{
|
|
43
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
63
44
|
onClick?: (() => any) | undefined;
|
|
64
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
45
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
65
46
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
66
47
|
export default _default;
|
|
67
48
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -9,7 +9,7 @@ declare const _default: {
|
|
|
9
9
|
noAnimation?: boolean;
|
|
10
10
|
allowedDates?: import('./MucCalendarType').AllowedDateFunction;
|
|
11
11
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
-
"update:modelValue": (
|
|
12
|
+
"update:modelValue": (value: import('./MucCalendarType').MucCalendarSelected) => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<{
|
|
14
14
|
modelValue?: import('./MucCalendarType').MucCalendarSelected;
|
|
15
15
|
} & {
|
|
@@ -20,8 +20,8 @@ declare const _default: {
|
|
|
20
20
|
noAnimation?: boolean;
|
|
21
21
|
allowedDates?: import('./MucCalendarType').AllowedDateFunction;
|
|
22
22
|
}> & Readonly<{
|
|
23
|
-
"onUpdate:modelValue"?: ((
|
|
24
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
23
|
+
"onUpdate:modelValue"?: ((value: import('./MucCalendarType').MucCalendarSelected) => any) | undefined;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
25
25
|
title: string;
|
|
26
26
|
tags: string[];
|
|
27
27
|
parameters: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AllowedDateFunction, CalendarTypes, MucCalendarSelected } from './MucCalendarType';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
/**
|
|
4
4
|
* Initial date to be displayed on the selection screen
|
|
5
5
|
*/
|
|
@@ -27,10 +27,10 @@ declare let __VLS_typeProps: {
|
|
|
27
27
|
};
|
|
28
28
|
type __VLS_PublicProps = {
|
|
29
29
|
"modelValue"?: MucCalendarSelected;
|
|
30
|
-
} &
|
|
30
|
+
} & __VLS_Props;
|
|
31
31
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
32
|
-
"update:modelValue": (
|
|
32
|
+
"update:modelValue": (value: MucCalendarSelected) => any;
|
|
33
33
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
34
|
-
"onUpdate:modelValue"?: ((
|
|
35
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
34
|
+
"onUpdate:modelValue"?: ((value: MucCalendarSelected) => any) | undefined;
|
|
35
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
36
36
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CalendarTypes } from './MucCalendarType';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
/**
|
|
4
4
|
* Current year and month in the view
|
|
5
5
|
*/
|
|
@@ -16,26 +16,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
16
16
|
* Determines if days of adjacent months (before and after) should be shown or not
|
|
17
17
|
*/
|
|
18
18
|
showAdjacentMonths: boolean;
|
|
19
|
-
}
|
|
19
|
+
};
|
|
20
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
21
|
clicked: (date: Date) => any;
|
|
21
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
22
|
-
/**
|
|
23
|
-
* Current year and month in the view
|
|
24
|
-
*/
|
|
25
|
-
viewDate: Date;
|
|
26
|
-
/**
|
|
27
|
-
* Type of possible day selection - single, multiple or range
|
|
28
|
-
*/
|
|
29
|
-
variant: CalendarTypes;
|
|
30
|
-
/**
|
|
31
|
-
* Determines if selection of day should be disabled
|
|
32
|
-
*/
|
|
33
|
-
disabled: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* Determines if days of adjacent months (before and after) should be shown or not
|
|
36
|
-
*/
|
|
37
|
-
showAdjacentMonths: boolean;
|
|
38
|
-
}> & Readonly<{
|
|
22
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
39
23
|
onClicked?: ((date: Date) => any) | undefined;
|
|
40
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
24
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
41
25
|
export default _default;
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
/**
|
|
3
3
|
* current viewDate for the selection
|
|
4
4
|
*/
|
|
5
5
|
viewDate: Date;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
8
|
clicked: (date: Date) => any;
|
|
8
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
9
|
-
/**
|
|
10
|
-
* current viewDate for the selection
|
|
11
|
-
*/
|
|
12
|
-
viewDate: Date;
|
|
13
|
-
}> & Readonly<{
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
10
|
onClicked?: ((date: Date) => any) | undefined;
|
|
15
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
12
|
export default _default;
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
/**
|
|
3
3
|
* current viewDate for the selection
|
|
4
4
|
*/
|
|
5
5
|
viewDate: Date;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
8
|
clicked: (date: Date) => any;
|
|
8
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
9
|
-
/**
|
|
10
|
-
* current viewDate for the selection
|
|
11
|
-
*/
|
|
12
|
-
viewDate: Date;
|
|
13
|
-
}> & Readonly<{
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
10
|
onClicked?: ((date: Date) => any) | undefined;
|
|
15
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
12
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
/**
|
|
3
3
|
* Date of for this tile to be displayed
|
|
4
4
|
*/
|
|
@@ -7,18 +7,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
7
7
|
* Determines if this date should be shown or not, depending on the month - defaults to false
|
|
8
8
|
*/
|
|
9
9
|
showAdjacentMonths?: boolean;
|
|
10
|
-
}
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
12
|
click: (date: Date) => any;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
13
|
-
/**
|
|
14
|
-
* Date of for this tile to be displayed
|
|
15
|
-
*/
|
|
16
|
-
date: Date;
|
|
17
|
-
/**
|
|
18
|
-
* Determines if this date should be shown or not, depending on the month - defaults to false
|
|
19
|
-
*/
|
|
20
|
-
showAdjacentMonths?: boolean;
|
|
21
|
-
}> & Readonly<{
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
22
14
|
onClick?: ((date: Date) => any) | undefined;
|
|
23
15
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
16
|
export default _default;
|
|
@@ -2,7 +2,7 @@ declare const _default: {
|
|
|
2
2
|
component: {
|
|
3
3
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
4
|
type?: "error" | "info" | "success" | "warning";
|
|
5
|
-
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
5
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
6
6
|
P: {};
|
|
7
7
|
B: {};
|
|
8
8
|
D: {};
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
type calloutType = "info" | "warning" | "success" | "error";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
/**
|
|
4
|
+
* Type of the callout, default is `info`.
|
|
5
|
+
*
|
|
6
|
+
* Available are `info`, `warning`, `success` and `error`.
|
|
7
|
+
*/
|
|
8
|
+
type?: calloutType;
|
|
9
|
+
};
|
|
2
10
|
declare function __VLS_template(): {
|
|
11
|
+
attrs: Partial<{}>;
|
|
3
12
|
slots: Readonly<{
|
|
4
13
|
/**
|
|
5
14
|
* Icon shown above the callout. Defaults to icons matching the type.
|
|
@@ -28,24 +37,10 @@ declare function __VLS_template(): {
|
|
|
28
37
|
content(): any;
|
|
29
38
|
};
|
|
30
39
|
refs: {};
|
|
31
|
-
|
|
40
|
+
rootEl: HTMLDivElement;
|
|
32
41
|
};
|
|
33
42
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
34
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
35
|
-
/**
|
|
36
|
-
* Type of the callout, default is `info`.
|
|
37
|
-
*
|
|
38
|
-
* Available are `info`, `warning`, `success` and `error`.
|
|
39
|
-
*/
|
|
40
|
-
type?: calloutType;
|
|
41
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
42
|
-
/**
|
|
43
|
-
* Type of the callout, default is `info`.
|
|
44
|
-
*
|
|
45
|
-
* Available are `info`, `warning`, `success` and `error`.
|
|
46
|
-
*/
|
|
47
|
-
type?: calloutType;
|
|
48
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
43
|
+
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, {}, HTMLDivElement>;
|
|
49
44
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
50
45
|
export default _default;
|
|
51
46
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
onClick?: ((click: Event) => any) | undefined;
|
|
8
8
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
9
9
|
click: (click: Event) => any;
|
|
10
|
-
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
10
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
11
11
|
P: {};
|
|
12
12
|
B: {};
|
|
13
13
|
D: {};
|
|
@@ -70,7 +70,7 @@ export declare const WithHeaderPrefix: () => {
|
|
|
70
70
|
onClick?: ((click: Event) => any) | undefined;
|
|
71
71
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
72
72
|
click: (click: Event) => any;
|
|
73
|
-
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
73
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
74
74
|
P: {};
|
|
75
75
|
B: {};
|
|
76
76
|
D: {};
|
|
@@ -1,4 +1,15 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
/**
|
|
3
|
+
* Title the card displays at the top
|
|
4
|
+
*/
|
|
5
|
+
title: string;
|
|
6
|
+
/**
|
|
7
|
+
* Optional tagline the card displays above the title
|
|
8
|
+
*/
|
|
9
|
+
tagline?: string;
|
|
10
|
+
};
|
|
1
11
|
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
2
13
|
slots: Readonly<{
|
|
3
14
|
/**
|
|
4
15
|
* Icon shown above the callout. Defaults to icons matching the type.
|
|
@@ -19,32 +30,14 @@ declare function __VLS_template(): {
|
|
|
19
30
|
content(): any;
|
|
20
31
|
};
|
|
21
32
|
refs: {};
|
|
22
|
-
|
|
33
|
+
rootEl: HTMLDivElement;
|
|
23
34
|
};
|
|
24
35
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
25
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
26
|
-
/**
|
|
27
|
-
* Title the card displays at the top
|
|
28
|
-
*/
|
|
29
|
-
title: string;
|
|
30
|
-
/**
|
|
31
|
-
* Optional tagline the card displays above the title
|
|
32
|
-
*/
|
|
33
|
-
tagline?: string;
|
|
34
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
36
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
35
37
|
click: (click: Event) => any;
|
|
36
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
37
|
-
/**
|
|
38
|
-
* Title the card displays at the top
|
|
39
|
-
*/
|
|
40
|
-
title: string;
|
|
41
|
-
/**
|
|
42
|
-
* Optional tagline the card displays above the title
|
|
43
|
-
*/
|
|
44
|
-
tagline?: string;
|
|
45
|
-
}> & Readonly<{
|
|
38
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
46
39
|
onClick?: ((click: Event) => any) | undefined;
|
|
47
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
40
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
48
41
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
49
42
|
export default _default;
|
|
50
43
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
components: {
|
|
3
3
|
MucCardContainer: {
|
|
4
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
4
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
5
5
|
P: {};
|
|
6
6
|
B: {};
|
|
7
7
|
D: {};
|
|
@@ -21,7 +21,7 @@ declare const _default: {
|
|
|
21
21
|
});
|
|
22
22
|
};
|
|
23
23
|
component: {
|
|
24
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
24
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
25
25
|
P: {};
|
|
26
26
|
B: {};
|
|
27
27
|
D: {};
|
|
@@ -56,7 +56,7 @@ export default _default;
|
|
|
56
56
|
export declare const Template: () => {
|
|
57
57
|
components: {
|
|
58
58
|
MucCardContainer: {
|
|
59
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
59
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
60
60
|
P: {};
|
|
61
61
|
B: {};
|
|
62
62
|
D: {};
|
|
@@ -82,7 +82,7 @@ export declare const Template: () => {
|
|
|
82
82
|
onClick?: ((click: Event) => any) | undefined;
|
|
83
83
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
84
84
|
click: (click: Event) => any;
|
|
85
|
-
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
85
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
86
86
|
P: {};
|
|
87
87
|
B: {};
|
|
88
88
|
D: {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: Readonly<{
|
|
3
4
|
/**
|
|
4
5
|
* MucCards can be put into this slot.
|
|
@@ -11,10 +12,10 @@ declare function __VLS_template(): {
|
|
|
11
12
|
default(): any;
|
|
12
13
|
};
|
|
13
14
|
refs: {};
|
|
14
|
-
|
|
15
|
+
rootEl: HTMLDivElement;
|
|
15
16
|
};
|
|
16
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
18
|
+
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>;
|
|
18
19
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
20
|
export default _default;
|
|
20
21
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -3,7 +3,7 @@ declare const _default: {
|
|
|
3
3
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
4
|
rating: number;
|
|
5
5
|
variant?: import('./CommentType').default;
|
|
6
|
-
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
6
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
7
7
|
P: {};
|
|
8
8
|
B: {};
|
|
9
9
|
D: {};
|
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
import { default as CommentType } from './CommentType';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
/**
|
|
4
|
+
* Number of stars to be displayed.
|
|
5
|
+
*/
|
|
6
|
+
rating: number;
|
|
7
|
+
/**
|
|
8
|
+
* Choose the variant of the comment. Default is `listing`.
|
|
9
|
+
*
|
|
10
|
+
* This can be either `slider` oder `listing`.
|
|
11
|
+
*/
|
|
12
|
+
variant?: CommentType;
|
|
13
|
+
};
|
|
2
14
|
declare function __VLS_template(): {
|
|
15
|
+
attrs: Partial<{}>;
|
|
3
16
|
slots: Readonly<{
|
|
4
17
|
/**
|
|
5
18
|
* Slot for the commenter's initials or avatar.
|
|
@@ -52,32 +65,10 @@ declare function __VLS_template(): {
|
|
|
52
65
|
text(): any;
|
|
53
66
|
};
|
|
54
67
|
refs: {};
|
|
55
|
-
|
|
68
|
+
rootEl: HTMLDivElement;
|
|
56
69
|
};
|
|
57
70
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
58
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
59
|
-
/**
|
|
60
|
-
* Number of stars to be displayed.
|
|
61
|
-
*/
|
|
62
|
-
rating: number;
|
|
63
|
-
/**
|
|
64
|
-
* Choose the variant of the comment. Default is `listing`.
|
|
65
|
-
*
|
|
66
|
-
* This can be either `slider` oder `listing`.
|
|
67
|
-
*/
|
|
68
|
-
variant?: CommentType;
|
|
69
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
70
|
-
/**
|
|
71
|
-
* Number of stars to be displayed.
|
|
72
|
-
*/
|
|
73
|
-
rating: number;
|
|
74
|
-
/**
|
|
75
|
-
* Choose the variant of the comment. Default is `listing`.
|
|
76
|
-
*
|
|
77
|
-
* This can be either `slider` oder `listing`.
|
|
78
|
-
*/
|
|
79
|
-
variant?: CommentType;
|
|
80
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
71
|
+
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, {}, HTMLDivElement>;
|
|
81
72
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
82
73
|
export default _default;
|
|
83
74
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
text: string;
|
|
18
18
|
rating: number;
|
|
19
19
|
variant?: import('./CommentType').default;
|
|
20
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
20
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
21
21
|
title: string;
|
|
22
22
|
tags: string[];
|
|
23
23
|
parameters: {
|