@porsche-design-system/components-vue 3.2.0-rc.0 → 3.3.0-rc.0

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 (60) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/PorscheDesignSystemProvider.vue.d.ts +11 -26
  3. package/lib/components/AccordionWrapper.vue.d.ts +47 -54
  4. package/lib/components/BannerWrapper.vue.d.ts +66 -69
  5. package/lib/components/ButtonGroupWrapper.vue.d.ts +16 -33
  6. package/lib/components/ButtonPureWrapper.vue.d.ts +104 -98
  7. package/lib/components/ButtonTileWrapper.vue.d.ts +112 -99
  8. package/lib/components/ButtonWrapper.vue.d.ts +72 -73
  9. package/lib/components/CarouselWrapper.vue.d.ts +97 -91
  10. package/lib/components/CheckboxWrapperWrapper.vue.d.ts +52 -59
  11. package/lib/components/ContentWrapperWrapper.vue.d.ts +27 -43
  12. package/lib/components/CrestWrapper.vue.d.ts +24 -37
  13. package/lib/components/DisplayWrapper.vue.d.ts +50 -57
  14. package/lib/components/DividerWrapper.vue.d.ts +34 -45
  15. package/lib/components/FieldsetWrapper.vue.d.ts +51 -59
  16. package/lib/components/FieldsetWrapperWrapper.vue.d.ts +51 -59
  17. package/lib/components/FlexItemWrapper.vue.d.ts +52 -59
  18. package/lib/components/FlexWrapper.vue.d.ts +52 -59
  19. package/lib/components/FlyoutWrapper.vue.d.ts +37 -46
  20. package/lib/components/GridItemWrapper.vue.d.ts +20 -35
  21. package/lib/components/GridWrapper.vue.d.ts +34 -48
  22. package/lib/components/HeadingWrapper.vue.d.ts +50 -57
  23. package/lib/components/HeadlineWrapper.vue.d.ts +50 -57
  24. package/lib/components/IconWrapper.vue.d.ts +54 -60
  25. package/lib/components/InlineNotificationWrapper.vue.d.ts +72 -74
  26. package/lib/components/LinkPureWrapper.vue.d.ts +114 -104
  27. package/lib/components/LinkSocialWrapper.vue.d.ts +52 -57
  28. package/lib/components/LinkTileModelSignatureWrapper.vue.d.ts +62 -65
  29. package/lib/components/LinkTileWrapper.vue.d.ts +102 -89
  30. package/lib/components/LinkWrapper.vue.d.ts +74 -73
  31. package/lib/components/MarqueWrapper.vue.d.ts +48 -55
  32. package/lib/components/ModalWrapper.vue.d.ts +57 -60
  33. package/lib/components/ModelSignatureWrapper.vue.d.ts +35 -47
  34. package/lib/components/PaginationWrapper.vue.d.ts +101 -94
  35. package/lib/components/PopoverWrapper.vue.d.ts +32 -43
  36. package/lib/components/RadioButtonWrapperWrapper.vue.d.ts +44 -53
  37. package/lib/components/ScrollerWrapper.vue.d.ts +60 -63
  38. package/lib/components/SegmentedControlItemWrapper.vue.d.ts +37 -45
  39. package/lib/components/SegmentedControlWrapper.vue.d.ts +25 -38
  40. package/lib/components/SelectWrapperWrapper.vue.d.ts +76 -77
  41. package/lib/components/SpinnerWrapper.vue.d.ts +26 -39
  42. package/lib/components/StepperHorizontalItemWrapper.vue.d.ts +17 -33
  43. package/lib/components/StepperHorizontalWrapper.vue.d.ts +21 -33
  44. package/lib/components/SwitchWrapper.vue.d.ts +61 -66
  45. package/lib/components/TableCellWrapper.vue.d.ts +11 -28
  46. package/lib/components/TableHeadCellWrapper.vue.d.ts +25 -38
  47. package/lib/components/TableWrapper.vue.d.ts +18 -34
  48. package/lib/components/TabsBarWrapper.vue.d.ts +49 -56
  49. package/lib/components/TabsItemWrapper.vue.d.ts +11 -16
  50. package/lib/components/TabsWrapper.vue.d.ts +51 -58
  51. package/lib/components/TagDismissibleWrapper.vue.d.ts +32 -43
  52. package/lib/components/TagWrapper.vue.d.ts +31 -43
  53. package/lib/components/TextFieldWrapperWrapper.vue.d.ts +105 -98
  54. package/lib/components/TextListWrapper.vue.d.ts +31 -43
  55. package/lib/components/TextWrapper.vue.d.ts +60 -65
  56. package/lib/components/TextareaWrapperWrapper.vue.d.ts +66 -69
  57. package/lib/components/ToastWrapper.vue.d.ts +11 -29
  58. package/lib/components/WordmarkWrapper.vue.d.ts +40 -49
  59. package/lib/types.d.ts +27 -2
  60. package/package.json +2 -2
