@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,90 +1,117 @@
1
- import type { BreakpointCustomizable, LinkPureAlignLabel, SelectedAriaAttributes, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, Theme, LinkPureWeight } from '../types';
2
- type PLinkPureProps = {
3
- /**
4
- * Display link in active state.
5
- */
6
- active?: boolean;
7
- /**
8
- * Aligns the label.
9
- */
10
- alignLabel?: BreakpointCustomizable<LinkPureAlignLabel>;
11
- /**
12
- * Add ARIA attributes.
13
- */
14
- aria?: SelectedAriaAttributes<LinkPureAriaAttribute>;
15
- /**
16
- * Special download attribute to open native browser download dialog if target url points to a downloadable file.
17
- */
18
- download?: string;
19
- /**
20
- * Show or hide label. For better accessibility it is recommended to show the label.
21
- */
22
- hideLabel?: BreakpointCustomizable<boolean>;
23
- /**
24
- * When providing an url then the component will be rendered as `<a>`.
25
- */
26
- href?: string;
27
- /**
28
- * The icon shown. By choosing 'none', no icon is displayed
29
- */
30
- icon?: LinkPureIcon;
31
- /**
32
- * A URL path to a custom icon.
33
- */
34
- iconSource?: string;
35
- /**
36
- * Specifies the relationship of the target object to the link object.
37
- */
38
- rel?: string;
39
- /**
40
- * Size of the link.
41
- */
42
- size?: BreakpointCustomizable<LinkPureSize>;
43
- /**
44
- * Stretches the area between icon and label to max available space.
45
- */
46
- stretch?: BreakpointCustomizable<boolean>;
47
- /**
48
- * Target attribute where the link should be opened.
49
- */
50
- target?: LinkPureTarget;
51
- /**
52
- * Adapts the button color depending on the theme.
53
- */
54
- theme?: Theme;
55
- /**
56
- * Shows an underline under the label.
57
- */
58
- underline?: boolean;
59
- /**
60
- * The weight of the text (only has effect with visible label).
61
- * @deprecated since v3.0.0, will be removed with next major release
62
- */
63
- weight?: LinkPureWeight;
64
- };
65
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PLinkPureProps>, {
66
- active: boolean;
67
- alignLabel: string;
68
- hideLabel: boolean;
69
- icon: string;
70
- size: string;
71
- stretch: boolean;
72
- target: string;
73
- theme: string;
74
- underline: boolean;
75
- weight: string;
76
- }>, {}, 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<PLinkPureProps>, {
77
- active: boolean;
78
- alignLabel: string;
79
- hideLabel: boolean;
80
- icon: string;
81
- size: string;
82
- stretch: boolean;
83
- target: string;
84
- theme: string;
85
- underline: boolean;
86
- weight: string;
87
- }>>>, {
1
+ import type { BreakpointCustomizable, SelectedAriaAttributes } from '../types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
+ download: {
4
+ type: import("vue").PropType<string>;
5
+ };
6
+ weight: {
7
+ type: import("vue").PropType<"regular" | "semi-bold" | "bold" | "thin" | "semibold">;
8
+ default: string;
9
+ };
10
+ stretch: {
11
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
12
+ default: boolean;
13
+ };
14
+ size: {
15
+ type: import("vue").PropType<BreakpointCustomizable<"inherit" | "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large">>;
16
+ default: string;
17
+ };
18
+ theme: {
19
+ type: import("vue").PropType<"light" | "dark">;
20
+ default: string;
21
+ };
22
+ active: {
23
+ type: import("vue").PropType<boolean>;
24
+ default: boolean;
25
+ };
26
+ alignLabel: {
27
+ type: import("vue").PropType<BreakpointCustomizable<"left" | "right">>;
28
+ default: string;
29
+ };
30
+ aria: {
31
+ type: import("vue").PropType<SelectedAriaAttributes<"aria-label">>;
32
+ };
33
+ hideLabel: {
34
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
35
+ default: boolean;
36
+ };
37
+ icon: {
38
+ type: import("vue").PropType<import("../types").LinkButtonIconName>;
39
+ default: string;
40
+ };
41
+ iconSource: {
42
+ type: import("vue").PropType<string>;
43
+ };
44
+ href: {
45
+ type: import("vue").PropType<string>;
46
+ };
47
+ target: {
48
+ type: import("vue").PropType<string>;
49
+ default: string;
50
+ };
51
+ rel: {
52
+ type: import("vue").PropType<string>;
53
+ };
54
+ underline: {
55
+ type: import("vue").PropType<boolean>;
56
+ default: boolean;
57
+ };
58
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
59
+ download: {
60
+ type: import("vue").PropType<string>;
61
+ };
62
+ weight: {
63
+ type: import("vue").PropType<"regular" | "semi-bold" | "bold" | "thin" | "semibold">;
64
+ default: string;
65
+ };
66
+ stretch: {
67
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
68
+ default: boolean;
69
+ };
70
+ size: {
71
+ type: import("vue").PropType<BreakpointCustomizable<"inherit" | "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large">>;
72
+ default: string;
73
+ };
74
+ theme: {
75
+ type: import("vue").PropType<"light" | "dark">;
76
+ default: string;
77
+ };
78
+ active: {
79
+ type: import("vue").PropType<boolean>;
80
+ default: boolean;
81
+ };
82
+ alignLabel: {
83
+ type: import("vue").PropType<BreakpointCustomizable<"left" | "right">>;
84
+ default: string;
85
+ };
86
+ aria: {
87
+ type: import("vue").PropType<SelectedAriaAttributes<"aria-label">>;
88
+ };
89
+ hideLabel: {
90
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
91
+ default: boolean;
92
+ };
93
+ icon: {
94
+ type: import("vue").PropType<import("../types").LinkButtonIconName>;
95
+ default: string;
96
+ };
97
+ iconSource: {
98
+ type: import("vue").PropType<string>;
99
+ };
100
+ href: {
101
+ type: import("vue").PropType<string>;
102
+ };
103
+ target: {
104
+ type: import("vue").PropType<string>;
105
+ default: string;
106
+ };
107
+ rel: {
108
+ type: import("vue").PropType<string>;
109
+ };
110
+ underline: {
111
+ type: import("vue").PropType<boolean>;
112
+ default: boolean;
113
+ };
114
+ }>>, {
88
115
  weight: "regular" | "semi-bold" | "bold" | "thin" | "semibold";
89
116
  stretch: BreakpointCustomizable<boolean>;
90
117
  size: BreakpointCustomizable<"inherit" | "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large">;
@@ -99,25 +126,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
99
126
  default?(_: {}): any;
100
127
  }>;
101
128
  export default _default;
102
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
103
- type __VLS_TypePropsToRuntimeProps<T> = {
104
- [K in keyof T]-?: {} extends Pick<T, K> ? {
105
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
106
- } : {
107
- type: import('vue').PropType<T[K]>;
108
- required: true;
109
- };
110
- };
111
- type __VLS_WithDefaults<P, D> = {
112
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
113
- default: D[K];
114
- }> : P[K];
115
- };
116
129
  type __VLS_WithTemplateSlots<T, S> = T & {
117
130
  new (): {
118
131
  $slots: S;
119
132
  };
120
133
  };
121
- type __VLS_Prettify<T> = {
122
- [K in keyof T]: T[K];
123
- } & {};
@@ -1,44 +1,56 @@
1
- import type { BreakpointCustomizable, LinkSocialIcon, LinkSocialTarget, Theme } from '../types';
2
- type PLinkSocialProps = {
3
- /**
4
- * Show or hide label.
5
- */
6
- hideLabel?: BreakpointCustomizable<boolean>;
7
- /**
8
- * When providing an url then the component will be rendered as `<a>`.
9
- */
10
- href?: string;
11
- /**
12
- * The icon shown.
13
- */
14
- icon?: LinkSocialIcon;
15
- /**
16
- * A URL path to a custom icon.
17
- */
18
- iconSource?: string;
19
- /**
20
- * Specifies the relationship of the target object to the link object.
21
- */
22
- rel?: string;
23
- /**
24
- * Target attribute where the link should be opened.
25
- */
26
- target?: LinkSocialTarget;
27
- /**
28
- * Adapts the link color when used on dark background.
29
- */
30
- theme?: Theme;
31
- };
1
+ import type { BreakpointCustomizable, LinkSocialIcon } from '../types';
32
2
  /** @deprecated since v3.0.0, will be removed with next major release. Use `p-link` with corresponding social icon instead. */
33
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PLinkSocialProps>, {
34
- hideLabel: boolean;
35
- target: string;
36
- theme: string;
37
- }>, {}, 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<PLinkSocialProps>, {
38
- hideLabel: boolean;
39
- target: string;
40
- theme: string;
41
- }>>>, {
3
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
+ theme: {
5
+ type: import("vue").PropType<"light" | "dark">;
6
+ default: string;
7
+ };
8
+ hideLabel: {
9
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
10
+ default: boolean;
11
+ };
12
+ icon: {
13
+ type: import("vue").PropType<LinkSocialIcon>;
14
+ };
15
+ iconSource: {
16
+ type: import("vue").PropType<string>;
17
+ };
18
+ href: {
19
+ type: import("vue").PropType<string>;
20
+ };
21
+ target: {
22
+ type: import("vue").PropType<string>;
23
+ default: string;
24
+ };
25
+ rel: {
26
+ type: import("vue").PropType<string>;
27
+ };
28
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
29
+ theme: {
30
+ type: import("vue").PropType<"light" | "dark">;
31
+ default: string;
32
+ };
33
+ hideLabel: {
34
+ type: import("vue").PropType<BreakpointCustomizable<boolean>>;
35
+ default: boolean;
36
+ };
37
+ icon: {
38
+ type: import("vue").PropType<LinkSocialIcon>;
39
+ };
40
+ iconSource: {
41
+ type: import("vue").PropType<string>;
42
+ };
43
+ href: {
44
+ type: import("vue").PropType<string>;
45
+ };
46
+ target: {
47
+ type: import("vue").PropType<string>;
48
+ default: string;
49
+ };
50
+ rel: {
51
+ type: import("vue").PropType<string>;
52
+ };
53
+ }>>, {
42
54
  theme: "light" | "dark";
43
55
  hideLabel: BreakpointCustomizable<boolean>;
44
56
  target: string;
@@ -46,25 +58,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
46
58
  default?(_: {}): any;
47
59
  }>;
48
60
  export default _default;
49
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
50
- type __VLS_TypePropsToRuntimeProps<T> = {
51
- [K in keyof T]-?: {} extends Pick<T, K> ? {
52
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
53
- } : {
54
- type: import('vue').PropType<T[K]>;
55
- required: true;
56
- };
57
- };
58
- type __VLS_WithDefaults<P, D> = {
59
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
60
- default: D[K];
61
- }> : P[K];
62
- };
63
61
  type __VLS_WithTemplateSlots<T, S> = T & {
64
62
  new (): {
65
63
  $slots: S;
66
64
  };
67
65
  };
68
- type __VLS_Prettify<T> = {
69
- [K in keyof T]: T[K];
70
- } & {};
@@ -1,53 +1,67 @@
1
- import type { BreakpointCustomizable, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight } from '../types';
2
- type PLinkTileModelSignatureProps = {
3
- /**
4
- * Aspect ratio of the link-tile-model-signature.
5
- */
6
- aspectRatio?: BreakpointCustomizable<LinkTileModelSignatureAspectRatio>;
7
- /**
8
- * Description text.
9
- */
10
- description?: string;
11
- /**
12
- * Heading text.
13
- */
14
- heading: string;
15
- /**
16
- * Sets a custom headline tag which wraps the heading to enhance semantics.
17
- */
18
- headingTag?: LinkTileModelSignatureHeadingTag;
19
- /**
20
- * Defines the direction of the main and cross axis of the links. The default is '{base: ‘column’, xs: ‘row’}' showing buttons vertically stacked on mobile viewports and side-by-side in a horizontal row from breakpoint 'xs'.
21
- */
22
- linkDirection?: BreakpointCustomizable<LinkTileModelSignatureLinkDirection>;
23
- /**
24
- * Adapts the model of the component.
25
- */
26
- model?: LinkTileModelSignatureModel;
27
- /**
28
- * Adapts the font weight of the heading.
29
- */
30
- weight?: BreakpointCustomizable<LinkTileModelSignatureWeight>;
31
- };
32
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PLinkTileModelSignatureProps>, {
33
- aspectRatio: string;
34
- headingTag: string;
35
- linkDirection: () => {
36
- base: string;
37
- xs: string;
1
+ import type { BreakpointCustomizable } from '../types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
+ heading: {
4
+ type: import("vue").PropType<string>;
5
+ required: true;
6
+ };
7
+ weight: {
8
+ type: import("vue").PropType<BreakpointCustomizable<"regular" | "semi-bold">>;
9
+ default: string;
10
+ };
11
+ description: {
12
+ type: import("vue").PropType<string>;
13
+ };
14
+ aspectRatio: {
15
+ type: import("vue").PropType<BreakpointCustomizable<"1:1" | "4:3" | "3:4" | "16:9" | "9:16">>;
16
+ default: string;
17
+ };
18
+ headingTag: {
19
+ type: import("vue").PropType<"h2" | "h3" | "h4" | "h5" | "h6">;
20
+ default: string;
21
+ };
22
+ linkDirection: {
23
+ type: import("vue").PropType<BreakpointCustomizable<"row" | "column">>;
24
+ default: () => {
25
+ base: string;
26
+ xs: string;
27
+ };
28
+ };
29
+ model: {
30
+ type: import("vue").PropType<"718" | "911" | "boxster" | "cayenne" | "cayman" | "macan" | "panamera" | "taycan" | "turbo-s" | "turbo">;
31
+ default: string;
32
+ };
33
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
34
+ heading: {
35
+ type: import("vue").PropType<string>;
36
+ required: true;
38
37
  };
39
- model: string;
40
- weight: string;
41
- }>, {}, 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<PLinkTileModelSignatureProps>, {
42
- aspectRatio: string;
43
- headingTag: string;
44
- linkDirection: () => {
45
- base: string;
46
- xs: string;
38
+ weight: {
39
+ type: import("vue").PropType<BreakpointCustomizable<"regular" | "semi-bold">>;
40
+ default: string;
47
41
  };
48
- model: string;
49
- weight: string;
50
- }>>>, {
42
+ description: {
43
+ type: import("vue").PropType<string>;
44
+ };
45
+ aspectRatio: {
46
+ type: import("vue").PropType<BreakpointCustomizable<"1:1" | "4:3" | "3:4" | "16:9" | "9:16">>;
47
+ default: string;
48
+ };
49
+ headingTag: {
50
+ type: import("vue").PropType<"h2" | "h3" | "h4" | "h5" | "h6">;
51
+ default: string;
52
+ };
53
+ linkDirection: {
54
+ type: import("vue").PropType<BreakpointCustomizable<"row" | "column">>;
55
+ default: () => {
56
+ base: string;
57
+ xs: string;
58
+ };
59
+ };
60
+ model: {
61
+ type: import("vue").PropType<"718" | "911" | "boxster" | "cayenne" | "cayman" | "macan" | "panamera" | "taycan" | "turbo-s" | "turbo">;
62
+ default: string;
63
+ };
64
+ }>>, {
51
65
  weight: BreakpointCustomizable<"regular" | "semi-bold">;
52
66
  aspectRatio: BreakpointCustomizable<"1:1" | "4:3" | "3:4" | "16:9" | "9:16">;
53
67
  headingTag: "h2" | "h3" | "h4" | "h5" | "h6";
@@ -57,25 +71,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
57
71
  default?(_: {}): any;
58
72
  }>;
59
73
  export default _default;
60
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
61
- type __VLS_TypePropsToRuntimeProps<T> = {
62
- [K in keyof T]-?: {} extends Pick<T, K> ? {
63
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
64
- } : {
65
- type: import('vue').PropType<T[K]>;
66
- required: true;
67
- };
68
- };
69
- type __VLS_WithDefaults<P, D> = {
70
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
71
- default: D[K];
72
- }> : P[K];
73
- };
74
74
  type __VLS_WithTemplateSlots<T, S> = T & {
75
75
  new (): {
76
76
  $slots: S;
77
77
  };
78
78
  };
79
- type __VLS_Prettify<T> = {
80
- [K in keyof T]: T[K];
81
- } & {};