@porsche-design-system/components-angular 3.27.3 → 3.28.0-rc.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/CHANGELOG.md CHANGED
@@ -14,6 +14,36 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
14
14
 
15
15
  ### [Unreleased]
16
16
 
17
+ ### [3.28.0-rc.1] - 2025-04-14
18
+
19
+ #### Fixed
20
+
21
+ - `Drilldown`, `Drilldown Item`: visibility for slotted content (experimental)
22
+ ([#3833](https://github.com/porsche-design-system/porsche-design-system/pull/3833))
23
+
24
+ ### [3.28.0-rc.0] - 2025-04-11
25
+
26
+ #### Added
27
+
28
+ - `Input Password`: ([#3763](https://github.com/porsche-design-system/porsche-design-system/pull/3763))
29
+ - `Drilldown`, `Drilldown Item`: CSS variable `--p-drilldown-grid-template` and `--p-drilldown-gap` (experimental)
30
+ ([#3822](https://github.com/porsche-design-system/porsche-design-system/pull/3822))
31
+ - `Drilldown Item`: named slot `button` and `header` (experimental)
32
+ ([#3822](https://github.com/porsche-design-system/porsche-design-system/pull/3822))
33
+ - `Drilldown Link`: (experimental) ([#3822](https://github.com/porsche-design-system/porsche-design-system/pull/3822))
34
+
35
+ #### Changed
36
+
37
+ - **Breaking Change** `Flyout Multilevel`, `Flyout Multilevel Item`: renamed (experimental) component to `Drilldown` and
38
+ `Drilldown Item` ([#3822](https://github.com/porsche-design-system/porsche-design-system/pull/3822))
39
+ - **Breaking Change** `Drilldown Item` doesn't style slotted `<a>` tags anymore, instead use `Drilldown Link` or a
40
+ custom link ([#3822](https://github.com/porsche-design-system/porsche-design-system/pull/3822))
41
+
42
+ #### Fixed
43
+
44
+ - `aria` prop now supports a colon inside a value, e.g. `aria="{ 'aria-label': 'Always remember: yes you can!' }"`
45
+ ([#3680](https://github.com/porsche-design-system/porsche-design-system/pull/3680))
46
+
17
47
  ### [3.27.3] - 2025-03-21
18
48
 
19
49
  ### [3.27.2] - 2025-03-20
@@ -14,19 +14,21 @@ export * from './content-wrapper.wrapper';
14
14
  export * from './crest.wrapper';
15
15
  export * from './display.wrapper';
16
16
  export * from './divider.wrapper';
17
+ export * from './drilldown.wrapper';
18
+ export * from './drilldown-item.wrapper';
19
+ export * from './drilldown-link.wrapper';
17
20
  export * from './fieldset.wrapper';
18
21
  export * from './fieldset-wrapper.wrapper';
19
22
  export * from './flex.wrapper';
20
23
  export * from './flex-item.wrapper';
21
24
  export * from './flyout.wrapper';
22
- export * from './flyout-multilevel.wrapper';
23
- export * from './flyout-multilevel-item.wrapper';
24
25
  export * from './grid.wrapper';
25
26
  export * from './grid-item.wrapper';
26
27
  export * from './heading.wrapper';
27
28
  export * from './headline.wrapper';
28
29
  export * from './icon.wrapper';
29
30
  export * from './inline-notification.wrapper';
31
+ export * from './input-password.wrapper';
30
32
  export * from './link.wrapper';
31
33
  export * from './link-pure.wrapper';
32
34
  export * from './link-social.wrapper';
@@ -0,0 +1,11 @@
1
+ import { BaseComponent } from '../../utils';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PDrilldownItem extends BaseComponent {
4
+ cascade?: boolean;
5
+ identifier: string;
6
+ label?: string;
7
+ primary?: boolean;
8
+ secondary?: boolean;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDrilldownItem, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDrilldownItem, "p-drilldown-item,[p-drilldown-item]", never, { "cascade": { "alias": "cascade"; "required": false; }; "identifier": { "alias": "identifier"; "required": false; }; "label": { "alias": "label"; "required": false; }; "primary": { "alias": "primary"; "required": false; }; "secondary": { "alias": "secondary"; "required": false; }; }, {}, never, ["*"], false, never>;
11
+ }
@@ -0,0 +1,13 @@
1
+ import { BaseComponent } from '../../utils';
2
+ import type { SelectedAriaAttributes, DrilldownLinkAriaAttribute, DrilldownLinkTarget } from '../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PDrilldownLink extends BaseComponent {
5
+ active?: boolean;
6
+ aria?: SelectedAriaAttributes<DrilldownLinkAriaAttribute>;
7
+ download?: string;
8
+ href?: string;
9
+ rel?: string;
10
+ target?: DrilldownLinkTarget;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDrilldownLink, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDrilldownLink, "p-drilldown-link,[p-drilldown-link]", never, { "active": { "alias": "active"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
13
+ }
@@ -0,0 +1,14 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { BaseComponentWithTheme } from '../../utils';
3
+ import type { SelectedAriaAttributes, DrilldownAriaAttribute, Theme } from '../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class PDrilldown extends BaseComponentWithTheme {
6
+ activeIdentifier?: string | undefined;
7
+ aria?: SelectedAriaAttributes<DrilldownAriaAttribute>;
8
+ open?: boolean;
9
+ theme?: Theme;
10
+ dismiss: EventEmitter<CustomEvent<void>>;
11
+ update: EventEmitter<CustomEvent<import("../types").DrilldownUpdate>>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDrilldown, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDrilldown, "p-drilldown,[p-drilldown]", never, { "activeIdentifier": { "alias": "activeIdentifier"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "open": { "alias": "open"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "dismiss": "dismiss"; "update": "update"; }, never, ["*"], false, never>;
14
+ }
@@ -0,0 +1,29 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { BaseComponentWithTheme } from '../../utils';
3
+ import type { InputPasswordAutoComplete, BreakpointCustomizable, InputPasswordState, Theme } from '../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class PInputPassword extends BaseComponentWithTheme {
6
+ autoComplete?: InputPasswordAutoComplete;
7
+ compact?: boolean;
8
+ description?: string;
9
+ disabled?: boolean;
10
+ form?: string;
11
+ hideLabel?: BreakpointCustomizable<boolean>;
12
+ label?: string;
13
+ maxLength?: number;
14
+ message?: string;
15
+ minLength?: number;
16
+ name: string;
17
+ placeholder?: string;
18
+ readOnly?: boolean;
19
+ required?: boolean;
20
+ state?: InputPasswordState;
21
+ theme?: Theme;
22
+ toggle?: boolean;
23
+ value?: string;
24
+ blur: EventEmitter<CustomEvent<Event>>;
25
+ change: EventEmitter<CustomEvent<Event>>;
26
+ input: EventEmitter<CustomEvent<InputEvent>>;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputPassword, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputPassword, "p-input-password,[p-input-password]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
29
+ }
@@ -859,6 +859,18 @@ declare const DIVIDER_DIRECTIONS: readonly [
859
859
  ];
860
860
  export type DividerDirection = (typeof DIVIDER_DIRECTIONS)[number];
861
861
  export type DividerOrientation = DividerDirection;
862
+ declare const DRILLDOWN_ARIA_ATTRIBUTES: readonly [
863
+ "aria-label"
864
+ ];
865
+ export type DrilldownAriaAttribute = (typeof DRILLDOWN_ARIA_ATTRIBUTES)[number];
866
+ export type DrilldownUpdate = {
867
+ activeIdentifier: string | undefined;
868
+ };
869
+ /** @deprecated */
870
+ export type DrilldownUpdateEvent = DrilldownUpdate;
871
+ export type DrilldownUpdateEventDetail = DrilldownUpdateEvent;
872
+ export type DrilldownLinkTarget = LinkTarget;
873
+ export type DrilldownLinkAriaAttribute = LinkAriaAttribute;
862
874
  declare const FIELDSET_LABEL_SIZES: readonly [
863
875
  "small",
864
876
  "medium"
@@ -971,16 +983,6 @@ declare const FLYOUT_ARIA_ATTRIBUTES: readonly [
971
983
  export type FlyoutAriaAttribute = (typeof FLYOUT_ARIA_ATTRIBUTES)[number];
972
984
  export type FlyoutMotionVisibleEndEventDetail = TransitionEvent;
973
985
  export type FlyoutMotionHiddenEndEventDetail = TransitionEvent;
974
- declare const FLYOUT_MULTILEVEL_ARIA_ATTRIBUTES: readonly [
975
- "aria-label"
976
- ];
977
- export type FlyoutMultilevelAriaAttribute = (typeof FLYOUT_MULTILEVEL_ARIA_ATTRIBUTES)[number];
978
- export type FlyoutMultilevelUpdate = {
979
- activeIdentifier: string | undefined;
980
- };
981
- /** @deprecated */
982
- export type FlyoutMultilevelUpdateEvent = FlyoutMultilevelUpdate;
983
- export type FlyoutMultilevelUpdateEventDetail = FlyoutMultilevelUpdateEvent;
984
986
  declare const GRID_DIRECTIONS: readonly [
985
987
  "row",
986
988
  "row-reverse",
@@ -1086,6 +1088,18 @@ declare const ICON_COLORS: readonly [
1086
1088
  "state-disabled"
1087
1089
  ];
1088
1090
  export type IconColor = (typeof ICON_COLORS)[number];
1091
+ export type InputPasswordState = FormState;
1092
+ declare const INPUT_PASSWORD_AUTO_COMPLETE: readonly [
1093
+ "off",
1094
+ "on",
1095
+ "current-password",
1096
+ "new-password",
1097
+ ""
1098
+ ];
1099
+ export type InputPasswordAutoComplete = (typeof INPUT_PASSWORD_AUTO_COMPLETE)[number];
1100
+ export type InputPasswordChangeEventDetail = Event;
1101
+ export type InputPasswordBlurEventDetail = Event;
1102
+ export type InputPasswordInputEventDetail = InputEvent;
1089
1103
  export type LinkIcon = LinkButtonIconName;
1090
1104
  export type LinkPureIcon = LinkButtonIconName;
1091
1105
  export type LinkPureAriaAttribute = LinkAriaAttribute;
@@ -15,66 +15,68 @@ import * as i11 from "./lib/components/content-wrapper.wrapper";
15
15
  import * as i12 from "./lib/components/crest.wrapper";
16
16
  import * as i13 from "./lib/components/display.wrapper";
17
17
  import * as i14 from "./lib/components/divider.wrapper";
18
- import * as i15 from "./lib/components/fieldset.wrapper";
19
- import * as i16 from "./lib/components/fieldset-wrapper.wrapper";
20
- import * as i17 from "./lib/components/flex.wrapper";
21
- import * as i18 from "./lib/components/flex-item.wrapper";
22
- import * as i19 from "./lib/components/flyout.wrapper";
23
- import * as i20 from "./lib/components/flyout-multilevel.wrapper";
24
- import * as i21 from "./lib/components/flyout-multilevel-item.wrapper";
25
- import * as i22 from "./lib/components/grid.wrapper";
26
- import * as i23 from "./lib/components/grid-item.wrapper";
27
- import * as i24 from "./lib/components/heading.wrapper";
28
- import * as i25 from "./lib/components/headline.wrapper";
29
- import * as i26 from "./lib/components/icon.wrapper";
30
- import * as i27 from "./lib/components/inline-notification.wrapper";
31
- import * as i28 from "./lib/components/link.wrapper";
32
- import * as i29 from "./lib/components/link-pure.wrapper";
33
- import * as i30 from "./lib/components/link-social.wrapper";
34
- import * as i31 from "./lib/components/link-tile.wrapper";
35
- import * as i32 from "./lib/components/link-tile-model-signature.wrapper";
36
- import * as i33 from "./lib/components/link-tile-product.wrapper";
37
- import * as i34 from "./lib/components/marque.wrapper";
38
- import * as i35 from "./lib/components/modal.wrapper";
39
- import * as i36 from "./lib/components/model-signature.wrapper";
40
- import * as i37 from "./lib/components/multi-select.wrapper";
41
- import * as i38 from "./lib/components/multi-select-option.wrapper";
42
- import * as i39 from "./lib/components/optgroup.wrapper";
43
- import * as i40 from "./lib/components/pagination.wrapper";
44
- import * as i41 from "./lib/components/pin-code.wrapper";
45
- import * as i42 from "./lib/components/popover.wrapper";
46
- import * as i43 from "./lib/components/radio-button-wrapper.wrapper";
47
- import * as i44 from "./lib/components/scroller.wrapper";
48
- import * as i45 from "./lib/components/segmented-control.wrapper";
49
- import * as i46 from "./lib/components/segmented-control-item.wrapper";
50
- import * as i47 from "./lib/components/select.wrapper";
51
- import * as i48 from "./lib/components/select-option.wrapper";
52
- import * as i49 from "./lib/components/select-wrapper.wrapper";
53
- import * as i50 from "./lib/components/sheet.wrapper";
54
- import * as i51 from "./lib/components/spinner.wrapper";
55
- import * as i52 from "./lib/components/stepper-horizontal.wrapper";
56
- import * as i53 from "./lib/components/stepper-horizontal-item.wrapper";
57
- import * as i54 from "./lib/components/switch.wrapper";
58
- import * as i55 from "./lib/components/table.wrapper";
59
- import * as i56 from "./lib/components/table-body.wrapper";
60
- import * as i57 from "./lib/components/table-cell.wrapper";
61
- import * as i58 from "./lib/components/table-head.wrapper";
62
- import * as i59 from "./lib/components/table-head-cell.wrapper";
63
- import * as i60 from "./lib/components/table-head-row.wrapper";
64
- import * as i61 from "./lib/components/table-row.wrapper";
65
- import * as i62 from "./lib/components/tabs.wrapper";
66
- import * as i63 from "./lib/components/tabs-bar.wrapper";
67
- import * as i64 from "./lib/components/tabs-item.wrapper";
68
- import * as i65 from "./lib/components/tag.wrapper";
69
- import * as i66 from "./lib/components/tag-dismissible.wrapper";
70
- import * as i67 from "./lib/components/text.wrapper";
71
- import * as i68 from "./lib/components/text-field-wrapper.wrapper";
72
- import * as i69 from "./lib/components/text-list.wrapper";
73
- import * as i70 from "./lib/components/text-list-item.wrapper";
74
- import * as i71 from "./lib/components/textarea.wrapper";
75
- import * as i72 from "./lib/components/textarea-wrapper.wrapper";
76
- import * as i73 from "./lib/components/toast.wrapper";
77
- import * as i74 from "./lib/components/wordmark.wrapper";
18
+ import * as i15 from "./lib/components/drilldown.wrapper";
19
+ import * as i16 from "./lib/components/drilldown-item.wrapper";
20
+ import * as i17 from "./lib/components/drilldown-link.wrapper";
21
+ import * as i18 from "./lib/components/fieldset.wrapper";
22
+ import * as i19 from "./lib/components/fieldset-wrapper.wrapper";
23
+ import * as i20 from "./lib/components/flex.wrapper";
24
+ import * as i21 from "./lib/components/flex-item.wrapper";
25
+ import * as i22 from "./lib/components/flyout.wrapper";
26
+ import * as i23 from "./lib/components/grid.wrapper";
27
+ import * as i24 from "./lib/components/grid-item.wrapper";
28
+ import * as i25 from "./lib/components/heading.wrapper";
29
+ import * as i26 from "./lib/components/headline.wrapper";
30
+ import * as i27 from "./lib/components/icon.wrapper";
31
+ import * as i28 from "./lib/components/inline-notification.wrapper";
32
+ import * as i29 from "./lib/components/input-password.wrapper";
33
+ import * as i30 from "./lib/components/link.wrapper";
34
+ import * as i31 from "./lib/components/link-pure.wrapper";
35
+ import * as i32 from "./lib/components/link-social.wrapper";
36
+ import * as i33 from "./lib/components/link-tile.wrapper";
37
+ import * as i34 from "./lib/components/link-tile-model-signature.wrapper";
38
+ import * as i35 from "./lib/components/link-tile-product.wrapper";
39
+ import * as i36 from "./lib/components/marque.wrapper";
40
+ import * as i37 from "./lib/components/modal.wrapper";
41
+ import * as i38 from "./lib/components/model-signature.wrapper";
42
+ import * as i39 from "./lib/components/multi-select.wrapper";
43
+ import * as i40 from "./lib/components/multi-select-option.wrapper";
44
+ import * as i41 from "./lib/components/optgroup.wrapper";
45
+ import * as i42 from "./lib/components/pagination.wrapper";
46
+ import * as i43 from "./lib/components/pin-code.wrapper";
47
+ import * as i44 from "./lib/components/popover.wrapper";
48
+ import * as i45 from "./lib/components/radio-button-wrapper.wrapper";
49
+ import * as i46 from "./lib/components/scroller.wrapper";
50
+ import * as i47 from "./lib/components/segmented-control.wrapper";
51
+ import * as i48 from "./lib/components/segmented-control-item.wrapper";
52
+ import * as i49 from "./lib/components/select.wrapper";
53
+ import * as i50 from "./lib/components/select-option.wrapper";
54
+ import * as i51 from "./lib/components/select-wrapper.wrapper";
55
+ import * as i52 from "./lib/components/sheet.wrapper";
56
+ import * as i53 from "./lib/components/spinner.wrapper";
57
+ import * as i54 from "./lib/components/stepper-horizontal.wrapper";
58
+ import * as i55 from "./lib/components/stepper-horizontal-item.wrapper";
59
+ import * as i56 from "./lib/components/switch.wrapper";
60
+ import * as i57 from "./lib/components/table.wrapper";
61
+ import * as i58 from "./lib/components/table-body.wrapper";
62
+ import * as i59 from "./lib/components/table-cell.wrapper";
63
+ import * as i60 from "./lib/components/table-head.wrapper";
64
+ import * as i61 from "./lib/components/table-head-cell.wrapper";
65
+ import * as i62 from "./lib/components/table-head-row.wrapper";
66
+ import * as i63 from "./lib/components/table-row.wrapper";
67
+ import * as i64 from "./lib/components/tabs.wrapper";
68
+ import * as i65 from "./lib/components/tabs-bar.wrapper";
69
+ import * as i66 from "./lib/components/tabs-item.wrapper";
70
+ import * as i67 from "./lib/components/tag.wrapper";
71
+ import * as i68 from "./lib/components/tag-dismissible.wrapper";
72
+ import * as i69 from "./lib/components/text.wrapper";
73
+ import * as i70 from "./lib/components/text-field-wrapper.wrapper";
74
+ import * as i71 from "./lib/components/text-list.wrapper";
75
+ import * as i72 from "./lib/components/text-list-item.wrapper";
76
+ import * as i73 from "./lib/components/textarea.wrapper";
77
+ import * as i74 from "./lib/components/textarea-wrapper.wrapper";
78
+ import * as i75 from "./lib/components/toast.wrapper";
79
+ import * as i76 from "./lib/components/wordmark.wrapper";
78
80
  export type PorscheDesignSystemModuleConfig = {
79
81
  prefix?: string;
80
82
  cdn?: 'auto' | 'cn';
@@ -89,6 +91,6 @@ export declare class PorscheDesignSystemModule {
89
91
  constructor(configParam: DefaultConfig);
90
92
  static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
91
93
  static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
92
- static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PFieldset, typeof i16.PFieldsetWrapper, typeof i17.PFlex, typeof i18.PFlexItem, typeof i19.PFlyout, typeof i20.PFlyoutMultilevel, typeof i21.PFlyoutMultilevelItem, typeof i22.PGrid, typeof i23.PGridItem, typeof i24.PHeading, typeof i25.PHeadline, typeof i26.PIcon, typeof i27.PInlineNotification, typeof i28.PLink, typeof i29.PLinkPure, typeof i30.PLinkSocial, typeof i31.PLinkTile, typeof i32.PLinkTileModelSignature, typeof i33.PLinkTileProduct, typeof i34.PMarque, typeof i35.PModal, typeof i36.PModelSignature, typeof i37.PMultiSelect, typeof i38.PMultiSelectOption, typeof i39.POptgroup, typeof i40.PPagination, typeof i41.PPinCode, typeof i42.PPopover, typeof i43.PRadioButtonWrapper, typeof i44.PScroller, typeof i45.PSegmentedControl, typeof i46.PSegmentedControlItem, typeof i47.PSelect, typeof i48.PSelectOption, typeof i49.PSelectWrapper, typeof i50.PSheet, typeof i51.PSpinner, typeof i52.PStepperHorizontal, typeof i53.PStepperHorizontalItem, typeof i54.PSwitch, typeof i55.PTable, typeof i56.PTableBody, typeof i57.PTableCell, typeof i58.PTableHead, typeof i59.PTableHeadCell, typeof i60.PTableHeadRow, typeof i61.PTableRow, typeof i62.PTabs, typeof i63.PTabsBar, typeof i64.PTabsItem, typeof i65.PTag, typeof i66.PTagDismissible, typeof i67.PText, typeof i68.PTextFieldWrapper, typeof i69.PTextList, typeof i70.PTextListItem, typeof i71.PTextarea, typeof i72.PTextareaWrapper, typeof i73.PToast, typeof i74.PWordmark], never, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PFieldset, typeof i16.PFieldsetWrapper, typeof i17.PFlex, typeof i18.PFlexItem, typeof i19.PFlyout, typeof i20.PFlyoutMultilevel, typeof i21.PFlyoutMultilevelItem, typeof i22.PGrid, typeof i23.PGridItem, typeof i24.PHeading, typeof i25.PHeadline, typeof i26.PIcon, typeof i27.PInlineNotification, typeof i28.PLink, typeof i29.PLinkPure, typeof i30.PLinkSocial, typeof i31.PLinkTile, typeof i32.PLinkTileModelSignature, typeof i33.PLinkTileProduct, typeof i34.PMarque, typeof i35.PModal, typeof i36.PModelSignature, typeof i37.PMultiSelect, typeof i38.PMultiSelectOption, typeof i39.POptgroup, typeof i40.PPagination, typeof i41.PPinCode, typeof i42.PPopover, typeof i43.PRadioButtonWrapper, typeof i44.PScroller, typeof i45.PSegmentedControl, typeof i46.PSegmentedControlItem, typeof i47.PSelect, typeof i48.PSelectOption, typeof i49.PSelectWrapper, typeof i50.PSheet, typeof i51.PSpinner, typeof i52.PStepperHorizontal, typeof i53.PStepperHorizontalItem, typeof i54.PSwitch, typeof i55.PTable, typeof i56.PTableBody, typeof i57.PTableCell, typeof i58.PTableHead, typeof i59.PTableHeadCell, typeof i60.PTableHeadRow, typeof i61.PTableRow, typeof i62.PTabs, typeof i63.PTabsBar, typeof i64.PTabsItem, typeof i65.PTag, typeof i66.PTagDismissible, typeof i67.PText, typeof i68.PTextFieldWrapper, typeof i69.PTextList, typeof i70.PTextListItem, typeof i71.PTextarea, typeof i72.PTextareaWrapper, typeof i73.PToast, typeof i74.PWordmark]>;
94
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PDrilldown, typeof i16.PDrilldownItem, typeof i17.PDrilldownLink, typeof i18.PFieldset, typeof i19.PFieldsetWrapper, typeof i20.PFlex, typeof i21.PFlexItem, typeof i22.PFlyout, typeof i23.PGrid, typeof i24.PGridItem, typeof i25.PHeading, typeof i26.PHeadline, typeof i27.PIcon, typeof i28.PInlineNotification, typeof i29.PInputPassword, typeof i30.PLink, typeof i31.PLinkPure, typeof i32.PLinkSocial, typeof i33.PLinkTile, typeof i34.PLinkTileModelSignature, typeof i35.PLinkTileProduct, typeof i36.PMarque, typeof i37.PModal, typeof i38.PModelSignature, typeof i39.PMultiSelect, typeof i40.PMultiSelectOption, typeof i41.POptgroup, typeof i42.PPagination, typeof i43.PPinCode, typeof i44.PPopover, typeof i45.PRadioButtonWrapper, typeof i46.PScroller, typeof i47.PSegmentedControl, typeof i48.PSegmentedControlItem, typeof i49.PSelect, typeof i50.PSelectOption, typeof i51.PSelectWrapper, typeof i52.PSheet, typeof i53.PSpinner, typeof i54.PStepperHorizontal, typeof i55.PStepperHorizontalItem, typeof i56.PSwitch, typeof i57.PTable, typeof i58.PTableBody, typeof i59.PTableCell, typeof i60.PTableHead, typeof i61.PTableHeadCell, typeof i62.PTableHeadRow, typeof i63.PTableRow, typeof i64.PTabs, typeof i65.PTabsBar, typeof i66.PTabsItem, typeof i67.PTag, typeof i68.PTagDismissible, typeof i69.PText, typeof i70.PTextFieldWrapper, typeof i71.PTextList, typeof i72.PTextListItem, typeof i73.PTextarea, typeof i74.PTextareaWrapper, typeof i75.PToast, typeof i76.PWordmark], never, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PDrilldown, typeof i16.PDrilldownItem, typeof i17.PDrilldownLink, typeof i18.PFieldset, typeof i19.PFieldsetWrapper, typeof i20.PFlex, typeof i21.PFlexItem, typeof i22.PFlyout, typeof i23.PGrid, typeof i24.PGridItem, typeof i25.PHeading, typeof i26.PHeadline, typeof i27.PIcon, typeof i28.PInlineNotification, typeof i29.PInputPassword, typeof i30.PLink, typeof i31.PLinkPure, typeof i32.PLinkSocial, typeof i33.PLinkTile, typeof i34.PLinkTileModelSignature, typeof i35.PLinkTileProduct, typeof i36.PMarque, typeof i37.PModal, typeof i38.PModelSignature, typeof i39.PMultiSelect, typeof i40.PMultiSelectOption, typeof i41.POptgroup, typeof i42.PPagination, typeof i43.PPinCode, typeof i44.PPopover, typeof i45.PRadioButtonWrapper, typeof i46.PScroller, typeof i47.PSegmentedControl, typeof i48.PSegmentedControlItem, typeof i49.PSelect, typeof i50.PSelectOption, typeof i51.PSelectWrapper, typeof i52.PSheet, typeof i53.PSpinner, typeof i54.PStepperHorizontal, typeof i55.PStepperHorizontalItem, typeof i56.PSwitch, typeof i57.PTable, typeof i58.PTableBody, typeof i59.PTableCell, typeof i60.PTableHead, typeof i61.PTableHeadCell, typeof i62.PTableHeadRow, typeof i63.PTableRow, typeof i64.PTabs, typeof i65.PTabsBar, typeof i66.PTabsItem, typeof i67.PTag, typeof i68.PTagDismissible, typeof i69.PText, typeof i70.PTextFieldWrapper, typeof i71.PTextList, typeof i72.PTextListItem, typeof i73.PTextarea, typeof i74.PTextareaWrapper, typeof i75.PToast, typeof i76.PWordmark]>;
93
95
  static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
94
96
  }
@@ -389,6 +389,66 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImpor
389
389
  }]
390
390
  }] });
391
391
 
392
+ class PDrilldown extends BaseComponentWithTheme {
393
+ activeIdentifier;
394
+ aria;
395
+ open;
396
+ theme;
397
+ dismiss = new EventEmitter();
398
+ update = new EventEmitter();
399
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PDrilldown, deps: null, target: i0.ɵɵFactoryTarget.Component });
400
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PDrilldown, isStandalone: false, selector: "p-drilldown,[p-drilldown]", inputs: { activeIdentifier: "activeIdentifier", aria: "aria", open: "open", theme: "theme" }, outputs: { dismiss: "dismiss", update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
401
+ }
402
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PDrilldown, decorators: [{
403
+ type: Component,
404
+ args: [{
405
+ selector: 'p-drilldown,[p-drilldown]',
406
+ template: '<ng-content />',
407
+ inputs: ['activeIdentifier', 'aria', 'open', 'theme'],
408
+ outputs: ['dismiss', 'update'],
409
+ standalone: false
410
+ }]
411
+ }] });
412
+
413
+ class PDrilldownItem extends BaseComponent {
414
+ cascade;
415
+ identifier;
416
+ label;
417
+ primary;
418
+ secondary;
419
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PDrilldownItem, deps: null, target: i0.ɵɵFactoryTarget.Component });
420
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PDrilldownItem, isStandalone: false, selector: "p-drilldown-item,[p-drilldown-item]", inputs: { cascade: "cascade", identifier: "identifier", label: "label", primary: "primary", secondary: "secondary" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
421
+ }
422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PDrilldownItem, decorators: [{
423
+ type: Component,
424
+ args: [{
425
+ selector: 'p-drilldown-item,[p-drilldown-item]',
426
+ template: '<ng-content />',
427
+ inputs: ['cascade', 'identifier', 'label', 'primary', 'secondary'],
428
+ standalone: false
429
+ }]
430
+ }] });
431
+
432
+ class PDrilldownLink extends BaseComponent {
433
+ active;
434
+ aria;
435
+ download;
436
+ href;
437
+ rel;
438
+ target;
439
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PDrilldownLink, deps: null, target: i0.ɵɵFactoryTarget.Component });
440
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PDrilldownLink, isStandalone: false, selector: "p-drilldown-link,[p-drilldown-link]", inputs: { active: "active", aria: "aria", download: "download", href: "href", rel: "rel", target: "target" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
441
+ }
442
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PDrilldownLink, decorators: [{
443
+ type: Component,
444
+ args: [{
445
+ selector: 'p-drilldown-link,[p-drilldown-link]',
446
+ template: '<ng-content />',
447
+ inputs: ['active', 'aria', 'download', 'href', 'rel', 'target'],
448
+ standalone: false
449
+ }]
450
+ }] });
451
+
392
452
  class PFieldset extends BaseComponentWithTheme {
393
453
  label;
394
454
  labelSize;
@@ -496,46 +556,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImpor
496
556
  }]
497
557
  }] });