@@ -1,85 +1,115 @@
1
- import type { ButtonTileAlign, SelectedAriaAttributes, ButtonTileAriaAttribute, BreakpointCustomizable, ButtonTileAspectRatio, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight } from '../types';
2
- type PButtonTileProps = {
3
- /**
4
- * Alignment of button and description.
5
- */
6
- align?: ButtonTileAlign;
7
- /**
8
- * Add ARIA attributes.
9
- */
10
- aria?: SelectedAriaAttributes<ButtonTileAriaAttribute>;
11
- /**
12
- * Aspect ratio of the button-tile.
13
- */
14
- aspectRatio?: BreakpointCustomizable<ButtonTileAspectRatio>;
15
- /**
16
- * Displays the button-tile as compact version with description and button icon only.
17
- */
18
- compact?: BreakpointCustomizable<boolean>;
19
- /**
20
- * Description text.
21
- */
22
- description: string;
23
- /**
24
- * Disables the button. No events will be triggered while disabled state is active.
25
- */
26
- disabled?: boolean;
27
- /**
28
- * Show gradient.
29
- */
30
- gradient?: boolean;
31
- /**
32
- * The icon shown. By choosing 'none', no icon is displayed.
33
- */
34
- icon?: ButtonTileIcon;
35
- /**
36
- * A URL path to a custom icon.
37
- */
38
- iconSource?: string;
39
- /**
40
- * Label of the button.
41
- */
42
- label: string;
43
- /**
44
- * Disables the button-tile and shows a loading indicator. No events will be triggered while loading state is active.
45
- */
46
- loading?: boolean;
47
- /**
48
- * Font size of the description.
49
- */
50
- size?: BreakpointCustomizable<ButtonTileSize>;
51
- /**
52
- * Specifies the type of the button.
53
- */
54
- type?: ButtonTileType;
55
- /**
56
- * Font weight of the description.
57
- */
58
- weight?: BreakpointCustomizable<ButtonTileWeight>;
59
- };
60
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PButtonTileProps>, {
61
- align: string;
62
- aspectRatio: string;
63
- compact: boolean;
64
- disabled: boolean;
65
- gradient: boolean;
66
- icon: string;
67
- loading: boolean;
68
- size: string;
69
- type: string;
70
- weight: string;
71
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PButtonTileProps>, {
72
- align: string;
73
- aspectRatio: string;
74
- compact: boolean;
75
- disabled: boolean;
76
- gradient: boolean;
77
- icon: string;
78
- loading: boolean;
79
- size: string;
80
- type: string;
81
- weight: string;
82
- }>>>, {
1
+ import type { SelectedAriaAttributes, BreakpointCustomizable } from '../types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
+ weight: {
4
+ type: import("vue").PropType<BreakpointCustomizable<"regular" | "semi-bold">>;
5
+ default: string;
6
+ };
7
+ label: {
8
+ type: import("vue").PropType<string>;
9
+ required: true;
10
+ };
11
+ type: {
12
+ type: import("vue").PropType<"button" | "reset" | "submit">;
13
+ default: string;
14
+ };
15
+ compact: {
16
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
17
+ default: boolean;
18
+ };
19
+ size: {
20
+ type: import("vue").PropType<BreakpointCustomizable<"default" | "inherit">>;
21
+ default: string;
22
+ };
23
+ description: {
24
+ type: import("vue").PropType<string>;
25
+ required: true;
26
+ };
27
+ aria: {
28
+ type: import("vue").PropType<SelectedAriaAttributes<"aria-label" | "aria-expanded" | "aria-pressed" | "aria-haspopup">>;
29
+ };
30
+ disabled: {
31
+ type: import("vue").PropType<boolean>;
32
+ default: boolean;
33
+ };
34
+ icon: {
35
+ type: import("vue").PropType<import("../types").LinkButtonIconName>;
36
+ default: string;
37
+ };
38
+ iconSource: {
39
+ type: import("vue").PropType<string>;
40
+ };
41
+ loading: {
42
+ type: import("vue").PropType<boolean>;
43
+ default: boolean;
44
+ };
45
+ align: {
46
+ type: import("vue").PropType<"top" | "bottom">;
47
+ default: string;
48
+ };
49
+ aspectRatio: {
50
+ type: import("vue").PropType<BreakpointCustomizable<"1:1" | "4:3" | "3:4" | "16:9" | "9:16">>;
51
+ default: string;
52
+ };
53
+ gradient: {
54
+ type: import("vue").PropType<boolean>;
55
+ default: boolean;
56
+ };
57
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
58
+ weight: {
59
+ type: import("vue").PropType<BreakpointCustomizable<"regular" | "semi-bold">>;
60
+ default: string;
61
+ };
62
+ label: {
63
+ type: import("vue").PropType<string>;
64
+ required: true;
65
+ };
66
+ type: {
67
+ type: import("vue").PropType<"button" | "reset" | "submit">;
68
+ default: string;
69
+ };
70
+ compact: {
71
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
72
+ default: boolean;
73
+ };
74
+ size: {
75
+ type: import("vue").PropType<BreakpointCustomizable<"default" | "inherit">>;
76
+ default: string;
77
+ };
78
+ description: {
79
+ type: import("vue").PropType<string>;
80
+ required: true;
81
+ };
82
+ aria: {
83
+ type: import("vue").PropType<SelectedAriaAttributes<"aria-label" | "aria-expanded" | "aria-pressed" | "aria-haspopup">>;
84
+ };
85
+ disabled: {
86
+ type: import("vue").PropType<boolean>;
87
+ default: boolean;
88
+ };
89
+ icon: {
90
+ type: import("vue").PropType<import("../types").LinkButtonIconName>;
91
+ default: string;
92
+ };
93
+ iconSource: {
94
+ type: import("vue").PropType<string>;
95
+ };
96
+ loading: {
97
+ type: import("vue").PropType<boolean>;
98
+ default: boolean;
99
+ };
100
+ align: {
101
+ type: import("vue").PropType<"top" | "bottom">;
102
+ default: string;
103
+ };
104
+ aspectRatio: {
105
+ type: import("vue").PropType<BreakpointCustomizable<"1:1" | "4:3" | "3:4" | "16:9" | "9:16">>;
106
+ default: string;
107
+ };
108
+ gradient: {
109
+ type: import("vue").PropType<boolean>;
110
+ default: boolean;
111
+ };
112
+ }>>, {
83
113
  weight: BreakpointCustomizable<"regular" | "semi-bold">;
84
114
  type: "button" | "reset" | "submit";
85
115
  compact: BreakpointCustomizable<boolean>;
@@ -94,25 +124,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
94
124
  default?(_: {}): any;
95
125
  }>;
96
126
  export default _default;
97
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
98
- type __VLS_TypePropsToRuntimeProps<T> = {
99
- [K in keyof T]-?: {} extends Pick<T, K> ? {
100
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
101
- } : {
102
- type: import('vue').PropType<T[K]>;
103
- required: true;
104
- };
105
- };
106
- type __VLS_WithDefaults<P, D> = {
107
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
108
- default: D[K];
109
- }> : P[K];
110
- };
111
127
  type __VLS_WithTemplateSlots<T, S> = T & {
112
128
  new (): {
113
129
  $slots: S;
114
130
  };
115
131
  };
