@porsche-design-system/components-angular 3.30.0-rc.0 → 3.30.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/index.d.ts CHANGED
@@ -1,7 +1,8 @@
1
1
  export { componentsReady } from '@porsche-design-system/components-js';
2
2
  import * as i0 from '@angular/core';
3
- import { InjectionToken, OnChanges, ChangeDetectorRef, ElementRef, OnDestroy, EventEmitter, ModuleWithProviders } from '@angular/core';
3
+ import { InjectionToken, OnChanges, ChangeDetectorRef, ElementRef, OnDestroy, EventEmitter, Renderer2, ModuleWithProviders } from '@angular/core';
4
4
  import { BehaviorSubject } from 'rxjs';
5
+ import { ControlValueAccessor } from '@angular/forms';
5
6
  import * as _porsche_design_system_components_angular from '@porsche-design-system/components-angular';
6
7
 
7
8
  type Booleanish = boolean | "true" | "false";
@@ -732,13 +733,17 @@ type MultiSelectUpdateEvent = {
732
733
  name: string;
733
734
  value: string[];
734
735
  };
736
+ /** @deprecated */
735
737
  type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
738
+ type MultiSelectChangeEventDetail = MultiSelectUpdateEventDetail;
736
739
  type SelectState = FormState;
737
740
  type SelectDropdownDirection = SelectComponentsDropdownDirection;
741
+ /** @deprecated */
738
742
  type SelectUpdateEventDetail = {
739
743
  name: string;
740
744
  value: string;
741
745
  };
746
+ type SelectChangeEventDetail = SelectUpdateEventDetail;
742
747
  declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
743
748
  "down",
744
749
  "up",
@@ -1117,6 +1122,11 @@ declare const FLEX_ITEM_FLEXS: readonly [
1117
1122
  "equal"
1118
1123
  ];
1119
1124
  type FlexItemFlex = (typeof FLEX_ITEM_FLEXS)[number];
1125
+ declare const BACKDROPS: readonly [
1126
+ "blur",
1127
+ "shading"
1128
+ ];
1129
+ type Backdrop = (typeof BACKDROPS)[number];
1120
1130
  declare const FLYOUT_POSITIONS: readonly [
1121
1131
  "start",
1122
1132
  "end",
@@ -1135,6 +1145,7 @@ declare const FLYOUT_ARIA_ATTRIBUTES: readonly [
1135
1145
  type FlyoutAriaAttribute = (typeof FLYOUT_ARIA_ATTRIBUTES)[number];
1136
1146
  type FlyoutMotionVisibleEndEventDetail = TransitionEvent;
1137
1147
  type FlyoutMotionHiddenEndEventDetail = TransitionEvent;
1148
+ type FlyoutBackdrop = Backdrop;
1138
1149
  declare const GRID_DIRECTIONS: readonly [
1139
1150
  "row",
1140
1151
  "row-reverse",
@@ -1415,11 +1426,6 @@ declare const MARQUE_SIZES: readonly [
1415
1426
  "medium"
1416
1427
  ];
1417
1428
  type MarqueSize = (typeof MARQUE_SIZES)[number];
1418
- declare const BACKDROPS: readonly [
1419
- "blur",
1420
- "shading"
1421
- ];
1422
- type Backdrop = (typeof BACKDROPS)[number];
1423
1429
  declare const MODAL_ARIA_ATTRIBUTES: readonly [
1424
1430
  "aria-label",
1425
1431
  "role"
@@ -1480,7 +1486,9 @@ type PinCodeUpdateEvent = {
1480
1486
  value: string;
1481
1487
  isComplete: boolean;
1482
1488
  };
1489
+ /** @deprecated */
1483
1490
  type PinCodeUpdateEventDetail = PinCodeUpdateEvent;
1491
+ type PinCodeChangeEventDetail = PinCodeUpdateEventDetail;
1484
1492
  type PinCodeState = FormState;
1485
1493
  declare const POPOVER_DIRECTIONS: readonly [
1486
1494
  "top",
@@ -1494,6 +1502,9 @@ declare const POPOVER_ARIA_ATTRIBUTES: readonly [
1494
1502
  ];
1495
1503
  type PopoverAriaAttribute = (typeof POPOVER_ARIA_ATTRIBUTES)[number];
1496
1504
  type RadioButtonWrapperState = FormState;
1505
+ type RadioGroupState = FormState;
1506
+ type RadioGroupDirection = GroupDirection;
1507
+ type RadioGroupChangeEventDetail = Event;
1497
1508
  declare const SEGMENTED_CONTROL_BACKGROUND_COLORS: readonly [
1498
1509
  "background-surface",
1499
1510
  "background-default"
@@ -1503,7 +1514,9 @@ type SegmentedControlBackgroundColor = (typeof SEGMENTED_CONTROL_BACKGROUND_COLO
1503
1514
  type SegmentedControlUpdateEvent = {
1504
1515
  value: string | number;
1505
1516
  };
1517
+ /** @deprecated */
1506
1518
  type SegmentedControlUpdateEventDetail = SegmentedControlUpdateEvent;
1519
+ type SegmentedControlChangeEventDetail = SegmentedControlUpdateEventDetail;
1507
1520
  declare const SEGMENTED_CONTROL_COLUMNS: (string | number)[];
1508
1521
  type SegmentedControlColumns = (typeof SEGMENTED_CONTROL_COLUMNS)[number];
1509
1522
  type SegmentedControlItemIcon = LinkButtonIconName;
@@ -1725,183 +1738,727 @@ declare abstract class BaseComponentWithTheme extends BaseComponent implements O
1725
1738
  static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentWithTheme, "ng-component", never, {}, {}, never, never, true, never>;
1726
1739
  }
1727
1740
 
1728
- declare class PTableBody extends BaseComponent {
1729
- static ɵfac: i0.ɵɵFactoryDeclaration<PTableBody, never>;
1730
- static ɵcmp: i0.ɵɵComponentDeclaration<PTableBody, "p-table-body,[p-table-body]", never, {}, {}, never, ["*"], false, never>;
1731
- }
1732
-
1733
- declare class PAccordion extends BaseComponentWithTheme {
1741
+ declare class PCheckbox extends BaseComponentWithTheme implements ControlValueAccessor {
1742
+ private _renderer;
1743
+ private _elementRef;
1744
+ private _cdr;
1745
+ checked?: boolean;
1734
1746
  compact?: boolean;
1735
- heading?: string;
1736
- headingTag?: AccordionHeadingTag;
1737
- open?: boolean;
1738
- size?: BreakpointCustomizable<AccordionSize>;
1739
- sticky?: boolean;
1740
- /** @deprecated */
1741
- tag?: AccordionTag;
1747
+ disabled?: boolean;
1748
+ form?: string;
1749
+ hideLabel?: BreakpointCustomizable<boolean>;
1750
+ indeterminate?: boolean;
1751
+ label?: string;
1752
+ loading?: boolean;
1753
+ message?: string;
1754
+ name?: string;
1755
+ required?: boolean;
1756
+ state?: CheckboxState;
1742
1757
  theme?: Theme;
1758
+ value?: string;
1759
+ blur: EventEmitter<CustomEvent<Event>>;
1760
+ change: EventEmitter<CustomEvent<Event>>;
1743
1761
  /** @deprecated */
1744
- accordionChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.AccordionUpdateEvent>>;
1745
- update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.AccordionUpdateEvent>>;
1746
- static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
1747
- 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; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "accordionChange": "accordionChange"; "update": "update"; }, never, ["*"], false, never>;
1762
+ update: EventEmitter<CustomEvent<CheckboxUpdateEventDetail>>;
1763
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
1764
+ _onChange: (value: any) => void;
1765
+ _onTouched: () => void;
1766
+ writeValue(value: any): void;
1767
+ registerOnChange(fn: any): void;
1768
+ registerOnTouched(fn: any): void;
1769
+ setDisabledState(isDisabled: boolean): void;
1770
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCheckbox, never>;
1771
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCheckbox, "p-checkbox,[p-checkbox]", never, { "checked": { "alias": "checked"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "update": "update"; }, never, ["*"], false, never>;
1748
1772
  }
1749
1773
 
1750
- declare class PBanner extends BaseComponentWithTheme {
1774
+ declare class PInputDate extends BaseComponentWithTheme implements ControlValueAccessor {
1775
+ private _renderer;
1776
+ private _elementRef;
1777
+ private _cdr;
1778
+ autoComplete?: string;
1779
+ compact?: boolean;
1751
1780
  description?: string;
1752
- dismissButton?: boolean;
1753
- heading?: string;
1754
- headingTag?: BannerHeadingTag;
1755
- open: boolean;
1756
- /** @deprecated */
1757
- persistent?: boolean;
1758
- state?: BannerState;
1759
- theme?: Theme;
1760
- /** @deprecated */
1761
- width?: BannerWidth;
1762
- dismiss: EventEmitter<CustomEvent<void>>;
1763
- static ɵfac: i0.ɵɵFactoryDeclaration<PBanner, never>;
1764
- static ɵcmp: i0.ɵɵComponentDeclaration<PBanner, "p-banner,[p-banner]", never, { "description": { "alias": "description"; "required": false; }; "dismissButton": { "alias": "dismissButton"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "persistent": { "alias": "persistent"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "dismiss": "dismiss"; }, never, ["*"], false, never>;
1765
- }
1766
-
1767
- declare class PButton extends BaseComponentWithTheme {
1768
- aria?: SelectedAriaAttributes<ButtonAriaAttribute>;
1769
- compact?: BreakpointCustomizable<boolean>;
1770
1781
  disabled?: boolean;
1771
1782
  form?: string;
1772
1783
  hideLabel?: BreakpointCustomizable<boolean>;
1773
- icon?: ButtonIcon;
1774
- iconSource?: string;
1784
+ label?: string;
1775
1785
  loading?: boolean;
1776
- name?: string;
1786
+ max?: string;
1787
+ message?: string;
1788
+ min?: string;
1789
+ name: string;
1790
+ readOnly?: boolean;
1791
+ required?: boolean;
1792
+ state?: InputDateState;
1793
+ step?: number;
1777
1794
  theme?: Theme;
1778
- type?: ButtonType;
1779
1795
  value?: string;
1780
- variant?: ButtonVariant;
1781
- static ɵfac: i0.ɵɵFactoryDeclaration<PButton, never>;
1782
- static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button,[p-button]", never, { "aria": { "alias": "aria"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
1783
- }
1784
-
1785
- declare class PButtonGroup extends BaseComponent {
1786
- direction?: BreakpointCustomizable<ButtonGroupDirection>;
1787
- static ɵfac: i0.ɵɵFactoryDeclaration<PButtonGroup, never>;
1788
- static ɵcmp: i0.ɵɵComponentDeclaration<PButtonGroup, "p-button-group,[p-button-group]", never, { "direction": { "alias": "direction"; "required": false; }; }, {}, never, ["*"], false, never>;
1796
+ blur: EventEmitter<CustomEvent<Event>>;
1797
+ change: EventEmitter<CustomEvent<Event>>;
1798
+ input: EventEmitter<CustomEvent<InputEvent>>;
1799
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
1800
+ _onChange: (value: any) => void;
1801
+ _onTouched: () => void;
1802
+ writeValue(value: any): void;
1803
+ registerOnChange(fn: any): void;
1804
+ registerOnTouched(fn: any): void;
1805
+ setDisabledState(isDisabled: boolean): void;
1806
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputDate, never>;
1807
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputDate, "p-input-date,[p-input-date]", 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; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
1789
1808
  }
1790
1809
 
1791
- declare class PButtonPure extends BaseComponentWithTheme {
1792
- active?: boolean;
1793
- alignLabel?: BreakpointCustomizable<ButtonPureAlignLabel>;
1794
- aria?: SelectedAriaAttributes<ButtonPureAriaAttribute>;
1810
+ declare class PInputEmail extends BaseComponentWithTheme implements ControlValueAccessor {
1811
+ private _renderer;
1812
+ private _elementRef;
1813
+ private _cdr;
1814
+ autoComplete?: string;
1815
+ compact?: boolean;
1816
+ description?: string;
1795
1817
  disabled?: boolean;
1796
1818
  form?: string;
1797
1819
  hideLabel?: BreakpointCustomizable<boolean>;
1798
- icon?: ButtonPureIcon;
1799
- iconSource?: string;
1820
+ indicator?: boolean;
1821
+ label?: string;
1800
1822
  loading?: boolean;
1801
- name?: string;
1802
- size?: BreakpointCustomizable<ButtonPureSize>;
1803
- stretch?: BreakpointCustomizable<boolean>;
1823
+ maxLength?: number;
1824
+ message?: string;
1825
+ minLength?: number;
1826
+ multiple?: boolean;
1827
+ name: string;
1828
+ pattern?: string;
1829
+ placeholder?: string;
1830
+ readOnly?: boolean;
1831
+ required?: boolean;
1832
+ state?: InputEmailState;
1804
1833
  theme?: Theme;
1805
- type?: ButtonPureType;
1806
- underline?: boolean;
1807
1834
  value?: string;
1808
- /** @deprecated */
1809
- weight?: ButtonPureWeight;
1810
- static ɵfac: i0.ɵɵFactoryDeclaration<PButtonPure, never>;
1811
- static ɵcmp: i0.ɵɵComponentDeclaration<PButtonPure, "p-button-pure,[p-button-pure]", never, { "active": { "alias": "active"; "required": false; }; "alignLabel": { "alias": "alignLabel"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "underline": { "alias": "underline"; "required": false; }; "value": { "alias": "value"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
1835
+ blur: EventEmitter<CustomEvent<Event>>;
1836
+ change: EventEmitter<CustomEvent<Event>>;
1837
+ input: EventEmitter<CustomEvent<InputEvent>>;
1838
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
1839
+ _onChange: (value: any) => void;
1840
+ _onTouched: () => void;
1841
+ writeValue(value: any): void;
1842
+ registerOnChange(fn: any): void;
1843
+ registerOnTouched(fn: any): void;
1844
+ setDisabledState(isDisabled: boolean): void;
1845
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputEmail, never>;
1846
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputEmail, "p-input-email,[p-input-email]", 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; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "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; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
1812
1847
  }
1813
1848
 
1814
- declare class PButtonTile extends BaseComponent {
1815
- align?: ButtonTileAlign;
1816
- aria?: SelectedAriaAttributes<ButtonTileAriaAttribute>;
1817
- aspectRatio?: BreakpointCustomizable<ButtonTileAspectRatio>;
1818
- background?: ButtonTileBackground;
1819
- compact?: BreakpointCustomizable<boolean>;
1820
- description: string;
1849
+ declare class PInputNumber extends BaseComponentWithTheme implements ControlValueAccessor {
1850
+ private _renderer;
1851
+ private _elementRef;
1852
+ private _cdr;
1853
+ autoComplete?: string;
1854
+ compact?: boolean;
1855
+ controls?: boolean;
1856
+ description?: string;
1821
1857
  disabled?: boolean;
1822
- gradient?: boolean;
1823
- icon?: ButtonTileIcon;
1824
- iconSource?: string;
1825
- label: string;
1858
+ form?: string;
1859
+ hideLabel?: BreakpointCustomizable<boolean>;
1860
+ label?: string;
1826
1861
  loading?: boolean;
1827
- size?: BreakpointCustomizable<ButtonTileSize>;
1828
- type?: ButtonTileType;
1829
- weight?: BreakpointCustomizable<ButtonTileWeight>;
1830
- static ɵfac: i0.ɵɵFactoryDeclaration<PButtonTile, never>;
1831
- static ɵcmp: i0.ɵɵComponentDeclaration<PButtonTile, "p-button-tile,[p-button-tile]", never, { "align": { "alias": "align"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "aspectRatio": { "alias": "aspectRatio"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "gradient": { "alias": "gradient"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
1832
- }
1833
-
1834
- declare class PCanvas extends BaseComponentWithTheme {
1835
- sidebarEndOpen?: boolean;
1836
- sidebarStartOpen?: boolean;
1862
+ max?: number;
1863
+ message?: string;
1864
+ min?: number;
1865
+ name: string;
1866
+ placeholder?: string;
1867
+ readOnly?: boolean;
1868
+ required?: boolean;
1869
+ state?: InputNumberState;
1870
+ step?: number;
1837
1871
  theme?: Theme;
1838
- sidebarEndDismiss: EventEmitter<CustomEvent<void>>;
1839
- sidebarStartUpdate: EventEmitter<CustomEvent<CanvasSidebarStartUpdateEventDetail>>;
1840
- static ɵfac: i0.ɵɵFactoryDeclaration<PCanvas, never>;
1841
- static ɵcmp: i0.ɵɵComponentDeclaration<PCanvas, "p-canvas,[p-canvas]", never, { "sidebarEndOpen": { "alias": "sidebarEndOpen"; "required": false; }; "sidebarStartOpen": { "alias": "sidebarStartOpen"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "sidebarEndDismiss": "sidebarEndDismiss"; "sidebarStartUpdate": "sidebarStartUpdate"; }, never, ["*"], false, never>;
1872
+ value?: string;
1873
+ blur: EventEmitter<CustomEvent<Event>>;
1874
+ change: EventEmitter<CustomEvent<Event>>;
1875
+ input: EventEmitter<CustomEvent<InputEvent>>;
1876
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
1877
+ _onChange: (value: any) => void;
1878
+ _onTouched: () => void;
1879
+ writeValue(value: any): void;
1880
+ registerOnChange(fn: any): void;
1881
+ registerOnTouched(fn: any): void;
1882
+ setDisabledState(isDisabled: boolean): void;
1883
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputNumber, never>;
1884
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputNumber, "p-input-number,[p-input-number]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "controls": { "alias": "controls"; "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; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "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; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
1842
1885
  }
1843
1886
 
1844
- declare class PCarousel extends BaseComponentWithTheme {
1845
- activeSlideIndex?: number;
1846
- alignControls?: CarouselAlignControls;
1847
- alignHeader?: CarouselAlignHeader;
1848
- aria?: SelectedAriaAttributes<CarouselAriaAttribute>;
1887
+ declare class PInputPassword extends BaseComponentWithTheme implements ControlValueAccessor {
1888
+ private _renderer;
1889
+ private _elementRef;
1890
+ private _cdr;
1891
+ autoComplete?: string;
1892
+ compact?: boolean;
1849
1893
  description?: string;
1850
- /** @deprecated */
1851
- disablePagination?: BreakpointCustomizable<boolean>;
1852
- focusOnCenterSlide?: boolean;
1853
- gradientColor?: CarouselGradientColor;
1854
- heading?: string;
1855
- headingSize?: CarouselHeadingSize;
1856
- intl?: CarouselInternationalization;
1857
- pagination?: BreakpointCustomizable<boolean>;
1858
- rewind?: boolean;
1859
- skipLinkTarget?: string;
1860
- slidesPerPage?: BreakpointCustomizable<CarouselSlidesPerPage>;
1894
+ disabled?: boolean;
1895
+ form?: string;
1896
+ hideLabel?: BreakpointCustomizable<boolean>;
1897
+ label?: string;
1898
+ loading?: boolean;
1899
+ maxLength?: number;
1900
+ message?: string;
1901
+ minLength?: number;
1902
+ name: string;
1903
+ placeholder?: string;
1904
+ readOnly?: boolean;
1905
+ required?: boolean;
1906
+ state?: InputPasswordState;
1861
1907
  theme?: Theme;
1862
- trimSpace?: boolean;
1863
- width?: CarouselWidth;
1864
- /** @deprecated */
1865
- wrapContent?: boolean;
1866
- /** @deprecated */
1867
- carouselChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.CarouselUpdateEvent>>;
1868
- update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.CarouselUpdateEvent>>;
1869
- static ɵfac: i0.ɵɵFactoryDeclaration<PCarousel, never>;
1870
- static ɵcmp: i0.ɵɵComponentDeclaration<PCarousel, "p-carousel,[p-carousel]", never, { "activeSlideIndex": { "alias": "activeSlideIndex"; "required": false; }; "alignControls": { "alias": "alignControls"; "required": false; }; "alignHeader": { "alias": "alignHeader"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disablePagination": { "alias": "disablePagination"; "required": false; }; "focusOnCenterSlide": { "alias": "focusOnCenterSlide"; "required": false; }; "gradientColor": { "alias": "gradientColor"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingSize": { "alias": "headingSize"; "required": false; }; "intl": { "alias": "intl"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "rewind": { "alias": "rewind"; "required": false; }; "skipLinkTarget": { "alias": "skipLinkTarget"; "required": false; }; "slidesPerPage": { "alias": "slidesPerPage"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "trimSpace": { "alias": "trimSpace"; "required": false; }; "width": { "alias": "width"; "required": false; }; "wrapContent": { "alias": "wrapContent"; "required": false; }; }, { "carouselChange": "carouselChange"; "update": "update"; }, never, ["*"], false, never>;
1908
+ toggle?: boolean;
1909
+ value?: string;
1910
+ blur: EventEmitter<CustomEvent<Event>>;
1911
+ change: EventEmitter<CustomEvent<Event>>;
1912
+ input: EventEmitter<CustomEvent<InputEvent>>;
1913
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
1914
+ _onChange: (value: any) => void;
1915
+ _onTouched: () => void;
1916
+ writeValue(value: any): void;
1917
+ registerOnChange(fn: any): void;
1918
+ registerOnTouched(fn: any): void;
1919
+ setDisabledState(isDisabled: boolean): void;
1920
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputPassword, never>;
1921
+ 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; }; "loading": { "alias": "loading"; "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>;
1871
1922
  }
1872
1923
 
1873
- declare class PCheckbox extends BaseComponentWithTheme {
1874
- checked?: boolean;
1924
+ declare class PInputSearch extends BaseComponentWithTheme implements ControlValueAccessor {
1925
+ private _renderer;
1926
+ private _elementRef;
1927
+ private _cdr;
1928
+ autoComplete?: string;
1929
+ clear?: boolean;
1875
1930
  compact?: boolean;
1931
+ description?: string;
1876
1932
  disabled?: boolean;
1877
1933
  form?: string;
1878
1934
  hideLabel?: BreakpointCustomizable<boolean>;
1879
- indeterminate?: boolean;
1935
+ indicator?: boolean;
1880
1936
  label?: string;
1881
1937
  loading?: boolean;
1882
1938
  message?: string;
1883
- name?: string;
1939
+ name: string;
1940
+ placeholder?: string;
1941
+ readOnly?: boolean;
1884
1942
  required?: boolean;
1885
- state?: CheckboxState;
1943
+ state?: InputSearchState;
1886
1944
  theme?: Theme;
1887
1945
  value?: string;
1888
1946
  blur: EventEmitter<CustomEvent<Event>>;
1889
1947
  change: EventEmitter<CustomEvent<Event>>;
1890
- /** @deprecated */
1891
- update: EventEmitter<CustomEvent<CheckboxUpdateEventDetail>>;
1892
- static ɵfac: i0.ɵɵFactoryDeclaration<PCheckbox, never>;
1893
- static ɵcmp: i0.ɵɵComponentDeclaration<PCheckbox, "p-checkbox,[p-checkbox]", never, { "checked": { "alias": "checked"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "update": "update"; }, never, ["*"], false, never>;
1948
+ input: EventEmitter<CustomEvent<InputEvent>>;
1949
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
1950
+ _onChange: (value: any) => void;
1951
+ _onTouched: () => void;
1952
+ writeValue(value: any): void;
1953
+ registerOnChange(fn: any): void;
1954
+ registerOnTouched(fn: any): void;
1955
+ setDisabledState(isDisabled: boolean): void;
1956
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputSearch, never>;
1957
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputSearch, "p-input-search,[p-input-search]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "clear": { "alias": "clear"; "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; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "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; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
1894
1958
  }
1895
1959
 
1896
- /** @deprecated since v3.29.0, will be removed with next major release. Please use `p-checkbox` instead. */
1897
- declare class PCheckboxWrapper extends BaseComponentWithTheme {
1960
+ declare class PInputTel extends BaseComponentWithTheme implements ControlValueAccessor {
1961
+ private _renderer;
1962
+ private _elementRef;
1963
+ private _cdr;
1964
+ autoComplete?: string;
1965
+ compact?: boolean;
1966
+ description?: string;
1967
+ disabled?: boolean;
1968
+ form?: string;
1898
1969
  hideLabel?: BreakpointCustomizable<boolean>;
1970
+ indicator?: boolean;
1899
1971
  label?: string;
1900
1972
  loading?: boolean;
1973
+ maxLength?: number;
1901
1974
  message?: string;
1902
- state?: CheckboxWrapperState;
1903
- theme?: Theme;
1904
- static ɵfac: i0.ɵɵFactoryDeclaration<PCheckboxWrapper, never>;
1975
+ minLength?: number;
1976
+ name: string;
1977
+ pattern?: string;
1978
+ placeholder?: string;
1979
+ readOnly?: boolean;
1980
+ required?: boolean;
1981
+ state?: InputTelState;
1982
+ theme?: Theme;
1983
+ value?: string;
1984
+ blur: EventEmitter<CustomEvent<Event>>;
1985
+ change: EventEmitter<CustomEvent<Event>>;
1986
+ input: EventEmitter<CustomEvent<InputEvent>>;
1987
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
1988
+ _onChange: (value: any) => void;
1989
+ _onTouched: () => void;
1990
+ writeValue(value: any): void;
1991
+ registerOnChange(fn: any): void;
1992
+ registerOnTouched(fn: any): void;
1993
+ setDisabledState(isDisabled: boolean): void;
1994
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputTel, never>;
1995
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputTel, "p-input-tel,[p-input-tel]", 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; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "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; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
1996
+ }
1997
+
1998
+ declare class PInputText extends BaseComponentWithTheme implements ControlValueAccessor {
1999
+ private _renderer;
2000
+ private _elementRef;
2001
+ private _cdr;
2002
+ autoComplete?: string;
2003
+ compact?: boolean;
2004
+ counter?: boolean;
2005
+ description?: string;
2006
+ disabled?: boolean;
2007
+ form?: string;
2008
+ hideLabel?: BreakpointCustomizable<boolean>;
2009
+ label?: string;
2010
+ loading?: boolean;
2011
+ maxLength?: number;
2012
+ message?: string;
2013
+ minLength?: number;
2014
+ name: string;
2015
+ placeholder?: string;
2016
+ readOnly?: boolean;
2017
+ required?: boolean;
2018
+ spellCheck?: boolean;
2019
+ state?: InputTextState;
2020
+ theme?: Theme;
2021
+ value?: string;
2022
+ blur: EventEmitter<CustomEvent<Event>>;
2023
+ change: EventEmitter<CustomEvent<Event>>;
2024
+ input: EventEmitter<CustomEvent<InputEvent>>;
2025
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
2026
+ _onChange: (value: any) => void;
2027
+ _onTouched: () => void;
2028
+ writeValue(value: any): void;
2029
+ registerOnChange(fn: any): void;
2030
+ registerOnTouched(fn: any): void;
2031
+ setDisabledState(isDisabled: boolean): void;
2032
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputText, never>;
2033
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputText, "p-input-text,[p-input-text]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "counter": { "alias": "counter"; "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; }; "loading": { "alias": "loading"; "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; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2034
+ }
2035
+
2036
+ declare class PInputTime extends BaseComponentWithTheme implements ControlValueAccessor {
2037
+ private _renderer;
2038
+ private _elementRef;
2039
+ private _cdr;
2040
+ autoComplete?: string;
2041
+ compact?: boolean;
2042
+ description?: string;
2043
+ disabled?: boolean;
2044
+ form?: string;
2045
+ hideLabel?: BreakpointCustomizable<boolean>;
2046
+ label?: string;
2047
+ loading?: boolean;
2048
+ max?: string;
2049
+ message?: string;
2050
+ min?: string;
2051
+ name: string;
2052
+ readOnly?: boolean;
2053
+ required?: boolean;
2054
+ state?: InputTimeState;
2055
+ step?: number;
2056
+ theme?: Theme;
2057
+ value?: string;
2058
+ blur: EventEmitter<CustomEvent<Event>>;
2059
+ change: EventEmitter<CustomEvent<Event>>;
2060
+ input: EventEmitter<CustomEvent<InputEvent>>;
2061
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
2062
+ _onChange: (value: any) => void;
2063
+ _onTouched: () => void;
2064
+ writeValue(value: any): void;
2065
+ registerOnChange(fn: any): void;
2066
+ registerOnTouched(fn: any): void;
2067
+ setDisabledState(isDisabled: boolean): void;
2068
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputTime, never>;
2069
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputTime, "p-input-time,[p-input-time]", 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; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2070
+ }
2071
+
2072
+ declare class PInputUrl extends BaseComponentWithTheme implements ControlValueAccessor {
2073
+ private _renderer;
2074
+ private _elementRef;
2075
+ private _cdr;
2076
+ autoComplete?: string;
2077
+ compact?: boolean;
2078
+ description?: string;
2079
+ disabled?: boolean;
2080
+ form?: string;
2081
+ hideLabel?: BreakpointCustomizable<boolean>;
2082
+ indicator?: boolean;
2083
+ label?: string;
2084
+ loading?: boolean;
2085
+ maxLength?: number;
2086
+ message?: string;
2087
+ minLength?: number;
2088
+ name: string;
2089
+ pattern?: string;
2090
+ placeholder?: string;
2091
+ readOnly?: boolean;
2092
+ required?: boolean;
2093
+ state?: InputUrlState;
2094
+ theme?: Theme;
2095
+ value?: string;
2096
+ blur: EventEmitter<CustomEvent<Event>>;
2097
+ change: EventEmitter<CustomEvent<Event>>;
2098
+ input: EventEmitter<CustomEvent<InputEvent>>;
2099
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
2100
+ _onChange: (value: any) => void;
2101
+ _onTouched: () => void;
2102
+ writeValue(value: any): void;
2103
+ registerOnChange(fn: any): void;
2104
+ registerOnTouched(fn: any): void;
2105
+ setDisabledState(isDisabled: boolean): void;
2106
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputUrl, never>;
2107
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputUrl, "p-input-url,[p-input-url]", 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; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "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; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2108
+ }
2109
+
2110
+ declare class PMultiSelect extends BaseComponentWithTheme implements ControlValueAccessor {
2111
+ private _renderer;
2112
+ private _elementRef;
2113
+ private _cdr;
2114
+ compact?: boolean;
2115
+ description?: string;
2116
+ disabled?: boolean;
2117
+ dropdownDirection?: MultiSelectDropdownDirection;
2118
+ form?: string;
2119
+ hideLabel?: BreakpointCustomizable<boolean>;
2120
+ label?: string;
2121
+ message?: string;
2122
+ name: string;
2123
+ required?: boolean;
2124
+ state?: MultiSelectState;
2125
+ theme?: Theme;
2126
+ value?: string[];
2127
+ blur: EventEmitter<CustomEvent<void>>;
2128
+ change: EventEmitter<CustomEvent<_porsche_design_system_components_angular.MultiSelectUpdateEvent>>;
2129
+ /** @deprecated */
2130
+ update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.MultiSelectUpdateEvent>>;
2131
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
2132
+ _onChange: (value: any) => void;
2133
+ _onTouched: () => void;
2134
+ writeValue(value: any): void;
2135
+ registerOnChange(fn: any): void;
2136
+ registerOnTouched(fn: any): void;
2137
+ setDisabledState(isDisabled: boolean): void;
2138
+ static ɵfac: i0.ɵɵFactoryDeclaration<PMultiSelect, never>;
2139
+ static ɵcmp: i0.ɵɵComponentDeclaration<PMultiSelect, "p-multi-select,[p-multi-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "update": "update"; }, never, ["*"], false, never>;
2140
+ }
2141
+
2142
+ declare class PPinCode extends BaseComponentWithTheme implements ControlValueAccessor {
2143
+ private _renderer;
2144
+ private _elementRef;
2145
+ private _cdr;
2146
+ compact?: boolean;
2147
+ description?: string;
2148
+ disabled?: boolean;
2149
+ form?: string;
2150
+ hideLabel?: BreakpointCustomizable<boolean>;
2151
+ label?: string;
2152
+ length?: PinCodeLength;
2153
+ loading?: boolean;
2154
+ message?: string;
2155
+ name?: string;
2156
+ required?: boolean;
2157
+ state?: PinCodeState;
2158
+ theme?: Theme;
2159
+ type?: PinCodeType;
2160
+ value?: string;
2161
+ blur: EventEmitter<CustomEvent<void>>;
2162
+ change: EventEmitter<CustomEvent<_porsche_design_system_components_angular.PinCodeUpdateEvent>>;
2163
+ /** @deprecated */
2164
+ update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.PinCodeUpdateEvent>>;
2165
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
2166
+ _onChange: (value: any) => void;
2167
+ _onTouched: () => void;
2168
+ writeValue(value: any): void;
2169
+ registerOnChange(fn: any): void;
2170
+ registerOnTouched(fn: any): void;
2171
+ setDisabledState(isDisabled: boolean): void;
2172
+ static ɵfac: i0.ɵɵFactoryDeclaration<PPinCode, never>;
2173
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPinCode, "p-pin-code,[p-pin-code]", never, { "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; }; "length": { "alias": "length"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "update": "update"; }, never, ["*"], false, never>;
2174
+ }
2175
+
2176
+ declare class PRadioGroup extends BaseComponentWithTheme implements ControlValueAccessor {
2177
+ private _renderer;
2178
+ private _elementRef;
2179
+ private _cdr;
2180
+ compact?: boolean;
2181
+ description?: string;
2182
+ direction?: BreakpointCustomizable<RadioGroupDirection>;
2183
+ disabled?: boolean;
2184
+ form?: string;
2185
+ hideLabel?: BreakpointCustomizable<boolean>;
2186
+ label?: string;
2187
+ loading?: boolean;
2188
+ message?: string;
2189
+ name: string;
2190
+ required?: boolean;
2191
+ state?: RadioGroupState;
2192
+ theme?: Theme;
2193
+ value?: string;
2194
+ blur: EventEmitter<CustomEvent<void>>;
2195
+ change: EventEmitter<CustomEvent<Event>>;
2196
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
2197
+ _onChange: (value: any) => void;
2198
+ _onTouched: () => void;
2199
+ writeValue(value: any): void;
2200
+ registerOnChange(fn: any): void;
2201
+ registerOnTouched(fn: any): void;
2202
+ setDisabledState(isDisabled: boolean): void;
2203
+ static ɵfac: i0.ɵɵFactoryDeclaration<PRadioGroup, never>;
2204
+ static ɵcmp: i0.ɵɵComponentDeclaration<PRadioGroup, "p-radio-group,[p-radio-group]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; }, never, ["*"], false, never>;
2205
+ }
2206
+
2207
+ declare class PSegmentedControl extends BaseComponentWithTheme implements ControlValueAccessor {
2208
+ private _renderer;
2209
+ private _elementRef;
2210
+ private _cdr;
2211
+ /** @deprecated */
2212
+ backgroundColor?: SegmentedControlBackgroundColor;
2213
+ columns?: BreakpointCustomizable<SegmentedControlColumns>;
2214
+ disabled?: boolean;
2215
+ form?: string;
2216
+ name?: string;
2217
+ theme?: Theme;
2218
+ value?: string | number;
2219
+ blur: EventEmitter<CustomEvent<void>>;
2220
+ change: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
2221
+ /** @deprecated */
2222
+ segmentedControlChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
2223
+ /** @deprecated */
2224
+ update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
2225
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
2226
+ _onChange: (value: any) => void;
2227
+ _onTouched: () => void;
2228
+ writeValue(value: any): void;
2229
+ registerOnChange(fn: any): void;
2230
+ registerOnTouched(fn: any): void;
2231
+ setDisabledState(isDisabled: boolean): void;
2232
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentedControl, never>;
2233
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentedControl, "p-segmented-control,[p-segmented-control]", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "segmentedControlChange": "segmentedControlChange"; "update": "update"; }, never, ["*"], false, never>;
2234
+ }
2235
+
2236
+ declare class PSelect extends BaseComponentWithTheme implements ControlValueAccessor {
2237
+ private _renderer;
2238
+ private _elementRef;
2239
+ private _cdr;
2240
+ compact?: boolean;
2241
+ description?: string;
2242
+ disabled?: boolean;
2243
+ dropdownDirection?: SelectDropdownDirection;
2244
+ filter?: boolean;
2245
+ form?: string;
2246
+ hideLabel?: BreakpointCustomizable<boolean>;
2247
+ label?: string;
2248
+ message?: string;
2249
+ name: string;
2250
+ required?: boolean;
2251
+ state?: SelectState;
2252
+ theme?: Theme;
2253
+ value?: string;
2254
+ blur: EventEmitter<CustomEvent<void>>;
2255
+ change: EventEmitter<CustomEvent<SelectUpdateEventDetail>>;
2256
+ /** @deprecated */
2257
+ update: EventEmitter<CustomEvent<SelectUpdateEventDetail>>;
2258
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
2259
+ _onChange: (value: any) => void;
2260
+ _onTouched: () => void;
2261
+ writeValue(value: any): void;
2262
+ registerOnChange(fn: any): void;
2263
+ registerOnTouched(fn: any): void;
2264
+ setDisabledState(isDisabled: boolean): void;
2265
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
2266
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select,[p-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "update": "update"; }, never, ["*"], false, never>;
2267
+ }
2268
+
2269
+ declare class PTableBody extends BaseComponent {
2270
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableBody, never>;
2271
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableBody, "p-table-body,[p-table-body]", never, {}, {}, never, ["*"], false, never>;
2272
+ }
2273
+
2274
+ declare class PTextarea extends BaseComponentWithTheme implements ControlValueAccessor {
2275
+ private _renderer;
2276
+ private _elementRef;
2277
+ private _cdr;
2278
+ autoComplete?: string;
2279
+ counter?: boolean;
2280
+ description?: string;
2281
+ disabled?: boolean;
2282
+ form?: string;
2283
+ hideLabel?: BreakpointCustomizable<boolean>;
2284
+ label?: string;
2285
+ maxLength?: number;
2286
+ message?: string;
2287
+ minLength?: number;
2288
+ name: string;
2289
+ placeholder?: string;
2290
+ readOnly?: boolean;
2291
+ required?: boolean;
2292
+ resize?: TextareaResize;
2293
+ rows?: number;
2294
+ spellCheck?: boolean;
2295
+ state?: TextareaState;
2296
+ theme?: Theme;
2297
+ value?: string;
2298
+ wrap?: TextareaWrap;
2299
+ blur: EventEmitter<CustomEvent<Event>>;
2300
+ change: EventEmitter<CustomEvent<Event>>;
2301
+ input: EventEmitter<CustomEvent<InputEvent>>;
2302
+ constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
2303
+ _onChange: (value: any) => void;
2304
+ _onTouched: () => void;
2305
+ writeValue(value: any): void;
2306
+ registerOnChange(fn: any): void;
2307
+ registerOnTouched(fn: any): void;
2308
+ setDisabledState(isDisabled: boolean): void;
2309
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTextarea, never>;
2310
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTextarea, "p-textarea,[p-textarea]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "counter": { "alias": "counter"; "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; }; "resize": { "alias": "resize"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2311
+ }
2312
+
2313
+ declare class PAccordion extends BaseComponentWithTheme {
2314
+ compact?: boolean;
2315
+ heading?: string;
2316
+ headingTag?: AccordionHeadingTag;
2317
+ open?: boolean;
2318
+ size?: BreakpointCustomizable<AccordionSize>;
2319
+ sticky?: boolean;
2320
+ /** @deprecated */
2321
+ tag?: AccordionTag;
2322
+ theme?: Theme;
2323
+ /** @deprecated */
2324
+ accordionChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.AccordionUpdateEvent>>;
2325
+ update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.AccordionUpdateEvent>>;
2326
+ static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
2327
+ 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; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "accordionChange": "accordionChange"; "update": "update"; }, never, ["*"], false, never>;
2328
+ }
2329
+
2330
+ declare class PBanner extends BaseComponentWithTheme {
2331
+ description?: string;
2332
+ dismissButton?: boolean;
2333
+ heading?: string;
2334
+ headingTag?: BannerHeadingTag;
2335
+ open: boolean;
2336
+ /** @deprecated */
2337
+ persistent?: boolean;
2338
+ state?: BannerState;
2339
+ theme?: Theme;
2340
+ /** @deprecated */
2341
+ width?: BannerWidth;
2342
+ dismiss: EventEmitter<CustomEvent<void>>;
2343
+ static ɵfac: i0.ɵɵFactoryDeclaration<PBanner, never>;
2344
+ static ɵcmp: i0.ɵɵComponentDeclaration<PBanner, "p-banner,[p-banner]", never, { "description": { "alias": "description"; "required": false; }; "dismissButton": { "alias": "dismissButton"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "persistent": { "alias": "persistent"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "dismiss": "dismiss"; }, never, ["*"], false, never>;
2345
+ }
2346
+
2347
+ declare class PButton extends BaseComponentWithTheme {
2348
+ aria?: SelectedAriaAttributes<ButtonAriaAttribute>;
2349
+ compact?: BreakpointCustomizable<boolean>;
2350
+ disabled?: boolean;
2351
+ form?: string;
2352
+ hideLabel?: BreakpointCustomizable<boolean>;
2353
+ icon?: ButtonIcon;
2354
+ iconSource?: string;
2355
+ loading?: boolean;
2356
+ name?: string;
2357
+ theme?: Theme;
2358
+ type?: ButtonType;
2359
+ value?: string;
2360
+ variant?: ButtonVariant;
2361
+ static ɵfac: i0.ɵɵFactoryDeclaration<PButton, never>;
2362
+ static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button,[p-button]", never, { "aria": { "alias": "aria"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
2363
+ }
2364
+
2365
+ declare class PButtonGroup extends BaseComponent {
2366
+ direction?: BreakpointCustomizable<ButtonGroupDirection>;
2367
+ static ɵfac: i0.ɵɵFactoryDeclaration<PButtonGroup, never>;
2368
+ static ɵcmp: i0.ɵɵComponentDeclaration<PButtonGroup, "p-button-group,[p-button-group]", never, { "direction": { "alias": "direction"; "required": false; }; }, {}, never, ["*"], false, never>;
2369
+ }
2370
+
2371
+ declare class PButtonPure extends BaseComponentWithTheme {
2372
+ active?: boolean;
2373
+ alignLabel?: BreakpointCustomizable<ButtonPureAlignLabel>;
2374
+ aria?: SelectedAriaAttributes<ButtonPureAriaAttribute>;
2375
+ disabled?: boolean;
2376
+ form?: string;
2377
+ hideLabel?: BreakpointCustomizable<boolean>;
2378
+ icon?: ButtonPureIcon;
2379
+ iconSource?: string;
2380
+ loading?: boolean;
2381
+ name?: string;
2382
+ size?: BreakpointCustomizable<ButtonPureSize>;
2383
+ stretch?: BreakpointCustomizable<boolean>;
2384
+ theme?: Theme;
2385
+ type?: ButtonPureType;
2386
+ underline?: boolean;
2387
+ value?: string;
2388
+ /** @deprecated */
2389
+ weight?: ButtonPureWeight;
2390
+ static ɵfac: i0.ɵɵFactoryDeclaration<PButtonPure, never>;
2391
+ static ɵcmp: i0.ɵɵComponentDeclaration<PButtonPure, "p-button-pure,[p-button-pure]", never, { "active": { "alias": "active"; "required": false; }; "alignLabel": { "alias": "alignLabel"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "underline": { "alias": "underline"; "required": false; }; "value": { "alias": "value"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
2392
+ }
2393
+
2394
+ declare class PButtonTile extends BaseComponent {
2395
+ align?: ButtonTileAlign;
2396
+ aria?: SelectedAriaAttributes<ButtonTileAriaAttribute>;
2397
+ aspectRatio?: BreakpointCustomizable<ButtonTileAspectRatio>;
2398
+ background?: ButtonTileBackground;
2399
+ compact?: BreakpointCustomizable<boolean>;
2400
+ description: string;
2401
+ disabled?: boolean;
2402
+ gradient?: boolean;
2403
+ icon?: ButtonTileIcon;
2404
+ iconSource?: string;
2405
+ label: string;
2406
+ loading?: boolean;
2407
+ size?: BreakpointCustomizable<ButtonTileSize>;
2408
+ type?: ButtonTileType;
2409
+ weight?: BreakpointCustomizable<ButtonTileWeight>;
2410
+ static ɵfac: i0.ɵɵFactoryDeclaration<PButtonTile, never>;
2411
+ static ɵcmp: i0.ɵɵComponentDeclaration<PButtonTile, "p-button-tile,[p-button-tile]", never, { "align": { "alias": "align"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "aspectRatio": { "alias": "aspectRatio"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "gradient": { "alias": "gradient"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
2412
+ }
2413
+
2414
+ declare class PCanvas extends BaseComponentWithTheme {
2415
+ sidebarEndOpen?: boolean;
2416
+ sidebarStartOpen?: boolean;
2417
+ theme?: Theme;
2418
+ sidebarEndDismiss: EventEmitter<CustomEvent<void>>;
2419
+ sidebarStartUpdate: EventEmitter<CustomEvent<CanvasSidebarStartUpdateEventDetail>>;
2420
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCanvas, never>;
2421
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCanvas, "p-canvas,[p-canvas]", never, { "sidebarEndOpen": { "alias": "sidebarEndOpen"; "required": false; }; "sidebarStartOpen": { "alias": "sidebarStartOpen"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "sidebarEndDismiss": "sidebarEndDismiss"; "sidebarStartUpdate": "sidebarStartUpdate"; }, never, ["*"], false, never>;
2422
+ }
2423
+
2424
+ declare class PCarousel extends BaseComponentWithTheme {
2425
+ activeSlideIndex?: number;
2426
+ alignControls?: CarouselAlignControls;
2427
+ alignHeader?: CarouselAlignHeader;
2428
+ aria?: SelectedAriaAttributes<CarouselAriaAttribute>;
2429
+ description?: string;
2430
+ /** @deprecated */
2431
+ disablePagination?: BreakpointCustomizable<boolean>;
2432
+ focusOnCenterSlide?: boolean;
2433
+ gradientColor?: CarouselGradientColor;
2434
+ heading?: string;
2435
+ headingSize?: CarouselHeadingSize;
2436
+ intl?: CarouselInternationalization;
2437
+ pagination?: BreakpointCustomizable<boolean>;
2438
+ rewind?: boolean;
2439
+ skipLinkTarget?: string;
2440
+ slidesPerPage?: BreakpointCustomizable<CarouselSlidesPerPage>;
2441
+ theme?: Theme;
2442
+ trimSpace?: boolean;
2443
+ width?: CarouselWidth;
2444
+ /** @deprecated */
2445
+ wrapContent?: boolean;
2446
+ /** @deprecated */
2447
+ carouselChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.CarouselUpdateEvent>>;
2448
+ update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.CarouselUpdateEvent>>;
2449
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCarousel, never>;
2450
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCarousel, "p-carousel,[p-carousel]", never, { "activeSlideIndex": { "alias": "activeSlideIndex"; "required": false; }; "alignControls": { "alias": "alignControls"; "required": false; }; "alignHeader": { "alias": "alignHeader"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disablePagination": { "alias": "disablePagination"; "required": false; }; "focusOnCenterSlide": { "alias": "focusOnCenterSlide"; "required": false; }; "gradientColor": { "alias": "gradientColor"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingSize": { "alias": "headingSize"; "required": false; }; "intl": { "alias": "intl"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "rewind": { "alias": "rewind"; "required": false; }; "skipLinkTarget": { "alias": "skipLinkTarget"; "required": false; }; "slidesPerPage": { "alias": "slidesPerPage"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "trimSpace": { "alias": "trimSpace"; "required": false; }; "width": { "alias": "width"; "required": false; }; "wrapContent": { "alias": "wrapContent"; "required": false; }; }, { "carouselChange": "carouselChange"; "update": "update"; }, never, ["*"], false, never>;
2451
+ }
2452
+
2453
+ /** @deprecated since v3.29.0, will be removed with next major release. Please use `p-checkbox` instead. */
2454
+ declare class PCheckboxWrapper extends BaseComponentWithTheme {
2455
+ hideLabel?: BreakpointCustomizable<boolean>;
2456
+ label?: string;
2457
+ loading?: boolean;
2458
+ message?: string;
2459
+ state?: CheckboxWrapperState;
2460
+ theme?: Theme;
2461
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCheckboxWrapper, never>;
1905
2462
  static ɵcmp: i0.ɵɵComponentDeclaration<PCheckboxWrapper, "p-checkbox-wrapper,[p-checkbox-wrapper]", never, { "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1906
2463
  }
1907
2464
 
@@ -2035,6 +2592,7 @@ declare class PFlexItem extends BaseComponent {
2035
2592
 
2036
2593
  declare class PFlyout extends BaseComponentWithTheme {
2037
2594
  aria?: SelectedAriaAttributes<FlyoutAriaAttribute>;
2595
+ backdrop?: FlyoutBackdrop;
2038
2596
  disableBackdropClick?: boolean;
2039
2597
  footerBehavior?: FlyoutFooterBehavior;
2040
2598
  open: boolean;
@@ -2042,327 +2600,81 @@ declare class PFlyout extends BaseComponentWithTheme {
2042
2600
  theme?: Theme;
2043
2601
  dismiss: EventEmitter<CustomEvent<void>>;
2044
2602
  motionHiddenEnd: EventEmitter<CustomEvent<TransitionEvent>>;
2045
- motionVisibleEnd: EventEmitter<CustomEvent<TransitionEvent>>;
2046
- static ɵfac: i0.ɵɵFactoryDeclaration<PFlyout, never>;
2047
- static ɵcmp: i0.ɵɵComponentDeclaration<PFlyout, "p-flyout,[p-flyout]", never, { "aria": { "alias": "aria"; "required": false; }; "disableBackdropClick": { "alias": "disableBackdropClick"; "required": false; }; "footerBehavior": { "alias": "footerBehavior"; "required": false; }; "open": { "alias": "open"; "required": false; }; "position": { "alias": "position"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "dismiss": "dismiss"; "motionHiddenEnd": "motionHiddenEnd"; "motionVisibleEnd": "motionVisibleEnd"; }, never, ["*"], false, never>;
2048
- }
2049
-
2050
- /** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
2051
- declare class PGrid extends BaseComponent {
2052
- direction?: BreakpointCustomizable<GridDirection>;
2053
- /** @deprecated */
2054
- gutter?: BreakpointCustomizable<GridGutter>;
2055
- wrap?: BreakpointCustomizable<GridWrap>;
2056
- static ɵfac: i0.ɵɵFactoryDeclaration<PGrid, never>;
2057
- static ɵcmp: i0.ɵɵComponentDeclaration<PGrid, "p-grid,[p-grid]", never, { "direction": { "alias": "direction"; "required": false; }; "gutter": { "alias": "gutter"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
2058
- }
2059
-
2060
- /** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
2061
- declare class PGridItem extends BaseComponent {
2062
- offset?: BreakpointCustomizable<GridItemOffset>;
2063
- size?: BreakpointCustomizable<GridItemSize>;
2064
- static ɵfac: i0.ɵɵFactoryDeclaration<PGridItem, never>;
2065
- static ɵcmp: i0.ɵɵComponentDeclaration<PGridItem, "p-grid-item,[p-grid-item]", never, { "offset": { "alias": "offset"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
2066
- }
2067
-
2068
- declare class PHeading extends BaseComponentWithTheme {
2069
- align?: HeadingAlign;
2070
- color?: HeadingColor;
2071
- ellipsis?: boolean;
2072
- size?: BreakpointCustomizable<HeadingSize>;
2073
- tag?: HeadingTag;
2074
- theme?: Theme;
2075
- static ɵfac: i0.ɵɵFactoryDeclaration<PHeading, never>;
2076
- static ɵcmp: i0.ɵɵComponentDeclaration<PHeading, "p-heading,[p-heading]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
2077
- }
2078
-
2079
- /** @deprecated since v3.0.0, will be removed with next major release. Please use "p-heading" instead. */
2080
- declare class PHeadline extends BaseComponentWithTheme {
2081
- align?: HeadlineAlign;
2082
- color?: HeadlineColor;
2083
- ellipsis?: boolean;
2084
- tag?: HeadlineTag;
2085
- theme?: Theme;
2086
- variant?: HeadlineVariant;
2087
- static ɵfac: i0.ɵɵFactoryDeclaration<PHeadline, never>;
2088
- static ɵcmp: i0.ɵɵComponentDeclaration<PHeadline, "p-headline,[p-headline]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
2089
- }
2090
-
2091
- declare class PIcon extends BaseComponentWithTheme {
2092
- aria?: SelectedAriaAttributes<IconAriaAttribute>;
2093
- color?: IconColor;
2094
- /** @deprecated */
2095
- lazy?: boolean;
2096
- name?: IconName;
2097
- size?: IconSize;
2098
- source?: string;
2099
- theme?: Theme;
2100
- static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
2101
- static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon,[p-icon]", never, { "aria": { "alias": "aria"; "required": false; }; "color": { "alias": "color"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "source": { "alias": "source"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
2102
- }
2103
-
2104
- declare class PInlineNotification extends BaseComponentWithTheme {
2105
- actionIcon?: InlineNotificationActionIcon;
2106
- actionLabel?: string;
2107
- actionLoading?: boolean;
2108
- description?: string;
2109
- dismissButton?: boolean;
2110
- heading?: string;
2111
- headingTag?: InlineNotificationHeadingTag;
2112
- /** @deprecated */
2113
- persistent?: boolean;
2114
- state?: InlineNotificationState;
2115
- theme?: Theme;
2116
- action: EventEmitter<CustomEvent<void>>;
2117
- dismiss: EventEmitter<CustomEvent<void>>;
2118
- static ɵfac: i0.ɵɵFactoryDeclaration<PInlineNotification, never>;
2119
- static ɵcmp: i0.ɵɵComponentDeclaration<PInlineNotification, "p-inline-notification,[p-inline-notification]", never, { "actionIcon": { "alias": "actionIcon"; "required": false; }; "actionLabel": { "alias": "actionLabel"; "required": false; }; "actionLoading": { "alias": "actionLoading"; "required": false; }; "description": { "alias": "description"; "required": false; }; "dismissButton": { "alias": "dismissButton"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "persistent": { "alias": "persistent"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "action": "action"; "dismiss": "dismiss"; }, never, ["*"], false, never>;
2120
- }
2121
-
2122
- declare class PInputDate extends BaseComponentWithTheme {
2123
- autoComplete?: string;
2124
- compact?: boolean;
2125
- description?: string;
2126
- disabled?: boolean;
2127
- form?: string;
2128
- hideLabel?: BreakpointCustomizable<boolean>;
2129
- label?: string;
2130
- loading?: boolean;
2131
- max?: string;
2132
- message?: string;
2133
- min?: string;
2134
- name: string;
2135
- readOnly?: boolean;
2136
- required?: boolean;
2137
- state?: InputDateState;
2138
- step?: number;
2139
- theme?: Theme;
2140
- value?: string;
2141
- blur: EventEmitter<CustomEvent<Event>>;
2142
- change: EventEmitter<CustomEvent<Event>>;
2143
- input: EventEmitter<CustomEvent<InputEvent>>;
2144
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputDate, never>;
2145
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputDate, "p-input-date,[p-input-date]", 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; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2146
- }
2147
-
2148
- declare class PInputEmail extends BaseComponentWithTheme {
2149
- autoComplete?: string;
2150
- compact?: boolean;
2151
- description?: string;
2152
- disabled?: boolean;
2153
- form?: string;
2154
- hideLabel?: BreakpointCustomizable<boolean>;
2155
- indicator?: boolean;
2156
- label?: string;
2157
- loading?: boolean;
2158
- maxLength?: number;
2159
- message?: string;
2160
- minLength?: number;
2161
- multiple?: boolean;
2162
- name: string;
2163
- pattern?: string;
2164
- placeholder?: string;
2165
- readOnly?: boolean;
2166
- required?: boolean;
2167
- state?: InputEmailState;
2168
- theme?: Theme;
2169
- value?: string;
2170
- blur: EventEmitter<CustomEvent<Event>>;
2171
- change: EventEmitter<CustomEvent<Event>>;
2172
- input: EventEmitter<CustomEvent<InputEvent>>;
2173
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputEmail, never>;
2174
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputEmail, "p-input-email,[p-input-email]", 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; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "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; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2175
- }
2176
-
2177
- declare class PInputNumber extends BaseComponentWithTheme {
2178
- autoComplete?: string;
2179
- compact?: boolean;
2180
- controls?: boolean;
2181
- description?: string;
2182
- disabled?: boolean;
2183
- form?: string;
2184
- hideLabel?: BreakpointCustomizable<boolean>;
2185
- label?: string;
2186
- loading?: boolean;
2187
- max?: number;
2188
- message?: string;
2189
- min?: number;
2190
- name: string;
2191
- placeholder?: string;
2192
- readOnly?: boolean;
2193
- required?: boolean;
2194
- state?: InputNumberState;
2195
- step?: number;
2196
- theme?: Theme;
2197
- value?: string;
2198
- blur: EventEmitter<CustomEvent<Event>>;
2199
- change: EventEmitter<CustomEvent<Event>>;
2200
- input: EventEmitter<CustomEvent<InputEvent>>;
2201
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputNumber, never>;
2202
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputNumber, "p-input-number,[p-input-number]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "controls": { "alias": "controls"; "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; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "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; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2203
- }
2204
-
2205
- declare class PInputPassword extends BaseComponentWithTheme {
2206
- autoComplete?: string;
2207
- compact?: boolean;
2208
- description?: string;
2209
- disabled?: boolean;
2210
- form?: string;
2211
- hideLabel?: BreakpointCustomizable<boolean>;
2212
- label?: string;
2213
- loading?: boolean;
2214
- maxLength?: number;
2215
- message?: string;
2216
- minLength?: number;
2217
- name: string;
2218
- placeholder?: string;
2219
- readOnly?: boolean;
2220
- required?: boolean;
2221
- state?: InputPasswordState;
2222
- theme?: Theme;
2223
- toggle?: boolean;
2224
- value?: string;
2225
- blur: EventEmitter<CustomEvent<Event>>;
2226
- change: EventEmitter<CustomEvent<Event>>;
2227
- input: EventEmitter<CustomEvent<InputEvent>>;
2228
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputPassword, never>;
2229
- 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; }; "loading": { "alias": "loading"; "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>;
2230
- }
2231
-
2232
- declare class PInputSearch extends BaseComponentWithTheme {
2233
- autoComplete?: string;
2234
- clear?: boolean;
2235
- compact?: boolean;
2236
- description?: string;
2237
- disabled?: boolean;
2238
- form?: string;
2239
- hideLabel?: BreakpointCustomizable<boolean>;
2240
- indicator?: boolean;
2241
- label?: string;
2242
- loading?: boolean;
2243
- message?: string;
2244
- name: string;
2245
- placeholder?: string;
2246
- readOnly?: boolean;
2247
- required?: boolean;
2248
- state?: InputSearchState;
2249
- theme?: Theme;
2250
- value?: string;
2251
- blur: EventEmitter<CustomEvent<Event>>;
2252
- change: EventEmitter<CustomEvent<Event>>;
2253
- input: EventEmitter<CustomEvent<InputEvent>>;
2254
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputSearch, never>;
2255
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputSearch, "p-input-search,[p-input-search]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "clear": { "alias": "clear"; "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; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "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; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2603
+ motionVisibleEnd: EventEmitter<CustomEvent<TransitionEvent>>;
2604
+ static ɵfac: i0.ɵɵFactoryDeclaration<PFlyout, never>;
2605
+ static ɵcmp: i0.ɵɵComponentDeclaration<PFlyout, "p-flyout,[p-flyout]", never, { "aria": { "alias": "aria"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "disableBackdropClick": { "alias": "disableBackdropClick"; "required": false; }; "footerBehavior": { "alias": "footerBehavior"; "required": false; }; "open": { "alias": "open"; "required": false; }; "position": { "alias": "position"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "dismiss": "dismiss"; "motionHiddenEnd": "motionHiddenEnd"; "motionVisibleEnd": "motionVisibleEnd"; }, never, ["*"], false, never>;
2256
2606
  }
2257
2607
 
2258
- declare class PInputTel extends BaseComponentWithTheme {
2259
- autoComplete?: string;
2260
- compact?: boolean;
2261
- description?: string;
2262
- disabled?: boolean;
2263
- form?: string;
2264
- hideLabel?: BreakpointCustomizable<boolean>;
2265
- indicator?: boolean;
2266
- label?: string;
2267
- loading?: boolean;
2268
- maxLength?: number;
2269
- message?: string;
2270
- minLength?: number;
2271
- name: string;
2272
- pattern?: string;
2273
- placeholder?: string;
2274
- readOnly?: boolean;
2275
- required?: boolean;
2276
- state?: InputTelState;
2608
+ /** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
2609
+ declare class PGrid extends BaseComponent {
2610
+ direction?: BreakpointCustomizable<GridDirection>;
2611
+ /** @deprecated */
2612
+ gutter?: BreakpointCustomizable<GridGutter>;
2613
+ wrap?: BreakpointCustomizable<GridWrap>;
2614
+ static ɵfac: i0.ɵɵFactoryDeclaration<PGrid, never>;
2615
+ static ɵcmp: i0.ɵɵComponentDeclaration<PGrid, "p-grid,[p-grid]", never, { "direction": { "alias": "direction"; "required": false; }; "gutter": { "alias": "gutter"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
2616
+ }
2617
+
2618
+ /** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
2619
+ declare class PGridItem extends BaseComponent {
2620
+ offset?: BreakpointCustomizable<GridItemOffset>;
2621
+ size?: BreakpointCustomizable<GridItemSize>;
2622
+ static ɵfac: i0.ɵɵFactoryDeclaration<PGridItem, never>;
2623
+ static ɵcmp: i0.ɵɵComponentDeclaration<PGridItem, "p-grid-item,[p-grid-item]", never, { "offset": { "alias": "offset"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
2624
+ }
2625
+
2626
+ declare class PHeading extends BaseComponentWithTheme {
2627
+ align?: HeadingAlign;
2628
+ color?: HeadingColor;
2629
+ ellipsis?: boolean;
2630
+ size?: BreakpointCustomizable<HeadingSize>;
2631
+ tag?: HeadingTag;
2277
2632
  theme?: Theme;
2278
- value?: string;
2279
- blur: EventEmitter<CustomEvent<Event>>;
2280
- change: EventEmitter<CustomEvent<Event>>;
2281
- input: EventEmitter<CustomEvent<InputEvent>>;
2282
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputTel, never>;
2283
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputTel, "p-input-tel,[p-input-tel]", 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; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "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; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2633
+ static ɵfac: i0.ɵɵFactoryDeclaration<PHeading, never>;
2634
+ static ɵcmp: i0.ɵɵComponentDeclaration<PHeading, "p-heading,[p-heading]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
2284
2635
  }
2285
2636
 
2286
- declare class PInputText extends BaseComponentWithTheme {
2287
- autoComplete?: string;
2288
- compact?: boolean;
2289
- counter?: boolean;
2290
- description?: string;
2291
- disabled?: boolean;
2292
- form?: string;
2293
- hideLabel?: BreakpointCustomizable<boolean>;
2294
- label?: string;
2295
- loading?: boolean;
2296
- maxLength?: number;
2297
- message?: string;
2298
- minLength?: number;
2299
- name: string;
2300
- placeholder?: string;
2301
- readOnly?: boolean;
2302
- required?: boolean;
2303
- spellCheck?: boolean;
2304
- state?: InputTextState;
2637
+ /** @deprecated since v3.0.0, will be removed with next major release. Please use "p-heading" instead. */
2638
+ declare class PHeadline extends BaseComponentWithTheme {
2639
+ align?: HeadlineAlign;
2640
+ color?: HeadlineColor;
2641
+ ellipsis?: boolean;
2642
+ tag?: HeadlineTag;
2305
2643
  theme?: Theme;
2306
- value?: string;
2307
- blur: EventEmitter<CustomEvent<Event>>;
2308
- change: EventEmitter<CustomEvent<Event>>;
2309
- input: EventEmitter<CustomEvent<InputEvent>>;
2310
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputText, never>;
2311
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputText, "p-input-text,[p-input-text]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "counter": { "alias": "counter"; "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; }; "loading": { "alias": "loading"; "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; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2644
+ variant?: HeadlineVariant;
2645
+ static ɵfac: i0.ɵɵFactoryDeclaration<PHeadline, never>;
2646
+ static ɵcmp: i0.ɵɵComponentDeclaration<PHeadline, "p-headline,[p-headline]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
2312
2647
  }
2313
2648
 
2314
- declare class PInputTime extends BaseComponentWithTheme {
2315
- autoComplete?: string;
2316
- compact?: boolean;
2317
- description?: string;
2318
- disabled?: boolean;
2319
- form?: string;
2320
- hideLabel?: BreakpointCustomizable<boolean>;
2321
- label?: string;
2322
- loading?: boolean;
2323
- max?: string;
2324
- message?: string;
2325
- min?: string;
2326
- name: string;
2327
- readOnly?: boolean;
2328
- required?: boolean;
2329
- state?: InputTimeState;
2330
- step?: number;
2649
+ declare class PIcon extends BaseComponentWithTheme {
2650
+ aria?: SelectedAriaAttributes<IconAriaAttribute>;
2651
+ color?: IconColor;
2652
+ /** @deprecated */
2653
+ lazy?: boolean;
2654
+ name?: IconName;
2655
+ size?: IconSize;
2656
+ source?: string;
2331
2657
  theme?: Theme;
2332
- value?: string;
2333
- blur: EventEmitter<CustomEvent<Event>>;
2334
- change: EventEmitter<CustomEvent<Event>>;
2335
- input: EventEmitter<CustomEvent<InputEvent>>;
2336
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputTime, never>;
2337
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputTime, "p-input-time,[p-input-time]", 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; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2658
+ static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
2659
+ static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon,[p-icon]", never, { "aria": { "alias": "aria"; "required": false; }; "color": { "alias": "color"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "source": { "alias": "source"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
2338
2660
  }
2339
2661
 
2340
- declare class PInputUrl extends BaseComponentWithTheme {
2341
- autoComplete?: string;
2342
- compact?: boolean;
2662
+ declare class PInlineNotification extends BaseComponentWithTheme {
2663
+ actionIcon?: InlineNotificationActionIcon;
2664
+ actionLabel?: string;
2665
+ actionLoading?: boolean;
2343
2666
  description?: string;
2344
- disabled?: boolean;
2345
- form?: string;
2346
- hideLabel?: BreakpointCustomizable<boolean>;
2347
- indicator?: boolean;
2348
- label?: string;
2349
- loading?: boolean;
2350
- maxLength?: number;
2351
- message?: string;
2352
- minLength?: number;
2353
- name: string;
2354
- pattern?: string;
2355
- placeholder?: string;
2356
- readOnly?: boolean;
2357
- required?: boolean;
2358
- state?: InputUrlState;
2667
+ dismissButton?: boolean;
2668
+ heading?: string;
2669
+ headingTag?: InlineNotificationHeadingTag;
2670
+ /** @deprecated */
2671
+ persistent?: boolean;
2672
+ state?: InlineNotificationState;
2359
2673
  theme?: Theme;
2360
- value?: string;
2361
- blur: EventEmitter<CustomEvent<Event>>;
2362
- change: EventEmitter<CustomEvent<Event>>;
2363
- input: EventEmitter<CustomEvent<InputEvent>>;
2364
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputUrl, never>;
2365
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputUrl, "p-input-url,[p-input-url]", 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; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "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; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2674
+ action: EventEmitter<CustomEvent<void>>;
2675
+ dismiss: EventEmitter<CustomEvent<void>>;
2676
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInlineNotification, never>;
2677
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInlineNotification, "p-inline-notification,[p-inline-notification]", never, { "actionIcon": { "alias": "actionIcon"; "required": false; }; "actionLabel": { "alias": "actionLabel"; "required": false; }; "actionLoading": { "alias": "actionLoading"; "required": false; }; "description": { "alias": "description"; "required": false; }; "dismissButton": { "alias": "dismissButton"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "persistent": { "alias": "persistent"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "action": "action"; "dismiss": "dismiss"; }, never, ["*"], false, never>;
2366
2678
  }
2367
2679
 
2368
2680
  declare class PLink extends BaseComponentWithTheme {
@@ -2509,25 +2821,6 @@ declare class PModelSignature extends BaseComponentWithTheme {
2509
2821
  static ɵcmp: i0.ɵɵComponentDeclaration<PModelSignature, "p-model-signature,[p-model-signature]", never, { "color": { "alias": "color"; "required": false; }; "fetchPriority": { "alias": "fetchPriority"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "model": { "alias": "model"; "required": false; }; "safeZone": { "alias": "safeZone"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
2510
2822
  }
2511
2823
 
2512
- declare class PMultiSelect extends BaseComponentWithTheme {
2513
- compact?: boolean;
2514
- description?: string;
2515
- disabled?: boolean;
2516
- dropdownDirection?: MultiSelectDropdownDirection;
2517
- form?: string;
2518
- hideLabel?: BreakpointCustomizable<boolean>;
2519
- label?: string;
2520
- message?: string;
2521
- name: string;
2522
- required?: boolean;
2523
- state?: MultiSelectState;
2524
- theme?: Theme;
2525
- value?: string[];
2526
- update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.MultiSelectUpdateEvent>>;
2527
- static ɵfac: i0.ɵɵFactoryDeclaration<PMultiSelect, never>;
2528
- static ɵcmp: i0.ɵɵComponentDeclaration<PMultiSelect, "p-multi-select,[p-multi-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
2529
- }
2530
-
2531
2824
  declare class PMultiSelectOption extends BaseComponent {
2532
2825
  disabled?: boolean;
2533
2826
  value: string;
@@ -2566,27 +2859,6 @@ declare class PPagination extends BaseComponentWithTheme {
2566
2859
  static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination,[p-pagination]", never, { "activePage": { "alias": "activePage"; "required": false; }; "allyLabel": { "alias": "allyLabel"; "required": false; }; "allyLabelNext": { "alias": "allyLabelNext"; "required": false; }; "allyLabelPage": { "alias": "allyLabelPage"; "required": false; }; "allyLabelPrev": { "alias": "allyLabelPrev"; "required": false; }; "intl": { "alias": "intl"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "maxNumberOfPageLinks": { "alias": "maxNumberOfPageLinks"; "required": false; }; "showLastPage": { "alias": "showLastPage"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "totalItemsCount": { "alias": "totalItemsCount"; "required": false; }; }, { "pageChange": "pageChange"; "update": "update"; }, never, ["*"], false, never>;
2567
2860
  }
2568
2861
 
2569
- declare class PPinCode extends BaseComponentWithTheme {
2570
- compact?: boolean;
2571
- description?: string;
2572
- disabled?: boolean;
2573
- form?: string;
2574
- hideLabel?: BreakpointCustomizable<boolean>;
2575
- label?: string;
2576
- length?: PinCodeLength;
2577
- loading?: boolean;
2578
- message?: string;
2579
- name?: string;
2580
- required?: boolean;
2581
- state?: PinCodeState;
2582
- theme?: Theme;
2583
- type?: PinCodeType;
2584
- value?: string;
2585
- update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.PinCodeUpdateEvent>>;
2586
- static ɵfac: i0.ɵɵFactoryDeclaration<PPinCode, never>;
2587
- static ɵcmp: i0.ɵɵComponentDeclaration<PPinCode, "p-pin-code,[p-pin-code]", never, { "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; }; "length": { "alias": "length"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
2588
- }
2589
-
2590
2862
  declare class PPopover extends BaseComponentWithTheme {
2591
2863
  aria?: SelectedAriaAttributes<PopoverAriaAttribute>;
2592
2864
  description?: string;
@@ -2596,6 +2868,7 @@ declare class PPopover extends BaseComponentWithTheme {
2596
2868
  static ɵcmp: i0.ɵɵComponentDeclaration<PPopover, "p-popover,[p-popover]", never, { "aria": { "alias": "aria"; "required": false; }; "description": { "alias": "description"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
2597
2869
  }
2598
2870
 
2871
+ /** @deprecated since v3.30.0, will be removed with next major release. Please use `p-radio-group` instead. */
2599
2872
  declare class PRadioButtonWrapper extends BaseComponentWithTheme {
2600
2873
  hideLabel?: BreakpointCustomizable<boolean>;
2601
2874
  label?: string;
@@ -2607,6 +2880,15 @@ declare class PRadioButtonWrapper extends BaseComponentWithTheme {
2607
2880
  static ɵcmp: i0.ɵɵComponentDeclaration<PRadioButtonWrapper, "p-radio-button-wrapper,[p-radio-button-wrapper]", never, { "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
2608
2881
  }
2609
2882
 
2883
+ declare class PRadioGroupOption extends BaseComponent {
2884
+ disabled?: boolean;
2885
+ label?: string;
2886
+ loading?: boolean;
2887
+ value?: string;
2888
+ static ɵfac: i0.ɵɵFactoryDeclaration<PRadioGroupOption, never>;
2889
+ static ɵcmp: i0.ɵɵComponentDeclaration<PRadioGroupOption, "p-radio-group-option,[p-radio-group-option]", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
2890
+ }
2891
+
2610
2892
  declare class PScroller extends BaseComponentWithTheme {
2611
2893
  alignScrollIndicator?: ScrollerAlignScrollIndicator;
2612
2894
  aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;
@@ -2623,22 +2905,6 @@ declare class PScroller extends BaseComponentWithTheme {
2623
2905
  static ɵcmp: i0.ɵɵComponentDeclaration<PScroller, "p-scroller,[p-scroller]", never, { "alignScrollIndicator": { "alias": "alignScrollIndicator"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "gradientColor": { "alias": "gradientColor"; "required": false; }; "gradientColorScheme": { "alias": "gradientColorScheme"; "required": false; }; "scrollIndicatorPosition": { "alias": "scrollIndicatorPosition"; "required": false; }; "scrollToPosition": { "alias": "scrollToPosition"; "required": false; }; "scrollbar": { "alias": "scrollbar"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
2624
2906
  }
2625
2907
 
2626
- declare class PSegmentedControl extends BaseComponentWithTheme {
2627
- /** @deprecated */
2628
- backgroundColor?: SegmentedControlBackgroundColor;
2629
- columns?: BreakpointCustomizable<SegmentedControlColumns>;
2630
- disabled?: boolean;
2631
- form?: string;
2632
- name?: string;
2633
- theme?: Theme;
2634
- value?: string | number;
2635
- /** @deprecated */
2636
- segmentedControlChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
2637
- update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
2638
- static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentedControl, never>;
2639
- static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentedControl, "p-segmented-control,[p-segmented-control]", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "segmentedControlChange": "segmentedControlChange"; "update": "update"; }, never, ["*"], false, never>;
2640
- }
2641
-
2642
2908
  declare class PSegmentedControlItem extends BaseComponent {
2643
2909
  aria?: SelectedAriaAttributes<SegmentedControlItemAriaAttribute>;
2644
2910
  disabled?: boolean;
@@ -2650,26 +2916,6 @@ declare class PSegmentedControlItem extends BaseComponent {
2650
2916
  static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentedControlItem, "p-segmented-control-item,[p-segmented-control-item]", never, { "aria": { "alias": "aria"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
2651
2917
  }
2652
2918
 
2653
- declare class PSelect extends BaseComponentWithTheme {
2654
- compact?: boolean;
2655
- description?: string;
2656
- disabled?: boolean;
2657
- dropdownDirection?: SelectDropdownDirection;
2658
- filter?: boolean;
2659
- form?: string;
2660
- hideLabel?: BreakpointCustomizable<boolean>;
2661
- label?: string;
2662
- message?: string;
2663
- name: string;
2664
- required?: boolean;
2665
- state?: SelectState;
2666
- theme?: Theme;
2667
- value?: string;
2668
- update: EventEmitter<CustomEvent<SelectUpdateEventDetail>>;
2669
- static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
2670
- static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select,[p-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
2671
- }
2672
-
2673
2919
  declare class PSelectOption extends BaseComponent {
2674
2920
  disabled?: boolean;
2675
2921
  value?: string;
@@ -2894,35 +3140,6 @@ declare class PTextListItem extends BaseComponent {
2894
3140
  static ɵcmp: i0.ɵɵComponentDeclaration<PTextListItem, "p-text-list-item,[p-text-list-item]", never, {}, {}, never, ["*"], false, never>;
2895
3141
  }
2896
3142
 
2897
- declare class PTextarea extends BaseComponentWithTheme {
2898
- autoComplete?: string;
2899
- counter?: boolean;
2900
- description?: string;
2901
- disabled?: boolean;
2902
- form?: string;
2903
- hideLabel?: BreakpointCustomizable<boolean>;
2904
- label?: string;
2905
- maxLength?: number;
2906
- message?: string;
2907
- minLength?: number;
2908
- name: string;
2909
- placeholder?: string;
2910
- readOnly?: boolean;
2911
- required?: boolean;
2912
- resize?: TextareaResize;
2913
- rows?: number;
2914
- spellCheck?: boolean;
2915
- state?: TextareaState;
2916
- theme?: Theme;
2917
- value?: string;
2918
- wrap?: TextareaWrap;
2919
- blur: EventEmitter<CustomEvent<Event>>;
2920
- change: EventEmitter<CustomEvent<Event>>;
2921
- input: EventEmitter<CustomEvent<InputEvent>>;
2922
- static ɵfac: i0.ɵɵFactoryDeclaration<PTextarea, never>;
2923
- static ɵcmp: i0.ɵɵComponentDeclaration<PTextarea, "p-textarea,[p-textarea]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "counter": { "alias": "counter"; "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; }; "resize": { "alias": "resize"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
2924
- }
2925
-
2926
3143
  /** @deprecated since v3.29.0, will be removed with next major release. Please use `p-textarea` instead. */
2927
3144
  declare class PTextareaWrapper extends BaseComponentWithTheme {
2928
3145
  description?: string;
@@ -2954,7 +3171,7 @@ declare class PWordmark extends BaseComponentWithTheme {
2954
3171
  static ɵcmp: i0.ɵɵComponentDeclaration<PWordmark, "p-wordmark,[p-wordmark]", never, { "aria": { "alias": "aria"; "required": false; }; "href": { "alias": "href"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
2955
3172
  }
2956
3173
 
2957
- declare const DECLARATIONS: (typeof PTableBody)[];
3174
+ declare const DECLARATIONS: (typeof PCheckbox | typeof PInputDate | typeof PInputEmail | typeof PInputNumber | typeof PInputPassword | typeof PInputSearch | typeof PInputTel | typeof PInputText | typeof PInputTime | typeof PInputUrl | typeof PMultiSelect | typeof PPinCode | typeof PRadioGroup | typeof PSegmentedControl | typeof PSelect | typeof PTableBody | typeof PTextarea)[];
2958
3175
 
2959
3176
  type PorscheDesignSystemModuleConfig = {
2960
3177
  prefix?: string;
@@ -2970,7 +3187,7 @@ declare class PorscheDesignSystemModule {
2970
3187
  constructor(configParam: DefaultConfig);
2971
3188
  static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
2972
3189
  static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
2973
- static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, typeof PSpinner, typeof PStepperHorizontal, typeof PStepperHorizontalItem, typeof PSwitch, typeof PTable, typeof PTableBody, typeof PTableCell, typeof PTableHead, typeof PTableHeadCell, typeof PTableHeadRow, typeof PTableRow, typeof PTabs, typeof PTabsBar, typeof PTabsItem, typeof PTag, typeof PTagDismissible, typeof PText, typeof PTextFieldWrapper, typeof PTextList, typeof PTextListItem, typeof PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark], never, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, typeof PSpinner, typeof PStepperHorizontal, typeof PStepperHorizontalItem, typeof PSwitch, typeof PTable, typeof PTableBody, typeof PTableCell, typeof PTableHead, typeof PTableHeadCell, typeof PTableHeadRow, typeof PTableRow, typeof PTabs, typeof PTabsBar, typeof PTabsItem, typeof PTag, typeof PTagDismissible, typeof PText, typeof PTextFieldWrapper, typeof PTextList, typeof PTextListItem, typeof PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark]>;
3190
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PRadioGroup, typeof PRadioGroupOption, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, typeof PSpinner, typeof PStepperHorizontal, typeof PStepperHorizontalItem, typeof PSwitch, typeof PTable, typeof PTableBody, typeof PTableCell, typeof PTableHead, typeof PTableHeadCell, typeof PTableHeadRow, typeof PTableRow, typeof PTabs, typeof PTabsBar, typeof PTabsItem, typeof PTag, typeof PTagDismissible, typeof PText, typeof PTextFieldWrapper, typeof PTextList, typeof PTextListItem, typeof PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark], never, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PRadioGroup, typeof PRadioGroupOption, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, typeof PSpinner, typeof PStepperHorizontal, typeof PStepperHorizontalItem, typeof PSwitch, typeof PTable, typeof PTableBody, typeof PTableCell, typeof PTableHead, typeof PTableHeadCell, typeof PTableHeadRow, typeof PTableRow, typeof PTabs, typeof PTabsBar, typeof PTabsItem, typeof PTag, typeof PTagDismissible, typeof PText, typeof PTextFieldWrapper, typeof PTextList, typeof PTextListItem, typeof PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark]>;
2974
3191
  static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
2975
3192
  }
2976
3193
 
@@ -2980,5 +3197,5 @@ declare class ToastManager {
2980
3197
  static ɵprov: i0.ɵɵInjectableDeclaration<ToastManager>;
2981
3198
  }
2982
3199
 
2983
- export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlag, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, 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 };
2984
- export type { AccordionHeadingTag, AccordionSize, AccordionTag, AccordionUpdateEvent, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, BannerWidth, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonGroupDirection, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonPureWeight, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileBackground, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEvent, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CheckboxUpdateEventDetail, CheckboxWrapperState, ContentWrapperBackgroundColor, ContentWrapperWidth, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DividerOrientation, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdate, DrilldownUpdateEvent, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FieldsetWrapperLabelSize, FieldsetWrapperState, FlagAriaAttribute, FlagName, FlagSize, FlexAlignContent, FlexAlignItems, FlexDirection, FlexInline, FlexItemAlignSelf, FlexItemFlex, FlexItemGrow, FlexItemOffset, FlexItemShrink, FlexItemWidth, FlexJustifyContent, FlexWrap, FlyoutAriaAttribute, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GridDirection, GridGutter, GridItemOffset, GridItemSize, GridWrap, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, HeadlineAlign, HeadlineColor, HeadlineTag, HeadlineVariant, HeadlineVariantCustom, HeadlineVariantType, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, 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, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkPureWeight, LinkSocialIcon, LinkSocialTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileBackground, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight, LinkTileProductAspectRatio, LinkTileProductLikeEvent, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, MarqueAriaAttribute, MarqueSize, MarqueTarget, MarqueVariant, ModalAriaAttribute, ModalBackdrop, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectDropdownDirection, MultiSelectState, MultiSelectUpdateEvent, MultiSelectUpdateEventDetail, PaginationInternationalization, PaginationMaxNumberOfPageLinks, PaginationUpdateEvent, PaginationUpdateEventDetail, PinCodeLength, PinCodeState, PinCodeType, PinCodeUpdateEvent, PinCodeUpdateEventDetail, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioButtonWrapperState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerGradientColor, ScrollerGradientColorScheme, ScrollerScrollIndicatorPosition, ScrollerScrollToPosition, SegmentedControlBackgroundColor, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlUpdateEvent, SegmentedControlUpdateEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectUpdateEventDetail, SelectWrapperDropdownDirection, SelectWrapperState, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEvent, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEvent, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEvent, TableUpdateEventDetail, TabsBarGradientColor, TabsBarGradientColorScheme, TabsBarSize, TabsBarUpdateEvent, TabsBarUpdateEventDetail, TabsBarWeight, TabsGradientColor, TabsGradientColorScheme, TabsSize, TabsUpdateEvent, TabsUpdateEventDetail, TabsWeight, TagColor, TagDismissibleAriaAttribute, TagDismissibleColor, TagIcon, TextAlign, TextColor, TextFieldWrapperActionIcon, TextFieldWrapperState, TextFieldWrapperUnitPosition, TextListListType, TextListOrderType, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TextareaWrapperState, Theme, TileAlign, TileAspectRatio, TileBackground, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
3200
+ export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlag, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PRadioGroup, PRadioGroupOption, 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 };
3201
+ export type { AccordionHeadingTag, AccordionSize, AccordionTag, AccordionUpdateEvent, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, BannerWidth, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonGroupDirection, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonPureWeight, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileBackground, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEvent, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CheckboxUpdateEventDetail, CheckboxWrapperState, ContentWrapperBackgroundColor, ContentWrapperWidth, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DividerOrientation, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdate, DrilldownUpdateEvent, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FieldsetWrapperLabelSize, FieldsetWrapperState, FlagAriaAttribute, FlagName, FlagSize, FlexAlignContent, FlexAlignItems, FlexDirection, FlexInline, FlexItemAlignSelf, FlexItemFlex, FlexItemGrow, FlexItemOffset, FlexItemShrink, FlexItemWidth, FlexJustifyContent, FlexWrap, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GridDirection, GridGutter, GridItemOffset, GridItemSize, GridWrap, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, HeadlineAlign, HeadlineColor, HeadlineTag, HeadlineVariant, HeadlineVariantCustom, HeadlineVariantType, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, 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, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkPureWeight, LinkSocialIcon, LinkSocialTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileBackground, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight, LinkTileProductAspectRatio, LinkTileProductLikeEvent, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, MarqueAriaAttribute, MarqueSize, MarqueTarget, MarqueVariant, ModalAriaAttribute, ModalBackdrop, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectUpdateEvent, MultiSelectUpdateEventDetail, PaginationInternationalization, PaginationMaxNumberOfPageLinks, PaginationUpdateEvent, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PinCodeUpdateEvent, PinCodeUpdateEventDetail, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioButtonWrapperState, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerGradientColor, ScrollerGradientColorScheme, ScrollerScrollIndicatorPosition, ScrollerScrollToPosition, SegmentedControlBackgroundColor, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlUpdateEvent, SegmentedControlUpdateEventDetail, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectUpdateEventDetail, SelectWrapperDropdownDirection, SelectWrapperState, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEvent, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEvent, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEvent, TableUpdateEventDetail, TabsBarGradientColor, TabsBarGradientColorScheme, TabsBarSize, TabsBarUpdateEvent, TabsBarUpdateEventDetail, TabsBarWeight, TabsGradientColor, TabsGradientColorScheme, TabsSize, TabsUpdateEvent, TabsUpdateEventDetail, TabsWeight, TagColor, TagDismissibleAriaAttribute, TagDismissibleColor, TagIcon, TextAlign, TextColor, TextFieldWrapperActionIcon, TextFieldWrapperState, TextFieldWrapperUnitPosition, TextListListType, TextListOrderType, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TextareaWrapperState, Theme, TileAlign, TileAspectRatio, TileBackground, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };