@porsche-design-system/components-angular 4.0.0-beta.0 → 4.0.0-beta.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porsche-design-system/components-angular",
3
- "version": "4.0.0-beta.0",
3
+ "version": "4.0.0-beta.1",
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": "4.0.0-beta.0",
20
+ "@porsche-design-system/components-js": "4.0.0-beta.1",
21
21
  "tslib": "^2.8.1"
22
22
  },
23
23
  "peerDependencies": {
@@ -76,6 +76,17 @@
76
76
  "types": "./testing/index.d.ts",
77
77
  "default": "./testing/index.cjs"
78
78
  },
79
+ "./styles": {
80
+ "sass": "./scss/_index.scss",
81
+ "types": "./emotion/esm/index.d.ts",
82
+ "import": "./emotion/esm/index.mjs",
83
+ "default": "./emotion/cjs/index.cjs"
84
+ },
85
+ "./styles/vanilla-extract": {
86
+ "types": "./vanilla-extract/esm/index.d.ts",
87
+ "import": "./vanilla-extract/esm/index.mjs",
88
+ "default": "./vanilla-extract/cjs/index.cjs"
89
+ },
79
90
  "./tailwindcss": "./tailwindcss/index.css",
80
91
  "./tailwindcss/index.css": "./tailwindcss/index.css",
81
92
  "./tailwindcss/index": "./tailwindcss/index.css",
@@ -639,27 +639,6 @@ declare const FLAG_NAMES: readonly [
639
639
  "za"
640
640
  ];
641
641
  type FlagName = typeof FLAG_NAMES[number];