116
- type __VLS_Prettify<T> = {
117
- [K in keyof T]: T[K];
118
- } & {};
@@ -1,59 +1,75 @@
1
- import type { SelectedAriaAttributes, ButtonAriaAttribute, BreakpointCustomizable, ButtonIcon, Theme, ButtonType, ButtonVariant } from '../types';
2
- type PButtonProps = {
3
- /**
4
- * Add ARIA attributes.
5
- */
6
- aria?: SelectedAriaAttributes<ButtonAriaAttribute>;
7
- /**
8
- * Disables the button. No events will be triggered while disabled state is active.
9
- */
10
- disabled?: boolean;
11
- /**
12
- * Show or hide label. For better accessibility it is recommended to show the label.
13
- */
14
- hideLabel?: BreakpointCustomizable<boolean>;
15
- /**
16
- * The icon shown. By choosing 'none', no icon is displayed.
17
- */
18
- icon?: ButtonIcon;
19
- /**
20
- * A URL path to a custom icon.
21
- */
22
- iconSource?: string;
23
- /**
24
- * Disables the button and shows a loading indicator. No events will be triggered while loading state is active.
25
- */
26
- loading?: boolean;
27
- /**
28
- * Adapts the button color depending on the theme.
29
- */
30
- theme?: Theme;
31
- /**
32
- * Specifies the type of the button.
33
- */
34
- type?: ButtonType;
35
- /**
36
- * The style variant of the button.
37
- */
38
- variant?: ButtonVariant;
39
- };
40
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PButtonProps>, {
41
- disabled: boolean;
42
- hideLabel: boolean;
43
- icon: string;
44
- loading: boolean;
45
- theme: string;
46
- type: string;
47
- variant: string;
48
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PButtonProps>, {
49
- disabled: boolean;
50
- hideLabel: boolean;
51
- icon: string;
52
- loading: boolean;
53
- theme: string;
54
- type: string;
55
- variant: string;
56
- }>>>, {
1
+ import type { SelectedAriaAttributes, BreakpointCustomizable } from '../types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
+ type: {
4
+ type: import("vue").PropType<"button" | "reset" | "submit">;
5
+ default: string;
6
+ };
7
+ theme: {
8
+ type: import("vue").PropType<"light" | "dark">;
9
+ default: string;
10
+ };
11
+ aria: {
12
+ type: import("vue").PropType<SelectedAriaAttributes<"aria-label" | "aria-expanded" | "aria-pressed" | "aria-haspopup">>;
13
+ };
14
+ disabled: {
15
+ type: import("vue").PropType<boolean>;
16
+ default: boolean;
17
+ };
18
+ hideLabel: {
19
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
20
+ default: boolean;
21
+ };
22
+ icon: {
23
+ type: import("vue").PropType<import("../types").LinkButtonIconName>;
24
+ default: string;
25
+ };
26
+ iconSource: {
27
+ type: import("vue").PropType<string>;
28
+ };
29
+ loading: {
30
+ type: import("vue").PropType<boolean>;
31
+ default: boolean;
32
+ };
33
+ variant: {
34
+ type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
35
+ default: string;
36
+ };
37
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
38
+ type: {
39
+ type: import("vue").PropType<"button" | "reset" | "submit">;
40
+ default: string;
41
+ };
42
+ theme: {
43
+ type: import("vue").PropType<"light" | "dark">;
44
+ default: string;
45
+ };
46
+ aria: {
47
+ type: import("vue").PropType<SelectedAriaAttributes<"aria-label" | "aria-expanded" | "aria-pressed" | "aria-haspopup">>;
48
+ };
49
+ disabled: {
50
+ type: import("vue").PropType<boolean>;
51
+ default: boolean;
52
+ };
53
+ hideLabel: {
54
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
55
+ default: boolean;
56
+ };
57
+ icon: {
58
+ type: import("vue").PropType<import("../types").LinkButtonIconName>;
59
+ default: string;
60
+ };
61
+ iconSource: {
62
+ type: import("vue").PropType<string>;
63
+ };
64
+ loading: {
65
+ type: import("vue").PropType<boolean>;
66
+ default: boolean;
67
+ };
68
+ variant: {
69
+ type: import("vue").PropType<"primary" | "secondary" | "tertiary">;
70
+ default: string;
71
+ };
72
+ }>>, {
57
73
  type: "button" | "reset" | "submit";
58
74
  theme: "light" | "dark";
59
75
  disabled: boolean;
@@ -65,25 +81,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
65
81
  default?(_: {}): any;
66
82
  }>;
67
83
  export default _default;
68
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
69
- type __VLS_TypePropsToRuntimeProps<T> = {
70
- [K in keyof T]-?: {} extends Pick<T, K> ? {
71
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
72
- } : {
73
- type: import('vue').PropType<T[K]>;
74
- required: true;
75
- };
76
- };
77
- type __VLS_WithDefaults<P, D> = {
78
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
79
- default: D[K];
80
- }> : P[K];
81
- };
82
84
  type __VLS_WithTemplateSlots<T, S> = T & {
83
85
  new (): {
84
86
  $slots: S;
85
87
  };
86
88
  };
