@muenchen/muc-patternlab-vue 1.8.0-beta.7 → 1.8.0-beta.9

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 (39) hide show
  1. package/dist/components/Icon/MucIcon.stories.d.ts +43 -0
  2. package/dist/components/Icon/MucIcon.vue.d.ts +29 -0
  3. package/dist/components/Icon/index.d.ts +3 -0
  4. package/dist/components/index.d.ts +2 -1
  5. package/dist/muc-patternlab-vue.es.js +136 -115
  6. package/package.json +4 -5
  7. package/src/components/Button/MucButton.vue +3 -1
  8. package/src/components/Icon/MucIcon.stories.ts +35 -0
  9. package/src/components/Icon/MucIcon.vue +23 -0
  10. package/src/components/Icon/index.ts +3 -0
  11. package/src/components/index.ts +2 -0
  12. package/dist/types/components/Banner/MucBanner.stories.d.ts +0 -76
  13. package/dist/types/components/Banner/MucBanner.vue.d.ts +0 -52
  14. package/dist/types/components/Banner/index.d.ts +0 -2
  15. package/dist/types/components/BuisnessHours/BusinessHourType.d.ts +0 -25
  16. package/dist/types/components/BuisnessHours/BusinessHours.stories.d.ts +0 -116
  17. package/dist/types/components/BuisnessHours/MucBusinessHours.vue.d.ts +0 -72
  18. package/dist/types/components/Button/MucButton.stories.d.ts +0 -158
  19. package/dist/types/components/Button/MucButton.vue.d.ts +0 -93
  20. package/dist/types/components/Button/index.d.ts +0 -2
  21. package/dist/types/components/Callout/MucCallout.stories.d.ts +0 -89
  22. package/dist/types/components/Callout/MucCallout.vue.d.ts +0 -71
  23. package/dist/types/components/Callout/index.d.ts +0 -2
  24. package/dist/types/components/Card/MucCard.stories.d.ts +0 -165
  25. package/dist/types/components/Card/MucCard.vue.d.ts +0 -44
  26. package/dist/types/components/Card/MucCardContainer.stories.d.ts +0 -148
  27. package/dist/types/components/Card/MucCardContainer.vue.d.ts +0 -17
  28. package/dist/types/components/Card/index.d.ts +0 -3
  29. package/dist/types/components/Comment/CommentType.d.ts +0 -2
  30. package/dist/types/components/Comment/MucComment.stories.d.ts +0 -106
  31. package/dist/types/components/Comment/MucComment.vue.d.ts +0 -103
  32. package/dist/types/components/Comment/MucCommentText.stories.d.ts +0 -93
  33. package/dist/types/components/Comment/MucCommentText.vue.d.ts +0 -47
  34. package/dist/types/components/Comment/index.d.ts +0 -3
  35. package/dist/types/components/Intro/MucIntro.stories.d.ts +0 -97
  36. package/dist/types/components/Intro/MucIntro.vue.d.ts +0 -52
  37. package/dist/types/components/Intro/index.d.ts +0 -2
  38. package/dist/types/components/index.d.ts +0 -7
  39. package/dist/types/index.d.ts +0 -7