498
558
 
499
- class PFlyoutMultilevel extends BaseComponentWithTheme {
500
- activeIdentifier;
501
- aria;
502
- open;
503
- theme;
504
- dismiss = new EventEmitter();
505
- update = new EventEmitter();
506
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PFlyoutMultilevel, deps: null, target: i0.ɵɵFactoryTarget.Component });
507
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PFlyoutMultilevel, isStandalone: false, selector: "p-flyout-multilevel,[p-flyout-multilevel]", inputs: { activeIdentifier: "activeIdentifier", aria: "aria", open: "open", theme: "theme" }, outputs: { dismiss: "dismiss", update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
508
- }
509
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PFlyoutMultilevel, decorators: [{
510
- type: Component,
511
- args: [{
512
- selector: 'p-flyout-multilevel,[p-flyout-multilevel]',
513
- template: '<ng-content />',
514
- inputs: ['activeIdentifier', 'aria', 'open', 'theme'],
515
- outputs: ['dismiss', 'update'],
516
- standalone: false
517
- }]
518
- }] });
519
-
520
- class PFlyoutMultilevelItem extends BaseComponent {
521
- cascade;
522
- identifier;
523
- label;
524
- primary;
525
- secondary;
526
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PFlyoutMultilevelItem, deps: null, target: i0.ɵɵFactoryTarget.Component });
527
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PFlyoutMultilevelItem, isStandalone: false, selector: "p-flyout-multilevel-item,[p-flyout-multilevel-item]", inputs: { cascade: "cascade", identifier: "identifier", label: "label", primary: "primary", secondary: "secondary" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
528
- }
529
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PFlyoutMultilevelItem, decorators: [{
530
- type: Component,
531
- args: [{
532
- selector: 'p-flyout-multilevel-item,[p-flyout-multilevel-item]',
533
- template: '<ng-content />',
534
- inputs: ['cascade', 'identifier', 'label', 'primary', 'secondary'],
535
- standalone: false
536
- }]
537
- }] });
538
-
539
559
  /** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
540
560
  class PGrid extends BaseComponent {
541
561
  direction;
@@ -663,6 +683,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImpor
663
683
  }]
664
684
  }] });
665
685
 
686
+ class PInputPassword extends BaseComponentWithTheme {
687
+ autoComplete;
688
+ compact;
689
+ description;
690
+ disabled;
691
+ form;
692
+ hideLabel;
693
+ label;
694
+ maxLength;
695
+ message;
696
+ minLength;
697
+ name;
698
+ placeholder;
699
+ readOnly;
700
+ required;
701
+ state;
702
+ theme;
703
+ toggle;
704
+ value;
705
+ blur = new EventEmitter();
706
+ change = new EventEmitter();
707
+ input = new EventEmitter();
708
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PInputPassword, deps: null, target: i0.ɵɵFactoryTarget.Component });
709
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PInputPassword, isStandalone: false, selector: "p-input-password,[p-input-password]", inputs: { autoComplete: "autoComplete", compact: "compact", description: "description", disabled: "disabled", form: "form", hideLabel: "hideLabel", label: "label", maxLength: "maxLength", message: "message", minLength: "minLength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", state: "state", theme: "theme", toggle: "toggle", value: "value" }, outputs: { blur: "blur", change: "change", input: "input" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
710
+ }
711
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PInputPassword, decorators: [{
712
+ type: Component,
713
+ args: [{
714
+ selector: 'p-input-password,[p-input-password]',
715
+ template: '<ng-content />',
716
+ inputs: ['autoComplete', 'compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'state', 'theme', 'toggle', 'value'],
717
+ outputs: ['blur', 'change', 'input'],
718
+ standalone: false
719
+ }]
720
+ }] });
721
+
666
722
  class PLink extends BaseComponentWithTheme {
667
723
  aria;
668
724
  compact;
@@ -1696,19 +1752,21 @@ const DECLARATIONS = [
1696
1752
  PCrest,
1697
1753
  PDisplay,
1698
1754
  PDivider,
1755
+ PDrilldown,
1756
+ PDrilldownItem,
1757
+ PDrilldownLink,
1699
1758
  PFieldset,
1700
1759
  PFieldsetWrapper,
1701
1760
  PFlex,
1702
1761
  PFlexItem,
1703
1762
  PFlyout,
1704
- PFlyoutMultilevel,
1705
- PFlyoutMultilevelItem,
1706
1763
  PGrid,
1707
1764
  PGridItem,
1708
1765
  PHeading,
1709
1766
  PHeadline,
1710
1767
  PIcon,
1711
1768
  PInlineNotification,
1769
+ PInputPassword,
1712
1770
  PLink,
1713
1771
  PLinkPure,
1714
1772
  PLinkSocial,
@@ -1783,7 +1841,7 @@ class PorscheDesignSystemModule {
1783
1841
  };
1784
1842
  }
1785
1843
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
1786
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.5", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PFlyoutMultilevel, PFlyoutMultilevelItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PFlyoutMultilevel, PFlyoutMultilevelItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark] });
1844
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.5", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputPassword, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputPassword, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark] });
1787
1845
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PorscheDesignSystemModule, providers: [
1788
1846
  {
1789
1847
  provide: THEME_TOKEN,
@@ -1826,5 +1884,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImpor
1826
1884
  * Generated bundle index. Do not edit.
1827
1885
  */
1828
1886
 
1829
- export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PFlyoutMultilevel, PFlyoutMultilevelItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, THEME_TOKEN, ToastManager };
1887
+ export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputPassword, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, THEME_TOKEN, ToastManager };
1830
1888
  //# sourceMappingURL=porsche-design-system-components-angular.mjs.map