87
- type __VLS_Prettify<T> = {
88
- [K in keyof T]: T[K];
89
- } & {};
@@ -1,79 +1,102 @@
1
- import type { CarouselAlignHeader, BreakpointCustomizable, CarouselInternationalization, CarouselUpdateEvent, Theme, CarouselWidth } from '../types';
2
- type PCarouselProps = {
3
- /**
4
- * Defines which slide to be active (zero-based numbering).
5
- */
6
- activeSlideIndex?: number;
7
- /**
8
- * Alignment of heading and description
9
- */
10
- alignHeader?: CarouselAlignHeader;
11
- /**
12
- * Defines the description used in the carousel.
13
- */
14
- description?: string;
15
- /**
16
- * @deprecated since v3.0.0, will be removed with next major release, use `pagination` instead. If true, the carousel will not show pagination bullets at the bottom.
17
- */
18
- disablePagination?: BreakpointCustomizable<boolean>;
19
- /**
20
- * Defines the heading used in the carousel.
21
- */
22
- heading?: string;
23
- /**
24
- * Override the default wordings that are used for aria-labels on the next/prev buttons and pagination.
25
- */
26
- intl?: CarouselInternationalization;
27
- /**
28
- * If false, the carousel will not show pagination bullets at the bottom.
29
- */
30
- pagination?: BreakpointCustomizable<boolean>;
31
- /**
32
- * Whether the slides should rewind from last to first slide and vice versa.
33
- */
34
- rewind?: boolean;
35
- /**
36
- * Defines target of skip link (to skip carousel entries).
37
- */
38
- skipLinkTarget?: string;
39
- /**
40
- * Sets the amount of slides visible at the same time. Can be set to `auto` if you want to define different widths per slide via CSS.
41
- */
42
- slidesPerPage?: BreakpointCustomizable<number> | "auto";
43
- /**
44
- * Adapts the color when used on dark background.
45
- */
46
- theme?: Theme;
47
- /**
48
- * Defines the outer spacings between the carousel and the left and right screen sides.
49
- */
50
- width?: CarouselWidth;
51
- /**
52
- * Has no effect anymore
53
- * @deprecated since v3.0.0, will be removed with next major release
54
- */
55
- wrapContent?: boolean;
56
- };
57
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PCarouselProps>, {
58
- activeSlideIndex: number;
59
- alignHeader: string;
60
- pagination: boolean;
61
- rewind: boolean;
62
- slidesPerPage: number;
63
- theme: string;
64
- width: string;
65
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1
+ import type { BreakpointCustomizable, CarouselInternationalization, CarouselUpdateEvent } from '../types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
+ heading: {
4
+ type: import("vue").PropType<string>;
5
+ };
6
+ theme: {
7
+ type: import("vue").PropType<"light" | "dark">;
8
+ default: string;
9
+ };
10
+ description: {
11
+ type: import("vue").PropType<string>;
12
+ };
13
+ width: {
14
+ type: import("vue").PropType<"extended" | "basic">;
15
+ default: string;
16
+ };
17
+ activeSlideIndex: {
18
+ type: import("vue").PropType<number>;
19
+ default: number;
20
+ };
21
+ alignHeader: {
22
+ type: import("vue").PropType<"center" | "left">;
23
+ default: string;
24
+ };
25
+ disablePagination: {
26
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
27
+ };
28
+ intl: {
29
+ type: import("vue").PropType<CarouselInternationalization>;
30
+ };
31
+ pagination: {
32
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
33
+ default: boolean;
34
+ };
35
+ rewind: {
36
+ type: import("vue").PropType<boolean>;
37
+ default: boolean;
38
+ };
39
+ skipLinkTarget: {
40
+ type: import("vue").PropType<string>;
41
+ };
42
+ slidesPerPage: {
43
+ type: import("vue").PropType<BreakpointCustomizable<number>>;
44
+ default: number;
45
+ };
46
+ wrapContent: {
47
+ type: import("vue").PropType<boolean>;
48
+ };
49
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
66
50
  carouselChange: (value: CarouselUpdateEvent) => void;
67
51
  update: (value: CarouselUpdateEvent) => void;
68
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PCarouselProps>, {
69
- activeSlideIndex: number;
70
- alignHeader: string;
71
- pagination: boolean;
72
- rewind: boolean;
73
- slidesPerPage: number;
74
- theme: string;
75
- width: string;
76
- }>>> & {
52
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
53
+ heading: {
54
+ type: import("vue").PropType<string>;
55
+ };
56
+ theme: {
57
+ type: import("vue").PropType<"light" | "dark">;
58
+ default: string;
59
+ };
60
+ description: {
61
+ type: import("vue").PropType<string>;
62
+ };
63
+ width: {
64
+ type: import("vue").PropType<"extended" | "basic">;
65
+ default: string;
66
+ };
67
+ activeSlideIndex: {
68
+ type: import("vue").PropType<number>;
69
+ default: number;
70
+ };
71
+ alignHeader: {
72
+ type: import("vue").PropType<"center" | "left">;
73
+ default: string;
74
+ };
75
+ disablePagination: {
76
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
77
+ };
78
+ intl: {
79
+ type: import("vue").PropType<CarouselInternationalization>;
80
+ };
81
+ pagination: {
82
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
83
+ default: boolean;
84
+ };
85
+ rewind: {
86
+ type: import("vue").PropType<boolean>;
87
+ default: boolean;
88
+ };
89
+ skipLinkTarget: {
90
+ type: import("vue").PropType<string>;
91
+ };
92
+ slidesPerPage: {
93
+ type: import("vue").PropType<BreakpointCustomizable<number>>;
94
+ default: number;
95
+ };
96
+ wrapContent: {
97
+ type: import("vue").PropType<boolean>;
98
+ };
99
+ }>> & {
77
100
  onUpdate?: ((value: CarouselUpdateEvent) => any) | undefined;
78
101
  onCarouselChange?: ((value: CarouselUpdateEvent) => any) | undefined;
79
102
  }, {
@@ -88,25 +111,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
88
111
  default?(_: {}): any;
89
112
  }>;
90
113
  export default _default;
91
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
92
- type __VLS_TypePropsToRuntimeProps<T> = {
93
- [K in keyof T]-?: {} extends Pick<T, K> ? {
94
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
95
- } : {
96
- type: import('vue').PropType<T[K]>;
97
- required: true;
98
- };
99
- };
100
- type __VLS_WithDefaults<P, D> = {
101
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
102
- default: D[K];
103
- }> : P[K];
104
- };
105
114
  type __VLS_WithTemplateSlots<T, S> = T & {
106
115
  new (): {
107
116
  $slots: S;
108
117
  };
109
118
  };
110
- type __VLS_Prettify<T> = {
111
- [K in keyof T]: T[K];
112
- } & {};