642
- declare const FORM_STATES: readonly [
643
- "none",
644
- "error",
645
- "success"
646
- ];
647
- type FormState = (typeof FORM_STATES)[number];
648
- declare const BUTTON_ARIA_ATTRIBUTES: readonly [
649
- "aria-label",
650
- "aria-description",
651
- "aria-expanded",
652
- "aria-pressed",
653
- "aria-haspopup"
654
- ];
655
- type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
656
- declare const LINK_ARIA_ATTRIBUTES: readonly [
657
- "aria-label",
658
- "aria-description",
659
- "aria-current",
660
- "aria-haspopup"
661
- ];
662
- type LinkAriaAttribute = (typeof LINK_ARIA_ATTRIBUTES)[number];
663
642
  declare const breakpoints: readonly [
664
643
  "base",
665
644
  "xs",
@@ -676,75 +655,6 @@ type BreakpointValues<T> = {
676
655
  base: T;
677
656
  };
678
657
  type BreakpointCustomizable<T> = T | BreakpointValues<T>;
679
- declare const LINK_TARGETS: readonly [
680
- "_self",
681
- "_blank",
682
- "_parent",
683
- "_top"
684
- ];
685
- type LinkTarget = (typeof LINK_TARGETS)[number] | string;
686
- declare const SCROLLER_ARIA_ATTRIBUTES: readonly [
687
- "role"
688
- ];
689
- type ScrollerAriaAttribute = (typeof SCROLLER_ARIA_ATTRIBUTES)[number];
690
- type ScrollerScrollToPosition = {
691
- scrollPosition: number;
692
- isSmooth?: boolean;
693
- } | string;
694
- declare const SCROLL_INDICATOR_POSITIONS: readonly [
695
- "top",
696
- "center"
697
- ];
698
- type ScrollerAlignScrollIndicator = (typeof SCROLL_INDICATOR_POSITIONS)[number];
699
- type MultiSelectState = FormState;
700
- type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
701
- type MultiSelectChangeEventDetail = {
702
- name: string;
703
- value: string[];
704
- };
705
- type MultiSelectToggleEventDetail = {
706
- open: boolean;
707
- };
708
- type SelectState = FormState;
709
- type SelectDropdownDirection = SelectComponentsDropdownDirection;
710
- type SelectChangeEventDetail = {
711
- name: string;
712
- value: string;
713
- };
714
- type SelectToggleEventDetail = {
715
- open: boolean;
716
- };
717
- declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
718
- "down",
719
- "up",
720
- "auto"
721
- ];
722
- type SelectComponentsDropdownDirection = (typeof SELECT_DROPDOWN_DIRECTIONS)[number];
723
- declare const TILE_ASPECT_RATIOS: readonly [
724
- "1/1",
725
- "4/3",
726
- "3/4",
727
- "16/9",
728
- "9/16",
729
- "auto"
730
- ];
731
- type TileAspectRatio = (typeof TILE_ASPECT_RATIOS)[number];
732
- declare const TILE_SIZES: readonly [
733
- "medium",
734
- "large",
735
- "inherit"
736
- ];
737
- type TileSize = (typeof TILE_SIZES)[number];
738
- declare const TILE_WEIGHTS: readonly [
739
- "regular",
740
- "semi-bold"
741
- ];
742
- type TileWeight = (typeof TILE_WEIGHTS)[number];
743
- declare const TILE_ALIGNS: readonly [
744
- "top",
745
- "bottom"
746
- ];
747
- type TileAlign = (typeof TILE_ALIGNS)[number];
748
658
  declare const HEADING_SIZES: readonly [
749
659
  "small",
750
660
  "medium",
@@ -798,22 +708,29 @@ declare const TYPOGRAPHY_TEXT_WEIGHTS: readonly [
798
708
  "bold"
799
709
  ];
800
710
  type TypographyTextWeight = (typeof TYPOGRAPHY_TEXT_WEIGHTS)[number];
801
- declare const ALIGN_LABELS: readonly [
802
- "start",
803
- "end"
711
+ declare const LINK_BUTTON_VARIANTS: readonly [
712
+ "primary",
713
+ "secondary"
804
714
  ];
805
- type AlignLabel = (typeof ALIGN_LABELS)[number];
715
+ type LinkButtonVariant = (typeof LINK_BUTTON_VARIANTS)[number];
806
716
  declare const BUTTON_TYPES: readonly [
807
717
  "button",
808
718
  "submit",
809
719
  "reset"
810
720
  ];
811
721
  type ButtonType = (typeof BUTTON_TYPES)[number];
812
- declare const LINK_BUTTON_VARIANTS: readonly [
813
- "primary",
814
- "secondary"
722
+ declare const ALIGN_LABELS: readonly [
723
+ "start",
724
+ "end"
815
725
  ];
816
- type LinkButtonVariant = (typeof LINK_BUTTON_VARIANTS)[number];
726
+ type AlignLabel = (typeof ALIGN_LABELS)[number];
727
+ declare const LINK_TARGETS: readonly [
728
+ "_self",
729
+ "_blank",
730
+ "_parent",
731
+ "_top"
732
+ ];
733
+ type LinkTarget = (typeof LINK_TARGETS)[number] | string;
817
734
  type LinkButtonIconName = IconName | "none";
818
735
  type ButtonVariant = LinkButtonVariant;
819
736
  type LinkVariant = LinkButtonVariant;
@@ -832,15 +749,112 @@ type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAttribute
832
749
  type SelectedAriaRole<T> = {
833
750
  role: Extract<AriaRole, T>;
834
751
  };
835
- declare const ACCORDION_SIZES: readonly [
836
- "small",
837
- "medium"
752
+ declare const FORM_STATES: readonly [
753
+ "none",
754
+ "error",
755
+ "success"
838
756
  ];
839
- type AccordionSize = (typeof ACCORDION_SIZES)[number];
757
+ type FormState = (typeof FORM_STATES)[number];
758
+ declare const BUTTON_ARIA_ATTRIBUTES: readonly [
759
+ "aria-label",
760
+ "aria-description",
761
+ "aria-expanded",
762
+ "aria-pressed",
763
+ "aria-haspopup"
764
+ ];
765
+ type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
766
+ declare const LINK_ARIA_ATTRIBUTES: readonly [
767
+ "aria-label",
768
+ "aria-description",
769
+ "aria-current",
770
+ "aria-haspopup"
771
+ ];
772
+ type LinkAriaAttribute = (typeof LINK_ARIA_ATTRIBUTES)[number];
773
+ declare const SCROLLER_ARIA_ATTRIBUTES: readonly [
774
+ "role"
775
+ ];
776
+ type ScrollerAriaAttribute = (typeof SCROLLER_ARIA_ATTRIBUTES)[number];
777
+ type ScrollerScrollToPosition = {
778
+ scrollPosition: number;
779
+ isSmooth?: boolean;
780
+ } | string;
781
+ declare const SCROLL_INDICATOR_POSITIONS: readonly [
782
+ "top",
783
+ "center"
784
+ ];
785
+ type ScrollerAlignScrollIndicator = (typeof SCROLL_INDICATOR_POSITIONS)[number];
786
+ type MultiSelectState = FormState;
787
+ type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
788
+ type MultiSelectChangeEventDetail = {
789
+ name: string;
790
+ value: string[];
791
+ };
792
+ type MultiSelectToggleEventDetail = {
793
+ open: boolean;
794
+ };
795
+ type SelectState = FormState;
796
+ type SelectDropdownDirection = SelectComponentsDropdownDirection;
797
+ type SelectChangeEventDetail = {
798
+ name: string;
799
+ value: string;
800
+ };
801
+ type SelectToggleEventDetail = {
802
+ open: boolean;
803
+ };
804
+ declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
805
+ "down",
806
+ "up",
807
+ "auto"
808
+ ];
809
+ type SelectComponentsDropdownDirection = (typeof SELECT_DROPDOWN_DIRECTIONS)[number];
810
+ declare const TILE_ASPECT_RATIOS: readonly [
811
+ "1/1",
812
+ "4/3",
813
+ "3/4",
814
+ "16/9",
815
+ "9/16",
816
+ "auto"
817
+ ];
818
+ type TileAspectRatio = (typeof TILE_ASPECT_RATIOS)[number];
819
+ declare const TILE_SIZES: readonly [
820
+ "medium",
821
+ "large",
822
+ "inherit"
823
+ ];
824
+ type TileSize = (typeof TILE_SIZES)[number];
825
+ declare const TILE_WEIGHTS: readonly [
826
+ "regular",
827
+ "semi-bold"
828
+ ];
829
+ type TileWeight = (typeof TILE_WEIGHTS)[number];
830
+ declare const TILE_ALIGNS: readonly [
831
+ "top",
832
+ "bottom"
833
+ ];
834
+ type TileAlign = (typeof TILE_ALIGNS)[number];
835
+ declare const ACCORDIONS_BACKGROUNDS: readonly [
836
+ "canvas",
837
+ "surface",
838
+ "frosted",
839
+ "none"
840
+ ];
841
+ type AccordionBackground = (typeof ACCORDIONS_BACKGROUNDS)[number];
842
+ declare const ACCORDION_ALIGN_MARKERS: readonly [
843
+ "start",
844
+ "end"
845
+ ];
846
+ type AccordionAlignMarker = (typeof ACCORDION_ALIGN_MARKERS)[number];
840
847
  type AccordionUpdateEventDetail = {
841
848
  open: boolean;
842
849
  };
850
+ /** @deprecated */
843
851
  type AccordionHeadingTag = HeadingTag;
852
+ declare const ACCORDION_SIZES: readonly [
853
+ "small",
854
+ "medium"
855
+ ];
856
+ /** @deprecated */
857
+ type AccordionSize = (typeof ACCORDION_SIZES)[number];
844
858
  declare const BANNER_STATES: readonly [
845
859
  "info",
846
860
  "success",
@@ -2014,15 +2028,20 @@ declare class PTextarea extends BaseComponent implements ControlValueAccessor {
2014
2028
  }
2015
2029
 
2016
2030
  declare class PAccordion extends BaseComponent {
2031
+ alignMarker?: AccordionAlignMarker;
2032
+ background?: AccordionBackground;
2017
2033
  compact?: boolean;
2034
+ /** @deprecated */
2018
2035
  heading?: string;
2036
+ /** @deprecated */
2019
2037
  headingTag?: AccordionHeadingTag;
2020
2038
  open?: boolean;
2039
+ /** @deprecated */
2021
2040
  size?: BreakpointCustomizable<AccordionSize>;
2022
2041
  sticky?: boolean;
2023
2042
  update: EventEmitter<CustomEvent<AccordionUpdateEventDetail>>;
2024
2043
  static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
2025
- static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion,[p-accordion]", never, { "compact": { "alias": "compact"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
2044
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion,[p-accordion]", never, { "alignMarker": { "alias": "alignMarker"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
2026
2045
  }
2027
2046
 
2028
2047
  declare class PBanner extends BaseComponent {
@@ -2598,4 +2617,4 @@ declare class ToastManager {
2598
2617
  }
2599
2618
 
2600
2619
  export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFlag, PFlyout, PHeading, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputMonth, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PInputWeek, PLink, PLinkPure, PLinkTile, PLinkTileProduct, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioGroup, PRadioGroupOption, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextList, PTextListItem, PTextarea, PToast, PWordmark, PorscheDesignSystemModule, ToastManager };
2601
- export type { AccordionHeadingTag, AccordionSize, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasBackground, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FlagAriaAttribute, FlagName, FlagSize, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutBackground, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, InputMonthBlurEventDetail, InputMonthChangeEventDetail, InputMonthInputEventDetail, InputMonthState, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, InputTelBlurEventDetail, InputTelChangeEventDetail, InputTelInputEventDetail, InputTelState, InputTextBlurEventDetail, InputTextChangeEventDetail, InputTextInputEventDetail, InputTextState, InputTimeBlurEventDetail, InputTimeChangeEventDetail, InputTimeInputEventDetail, InputTimeState, InputUrlBlurEventDetail, InputUrlChangeEventDetail, InputUrlInputEventDetail, InputUrlState, InputWeekBlurEventDetail, InputWeekChangeEventDetail, InputWeekInputEventDetail, InputWeekState, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileProductAspectRatio, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, ModalAriaAttribute, ModalBackdrop, ModalBackground, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectToggleEventDetail, PaginationInternationalization, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerScrollToPosition, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlState, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectToggleEventDetail, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetBackground, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEventDetail, TabsBarSize, TabsBarUpdateEventDetail, TabsBarWeight, TabsSize, TabsUpdateEventDetail, TabsWeight, TagDismissibleAriaAttribute, TagIcon, TagVariant, TextAlign, TextColor, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TileAlign, TileAspectRatio, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
2620
+ export type { AccordionAlignMarker, AccordionBackground, AccordionHeadingTag, AccordionSize, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasBackground, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FlagAriaAttribute, FlagName, FlagSize, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutBackground, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, InputMonthBlurEventDetail, InputMonthChangeEventDetail, InputMonthInputEventDetail, InputMonthState, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, InputTelBlurEventDetail, InputTelChangeEventDetail, InputTelInputEventDetail, InputTelState, InputTextBlurEventDetail, InputTextChangeEventDetail, InputTextInputEventDetail, InputTextState, InputTimeBlurEventDetail, InputTimeChangeEventDetail, InputTimeInputEventDetail, InputTimeState, InputUrlBlurEventDetail, InputUrlChangeEventDetail, InputUrlInputEventDetail, InputUrlState, InputWeekBlurEventDetail, InputWeekChangeEventDetail, InputWeekInputEventDetail, InputWeekState, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileProductAspectRatio, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, ModalAriaAttribute, ModalBackdrop, ModalBackground, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectToggleEventDetail, PaginationInternationalization, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerScrollToPosition, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlState, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectToggleEventDetail, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetBackground, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEventDetail, TabsBarSize, TabsBarUpdateEventDetail, TabsBarWeight, TabsSize, TabsUpdateEventDetail, TabsWeight, TagDismissibleAriaAttribute, TagIcon, TagVariant, TextAlign, TextColor, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TileAlign, TileAspectRatio, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };