@porsche-design-system/components-vue 3.0.0-alpha.4 → 3.0.0-alpha.6

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 (36) hide show
  1. package/CHANGELOG.md +161 -16
  2. package/lib/components/AccordionWrapper.vue.d.ts +5 -5
  3. package/lib/components/AccordionWrapper.vue.js +6 -6
  4. package/lib/components/BannerWrapper.vue.d.ts +25 -9
  5. package/lib/components/BannerWrapper.vue.js +15 -13
  6. package/lib/components/CarouselWrapper.vue.d.ts +5 -5
  7. package/lib/components/CarouselWrapper.vue.js +10 -10
  8. package/lib/components/CrestWrapper.vue.d.ts +49 -0
  9. package/lib/components/CrestWrapper.vue.js +24 -0
  10. package/lib/components/CrestWrapper.vue2.js +4 -0
  11. package/lib/components/GridItemWrapper.vue.d.ts +4 -4
  12. package/lib/components/InlineNotificationWrapper.vue.d.ts +13 -5
  13. package/lib/components/InlineNotificationWrapper.vue.js +7 -6
  14. package/lib/components/MarqueWrapper.vue.d.ts +1 -0
  15. package/lib/components/ModalWrapper.vue.d.ts +1 -1
  16. package/lib/components/PaginationWrapper.vue.d.ts +7 -7
  17. package/lib/components/PaginationWrapper.vue.js +9 -9
  18. package/lib/components/SegmentedControlWrapper.vue.d.ts +5 -5
  19. package/lib/components/SegmentedControlWrapper.vue.js +8 -8
  20. package/lib/components/StepperHorizontalWrapper.vue.d.ts +5 -5
  21. package/lib/components/StepperHorizontalWrapper.vue.js +12 -12
  22. package/lib/components/SwitchWrapper.vue.d.ts +5 -5
  23. package/lib/components/SwitchWrapper.vue.js +10 -10
  24. package/lib/components/TableWrapper.vue.d.ts +3 -3
  25. package/lib/components/TableWrapper.vue.js +12 -12
  26. package/lib/components/TabsBarWrapper.vue.d.ts +5 -5
  27. package/lib/components/TabsBarWrapper.vue.js +9 -9
  28. package/lib/components/TabsWrapper.vue.d.ts +4 -4
  29. package/lib/components/TabsWrapper.vue.js +11 -11
  30. package/lib/components/WordmarkWrapper.vue.d.ts +71 -0
  31. package/lib/components/WordmarkWrapper.vue.js +26 -0
  32. package/lib/components/WordmarkWrapper.vue2.js +4 -0
  33. package/lib/components/index.d.ts +2 -0
  34. package/lib/types.d.ts +35 -19
  35. package/package.json +2 -2
  36. package/public-api.js +109 -105
@@ -7,6 +7,7 @@ export { default as PButtonTile } from './ButtonTileWrapper.vue';
7
7
  export { default as PCarousel } from './CarouselWrapper.vue';
8
8
  export { default as PCheckboxWrapper } from './CheckboxWrapperWrapper.vue';
9
9
  export { default as PContentWrapper } from './ContentWrapperWrapper.vue';
10
+ export { default as PCrest } from './CrestWrapper.vue';
10
11
  export { default as PDisplay } from './DisplayWrapper.vue';
11
12
  export { default as PDivider } from './DividerWrapper.vue';
12
13
  export { default as PFieldset } from './FieldsetWrapper.vue';
@@ -56,3 +57,4 @@ export { default as PTextList } from './TextListWrapper.vue';
56
57
  export { default as PTextListItem } from './TextListItemWrapper.vue';
57
58
  export { default as PTextareaWrapper } from './TextareaWrapperWrapper.vue';
58
59
  export { default as PToast } from './ToastWrapper.vue';
60
+ export { default as PWordmark } from './WordmarkWrapper.vue';
package/lib/types.d.ts CHANGED
@@ -194,17 +194,18 @@ declare const BUTTON_ARIA_ATTRIBUTES: readonly [
194
194
  "aria-haspopup"
195
195
  ];
196
196
  export declare type ButtonAriaAttribute = typeof BUTTON_ARIA_ATTRIBUTES[number];
197
- declare const BREAKPOINTS: readonly [
197
+ declare const breakpoints: readonly [
198
198
  "base",
199
199
  "xs",
200
200
  "s",
201
201
  "m",
202
202
  "l",
203
- "xl"
203
+ "xl",
204
+ "xxl"
204
205
  ];
205
- export declare type BreakpointKey = typeof BREAKPOINTS[number];
206
+ export type Breakpoint = (typeof breakpoints)[number];
206
207
  export declare type BreakpointValues<T> = {
207
- [key in BreakpointKey]?: T;
208
+ [key in Breakpoint]?: T;
208
209
  } & {
209
210
  base: T;
210
211
  };
@@ -529,8 +530,8 @@ declare const ACCORDION_SIZES: readonly [
529
530
  "small",
530
531
  "medium"
531
532
  ];
532
- export declare type AccordionSize = typeof ACCORDION_SIZES[number];
533
- export declare type AccordionChangeEvent = {
533
+ export declare type AccordionSize = (typeof ACCORDION_SIZES)[number];
534
+ export declare type AccordionUpdateEvent = {
534
535
  open: boolean;
535
536
  };
536
537
  export declare type AccordionTag = HeadingTag;
@@ -579,7 +580,7 @@ declare const CAROUSEL_ALIGN_HEADERS: readonly [
579
580
  ];
580
581
  export declare type CarouselAlignHeader = (typeof CAROUSEL_ALIGN_HEADERS)[number];
581
582
  export declare type CarouselInternationalization = Partial<Record<"prev" | "next" | "first" | "last" | "slideLabel" | "slide", string>>;
582
- export declare type CarouselChangeEvent = {
583
+ export declare type CarouselUpdateEvent = {
583
584
  activeIndex: number;
584
585
  previousIndex: number;
585
586
  };
@@ -597,6 +598,11 @@ declare const CONTENT_WRAPPER_WIDTHS: readonly [
597
598
  "full"
598
599
  ];
599
600
  export declare type ContentWrapperWidth = typeof CONTENT_WRAPPER_WIDTHS[number];
601
+ export declare type CrestTarget = LinkTarget;
602
+ declare const CREST_ARIA_ATTRIBUTES: readonly [
603
+ "aria-label"
604
+ ];
605
+ export declare type CrestAriaAttribute = (typeof CREST_ARIA_ATTRIBUTES)[number];
600
606
  declare const DISPLAY_TAGS: readonly [
601
607
  "h1",
602
608
  "h2",
@@ -932,8 +938,8 @@ declare const PAGINATION_NUMBER_OF_PAGE_LINKS: readonly [
932
938
  5,
933
939
  7
934
940
  ];
935
- export declare type PaginationMaxNumberOfPageLinks = typeof PAGINATION_NUMBER_OF_PAGE_LINKS[number];
936
- export declare type PaginationChangeEvent = {
941
+ export declare type PaginationMaxNumberOfPageLinks = (typeof PAGINATION_NUMBER_OF_PAGE_LINKS)[number];
942
+ export declare type PaginationUpdateEvent = {
937
943
  page: number;
938
944
  previousPage: number;
939
945
  };
@@ -954,8 +960,8 @@ declare const SEGMENTED_CONTROL_BACKGROUND_COLORS: readonly [
954
960
  "background-surface",
955
961
  "background-default"
956
962
  ];
957
- export declare type SegmentedControlBackgroundColor = typeof SEGMENTED_CONTROL_BACKGROUND_COLORS[number];
958
- export declare type SegmentedControlChangeEvent = {
963
+ export declare type SegmentedControlBackgroundColor = (typeof SEGMENTED_CONTROL_BACKGROUND_COLORS)[number];
964
+ export declare type SegmentedControlUpdateEvent = {
959
965
  value: string | number;
960
966
  };
961
967
  export declare type SegmentedControlItemIcon = LinkButtonIconName;
@@ -981,8 +987,8 @@ declare const STEPPER_HORIZONTAL_SIZES: readonly [
981
987
  "small",
982
988
  "medium"
983
989
  ];
984
- export declare type StepperHorizontalSize = typeof STEPPER_HORIZONTAL_SIZES[number];
985
- export declare type StepperHorizontalChangeEvent = {
990
+ export declare type StepperHorizontalSize = (typeof STEPPER_HORIZONTAL_SIZES)[number];
991
+ export declare type StepperHorizontalUpdateEvent = {
986
992
  activeStepIndex: number;
987
993
  };
988
994
  declare const STEPPER_ITEM_STATES: readonly [
@@ -992,7 +998,7 @@ declare const STEPPER_ITEM_STATES: readonly [
992
998
  ];
993
999
  export declare type StepperHorizontalItemState = typeof STEPPER_ITEM_STATES[number];
994
1000
  export declare type SwitchAlignLabel = AlignLabel;
995
- export declare type SwitchChangeEvent = {
1001
+ export declare type SwitchUpdateEvent = {
996
1002
  checked: boolean;
997
1003
  };
998
1004
  export declare type Direction = "asc" | "desc";
@@ -1001,19 +1007,19 @@ export declare type TableHeadCellSort = {
1001
1007
  active?: boolean;
1002
1008
  direction?: Direction;
1003
1009
  };
1004
- export declare type TableChangeEvent = TableHeadCellSort;
1010
+ export declare type TableUpdateEvent = TableHeadCellSort;
1005
1011
  declare const TABS_BAR_SIZES: readonly [
1006
1012
  "small",
1007
1013
  "medium"
1008
1014
  ];
1009
- export declare type TabsBarSize = typeof TABS_BAR_SIZES[number];
1015
+ export declare type TabsBarSize = (typeof TABS_BAR_SIZES)[number];
1010
1016
  declare const TABS_BAR_WEIGHTS: readonly [
1011
1017
  "regular",
1012
1018
  "semi-bold",
1013
1019
  "semibold"
1014
1020
  ];
1015
- export declare type TabsBarWeight = typeof TABS_BAR_WEIGHTS[number];
1016
- export declare type TabsBarChangeEvent = {
1021
+ export declare type TabsBarWeight = (typeof TABS_BAR_WEIGHTS)[number];
1022
+ export declare type TabsBarUpdateEvent = {
1017
1023
  activeTabIndex: number;
1018
1024
  };
1019
1025
  /** @deprecated */
@@ -1024,7 +1030,7 @@ export declare type TabsWeight = TabsBarWeight;
1024
1030
  /** @deprecated */
1025
1031
  export declare type TabsGradientColorScheme = TabsBarGradientColorScheme;
1026
1032
  export declare type TabsGradientColor = TabsBarGradientColor;
1027
- export declare type TabsChangeEvent = TabsBarChangeEvent;
1033
+ export declare type TabsUpdateEvent = TabsBarUpdateEvent;
1028
1034
  declare const TAG_DISMISSIBLE_COLORS: readonly [
1029
1035
  "background-base",
1030
1036
  "background-surface",
@@ -1100,4 +1106,14 @@ export declare type ToastMessage = {
1100
1106
  text: string;
1101
1107
  state?: ToastState;
1102
1108
  };
1109
+ declare const WORDMARK_SIZES: readonly [
1110
+ "small",
1111
+ "inherit"
1112
+ ];
1113
+ export declare type WordmarkSize = (typeof WORDMARK_SIZES)[number];
1114
+ export declare type WordmarkTarget = LinkTarget;
1115
+ declare const WORDMARK_ARIA_ATTRIBUTES: readonly [
1116
+ "aria-label"
1117
+ ];
1118
+ export declare type WordmarkAriaAttribute = (typeof WORDMARK_ARIA_ATTRIBUTES)[number];
1103
1119
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porsche-design-system/components-vue",
3
- "version": "3.0.0-alpha.4",
3
+ "version": "3.0.0-alpha.6",
4
4
  "description": "Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.",
5
5
  "keywords": [
6
6
  "porsche",
@@ -17,7 +17,7 @@
17
17
  "license": "SEE LICENSE IN LICENSE",
18
18
  "homepage": "https://designsystem.porsche.com",
19
19
  "dependencies": {
20
- "@porsche-design-system/components-js": "3.0.0-alpha.4"
20
+ "@porsche-design-system/components-js": "3.0.0-alpha.6"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "vue": ">=3.0.0 <4.0.0"
package/public-api.js CHANGED
@@ -1,127 +1,131 @@
1
- import { componentsReady as r } from "@porsche-design-system/components-js";
1
+ import { componentsReady as t } from "@porsche-design-system/components-js";
2
2
  import { default as a } from "./lib/components/AccordionWrapper.vue.js";
3
3
  import { default as l } from "./lib/components/BannerWrapper.vue.js";
4
- import { default as s } from "./lib/components/ButtonWrapper.vue.js";
4
+ import { default as p } from "./lib/components/ButtonWrapper.vue.js";
5
5
  import { default as m } from "./lib/components/ButtonGroupWrapper.vue.js";
6
6
  import { default as x } from "./lib/components/ButtonPureWrapper.vue.js";
7
7
  import { default as i } from "./lib/components/ButtonTileWrapper.vue.js";
8
8
  import { default as T } from "./lib/components/CarouselWrapper.vue.js";
9
9
  import { default as S } from "./lib/components/CheckboxWrapperWrapper.vue.js";
10
10
  import { default as b } from "./lib/components/ContentWrapperWrapper.vue.js";
11
- import { default as I } from "./lib/components/DisplayWrapper.vue.js";
11
+ import { default as C } from "./lib/components/CrestWrapper.vue.js";
12
+ import { default as W } from "./lib/components/DisplayWrapper.vue.js";
12
13
  import { default as H } from "./lib/components/DividerWrapper.vue.js";
13
- import { default as W } from "./lib/components/FieldsetWrapper.vue.js";
14
- import { default as y } from "./lib/components/FieldsetWrapperWrapper.vue.js";
15
- import { default as h } from "./lib/components/FlexWrapper.vue.js";
16
- import { default as M } from "./lib/components/FlexItemWrapper.vue.js";
17
- import { default as v } from "./lib/components/GridWrapper.vue.js";
18
- import { default as G } from "./lib/components/GridItemWrapper.vue.js";
19
- import { default as q } from "./lib/components/HeadingWrapper.vue.js";
20
- import { default as N } from "./lib/components/HeadlineWrapper.vue.js";
21
- import { default as E } from "./lib/components/IconWrapper.vue.js";
22
- import { default as K } from "./lib/components/InlineNotificationWrapper.vue.js";
23
- import { default as Q } from "./lib/components/LinkWrapper.vue.js";
24
- import { default as V } from "./lib/components/LinkPureWrapper.vue.js";
25
- import { default as Y } from "./lib/components/LinkSocialWrapper.vue.js";
26
- import { default as _ } from "./lib/components/LinkTileWrapper.vue.js";
27
- import { default as ee } from "./lib/components/LinkTileModelSignatureWrapper.vue.js";
28
- import { default as re } from "./lib/components/MarqueWrapper.vue.js";
29
- import { default as ae } from "./lib/components/ModalWrapper.vue.js";
30
- import { default as le } from "./lib/components/ModelSignatureWrapper.vue.js";
31
- import { default as se } from "./lib/components/PaginationWrapper.vue.js";
32
- import { default as me } from "./lib/components/PopoverWrapper.vue.js";
33
- import { default as xe } from "./lib/components/RadioButtonWrapperWrapper.vue.js";
34
- import { default as ie } from "./lib/components/ScrollerWrapper.vue.js";
35
- import { default as Te } from "./lib/components/SegmentedControlWrapper.vue.js";
36
- import { default as Se } from "./lib/components/SegmentedControlItemWrapper.vue.js";
37
- import { default as be } from "./lib/components/SelectWrapperWrapper.vue.js";
38
- import { default as Ie } from "./lib/components/SpinnerWrapper.vue.js";
14
+ import { default as y } from "./lib/components/FieldsetWrapper.vue.js";
15
+ import { default as h } from "./lib/components/FieldsetWrapperWrapper.vue.js";
16
+ import { default as M } from "./lib/components/FlexWrapper.vue.js";
17
+ import { default as v } from "./lib/components/FlexItemWrapper.vue.js";
18
+ import { default as G } from "./lib/components/GridWrapper.vue.js";
19
+ import { default as q } from "./lib/components/GridItemWrapper.vue.js";
20
+ import { default as N } from "./lib/components/HeadingWrapper.vue.js";
21
+ import { default as E } from "./lib/components/HeadlineWrapper.vue.js";
22
+ import { default as K } from "./lib/components/IconWrapper.vue.js";
23
+ import { default as Q } from "./lib/components/InlineNotificationWrapper.vue.js";
24
+ import { default as V } from "./lib/components/LinkWrapper.vue.js";
25
+ import { default as Y } from "./lib/components/LinkPureWrapper.vue.js";
26
+ import { default as _ } from "./lib/components/LinkSocialWrapper.vue.js";
27
+ import { default as ee } from "./lib/components/LinkTileWrapper.vue.js";
28
+ import { default as te } from "./lib/components/LinkTileModelSignatureWrapper.vue.js";
29
+ import { default as ae } from "./lib/components/MarqueWrapper.vue.js";
30
+ import { default as le } from "./lib/components/ModalWrapper.vue.js";
31
+ import { default as pe } from "./lib/components/ModelSignatureWrapper.vue.js";
32
+ import { default as me } from "./lib/components/PaginationWrapper.vue.js";
33
+ import { default as xe } from "./lib/components/PopoverWrapper.vue.js";
34
+ import { default as ie } from "./lib/components/RadioButtonWrapperWrapper.vue.js";
35
+ import { default as Te } from "./lib/components/ScrollerWrapper.vue.js";
36
+ import { default as Se } from "./lib/components/SegmentedControlWrapper.vue.js";
37
+ import { default as be } from "./lib/components/SegmentedControlItemWrapper.vue.js";
38
+ import { default as Ce } from "./lib/components/SelectWrapperWrapper.vue.js";
39
+ import { default as We } from "./lib/components/SpinnerWrapper.vue.js";
39
40
  import { default as He } from "./lib/components/StepperHorizontalWrapper.vue.js";
40
- import { default as We } from "./lib/components/StepperHorizontalItemWrapper.vue.js";
41
- import { default as ye } from "./lib/components/SwitchWrapper.vue.js";
42
- import { default as he } from "./lib/components/TableWrapper.vue.js";
43
- import { default as Me } from "./lib/components/TableBodyWrapper.vue.js";
44
- import { default as ve } from "./lib/components/TableCellWrapper.vue.js";
45
- import { default as Ge } from "./lib/components/TableHeadWrapper.vue.js";
46
- import { default as qe } from "./lib/components/TableHeadCellWrapper.vue.js";
47
- import { default as Ne } from "./lib/components/TableHeadRowWrapper.vue.js";
48
- import { default as Ee } from "./lib/components/TableRowWrapper.vue.js";
49
- import { default as Ke } from "./lib/components/TabsWrapper.vue.js";
50
- import { default as Qe } from "./lib/components/TabsBarWrapper.vue.js";
51
- import { default as Ve } from "./lib/components/TabsItemWrapper.vue.js";
52
- import { default as Ye } from "./lib/components/TagWrapper.vue.js";
53
- import { default as _e } from "./lib/components/TagDismissibleWrapper.vue.js";
54
- import { default as et } from "./lib/components/TextWrapper.vue.js";
55
- import { default as rt } from "./lib/components/TextFieldWrapperWrapper.vue.js";
56
- import { default as at } from "./lib/components/TextListWrapper.vue.js";
57
- import { default as lt } from "./lib/components/TextListItemWrapper.vue.js";
58
- import { default as st } from "./lib/components/TextareaWrapperWrapper.vue.js";
59
- import { default as mt } from "./lib/components/ToastWrapper.vue.js";
60
- import { useToastManager as xt } from "./utils.js";
61
- import { default as it } from "./PorscheDesignSystemProvider.vue.js";
62
- import { createPorscheDesignSystem as Tt, usePorscheDesignSystemPlugin as ct } from "./plugin.js";
41
+ import { default as ye } from "./lib/components/StepperHorizontalItemWrapper.vue.js";
42
+ import { default as he } from "./lib/components/SwitchWrapper.vue.js";
43
+ import { default as Me } from "./lib/components/TableWrapper.vue.js";
44
+ import { default as ve } from "./lib/components/TableBodyWrapper.vue.js";
45
+ import { default as Ge } from "./lib/components/TableCellWrapper.vue.js";
46
+ import { default as qe } from "./lib/components/TableHeadWrapper.vue.js";
47
+ import { default as Ne } from "./lib/components/TableHeadCellWrapper.vue.js";
48
+ import { default as Ee } from "./lib/components/TableHeadRowWrapper.vue.js";
49
+ import { default as Ke } from "./lib/components/TableRowWrapper.vue.js";
50
+ import { default as Qe } from "./lib/components/TabsWrapper.vue.js";
51
+ import { default as Ve } from "./lib/components/TabsBarWrapper.vue.js";
52
+ import { default as Ye } from "./lib/components/TabsItemWrapper.vue.js";
53
+ import { default as _e } from "./lib/components/TagWrapper.vue.js";
54
+ import { default as er } from "./lib/components/TagDismissibleWrapper.vue.js";
55
+ import { default as tr } from "./lib/components/TextWrapper.vue.js";
56
+ import { default as ar } from "./lib/components/TextFieldWrapperWrapper.vue.js";
57
+ import { default as lr } from "./lib/components/TextListWrapper.vue.js";
58
+ import { default as pr } from "./lib/components/TextListItemWrapper.vue.js";
59
+ import { default as mr } from "./lib/components/TextareaWrapperWrapper.vue.js";
60
+ import { default as xr } from "./lib/components/ToastWrapper.vue.js";
61
+ import { default as ir } from "./lib/components/WordmarkWrapper.vue.js";
62
+ import { useToastManager as Tr } from "./utils.js";
63
+ import { default as Sr } from "./PorscheDesignSystemProvider.vue.js";
64
+ import { createPorscheDesignSystem as br, usePorscheDesignSystemPlugin as Br } from "./plugin.js";
63
65
  export {
64
66
  a as PAccordion,
65
67
  l as PBanner,
66
- s as PButton,
68
+ p as PButton,
67
69
  m as PButtonGroup,
68
70
  x as PButtonPure,
69
71
  i as PButtonTile,
70
72
  T as PCarousel,
71
73
  S as PCheckboxWrapper,
72
74
  b as PContentWrapper,
73
- I as PDisplay,
75
+ C as PCrest,
76
+ W as PDisplay,
74
77
  H as PDivider,
75
- W as PFieldset,
76
- y as PFieldsetWrapper,
77
- h as PFlex,
78
- M as PFlexItem,
79
- v as PGrid,
80
- G as PGridItem,
81
- q as PHeading,
82
- N as PHeadline,
83
- E as PIcon,
84
- K as PInlineNotification,
85
- Q as PLink,
86
- V as PLinkPure,
87
- Y as PLinkSocial,
88
- _ as PLinkTile,
89
- ee as PLinkTileModelSignature,
90
- re as PMarque,
91
- ae as PModal,
92
- le as PModelSignature,
93
- se as PPagination,
94
- me as PPopover,
95
- xe as PRadioButtonWrapper,
96
- ie as PScroller,
97
- Te as PSegmentedControl,
98
- Se as PSegmentedControlItem,
99
- be as PSelectWrapper,
100
- Ie as PSpinner,
78
+ y as PFieldset,
79
+ h as PFieldsetWrapper,
80
+ M as PFlex,
81
+ v as PFlexItem,
82
+ G as PGrid,
83
+ q as PGridItem,
84
+ N as PHeading,
85
+ E as PHeadline,
86
+ K as PIcon,
87
+ Q as PInlineNotification,
88
+ V as PLink,
89
+ Y as PLinkPure,
90
+ _ as PLinkSocial,
91
+ ee as PLinkTile,
92
+ te as PLinkTileModelSignature,
93
+ ae as PMarque,
94
+ le as PModal,
95
+ pe as PModelSignature,
96
+ me as PPagination,
97
+ xe as PPopover,
98
+ ie as PRadioButtonWrapper,
99
+ Te as PScroller,
100
+ Se as PSegmentedControl,
101
+ be as PSegmentedControlItem,
102
+ Ce as PSelectWrapper,
103
+ We as PSpinner,
101
104
  He as PStepperHorizontal,
102
- We as PStepperHorizontalItem,
103
- ye as PSwitch,
104
- he as PTable,
105
- Me as PTableBody,
106
- ve as PTableCell,
107
- Ge as PTableHead,
108
- qe as PTableHeadCell,
109
- Ne as PTableHeadRow,
110
- Ee as PTableRow,
111
- Ke as PTabs,
112
- Qe as PTabsBar,
113
- Ve as PTabsItem,
114
- Ye as PTag,
115
- _e as PTagDismissible,
116
- et as PText,
117
- rt as PTextFieldWrapper,
118
- at as PTextList,
119
- lt as PTextListItem,
120
- st as PTextareaWrapper,
121
- mt as PToast,
122
- it as PorscheDesignSystemProvider,
123
- r as componentsReady,
124
- Tt as createPorscheDesignSystem,
125
- ct as usePorscheDesignSystemPlugin,
126
- xt as useToastManager
105
+ ye as PStepperHorizontalItem,
106
+ he as PSwitch,
107
+ Me as PTable,
108
+ ve as PTableBody,
109
+ Ge as PTableCell,
110
+ qe as PTableHead,
111
+ Ne as PTableHeadCell,
112
+ Ee as PTableHeadRow,
113
+ Ke as PTableRow,
114
+ Qe as PTabs,
115
+ Ve as PTabsBar,
116
+ Ye as PTabsItem,
117
+ _e as PTag,
118
+ er as PTagDismissible,
119
+ tr as PText,
120
+ ar as PTextFieldWrapper,
121
+ lr as PTextList,
122
+ pr as PTextListItem,
123
+ mr as PTextareaWrapper,
124
+ xr as PToast,
125
+ ir as PWordmark,
126
+ Sr as PorscheDesignSystemProvider,
127
+ t as componentsReady,
128
+ br as createPorscheDesignSystem,
129
+ Br as usePorscheDesignSystemPlugin,
130
+ Tr as useToastManager
127
131
  };