@@ -1,89 +0,0 @@
1
- declare const _default: {
2
- component: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- type: {
5
- type: import("vue").PropType<"info" | "warning" | "success" | "error">;
6
- default: string;
7
- };
8
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
9
- type: {
10
- type: import("vue").PropType<"info" | "warning" | "success" | "error">;
11
- default: string;
12
- };
13
- }>>, {
14
- type: "info" | "warning" | "success" | "error";
15
- }, true, {}, {}, {
16
- P: {};
17
- B: {};
18
- D: {};
19
- C: {};
20
- M: {};
21
- Defaults: {};
22
- }, Readonly<import("vue").ExtractPropTypes<{
23
- type: {
24
- type: import("vue").PropType<"info" | "warning" | "success" | "error">;
25
- default: string;
26
- };
27
- }>>, {}, {}, {}, {}, {
28
- type: "info" | "warning" | "success" | "error";
29
- }>;
30
- __isFragment?: undefined;
31
- __isTeleport?: undefined;
32
- __isSuspense?: undefined;
33
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
34
- type: {
35
- type: import("vue").PropType<"info" | "warning" | "success" | "error">;
36
- default: string;
37
- };
38
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
39
- type: "info" | "warning" | "success" | "error";
40
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
41
- $slots: Readonly<{
42
- icon(): any;
43
- header(): any;
44
- content(): any;
45
- }> & {
46
- icon(): any;
47
- header(): any;
48
- content(): any;
49
- };
50
- });
51
- title: string;
52
- tags: string[];
53
- parameters: {
54
- docs: {
55
- description: {
56
- component: string;
57
- };
58
- };
59
- };
60
- };
61
- export default _default;
62
- export declare const Default: {
63
- args: {
64
- header: string;
65
- content: string;
66
- type: string;
67
- };
68
- };
69
- export declare const Success: {
70
- args: {
71
- header: string;
72
- type: string;
73
- content: string;
74
- };
75
- };
76
- export declare const Warning: {
77
- args: {
78
- header: string;
79
- type: string;
80
- content: string;
81
- };
82
- };
83
- export declare const Error: {
84
- args: {
85
- header: string;
86
- type: string;
87
- content: string;
88
- };
89
- };
@@ -1,71 +0,0 @@
1
- type calloutType = "info" | "warning" | "success" | "error";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
3
- /**
4
- * Type of the callout, default is `info`.
5
- *
6
- * Available are `info`, `warning`, `success` and `error`.
7
- */
8
- type?: calloutType | undefined;
9
- }>, {
10
- type: string;
11
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
12
- /**
13
- * Type of the callout, default is `info`.
14
- *
15
- * Available are `info`, `warning`, `success` and `error`.
16
- */
17
- type?: calloutType | undefined;
18
- }>, {
19
- type: string;
20
- }>>>, {
21
- type: calloutType;
22
- }, {}>, Readonly<{
23
- /**
24
- * Icon shown above the callout. Defaults to icons matching the type.
25
- */
26
- icon(): any;
27
- /**
28
- * Heading of the callout.
29
- */
30
- header(): any;
31
- /**
32
- * Content beneath the heading shown as text.
33
- */
34
- content(): any;
35
- }> & {
36
- /**
37
- * Icon shown above the callout. Defaults to icons matching the type.
38
- */
39
- icon(): any;
40
- /**
41
- * Heading of the callout.
42
- */
43
- header(): any;
44
- /**
45
- * Content beneath the heading shown as text.
46
- */
47
- content(): any;
48
- }>;
49
- export default _default;
50
- type __VLS_WithDefaults<P, D> = {
51
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
52
- default: D[K];
53
- }> : P[K];
54
- };
55
- type __VLS_Prettify<T> = {
56
- [K in keyof T]: T[K];
57
- } & {};
58
- type __VLS_WithTemplateSlots<T, S> = T & {
59
- new (): {
60
- $slots: S;
61
- };
62
- };
63
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
64
- type __VLS_TypePropsToOption<T> = {
65
- [K in keyof T]-?: {} extends Pick<T, K> ? {
66
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
67
- } : {
68
- type: import('vue').PropType<T[K]>;
69
- required: true;
70
- };
71
- };
@@ -1,2 +0,0 @@
1
- import MucCallout from "./MucCallout.vue";
2
- export { MucCallout };
@@ -1,165 +0,0 @@
1
- declare const _default: {
2
- component: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- title: {
5
- type: import("vue").PropType<string>;
6
- required: true;
7
- };
8
- tagline: {
9
- type: import("vue").PropType<string>;
10
- required: true;
11
- };
12
- }>> & {
13
- onClick?: ((click: Event) => any) | undefined;
14
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
- click: (click: Event) => void;
16
- }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
17
- title: {
18
- type: import("vue").PropType<string>;
19
- required: true;
20
- };
21
- tagline: {
22
- type: import("vue").PropType<string>;
23
- required: true;
24
- };
25
- }>> & {
26
- onClick?: ((click: Event) => any) | undefined;
27
- }, {}, true, {}, {}, {
28
- P: {};
29
- B: {};
30
- D: {};
31
- C: {};
32
- M: {};
33
- Defaults: {};
34
- }, Readonly<import("vue").ExtractPropTypes<{
35
- title: {
36
- type: import("vue").PropType<string>;
37
- required: true;
38
- };
39
- tagline: {
40
- type: import("vue").PropType<string>;
41
- required: true;
42
- };
43
- }>> & {
44
- onClick?: ((click: Event) => any) | undefined;
45
- }, {}, {}, {}, {}, {}>;
46
- __isFragment?: undefined;
47
- __isTeleport?: undefined;
48
- __isSuspense?: undefined;
49
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
50
- title: {
51
- type: import("vue").PropType<string>;
52
- required: true;
53
- };
54
- tagline: {
55
- type: import("vue").PropType<string>;
56
- required: true;
57
- };
58
- }>> & {
59
- onClick?: ((click: Event) => any) | undefined;
60
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
61
- click: (click: Event) => void;
62
- }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
63
- $slots: Readonly<{
64
- headerPrefix(): any;
65
- content(): any;
66
- }> & {
67
- headerPrefix(): any;
68
- content(): any;
69
- };
70
- });
71
- title: string;
72
- tags: string[];
73
- args: {
74
- onClick: import("@vitest/spy").Mock<any, any>;
75
- };
76
- parameters: {
77
- docs: {
78
- description: {
79
- component: string;
80
- };
81
- };
82
- };
83
- };
84
- export default _default;
85
- export declare const Default: {
86
- args: {
87
- title: string;
88
- tagline: string;
89
- content: string;
90
- };
91
- };
92
- export declare const WithHeaderPrefix: () => {
93
- components: {
94
- MucCard: {
95
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
96
- title: {
97
- type: import("vue").PropType<string>;
98
- required: true;
99
- };
100
- tagline: {
101
- type: import("vue").PropType<string>;
102
- required: true;
103
- };
104
- }>> & {
105
- onClick?: ((click: Event) => any) | undefined;
106
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
107
- click: (click: Event) => void;
108
- }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
109
- title: {
110
- type: import("vue").PropType<string>;
111
- required: true;
112
- };
113
- tagline: {
114
- type: import("vue").PropType<string>;
115
- required: true;
116
- };
117
- }>> & {
118
- onClick?: ((click: Event) => any) | undefined;
119
- }, {}, true, {}, {}, {
120
- P: {};
121
- B: {};
122
- D: {};
123
- C: {};
124
- M: {};
125
- Defaults: {};
126
- }, Readonly<import("vue").ExtractPropTypes<{
127
- title: {
128
- type: import("vue").PropType<string>;
129
- required: true;
130
- };
131
- tagline: {
132
- type: import("vue").PropType<string>;
133
- required: true;
134
- };
135
- }>> & {
136
- onClick?: ((click: Event) => any) | undefined;
137
- }, {}, {}, {}, {}, {}>;
138
- __isFragment?: undefined;
139
- __isTeleport?: undefined;
140
- __isSuspense?: undefined;
141
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
142
- title: {
143
- type: import("vue").PropType<string>;
144
- required: true;
145
- };
146
- tagline: {
147
- type: import("vue").PropType<string>;
148
- required: true;
149
- };
150
- }>> & {
151
- onClick?: ((click: Event) => any) | undefined;
152
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
153
- click: (click: Event) => void;
154
- }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
155
- $slots: Readonly<{
156
- headerPrefix(): any;
157
- content(): any;
158
- }> & {
159
- headerPrefix(): any;
160
- content(): any;
161
- };
162
- });
163
- };
164
- template: string;
165
- };
@@ -1,44 +0,0 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
2
- title: string;
3
- tagline: string;
4
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
- click: (click: Event) => void;
6
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
7
- title: string;
8
- tagline: string;
9
- }>>> & {
10
- onClick?: ((click: Event) => any) | undefined;
11
- }, {}, {}>, Readonly<{
12
- /**
13
- * Icon shown above the callout. Defaults to icons matching the type.
14
- */
15
- headerPrefix(): any;
16
- /**
17
- * Content beneath the heading shown as text.
18
- */
19
- content(): any;
20
- }> & {
21
- /**
22
- * Icon shown above the callout. Defaults to icons matching the type.
23
- */
24
- headerPrefix(): any;
25
- /**
26
- * Content beneath the heading shown as text.
27
- */
28
- content(): any;
29
- }>;
30
- export default _default;
31
- type __VLS_WithTemplateSlots<T, S> = T & {
32
- new (): {
33
- $slots: S;
34
- };
35
- };
36
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
37
- type __VLS_TypePropsToOption<T> = {
38
- [K in keyof T]-?: {} extends Pick<T, K> ? {
39
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
40
- } : {
41
- type: import('vue').PropType<T[K]>;
42
- required: true;
43
- };
44
- };
@@ -1,148 +0,0 @@
1
- declare const _default: {
2
- components: {
3
- MucCardContainer: {
4
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
5
- P: {};
6
- B: {};
7
- D: {};
8
- C: {};
9
- M: {};
10
- Defaults: {};
11
- }, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
12
- __isFragment?: undefined;
13
- __isTeleport?: undefined;
14
- __isSuspense?: undefined;
15
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
16
- $slots: Readonly<{
17
- default(): any;
18
- }> & {
19
- default(): any;
20
- };
21
- });
22
- };
23
- component: {
24
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
25
- P: {};
26
- B: {};
27
- D: {};
28
- C: {};
29
- M: {};
30
- Defaults: {};
31
- }, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
32
- __isFragment?: undefined;
33
- __isTeleport?: undefined;
34
- __isSuspense?: undefined;
35
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
36
- $slots: Readonly<{
37
- default(): any;
38
- }> & {
39
- default(): any;
40
- };
41
- });
42
- title: string;
43
- tags: string[];
44
- args: {
45
- onClick: import("@vitest/spy").Mock<any, any>;
46
- };
47
- parameters: {
48
- docs: {
49
- description: {
50
- component: string;
51
- };
52
- };
53
- };
54
- };
55
- export default _default;
56
- export declare const Template: () => {
57
- components: {
58
- MucCardContainer: {
59
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
60
- P: {};
61
- B: {};
62
- D: {};
63
- C: {};
64
- M: {};
65
- Defaults: {};
66
- }, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
67
- __isFragment?: undefined;
68
- __isTeleport?: undefined;
69
- __isSuspense?: undefined;
70
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
71
- $slots: Readonly<{
72
- default(): any;
73
- }> & {
74
- default(): any;
75
- };
76
- });
77
- MucCard: {
78
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
79
- title: {
80
- type: import("vue").PropType<string>;
81
- required: true;
82
- };
83
- tagline: {
84
- type: import("vue").PropType<string>;
85
- required: true;
86
- };
87
- }>> & {
88
- onClick?: ((click: Event) => any) | undefined;
89
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
90
- click: (click: Event) => void;
91
- }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
92
- title: {
93
- type: import("vue").PropType<string>;
94
- required: true;
95
- };
96
- tagline: {
97
- type: import("vue").PropType<string>;
98
- required: true;
99
- };
100
- }>> & {
101
- onClick?: ((click: Event) => any) | undefined;
102
- }, {}, true, {}, {}, {
103
- P: {};
104
- B: {};
105
- D: {};
106
- C: {};
107
- M: {};
108
- Defaults: {};
109
- }, Readonly<import("vue").ExtractPropTypes<{
110
- title: {
111
- type: import("vue").PropType<string>;
112
- required: true;
113
- };
114
- tagline: {
115
- type: import("vue").PropType<string>;
116
- required: true;
117
- };
118
- }>> & {
119
- onClick?: ((click: Event) => any) | undefined;
120
- }, {}, {}, {}, {}, {}>;
121
- __isFragment?: undefined;
122
- __isTeleport?: undefined;
123
- __isSuspense?: undefined;
124
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
125
- title: {
126
- type: import("vue").PropType<string>;
127
- required: true;
128
- };
129
- tagline: {
130
- type: import("vue").PropType<string>;
131
- required: true;
132
- };
133
- }>> & {
134
- onClick?: ((click: Event) => any) | undefined;
135
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
136
- click: (click: Event) => void;
137
- }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
138
- $slots: Readonly<{
139
- headerPrefix(): any;
140
- content(): any;
141
- }> & {
142
- headerPrefix(): any;
143
- content(): any;
144
- };
145
- });
146
- };
147
- template: string;
148
- };
@@ -1,17 +0,0 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, Readonly<{
2
- /**
3
- * MucCards can be put into this slot.
4
- */
5
- default(): any;
6
- }> & {
7
- /**
8
- * MucCards can be put into this slot.
9
- */
10
- default(): any;
11
- }>;
12
- export default _default;
13
- type __VLS_WithTemplateSlots<T, S> = T & {
14
- new (): {
15
- $slots: S;
16
- };
17
- };
@@ -1,3 +0,0 @@
1
- import MucCard from "./MucCard.vue";
2
- import MucCardContainer from "./MucCardContainer.vue";
3
- export { MucCard, MucCardContainer };
@@ -1,2 +0,0 @@
1
- type CommentType = "listing" | "slider";
2
- export default CommentType;
@@ -1,106 +0,0 @@
1
- declare const _default: {
2
- component: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- variant: {
5
- type: import("vue").PropType<import("./CommentType.js").default>;
6
- default: string;
7
- };
8
- rating: {
9
- type: import("vue").PropType<number>;
10
- required: true;
11
- };
12
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
13
- variant: {
14
- type: import("vue").PropType<import("./CommentType.js").default>;
15
- default: string;
16
- };
17
- rating: {
18
- type: import("vue").PropType<number>;
19
- required: true;
20
- };
21
- }>>, {
22
- variant: import("./CommentType.js").default;
23
- }, true, {}, {}, {
24
- P: {};
25
- B: {};
26
- D: {};
27
- C: {};
28
- M: {};
29
- Defaults: {};
30
- }, Readonly<import("vue").ExtractPropTypes<{
31
- variant: {
32
- type: import("vue").PropType<import("./CommentType.js").default>;
33
- default: string;
34
- };
35
- rating: {
36
- type: import("vue").PropType<number>;
37
- required: true;
38
- };
39
- }>>, {}, {}, {}, {}, {
40
- variant: import("./CommentType.js").default;
41
- }>;
42
- __isFragment?: undefined;
43
- __isTeleport?: undefined;
44
- __isSuspense?: undefined;
45
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
46
- variant: {
47
- type: import("vue").PropType<import("./CommentType.js").default>;
48
- default: string;
49
- };
50
- rating: {
51
- type: import("vue").PropType<number>;
52
- required: true;
53
- };
54
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
55
- variant: import("./CommentType.js").default;
56
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
57
- $slots: Readonly<{
58
- initials(): any;
59
- author(): any;
60
- datePrefix(): any;
61
- date(): any;
62
- headline(): any;
63
- text(): any;
64
- }> & {
65
- initials(): any;
66
- author(): any;
67
- datePrefix(): any;
68
- date(): any;
69
- headline(): any;
70
- text(): any;
71
- };
72
- });
73
- title: string;
74
- tags: string[];
75
- parameters: {
76
- docs: {
77
- description: {
78
- component: string;
79
- };
80
- };
81
- };
82
- };
83
- export default _default;
84
- export declare const Default: {
85
- args: {
86
- rating: number;
87
- initials: string;
88
- author: string;
89
- datePrefix: string;
90
- date: string;
91
- headline: string;
92
- text: string;
93
- };
94
- };
95
- export declare const Slider: {
96
- args: {
97
- rating: number;
98
- variant: string;
99
- initials: string;
100
- author: string;
101
- datePrefix: string;
102
- date: string;
103
- headline: string;
104
- text: string;
105
- };
106
- };