@porsche-design-system/components-angular 3.27.0-rc.4 → 3.27.0-rc.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +39 -0
- package/esm/lib/components/carousel.wrapper.d.ts +4 -3
- package/esm/lib/components/table.wrapper.d.ts +4 -2
- package/esm/lib/types.d.ts +13 -0
- package/fesm2022/porsche-design-system-components-angular.mjs +7 -4
- package/fesm2022/porsche-design-system-components-angular.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,45 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
14
14
|
|
|
15
15
|
### [Unreleased]
|
|
16
16
|
|
|
17
|
+
### [3.27.0-rc.6] - 2025-02-28
|
|
18
|
+
|
|
19
|
+
#### Changed
|
|
20
|
+
|
|
21
|
+
- `Carousel`: Center layout of Carousel on mobile view
|
|
22
|
+
([#3765](https://github.com/porsche-design-system/porsche-design-system/pull/3765))
|
|
23
|
+
- `Carousel`: `auto` value of `slides-per-page` prop is breakpoint customizable
|
|
24
|
+
([#3767](https://github.com/porsche-design-system/porsche-design-system/pull/3767))
|
|
25
|
+
|
|
26
|
+
#### Added
|
|
27
|
+
|
|
28
|
+
- `Table`: `compact` prop to enable a smaller, space-saving version for compact layouts
|
|
29
|
+
([#3758](https://github.com/porsche-design-system/porsche-design-system/pull/3758))
|
|
30
|
+
- `Table`: `layout` prop to render table with `table-layout: fixed` css for manual control of column widths
|
|
31
|
+
([#3758](https://github.com/porsche-design-system/porsche-design-system/pull/3758))
|
|
32
|
+
- `Carousel`: `align-controls` prop to align the controls slot to the left or center (overwrites auto-alignment)
|
|
33
|
+
([#3766](https://github.com/porsche-design-system/porsche-design-system/pull/3766))
|
|
34
|
+
|
|
35
|
+
#### Changed
|
|
36
|
+
|
|
37
|
+
- `Select`, `Multi Select`, `Select Wrapper`:
|
|
38
|
+
- gets rendered on `#top-layer` which enables it to be shown correctly even when used e.g. within a scroll container
|
|
39
|
+
or overflow context ([#3754](https://github.com/porsche-design-system/porsche-design-system/pull/3754))
|
|
40
|
+
- gets positioned by [CSS Anchor Positioning](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_anchor_positioning)
|
|
41
|
+
or [Floating UI](https://floating-ui.com) as fallback for browsers not supporting it yet
|
|
42
|
+
([#3754](https://github.com/porsche-design-system/porsche-design-system/pull/3754))
|
|
43
|
+
- modernized visual appearance, dynamic max-height based on viewport and fade in animation of option list
|
|
44
|
+
([#3754](https://github.com/porsche-design-system/porsche-design-system/pull/3754))
|
|
45
|
+
- `Select`, `Select Wrapper`:
|
|
46
|
+
- focus outline becomes default focus style when no filter is used
|
|
47
|
+
([#3754](https://github.com/porsche-design-system/porsche-design-system/pull/3754))
|
|
48
|
+
|
|
49
|
+
### [3.27.0-rc.5] - 2025-02-20
|
|
50
|
+
|
|
51
|
+
#### Fixed
|
|
52
|
+
|
|
53
|
+
- `AG Grid`: error on reload in next.js.
|
|
54
|
+
([#3759](https://github.com/porsche-design-system/porsche-design-system/pull/3759))
|
|
55
|
+
|
|
17
56
|
### [3.27.0-rc.4] - 2025-02-20
|
|
18
57
|
|
|
19
58
|
#### Fixed
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { BaseComponentWithTheme } from '../../utils';
|
|
3
|
-
import type { CarouselAlignHeader, SelectedAriaAttributes, CarouselAriaAttribute, BreakpointCustomizable, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, Theme, CarouselWidth } from '../types';
|
|
3
|
+
import type { CarouselAlignControls, CarouselAlignHeader, SelectedAriaAttributes, CarouselAriaAttribute, BreakpointCustomizable, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, Theme, CarouselWidth } from '../types';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class PCarousel extends BaseComponentWithTheme {
|
|
6
6
|
activeSlideIndex?: number;
|
|
7
|
+
alignControls?: CarouselAlignControls;
|
|
7
8
|
alignHeader?: CarouselAlignHeader;
|
|
8
9
|
aria?: SelectedAriaAttributes<CarouselAriaAttribute>;
|
|
9
10
|
description?: string;
|
|
@@ -17,7 +18,7 @@ export declare class PCarousel extends BaseComponentWithTheme {
|
|
|
17
18
|
pagination?: BreakpointCustomizable<boolean>;
|
|
18
19
|
rewind?: boolean;
|
|
19
20
|
skipLinkTarget?: string;
|
|
20
|
-
slidesPerPage?: BreakpointCustomizable<
|
|
21
|
+
slidesPerPage?: BreakpointCustomizable<CarouselSlidesPerPage>;
|
|
21
22
|
theme?: Theme;
|
|
22
23
|
trimSpace?: boolean;
|
|
23
24
|
width?: CarouselWidth;
|
|
@@ -27,5 +28,5 @@ export declare class PCarousel extends BaseComponentWithTheme {
|
|
|
27
28
|
carouselChange: EventEmitter<CustomEvent<import("../types").CarouselUpdateEvent>>;
|
|
28
29
|
update: EventEmitter<CustomEvent<import("../types").CarouselUpdateEvent>>;
|
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCarousel, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCarousel, "p-carousel,[p-carousel]", never, { "activeSlideIndex": { "alias": "activeSlideIndex"; "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>;
|
|
31
|
+
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>;
|
|
31
32
|
}
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { BaseComponentWithTheme } from '../../utils';
|
|
3
|
-
import type { Theme } from '../types';
|
|
3
|
+
import type { TableLayout, Theme } from '../types';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class PTable extends BaseComponentWithTheme {
|
|
6
6
|
caption?: string;
|
|
7
|
+
compact?: boolean;
|
|
8
|
+
layout?: TableLayout;
|
|
7
9
|
theme?: Theme;
|
|
8
10
|
/** @deprecated */
|
|
9
11
|
sortingChange: EventEmitter<CustomEvent<import("../types").TableHeadCellSort>>;
|
|
10
12
|
update: EventEmitter<CustomEvent<import("../types").TableHeadCellSort>>;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTable, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table,[p-table]", never, { "caption": { "alias": "caption"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "sortingChange": "sortingChange"; "update": "update"; }, never, ["*"], false, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table,[p-table]", never, { "caption": { "alias": "caption"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "sortingChange": "sortingChange"; "update": "update"; }, never, ["*"], false, never>;
|
|
13
15
|
}
|
package/esm/lib/types.d.ts
CHANGED
|
@@ -767,6 +767,8 @@ declare const CAROUSEL_WIDTHS: readonly [
|
|
|
767
767
|
"extended"
|
|
768
768
|
];
|
|
769
769
|
export type CarouselWidth = (typeof CAROUSEL_WIDTHS)[number];
|
|
770
|
+
declare const CAROUSEL_SLIDES_PER_PAGE: (string | number)[];
|
|
771
|
+
export type CarouselSlidesPerPage = (typeof CAROUSEL_SLIDES_PER_PAGE)[number];
|
|
770
772
|
declare const CAROUSEL_GRADIENT_COLORS: readonly [
|
|
771
773
|
"background-base",
|
|
772
774
|
"background-surface",
|
|
@@ -791,6 +793,12 @@ export type CarouselUpdateEvent = {
|
|
|
791
793
|
previousIndex: number;
|
|
792
794
|
};
|
|
793
795
|
export type CarouselUpdateEventDetail = CarouselUpdateEvent;
|
|
796
|
+
declare const CAROUSEL_ALIGN_CONTROLS: readonly [
|
|
797
|
+
"start",
|
|
798
|
+
"center",
|
|
799
|
+
"auto"
|
|
800
|
+
];
|
|
801
|
+
export type CarouselAlignControls = (typeof CAROUSEL_ALIGN_CONTROLS)[number];
|
|
794
802
|
export type CheckboxState = FormState;
|
|
795
803
|
export type CheckboxUpdateEventDetail = {
|
|
796
804
|
name: string;
|
|
@@ -1357,6 +1365,11 @@ export type SwitchUpdateEvent = {
|
|
|
1357
1365
|
};
|
|
1358
1366
|
export type SwitchUpdateEventDetail = SwitchUpdateEvent;
|
|
1359
1367
|
export type Direction = "asc" | "desc";
|
|
1368
|
+
declare const TABLE_LAYOUTS: readonly [
|
|
1369
|
+
"auto",
|
|
1370
|
+
"fixed"
|
|
1371
|
+
];
|
|
1372
|
+
export type TableLayout = (typeof TABLE_LAYOUTS)[number];
|
|
1360
1373
|
export type TableHeadCellSort = {
|
|
1361
1374
|
id: string;
|
|
1362
1375
|
active?: boolean;
|
|
@@ -225,6 +225,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImpor
|
|
|
225
225
|
|
|
226
226
|
class PCarousel extends BaseComponentWithTheme {
|
|
227
227
|
activeSlideIndex;
|
|
228
|
+
alignControls;
|
|
228
229
|
alignHeader;
|
|
229
230
|
aria;
|
|
230
231
|
description;
|
|
@@ -248,14 +249,14 @@ class PCarousel extends BaseComponentWithTheme {
|
|
|
248
249
|
carouselChange = new EventEmitter();
|
|
249
250
|
update = new EventEmitter();
|
|
250
251
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PCarousel, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
251
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PCarousel, isStandalone: false, selector: "p-carousel,[p-carousel]", inputs: { activeSlideIndex: "activeSlideIndex", alignHeader: "alignHeader", aria: "aria", description: "description", disablePagination: "disablePagination", focusOnCenterSlide: "focusOnCenterSlide", gradientColor: "gradientColor", heading: "heading", headingSize: "headingSize", intl: "intl", pagination: "pagination", rewind: "rewind", skipLinkTarget: "skipLinkTarget", slidesPerPage: "slidesPerPage", theme: "theme", trimSpace: "trimSpace", width: "width", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange", update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
252
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PCarousel, isStandalone: false, selector: "p-carousel,[p-carousel]", inputs: { activeSlideIndex: "activeSlideIndex", alignControls: "alignControls", alignHeader: "alignHeader", aria: "aria", description: "description", disablePagination: "disablePagination", focusOnCenterSlide: "focusOnCenterSlide", gradientColor: "gradientColor", heading: "heading", headingSize: "headingSize", intl: "intl", pagination: "pagination", rewind: "rewind", skipLinkTarget: "skipLinkTarget", slidesPerPage: "slidesPerPage", theme: "theme", trimSpace: "trimSpace", width: "width", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange", update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
252
253
|
}
|
|
253
254
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PCarousel, decorators: [{
|
|
254
255
|
type: Component,
|
|
255
256
|
args: [{
|
|
256
257
|
selector: 'p-carousel,[p-carousel]',
|
|
257
258
|
template: '<ng-content />',
|
|
258
|
-
inputs: ['activeSlideIndex', 'alignHeader', 'aria', 'description', 'disablePagination', 'focusOnCenterSlide', 'gradientColor', 'heading', 'headingSize', 'intl', 'pagination', 'rewind', 'skipLinkTarget', 'slidesPerPage', 'theme', 'trimSpace', 'width', 'wrapContent'],
|
|
259
|
+
inputs: ['activeSlideIndex', 'alignControls', 'alignHeader', 'aria', 'description', 'disablePagination', 'focusOnCenterSlide', 'gradientColor', 'heading', 'headingSize', 'intl', 'pagination', 'rewind', 'skipLinkTarget', 'slidesPerPage', 'theme', 'trimSpace', 'width', 'wrapContent'],
|
|
259
260
|
outputs: ['carouselChange', 'update'],
|
|
260
261
|
standalone: false
|
|
261
262
|
}]
|
|
@@ -1293,19 +1294,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImpor
|
|
|
1293
1294
|
|
|
1294
1295
|
class PTable extends BaseComponentWithTheme {
|
|
1295
1296
|
caption;
|
|
1297
|
+
compact;
|
|
1298
|
+
layout;
|
|
1296
1299
|
theme;
|
|
1297
1300
|
/** @deprecated */
|
|
1298
1301
|
sortingChange = new EventEmitter();
|
|
1299
1302
|
update = new EventEmitter();
|
|
1300
1303
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PTable, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1301
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PTable, isStandalone: false, selector: "p-table,[p-table]", inputs: { caption: "caption", theme: "theme" }, outputs: { sortingChange: "sortingChange", update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1304
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: PTable, isStandalone: false, selector: "p-table,[p-table]", inputs: { caption: "caption", compact: "compact", layout: "layout", theme: "theme" }, outputs: { sortingChange: "sortingChange", update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1302
1305
|
}
|
|
1303
1306
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: PTable, decorators: [{
|
|
1304
1307
|
type: Component,
|
|
1305
1308
|
args: [{
|
|
1306
1309
|
selector: 'p-table,[p-table]',
|
|
1307
1310
|
template: '<ng-content />',
|
|
1308
|
-
inputs: ['caption', 'theme'],
|
|
1311
|
+
inputs: ['caption', 'compact', 'layout', 'theme'],
|
|
1309
1312
|
outputs: ['sortingChange', 'update'],
|
|
1310
1313
|
standalone: false
|
|
1311
1314
|
}]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"porsche-design-system-components-angular.mjs","sources":["../../../projects/angular-wrapper/src/utils.ts","../../../projects/angular-wrapper/src/lib/components/accordion.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/banner.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/button.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/button-group.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/button-pure.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/button-tile.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/canvas.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/carousel.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/checkbox.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/checkbox-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/content-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/crest.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/display.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/divider.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/fieldset.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/fieldset-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flex.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flex-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flyout.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flyout-multilevel.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flyout-multilevel-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/grid.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/grid-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/heading.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/headline.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/icon.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/inline-notification.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-pure.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-social.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-tile.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-tile-model-signature.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-tile-product.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/marque.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/modal.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/model-signature.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/multi-select.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/multi-select-option.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/optgroup.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/pagination.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/pin-code.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/popover.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/radio-button-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/scroller.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/segmented-control.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/segmented-control-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/select.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/select-option.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/select-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/sheet.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/spinner.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/stepper-horizontal.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/stepper-horizontal-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/switch.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-body.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-cell.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-head.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-head-cell.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-head-row.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-row.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tabs.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tabs-bar.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tabs-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tag.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tag-dismissible.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/text.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/text-field-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/text-list.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/text-list-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/textarea.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/textarea-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/toast.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/wordmark.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/barrel.ts","../../../projects/angular-wrapper/src/porsche-design-system.module.ts","../../../projects/angular-wrapper/src/toast-manager.ts","../../../projects/angular-wrapper/src/porsche-design-system-components-angular.ts"],"sourcesContent":["import {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ElementRef,\n inject,\n InjectionToken,\n type OnChanges,\n type OnDestroy,\n} from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\nimport type { Theme } from './lib/types';\n\nexport const THEME_TOKEN = new InjectionToken<BehaviorSubject<Theme>>('pdsTheme');\n\n@Component({\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport abstract class BaseComponent implements OnChanges {\n protected el: HTMLElement;\n\n constructor(cdr: ChangeDetectorRef, elementRef: ElementRef) {\n cdr.detach();\n this.el = elementRef.nativeElement;\n }\n\n ngOnChanges(props: Record<string, { previousValue: any; currentValue: any; firstChange: boolean }>): void {\n for (const prop in props) {\n this.el[prop] = props[prop].currentValue;\n }\n }\n}\n\n@Component({\n template: '',\n})\nexport abstract class BaseComponentWithTheme extends BaseComponent implements OnDestroy {\n theme?: Theme;\n private themeSubscription = inject(THEME_TOKEN).subscribe((theme) => {\n (this.el as HTMLElement & { theme: Theme }).theme = this.theme || theme;\n });\n\n ngOnDestroy(): void {\n // need to manually unsubscribe or otherwise subscription is still active even after unmount\n // https://rafaelneto.dev/en/blog/unsubscribing-behaviorsubject-observable-angular/\n this.themeSubscription.unsubscribe();\n }\n}\n","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { AccordionHeadingTag, AccordionUpdateEventDetail, BreakpointCustomizable, AccordionSize, AccordionTag, Theme } from '../types';\n\n@Component({\n selector: 'p-accordion,[p-accordion]',\n template: '<ng-content />',\n inputs: ['compact', 'heading', 'headingTag', 'open', 'size', 'sticky', 'tag', 'theme'],\n outputs: ['accordionChange', 'update'],\n standalone: false\n})\nexport class PAccordion extends BaseComponentWithTheme {\n compact?: boolean;\n heading?: string;\n headingTag?: AccordionHeadingTag;\n open?: boolean;\n size?: BreakpointCustomizable<AccordionSize>;\n sticky?: boolean;\n /** @deprecated */\n tag?: AccordionTag;\n declare theme?: Theme;\n /** @deprecated */\n accordionChange = new EventEmitter<CustomEvent<AccordionUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<AccordionUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BannerHeadingTag, BannerState, Theme, BannerWidth } from '../types';\n\n@Component({\n selector: 'p-banner,[p-banner]',\n template: '<ng-content />',\n inputs: ['description', 'dismissButton', 'heading', 'headingTag', 'open', 'persistent', 'state', 'theme', 'width'],\n outputs: ['dismiss'],\n standalone: false\n})\nexport class PBanner extends BaseComponentWithTheme {\n description?: string;\n dismissButton?: boolean;\n heading?: string;\n headingTag?: BannerHeadingTag;\n open: boolean;\n /** @deprecated */\n persistent?: boolean;\n state?: BannerState;\n declare theme?: Theme;\n /** @deprecated */\n width?: BannerWidth;\n dismiss = new EventEmitter<CustomEvent<void>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, ButtonAriaAttribute, BreakpointCustomizable, ButtonIcon, Theme, ButtonType, ButtonVariant } from '../types';\n\n@Component({\n selector: 'p-button,[p-button]',\n template: '<ng-content />',\n inputs: ['aria', 'compact', 'disabled', 'form', 'hideLabel', 'icon', 'iconSource', 'loading', 'name', 'theme', 'type', 'value', 'variant'],\n standalone: false\n})\nexport class PButton extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<ButtonAriaAttribute>;\n compact?: BreakpointCustomizable<boolean>;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n icon?: ButtonIcon;\n iconSource?: string;\n loading?: boolean;\n name?: string;\n declare theme?: Theme;\n type?: ButtonType;\n value?: string;\n variant?: ButtonVariant;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, ButtonGroupDirection } from '../types';\n\n@Component({\n selector: 'p-button-group,[p-button-group]',\n template: '<ng-content />',\n inputs: ['direction'],\n standalone: false\n})\nexport class PButtonGroup extends BaseComponent {\n direction?: BreakpointCustomizable<ButtonGroupDirection>;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, ButtonPureAlignLabel, SelectedAriaAttributes, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, Theme, ButtonPureType, ButtonPureWeight } from '../types';\n\n@Component({\n selector: 'p-button-pure,[p-button-pure]',\n template: '<ng-content />',\n inputs: ['active', 'alignLabel', 'aria', 'disabled', 'form', 'hideLabel', 'icon', 'iconSource', 'loading', 'name', 'size', 'stretch', 'theme', 'type', 'underline', 'value', 'weight'],\n standalone: false\n})\nexport class PButtonPure extends BaseComponentWithTheme {\n active?: boolean;\n alignLabel?: BreakpointCustomizable<ButtonPureAlignLabel>;\n aria?: SelectedAriaAttributes<ButtonPureAriaAttribute>;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n icon?: ButtonPureIcon;\n iconSource?: string;\n loading?: boolean;\n name?: string;\n size?: BreakpointCustomizable<ButtonPureSize>;\n stretch?: BreakpointCustomizable<boolean>;\n declare theme?: Theme;\n type?: ButtonPureType;\n underline?: boolean;\n value?: string;\n /** @deprecated */\n weight?: ButtonPureWeight;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { ButtonTileAlign, SelectedAriaAttributes, ButtonTileAriaAttribute, BreakpointCustomizable, ButtonTileAspectRatio, ButtonTileBackground, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight } from '../types';\n\n@Component({\n selector: 'p-button-tile,[p-button-tile]',\n template: '<ng-content />',\n inputs: ['align', 'aria', 'aspectRatio', 'background', 'compact', 'description', 'disabled', 'gradient', 'icon', 'iconSource', 'label', 'loading', 'size', 'type', 'weight'],\n standalone: false\n})\nexport class PButtonTile extends BaseComponent {\n align?: ButtonTileAlign;\n aria?: SelectedAriaAttributes<ButtonTileAriaAttribute>;\n aspectRatio?: BreakpointCustomizable<ButtonTileAspectRatio>;\n background?: ButtonTileBackground;\n compact?: BreakpointCustomizable<boolean>;\n description: string;\n disabled?: boolean;\n gradient?: boolean;\n icon?: ButtonTileIcon;\n iconSource?: string;\n label: string;\n loading?: boolean;\n size?: BreakpointCustomizable<ButtonTileSize>;\n type?: ButtonTileType;\n weight?: BreakpointCustomizable<ButtonTileWeight>;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { CanvasSidebarStartUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-canvas,[p-canvas]',\n template: '<ng-content />',\n inputs: ['sidebarEndOpen', 'sidebarStartOpen', 'theme'],\n outputs: ['sidebarEndDismiss', 'sidebarStartUpdate'],\n standalone: false\n})\nexport class PCanvas extends BaseComponentWithTheme {\n sidebarEndOpen?: boolean;\n sidebarStartOpen?: boolean;\n declare theme?: Theme;\n sidebarEndDismiss = new EventEmitter<CustomEvent<void>>();\n sidebarStartUpdate = new EventEmitter<CustomEvent<CanvasSidebarStartUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { CarouselAlignHeader, SelectedAriaAttributes, CarouselAriaAttribute, BreakpointCustomizable, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, CarouselUpdateEventDetail, Theme, CarouselWidth } from '../types';\n\n@Component({\n selector: 'p-carousel,[p-carousel]',\n template: '<ng-content />',\n inputs: ['activeSlideIndex', 'alignHeader', 'aria', 'description', 'disablePagination', 'focusOnCenterSlide', 'gradientColor', 'heading', 'headingSize', 'intl', 'pagination', 'rewind', 'skipLinkTarget', 'slidesPerPage', 'theme', 'trimSpace', 'width', 'wrapContent'],\n outputs: ['carouselChange', 'update'],\n standalone: false\n})\nexport class PCarousel extends BaseComponentWithTheme {\n activeSlideIndex?: number;\n alignHeader?: CarouselAlignHeader;\n aria?: SelectedAriaAttributes<CarouselAriaAttribute>;\n description?: string;\n /** @deprecated */\n disablePagination?: BreakpointCustomizable<boolean>;\n focusOnCenterSlide?: boolean;\n gradientColor?: CarouselGradientColor;\n heading?: string;\n headingSize?: CarouselHeadingSize;\n intl?: CarouselInternationalization;\n pagination?: BreakpointCustomizable<boolean>;\n rewind?: boolean;\n skipLinkTarget?: string;\n slidesPerPage?: BreakpointCustomizable<number> | \"auto\";\n declare theme?: Theme;\n trimSpace?: boolean;\n width?: CarouselWidth;\n /** @deprecated */\n wrapContent?: boolean;\n /** @deprecated */\n carouselChange = new EventEmitter<CustomEvent<CarouselUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<CarouselUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, CheckboxBlurEventDetail, CheckboxUpdateEventDetail, CheckboxState, Theme } from '../types';\n\n@Component({\n selector: 'p-checkbox,[p-checkbox]',\n template: '<ng-content />',\n inputs: ['checked', 'compact', 'disabled', 'form', 'hideLabel', 'indeterminate', 'label', 'loading', 'message', 'name', 'required', 'state', 'theme', 'value'],\n outputs: ['blur', 'update'],\n standalone: false\n})\nexport class PCheckbox extends BaseComponentWithTheme {\n checked?: boolean;\n compact?: boolean;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n indeterminate?: boolean;\n label?: string;\n loading?: boolean;\n message?: string;\n name?: string;\n required?: boolean;\n state?: CheckboxState;\n declare theme?: Theme;\n value?: string;\n blur = new EventEmitter<CustomEvent<CheckboxBlurEventDetail>>();\n update = new EventEmitter<CustomEvent<CheckboxUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, CheckboxWrapperState, Theme } from '../types';\n\n@Component({\n selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',\n template: '<ng-content />',\n inputs: ['hideLabel', 'label', 'loading', 'message', 'state', 'theme'],\n standalone: false\n})\nexport class PCheckboxWrapper extends BaseComponentWithTheme {\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n loading?: boolean;\n message?: string;\n state?: CheckboxWrapperState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { ContentWrapperBackgroundColor, Theme, ContentWrapperWidth } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */\n@Component({\n selector: 'p-content-wrapper,[p-content-wrapper]',\n template: '<ng-content />',\n inputs: ['backgroundColor', 'theme', 'width'],\n standalone: false\n})\nexport class PContentWrapper extends BaseComponentWithTheme {\n /** @deprecated */\n backgroundColor?: ContentWrapperBackgroundColor;\n /** @deprecated */\n declare theme?: Theme;\n width?: ContentWrapperWidth;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { SelectedAriaAttributes, CrestAriaAttribute, CrestTarget } from '../types';\n\n@Component({\n selector: 'p-crest,[p-crest]',\n template: '<ng-content />',\n inputs: ['aria', 'href', 'target'],\n standalone: false\n})\nexport class PCrest extends BaseComponent {\n aria?: SelectedAriaAttributes<CrestAriaAttribute>;\n href?: string;\n target?: CrestTarget;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { DisplayAlign, DisplayColor, BreakpointCustomizable, DisplaySize, DisplayTag, Theme } from '../types';\n\n@Component({\n selector: 'p-display,[p-display]',\n template: '<ng-content />',\n inputs: ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'],\n standalone: false\n})\nexport class PDisplay extends BaseComponentWithTheme {\n align?: DisplayAlign;\n color?: DisplayColor;\n ellipsis?: boolean;\n size?: BreakpointCustomizable<DisplaySize>;\n tag?: DisplayTag;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { DividerColor, BreakpointCustomizable, DividerDirection, DividerOrientation, Theme } from '../types';\n\n@Component({\n selector: 'p-divider,[p-divider]',\n template: '<ng-content />',\n inputs: ['color', 'direction', 'orientation', 'theme'],\n standalone: false\n})\nexport class PDivider extends BaseComponentWithTheme {\n color?: DividerColor;\n direction?: BreakpointCustomizable<DividerDirection>;\n /** @deprecated */\n orientation?: BreakpointCustomizable<DividerOrientation>;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { FieldsetLabelSize, FieldsetState, Theme } from '../types';\n\n@Component({\n selector: 'p-fieldset,[p-fieldset]',\n template: '<ng-content />',\n inputs: ['label', 'labelSize', 'message', 'required', 'state', 'theme'],\n standalone: false\n})\nexport class PFieldset extends BaseComponentWithTheme {\n label?: string;\n labelSize?: FieldsetLabelSize;\n message?: string;\n required?: boolean;\n state?: FieldsetState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { FieldsetWrapperLabelSize, FieldsetWrapperState, Theme } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Please use \"p-fieldset\" instead. */\n@Component({\n selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',\n template: '<ng-content />',\n inputs: ['label', 'labelSize', 'message', 'required', 'state', 'theme'],\n standalone: false\n})\nexport class PFieldsetWrapper extends BaseComponentWithTheme {\n label?: string;\n labelSize?: FieldsetWrapperLabelSize;\n message?: string;\n required?: boolean;\n state?: FieldsetWrapperState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, FlexAlignContent, FlexAlignItems, FlexDirection, FlexInline, FlexJustifyContent, FlexWrap } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */\n@Component({\n selector: 'p-flex,[p-flex]',\n template: '<ng-content />',\n inputs: ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'],\n standalone: false\n})\nexport class PFlex extends BaseComponent {\n alignContent?: BreakpointCustomizable<FlexAlignContent>;\n alignItems?: BreakpointCustomizable<FlexAlignItems>;\n direction?: BreakpointCustomizable<FlexDirection>;\n inline?: BreakpointCustomizable<FlexInline>;\n justifyContent?: BreakpointCustomizable<FlexJustifyContent>;\n wrap?: BreakpointCustomizable<FlexWrap>;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, FlexItemAlignSelf, FlexItemFlex, FlexItemGrow, FlexItemOffset, FlexItemShrink, FlexItemWidth } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */\n@Component({\n selector: 'p-flex-item,[p-flex-item]',\n template: '<ng-content />',\n inputs: ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'],\n standalone: false\n})\nexport class PFlexItem extends BaseComponent {\n alignSelf?: BreakpointCustomizable<FlexItemAlignSelf>;\n flex?: BreakpointCustomizable<FlexItemFlex>;\n grow?: BreakpointCustomizable<FlexItemGrow>;\n offset?: BreakpointCustomizable<FlexItemOffset>;\n shrink?: BreakpointCustomizable<FlexItemShrink>;\n width?: BreakpointCustomizable<FlexItemWidth>;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, FlyoutAriaAttribute, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, Theme } from '../types';\n\n@Component({\n selector: 'p-flyout,[p-flyout]',\n template: '<ng-content />',\n inputs: ['aria', 'disableBackdropClick', 'footerBehavior', 'open', 'position', 'theme'],\n outputs: ['dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],\n standalone: false\n})\nexport class PFlyout extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<FlyoutAriaAttribute>;\n disableBackdropClick?: boolean;\n footerBehavior?: FlyoutFooterBehavior;\n open: boolean;\n position?: FlyoutPosition;\n declare theme?: Theme;\n dismiss = new EventEmitter<CustomEvent<void>>();\n motionHiddenEnd = new EventEmitter<CustomEvent<FlyoutMotionHiddenEndEventDetail>>();\n motionVisibleEnd = new EventEmitter<CustomEvent<FlyoutMotionVisibleEndEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, FlyoutMultilevelAriaAttribute, FlyoutMultilevelUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-flyout-multilevel,[p-flyout-multilevel]',\n template: '<ng-content />',\n inputs: ['activeIdentifier', 'aria', 'open', 'theme'],\n outputs: ['dismiss', 'update'],\n standalone: false\n})\nexport class PFlyoutMultilevel extends BaseComponentWithTheme {\n activeIdentifier?: string | undefined;\n aria?: SelectedAriaAttributes<FlyoutMultilevelAriaAttribute>;\n open?: boolean;\n declare theme?: Theme;\n dismiss = new EventEmitter<CustomEvent<void>>();\n update = new EventEmitter<CustomEvent<FlyoutMultilevelUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-flyout-multilevel-item,[p-flyout-multilevel-item]',\n template: '<ng-content />',\n inputs: ['cascade', 'identifier', 'label', 'primary', 'secondary'],\n standalone: false\n})\nexport class PFlyoutMultilevelItem extends BaseComponent {\n cascade?: boolean;\n identifier: string;\n label?: string;\n primary?: boolean;\n secondary?: boolean;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, GridDirection, GridGutter, GridWrap } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */\n@Component({\n selector: 'p-grid,[p-grid]',\n template: '<ng-content />',\n inputs: ['direction', 'gutter', 'wrap'],\n standalone: false\n})\nexport class PGrid extends BaseComponent {\n direction?: BreakpointCustomizable<GridDirection>;\n /** @deprecated */\n gutter?: BreakpointCustomizable<GridGutter>;\n wrap?: BreakpointCustomizable<GridWrap>;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, GridItemOffset, GridItemSize } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */\n@Component({\n selector: 'p-grid-item,[p-grid-item]',\n template: '<ng-content />',\n inputs: ['offset', 'size'],\n standalone: false\n})\nexport class PGridItem extends BaseComponent {\n offset?: BreakpointCustomizable<GridItemOffset>;\n size?: BreakpointCustomizable<GridItemSize>;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { HeadingAlign, HeadingColor, BreakpointCustomizable, HeadingSize, HeadingTag, Theme } from '../types';\n\n@Component({\n selector: 'p-heading,[p-heading]',\n template: '<ng-content />',\n inputs: ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'],\n standalone: false\n})\nexport class PHeading extends BaseComponentWithTheme {\n align?: HeadingAlign;\n color?: HeadingColor;\n ellipsis?: boolean;\n size?: BreakpointCustomizable<HeadingSize>;\n tag?: HeadingTag;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { HeadlineAlign, HeadlineColor, HeadlineTag, Theme, HeadlineVariant } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Please use \"p-heading\" instead. */\n@Component({\n selector: 'p-headline,[p-headline]',\n template: '<ng-content />',\n inputs: ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'],\n standalone: false\n})\nexport class PHeadline extends BaseComponentWithTheme {\n align?: HeadlineAlign;\n color?: HeadlineColor;\n ellipsis?: boolean;\n tag?: HeadlineTag;\n declare theme?: Theme;\n variant?: HeadlineVariant;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, IconAriaAttribute, IconColor, IconName, IconSize, Theme } from '../types';\n\n@Component({\n selector: 'p-icon,[p-icon]',\n template: '<ng-content />',\n inputs: ['aria', 'color', 'lazy', 'name', 'size', 'source', 'theme'],\n standalone: false\n})\nexport class PIcon extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<IconAriaAttribute>;\n color?: IconColor;\n /** @deprecated */\n lazy?: boolean;\n name?: IconName;\n size?: IconSize;\n source?: string;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, Theme } from '../types';\n\n@Component({\n selector: 'p-inline-notification,[p-inline-notification]',\n template: '<ng-content />',\n inputs: ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'dismissButton', 'heading', 'headingTag', 'persistent', 'state', 'theme'],\n outputs: ['action', 'dismiss'],\n standalone: false\n})\nexport class PInlineNotification extends BaseComponentWithTheme {\n actionIcon?: InlineNotificationActionIcon;\n actionLabel?: string;\n actionLoading?: boolean;\n description?: string;\n dismissButton?: boolean;\n heading?: string;\n headingTag?: InlineNotificationHeadingTag;\n /** @deprecated */\n persistent?: boolean;\n state?: InlineNotificationState;\n declare theme?: Theme;\n action = new EventEmitter<CustomEvent<void>>();\n dismiss = new EventEmitter<CustomEvent<void>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, LinkAriaAttribute, BreakpointCustomizable, LinkIcon, LinkTarget, Theme, LinkVariant } from '../types';\n\n@Component({\n selector: 'p-link,[p-link]',\n template: '<ng-content />',\n inputs: ['aria', 'compact', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme', 'variant'],\n standalone: false\n})\nexport class PLink extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<LinkAriaAttribute>;\n compact?: BreakpointCustomizable<boolean>;\n download?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n href?: string;\n icon?: LinkIcon;\n iconSource?: string;\n rel?: string;\n target?: LinkTarget;\n declare theme?: Theme;\n variant?: LinkVariant;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, LinkPureAlignLabel, SelectedAriaAttributes, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, Theme, LinkPureWeight } from '../types';\n\n@Component({\n selector: 'p-link-pure,[p-link-pure]',\n template: '<ng-content />',\n inputs: ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'theme', 'underline', 'weight'],\n standalone: false\n})\nexport class PLinkPure extends BaseComponentWithTheme {\n active?: boolean;\n alignLabel?: BreakpointCustomizable<LinkPureAlignLabel>;\n aria?: SelectedAriaAttributes<LinkPureAriaAttribute>;\n download?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n href?: string;\n icon?: LinkPureIcon;\n iconSource?: string;\n rel?: string;\n size?: BreakpointCustomizable<LinkPureSize>;\n stretch?: BreakpointCustomizable<boolean>;\n target?: LinkPureTarget;\n declare theme?: Theme;\n underline?: boolean;\n /** @deprecated */\n weight?: LinkPureWeight;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, LinkSocialIcon, LinkSocialTarget, Theme } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use `p-link` with corresponding social icon instead. */\n@Component({\n selector: 'p-link-social,[p-link-social]',\n template: '<ng-content />',\n inputs: ['compact', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'],\n standalone: false\n})\nexport class PLinkSocial extends BaseComponentWithTheme {\n compact?: boolean;\n hideLabel?: BreakpointCustomizable<boolean>;\n href?: string;\n icon?: LinkSocialIcon;\n iconSource?: string;\n rel?: string;\n target?: LinkSocialTarget;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { LinkTileAlign, SelectedAriaAttributes, LinkTileAriaAttribute, BreakpointCustomizable, LinkTileAspectRatio, LinkTileBackground, LinkTileSize, LinkTileTarget, LinkTileWeight } from '../types';\n\n@Component({\n selector: 'p-link-tile,[p-link-tile]',\n template: '<ng-content />',\n inputs: ['align', 'aria', 'aspectRatio', 'background', 'compact', 'description', 'download', 'gradient', 'href', 'label', 'rel', 'size', 'target', 'weight'],\n standalone: false\n})\nexport class PLinkTile extends BaseComponent {\n align?: LinkTileAlign;\n aria?: SelectedAriaAttributes<LinkTileAriaAttribute>;\n aspectRatio?: BreakpointCustomizable<LinkTileAspectRatio>;\n background?: LinkTileBackground;\n compact?: BreakpointCustomizable<boolean>;\n description: string;\n download?: string;\n gradient?: boolean;\n href: string;\n label: string;\n rel?: string;\n size?: BreakpointCustomizable<LinkTileSize>;\n target?: LinkTileTarget;\n weight?: BreakpointCustomizable<LinkTileWeight>;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight } from '../types';\n\n@Component({\n selector: 'p-link-tile-model-signature,[p-link-tile-model-signature]',\n template: '<ng-content />',\n inputs: ['aspectRatio', 'description', 'heading', 'headingTag', 'linkDirection', 'model', 'weight'],\n standalone: false\n})\nexport class PLinkTileModelSignature extends BaseComponent {\n aspectRatio?: BreakpointCustomizable<LinkTileModelSignatureAspectRatio>;\n description?: string;\n heading: string;\n headingTag?: LinkTileModelSignatureHeadingTag;\n linkDirection?: BreakpointCustomizable<LinkTileModelSignatureLinkDirection>;\n model?: LinkTileModelSignatureModel;\n weight?: BreakpointCustomizable<LinkTileModelSignatureWeight>;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, LinkTileProductAspectRatio, LinkTileProductLikeEventDetail, LinkTileProductTarget, Theme } from '../types';\n\n@Component({\n selector: 'p-link-tile-product,[p-link-tile-product]',\n template: '<ng-content />',\n inputs: ['aspectRatio', 'description', 'heading', 'href', 'likeButton', 'liked', 'price', 'priceOriginal', 'rel', 'target', 'theme'],\n outputs: ['like'],\n standalone: false\n})\nexport class PLinkTileProduct extends BaseComponentWithTheme {\n aspectRatio?: BreakpointCustomizable<LinkTileProductAspectRatio>;\n description?: string;\n heading: string;\n href?: string;\n likeButton?: boolean;\n liked?: boolean;\n price: string;\n priceOriginal?: string;\n rel?: string;\n target?: LinkTileProductTarget;\n declare theme?: Theme;\n like = new EventEmitter<CustomEvent<LinkTileProductLikeEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { SelectedAriaAttributes, MarqueAriaAttribute, MarqueSize, MarqueTarget, MarqueVariant } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Please use \"p-wordmark\" instead. */\n@Component({\n selector: 'p-marque,[p-marque]',\n template: '<ng-content />',\n inputs: ['aria', 'href', 'size', 'target', 'trademark', 'variant'],\n standalone: false\n})\nexport class PMarque extends BaseComponent {\n aria?: SelectedAriaAttributes<MarqueAriaAttribute>;\n href?: string;\n size?: MarqueSize;\n target?: MarqueTarget;\n trademark?: boolean;\n variant?: MarqueVariant;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, ModalAriaAttribute, ModalBackdrop, BreakpointCustomizable, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-modal,[p-modal]',\n template: '<ng-content />',\n inputs: ['aria', 'backdrop', 'disableBackdropClick', 'disableCloseButton', 'dismissButton', 'fullscreen', 'heading', 'open', 'theme'],\n outputs: ['close', 'dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],\n standalone: false\n})\nexport class PModal extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<ModalAriaAttribute>;\n backdrop?: ModalBackdrop;\n disableBackdropClick?: boolean;\n /** @deprecated */\n disableCloseButton?: boolean;\n dismissButton?: boolean;\n fullscreen?: BreakpointCustomizable<boolean>;\n /** @deprecated */\n heading?: string;\n open: boolean;\n declare theme?: Theme;\n /** @deprecated */\n close = new EventEmitter<CustomEvent<void>>();\n dismiss = new EventEmitter<CustomEvent<void>>();\n motionHiddenEnd = new EventEmitter<CustomEvent<ModalMotionHiddenEndEventDetail>>();\n motionVisibleEnd = new EventEmitter<CustomEvent<ModalMotionVisibleEndEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, Theme } from '../types';\n\n@Component({\n selector: 'p-model-signature,[p-model-signature]',\n template: '<ng-content />',\n inputs: ['color', 'fetchPriority', 'lazy', 'model', 'safeZone', 'size', 'theme'],\n standalone: false\n})\nexport class PModelSignature extends BaseComponentWithTheme {\n color?: ModelSignatureColor;\n fetchPriority?: ModelSignatureFetchPriority;\n lazy?: boolean;\n model?: ModelSignatureModel;\n safeZone?: boolean;\n size?: ModelSignatureSize;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { MultiSelectDropdownDirection, BreakpointCustomizable, MultiSelectUpdateEventDetail, MultiSelectState, Theme } from '../types';\n\n@Component({\n selector: 'p-multi-select,[p-multi-select]',\n template: '<ng-content />',\n inputs: ['description', 'disabled', 'dropdownDirection', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'theme', 'value'],\n outputs: ['update'],\n standalone: false\n})\nexport class PMultiSelect extends BaseComponentWithTheme {\n description?: string;\n disabled?: boolean;\n dropdownDirection?: MultiSelectDropdownDirection;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n name: string;\n required?: boolean;\n state?: MultiSelectState;\n declare theme?: Theme;\n value?: string[];\n update = new EventEmitter<CustomEvent<MultiSelectUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-multi-select-option,[p-multi-select-option]',\n template: '<ng-content />',\n inputs: ['disabled', 'value'],\n standalone: false\n})\nexport class PMultiSelectOption extends BaseComponent {\n disabled?: boolean;\n value: string;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-optgroup,[p-optgroup]',\n template: '<ng-content />',\n inputs: ['disabled', 'label'],\n standalone: false\n})\nexport class POptgroup extends BaseComponent {\n disabled?: boolean;\n label?: string;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { PaginationInternationalization, BreakpointCustomizable, PaginationMaxNumberOfPageLinks, PaginationUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-pagination,[p-pagination]',\n template: '<ng-content />',\n inputs: ['activePage', 'allyLabel', 'allyLabelNext', 'allyLabelPage', 'allyLabelPrev', 'intl', 'itemsPerPage', 'maxNumberOfPageLinks', 'showLastPage', 'theme', 'totalItemsCount'],\n outputs: ['pageChange', 'update'],\n standalone: false\n})\nexport class PPagination extends BaseComponentWithTheme {\n activePage: number;\n /** @deprecated */\n allyLabel?: string;\n /** @deprecated */\n allyLabelNext?: string;\n /** @deprecated */\n allyLabelPage?: string;\n /** @deprecated */\n allyLabelPrev?: string;\n intl?: PaginationInternationalization;\n itemsPerPage?: number;\n /** @deprecated */\n maxNumberOfPageLinks?: BreakpointCustomizable<PaginationMaxNumberOfPageLinks>;\n showLastPage?: boolean;\n declare theme?: Theme;\n totalItemsCount: number;\n /** @deprecated */\n pageChange = new EventEmitter<CustomEvent<PaginationUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<PaginationUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, PinCodeLength, PinCodeUpdateEventDetail, PinCodeState, Theme, PinCodeType } from '../types';\n\n@Component({\n selector: 'p-pin-code,[p-pin-code]',\n template: '<ng-content />',\n inputs: ['description', 'disabled', 'form', 'hideLabel', 'label', 'length', 'loading', 'message', 'name', 'required', 'state', 'theme', 'type', 'value'],\n outputs: ['update'],\n standalone: false\n})\nexport class PPinCode extends BaseComponentWithTheme {\n description?: string;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n length?: PinCodeLength;\n loading?: boolean;\n message?: string;\n name?: string;\n required?: boolean;\n state?: PinCodeState;\n declare theme?: Theme;\n type?: PinCodeType;\n value?: string;\n update = new EventEmitter<CustomEvent<PinCodeUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, PopoverAriaAttribute, PopoverDirection, Theme } from '../types';\n\n@Component({\n selector: 'p-popover,[p-popover]',\n template: '<ng-content />',\n inputs: ['aria', 'description', 'direction', 'theme'],\n standalone: false\n})\nexport class PPopover extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<PopoverAriaAttribute>;\n description?: string;\n direction?: PopoverDirection;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, RadioButtonWrapperState, Theme } from '../types';\n\n@Component({\n selector: 'p-radio-button-wrapper,[p-radio-button-wrapper]',\n template: '<ng-content />',\n inputs: ['hideLabel', 'label', 'loading', 'message', 'state', 'theme'],\n standalone: false\n})\nexport class PRadioButtonWrapper extends BaseComponentWithTheme {\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n loading?: boolean;\n message?: string;\n state?: RadioButtonWrapperState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { ScrollerAlignScrollIndicator, SelectedAriaAttributes, ScrollerAriaAttribute, ScrollerGradientColor, ScrollerGradientColorScheme, ScrollerScrollIndicatorPosition, ScrollerScrollToPosition, Theme } from '../types';\n\n@Component({\n selector: 'p-scroller,[p-scroller]',\n template: '<ng-content />',\n inputs: ['alignScrollIndicator', 'aria', 'gradientColor', 'gradientColorScheme', 'scrollIndicatorPosition', 'scrollToPosition', 'scrollbar', 'theme'],\n standalone: false\n})\nexport class PScroller extends BaseComponentWithTheme {\n alignScrollIndicator?: ScrollerAlignScrollIndicator;\n aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;\n gradientColor?: ScrollerGradientColor;\n /** @deprecated */\n gradientColorScheme?: ScrollerGradientColorScheme;\n /** @deprecated */\n scrollIndicatorPosition?: ScrollerScrollIndicatorPosition;\n scrollToPosition?: ScrollerScrollToPosition;\n scrollbar?: boolean;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SegmentedControlBackgroundColor, BreakpointCustomizable, SegmentedControlColumns, SegmentedControlUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-segmented-control,[p-segmented-control]',\n template: '<ng-content />',\n inputs: ['backgroundColor', 'columns', 'disabled', 'form', 'name', 'theme', 'value'],\n outputs: ['segmentedControlChange', 'update'],\n standalone: false\n})\nexport class PSegmentedControl extends BaseComponentWithTheme {\n /** @deprecated */\n backgroundColor?: SegmentedControlBackgroundColor;\n columns?: BreakpointCustomizable<SegmentedControlColumns>;\n disabled?: boolean;\n form?: string;\n name?: string;\n declare theme?: Theme;\n value?: string | number;\n /** @deprecated */\n segmentedControlChange = new EventEmitter<CustomEvent<SegmentedControlUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<SegmentedControlUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { SelectedAriaAttributes, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon } from '../types';\n\n@Component({\n selector: 'p-segmented-control-item,[p-segmented-control-item]',\n template: '<ng-content />',\n inputs: ['aria', 'disabled', 'icon', 'iconSource', 'label', 'value'],\n standalone: false\n})\nexport class PSegmentedControlItem extends BaseComponent {\n aria?: SelectedAriaAttributes<SegmentedControlItemAriaAttribute>;\n disabled?: boolean;\n icon?: SegmentedControlItemIcon;\n iconSource?: string;\n label?: string;\n value: string | number;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectDropdownDirection, BreakpointCustomizable, SelectUpdateEventDetail, SelectState, Theme } from '../types';\n\n@Component({\n selector: 'p-select,[p-select]',\n template: '<ng-content />',\n inputs: ['compact', 'description', 'disabled', 'dropdownDirection', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'theme', 'value'],\n outputs: ['update'],\n standalone: false\n})\nexport class PSelect extends BaseComponentWithTheme {\n compact?: boolean;\n description?: string;\n disabled?: boolean;\n dropdownDirection?: SelectDropdownDirection;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n name: string;\n required?: boolean;\n state?: SelectState;\n declare theme?: Theme;\n value?: string;\n update = new EventEmitter<CustomEvent<SelectUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-select-option,[p-select-option]',\n template: '<ng-content />',\n inputs: ['disabled', 'value'],\n standalone: false\n})\nexport class PSelectOption extends BaseComponent {\n disabled?: boolean;\n value?: string;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectWrapperDropdownDirection, BreakpointCustomizable, SelectWrapperState, Theme } from '../types';\n\n@Component({\n selector: 'p-select-wrapper,[p-select-wrapper]',\n template: '<ng-content />',\n inputs: ['description', 'dropdownDirection', 'filter', 'hideLabel', 'label', 'message', 'native', 'state', 'theme'],\n standalone: false\n})\nexport class PSelectWrapper extends BaseComponentWithTheme {\n description?: string;\n dropdownDirection?: SelectWrapperDropdownDirection;\n filter?: boolean;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n native?: boolean;\n state?: SelectWrapperState;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, SheetAriaAttribute, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-sheet,[p-sheet]',\n template: '<ng-content />',\n inputs: ['aria', 'disableBackdropClick', 'dismissButton', 'open', 'theme'],\n outputs: ['dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],\n standalone: false\n})\nexport class PSheet extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<SheetAriaAttribute>;\n disableBackdropClick?: boolean;\n dismissButton?: boolean;\n open: boolean;\n declare theme?: Theme;\n dismiss = new EventEmitter<CustomEvent<void>>();\n motionHiddenEnd = new EventEmitter<CustomEvent<SheetMotionHiddenEndEventDetail>>();\n motionVisibleEnd = new EventEmitter<CustomEvent<SheetMotionVisibleEndEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, SpinnerAriaAttribute, BreakpointCustomizable, SpinnerSize, Theme } from '../types';\n\n@Component({\n selector: 'p-spinner,[p-spinner]',\n template: '<ng-content />',\n inputs: ['aria', 'size', 'theme'],\n standalone: false\n})\nexport class PSpinner extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<SpinnerAriaAttribute>;\n size?: BreakpointCustomizable<SpinnerSize>;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { StepperHorizontalUpdateEventDetail, BreakpointCustomizable, StepperHorizontalSize, Theme } from '../types';\n\n@Component({\n selector: 'p-stepper-horizontal,[p-stepper-horizontal]',\n template: '<ng-content />',\n inputs: ['size', 'theme'],\n outputs: ['stepChange', 'update'],\n standalone: false\n})\nexport class PStepperHorizontal extends BaseComponentWithTheme {\n size?: BreakpointCustomizable<StepperHorizontalSize>;\n declare theme?: Theme;\n /** @deprecated */\n stepChange = new EventEmitter<CustomEvent<StepperHorizontalUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<StepperHorizontalUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { StepperHorizontalItemState } from '../types';\n\n@Component({\n selector: 'p-stepper-horizontal-item,[p-stepper-horizontal-item]',\n template: '<ng-content />',\n inputs: ['disabled', 'state'],\n standalone: false\n})\nexport class PStepperHorizontalItem extends BaseComponent {\n disabled?: boolean;\n state?: StepperHorizontalItemState;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, SwitchAlignLabel, SwitchUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-switch,[p-switch]',\n template: '<ng-content />',\n inputs: ['alignLabel', 'checked', 'compact', 'disabled', 'hideLabel', 'loading', 'stretch', 'theme'],\n outputs: ['switchChange', 'update'],\n standalone: false\n})\nexport class PSwitch extends BaseComponentWithTheme {\n alignLabel?: BreakpointCustomizable<SwitchAlignLabel>;\n checked?: boolean;\n compact?: boolean;\n disabled?: boolean;\n hideLabel?: BreakpointCustomizable<boolean>;\n loading?: boolean;\n stretch?: BreakpointCustomizable<boolean>;\n declare theme?: Theme;\n /** @deprecated */\n switchChange = new EventEmitter<CustomEvent<SwitchUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<SwitchUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TableUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-table,[p-table]',\n template: '<ng-content />',\n inputs: ['caption', 'theme'],\n outputs: ['sortingChange', 'update'],\n standalone: false\n})\nexport class PTable extends BaseComponentWithTheme {\n caption?: string;\n declare theme?: Theme;\n /** @deprecated */\n sortingChange = new EventEmitter<CustomEvent<TableUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<TableUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-body,[p-table-body]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTableBody extends BaseComponent {\n \n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-cell,[p-table-cell]',\n template: '<ng-content />',\n inputs: ['multiline'],\n standalone: false\n})\nexport class PTableCell extends BaseComponent {\n multiline?: boolean;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-head,[p-table-head]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTableHead extends BaseComponent {\n \n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { TableHeadCellSort } from '../types';\n\n@Component({\n selector: 'p-table-head-cell,[p-table-head-cell]',\n template: '<ng-content />',\n inputs: ['hideLabel', 'multiline', 'sort'],\n standalone: false\n})\nexport class PTableHeadCell extends BaseComponent {\n hideLabel?: boolean;\n multiline?: boolean;\n sort?: TableHeadCellSort;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-head-row,[p-table-head-row]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTableHeadRow extends BaseComponent {\n \n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-row,[p-table-row]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTableRow extends BaseComponent {\n \n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TabsGradientColor, TabsGradientColorScheme, TabsUpdateEventDetail, BreakpointCustomizable, TabsSize, Theme, TabsWeight } from '../types';\n\n@Component({\n selector: 'p-tabs,[p-tabs]',\n template: '<ng-content />',\n inputs: ['activeTabIndex', 'gradientColor', 'gradientColorScheme', 'size', 'theme', 'weight'],\n outputs: ['tabChange', 'update'],\n standalone: false\n})\nexport class PTabs extends BaseComponentWithTheme {\n activeTabIndex?: number;\n gradientColor?: TabsGradientColor;\n /** @deprecated */\n gradientColorScheme?: TabsGradientColorScheme;\n size?: BreakpointCustomizable<TabsSize>;\n declare theme?: Theme;\n weight?: TabsWeight;\n /** @deprecated */\n tabChange = new EventEmitter<CustomEvent<TabsUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<TabsUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TabsBarGradientColor, TabsBarGradientColorScheme, TabsBarUpdateEventDetail, BreakpointCustomizable, TabsBarSize, Theme, TabsBarWeight } from '../types';\n\n@Component({\n selector: 'p-tabs-bar,[p-tabs-bar]',\n template: '<ng-content />',\n inputs: ['activeTabIndex', 'gradientColor', 'gradientColorScheme', 'size', 'theme', 'weight'],\n outputs: ['tabChange', 'update'],\n standalone: false\n})\nexport class PTabsBar extends BaseComponentWithTheme {\n activeTabIndex?: number | undefined;\n gradientColor?: TabsBarGradientColor;\n /** @deprecated */\n gradientColorScheme?: TabsBarGradientColorScheme;\n size?: BreakpointCustomizable<TabsBarSize>;\n declare theme?: Theme;\n weight?: TabsBarWeight;\n /** @deprecated */\n tabChange = new EventEmitter<CustomEvent<TabsBarUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<TabsBarUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-tabs-item,[p-tabs-item]',\n template: '<ng-content />',\n inputs: ['label'],\n standalone: false\n})\nexport class PTabsItem extends BaseComponent {\n label: string;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TagColor, TagIcon, Theme } from '../types';\n\n@Component({\n selector: 'p-tag,[p-tag]',\n template: '<ng-content />',\n inputs: ['color', 'compact', 'icon', 'iconSource', 'theme'],\n standalone: false\n})\nexport class PTag extends BaseComponentWithTheme {\n color?: TagColor;\n compact?: boolean;\n icon?: TagIcon;\n iconSource?: string;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, TagDismissibleAriaAttribute, TagDismissibleColor, Theme } from '../types';\n\n@Component({\n selector: 'p-tag-dismissible,[p-tag-dismissible]',\n template: '<ng-content />',\n inputs: ['aria', 'color', 'label', 'theme'],\n standalone: false\n})\nexport class PTagDismissible extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<TagDismissibleAriaAttribute>;\n color?: TagDismissibleColor;\n label?: string;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TextAlign, TextColor, BreakpointCustomizable, TextSize, TextTag, Theme, TextWeight } from '../types';\n\n@Component({\n selector: 'p-text,[p-text]',\n template: '<ng-content />',\n inputs: ['align', 'color', 'ellipsis', 'size', 'tag', 'theme', 'weight'],\n standalone: false\n})\nexport class PText extends BaseComponentWithTheme {\n align?: TextAlign;\n color?: TextColor;\n ellipsis?: boolean;\n size?: BreakpointCustomizable<TextSize>;\n tag?: TextTag;\n declare theme?: Theme;\n weight?: TextWeight;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TextFieldWrapperActionIcon, BreakpointCustomizable, TextFieldWrapperState, Theme, TextFieldWrapperUnitPosition } from '../types';\n\n@Component({\n selector: 'p-text-field-wrapper,[p-text-field-wrapper]',\n template: '<ng-content />',\n inputs: ['actionIcon', 'actionLoading', 'description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'showCounter', 'showPasswordToggle', 'state', 'submitButton', 'theme', 'unit', 'unitPosition'],\n outputs: ['action'],\n standalone: false\n})\nexport class PTextFieldWrapper extends BaseComponentWithTheme {\n actionIcon?: TextFieldWrapperActionIcon;\n actionLoading?: boolean;\n description?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n /** @deprecated */\n showCharacterCount?: boolean;\n showCounter?: boolean;\n showPasswordToggle?: boolean;\n state?: TextFieldWrapperState;\n submitButton?: boolean;\n declare theme?: Theme;\n unit?: string;\n unitPosition?: TextFieldWrapperUnitPosition;\n action = new EventEmitter<CustomEvent<void>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TextListListType, TextListOrderType, Theme, TextListType } from '../types';\n\n@Component({\n selector: 'p-text-list,[p-text-list]',\n template: '<ng-content />',\n inputs: ['listType', 'orderType', 'theme', 'type'],\n standalone: false\n})\nexport class PTextList extends BaseComponentWithTheme {\n /** @deprecated */\n listType?: TextListListType;\n /** @deprecated */\n orderType?: TextListOrderType;\n declare theme?: Theme;\n type?: TextListType;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-text-list-item,[p-text-list-item]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTextListItem extends BaseComponent {\n \n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TextareaAutoComplete, BreakpointCustomizable, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, Theme, TextareaWrap } from '../types';\n\n@Component({\n selector: 'p-textarea,[p-textarea]',\n template: '<ng-content />',\n inputs: ['autoComplete', 'description', 'disabled', 'form', 'hideLabel', 'label', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'resize', 'rows', 'showCounter', 'spellCheck', 'state', 'theme', 'value', 'wrap'],\n outputs: ['blur', 'change', 'input'],\n standalone: false\n})\nexport class PTextarea extends BaseComponentWithTheme {\n autoComplete?: TextareaAutoComplete;\n description?: string;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n maxLength?: number;\n message?: string;\n minLength?: number;\n name: string;\n placeholder?: string;\n readOnly?: boolean;\n required?: boolean;\n resize?: TextareaResize;\n rows?: number;\n showCounter?: boolean;\n spellCheck?: boolean;\n state?: TextareaState;\n declare theme?: Theme;\n value?: string;\n wrap?: TextareaWrap;\n blur = new EventEmitter<CustomEvent<TextareaBlurEventDetail>>();\n change = new EventEmitter<CustomEvent<TextareaChangeEventDetail>>();\n input = new EventEmitter<CustomEvent<TextareaInputEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, TextareaWrapperState, Theme } from '../types';\n\n@Component({\n selector: 'p-textarea-wrapper,[p-textarea-wrapper]',\n template: '<ng-content />',\n inputs: ['description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'showCounter', 'state', 'theme'],\n standalone: false\n})\nexport class PTextareaWrapper extends BaseComponentWithTheme {\n description?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n /** @deprecated */\n showCharacterCount?: boolean;\n showCounter?: boolean;\n state?: TextareaWrapperState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { Theme } from '../types';\n\n@Component({\n selector: 'p-toast,[p-toast]',\n template: '<ng-content />',\n inputs: ['theme'],\n standalone: false\n})\nexport class PToast extends BaseComponentWithTheme {\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget, Theme } from '../types';\n\n@Component({\n selector: 'p-wordmark,[p-wordmark]',\n template: '<ng-content />',\n inputs: ['aria', 'href', 'size', 'target', 'theme'],\n standalone: false\n})\nexport class PWordmark extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<WordmarkAriaAttribute>;\n href?: string;\n size?: WordmarkSize;\n target?: WordmarkTarget;\n declare theme?: Theme;\n}","import { PAccordion } from './accordion.wrapper';\nimport { PBanner } from './banner.wrapper';\nimport { PButton } from './button.wrapper';\nimport { PButtonGroup } from './button-group.wrapper';\nimport { PButtonPure } from './button-pure.wrapper';\nimport { PButtonTile } from './button-tile.wrapper';\nimport { PCanvas } from './canvas.wrapper';\nimport { PCarousel } from './carousel.wrapper';\nimport { PCheckbox } from './checkbox.wrapper';\nimport { PCheckboxWrapper } from './checkbox-wrapper.wrapper';\nimport { PContentWrapper } from './content-wrapper.wrapper';\nimport { PCrest } from './crest.wrapper';\nimport { PDisplay } from './display.wrapper';\nimport { PDivider } from './divider.wrapper';\nimport { PFieldset } from './fieldset.wrapper';\nimport { PFieldsetWrapper } from './fieldset-wrapper.wrapper';\nimport { PFlex } from './flex.wrapper';\nimport { PFlexItem } from './flex-item.wrapper';\nimport { PFlyout } from './flyout.wrapper';\nimport { PFlyoutMultilevel } from './flyout-multilevel.wrapper';\nimport { PFlyoutMultilevelItem } from './flyout-multilevel-item.wrapper';\nimport { PGrid } from './grid.wrapper';\nimport { PGridItem } from './grid-item.wrapper';\nimport { PHeading } from './heading.wrapper';\nimport { PHeadline } from './headline.wrapper';\nimport { PIcon } from './icon.wrapper';\nimport { PInlineNotification } from './inline-notification.wrapper';\nimport { PLink } from './link.wrapper';\nimport { PLinkPure } from './link-pure.wrapper';\nimport { PLinkSocial } from './link-social.wrapper';\nimport { PLinkTile } from './link-tile.wrapper';\nimport { PLinkTileModelSignature } from './link-tile-model-signature.wrapper';\nimport { PLinkTileProduct } from './link-tile-product.wrapper';\nimport { PMarque } from './marque.wrapper';\nimport { PModal } from './modal.wrapper';\nimport { PModelSignature } from './model-signature.wrapper';\nimport { PMultiSelect } from './multi-select.wrapper';\nimport { PMultiSelectOption } from './multi-select-option.wrapper';\nimport { POptgroup } from './optgroup.wrapper';\nimport { PPagination } from './pagination.wrapper';\nimport { PPinCode } from './pin-code.wrapper';\nimport { PPopover } from './popover.wrapper';\nimport { PRadioButtonWrapper } from './radio-button-wrapper.wrapper';\nimport { PScroller } from './scroller.wrapper';\nimport { PSegmentedControl } from './segmented-control.wrapper';\nimport { PSegmentedControlItem } from './segmented-control-item.wrapper';\nimport { PSelect } from './select.wrapper';\nimport { PSelectOption } from './select-option.wrapper';\nimport { PSelectWrapper } from './select-wrapper.wrapper';\nimport { PSheet } from './sheet.wrapper';\nimport { PSpinner } from './spinner.wrapper';\nimport { PStepperHorizontal } from './stepper-horizontal.wrapper';\nimport { PStepperHorizontalItem } from './stepper-horizontal-item.wrapper';\nimport { PSwitch } from './switch.wrapper';\nimport { PTable } from './table.wrapper';\nimport { PTableBody } from './table-body.wrapper';\nimport { PTableCell } from './table-cell.wrapper';\nimport { PTableHead } from './table-head.wrapper';\nimport { PTableHeadCell } from './table-head-cell.wrapper';\nimport { PTableHeadRow } from './table-head-row.wrapper';\nimport { PTableRow } from './table-row.wrapper';\nimport { PTabs } from './tabs.wrapper';\nimport { PTabsBar } from './tabs-bar.wrapper';\nimport { PTabsItem } from './tabs-item.wrapper';\nimport { PTag } from './tag.wrapper';\nimport { PTagDismissible } from './tag-dismissible.wrapper';\nimport { PText } from './text.wrapper';\nimport { PTextFieldWrapper } from './text-field-wrapper.wrapper';\nimport { PTextList } from './text-list.wrapper';\nimport { PTextListItem } from './text-list-item.wrapper';\nimport { PTextarea } from './textarea.wrapper';\nimport { PTextareaWrapper } from './textarea-wrapper.wrapper';\nimport { PToast } from './toast.wrapper';\nimport { PWordmark } from './wordmark.wrapper';\n\nexport const DECLARATIONS = [\n PAccordion,\n PBanner,\n PButton,\n PButtonGroup,\n PButtonPure,\n PButtonTile,\n PCanvas,\n PCarousel,\n PCheckbox,\n PCheckboxWrapper,\n PContentWrapper,\n PCrest,\n PDisplay,\n PDivider,\n PFieldset,\n PFieldsetWrapper,\n PFlex,\n PFlexItem,\n PFlyout,\n PFlyoutMultilevel,\n PFlyoutMultilevelItem,\n PGrid,\n PGridItem,\n PHeading,\n PHeadline,\n PIcon,\n PInlineNotification,\n PLink,\n PLinkPure,\n PLinkSocial,\n PLinkTile,\n PLinkTileModelSignature,\n PLinkTileProduct,\n PMarque,\n PModal,\n PModelSignature,\n PMultiSelect,\n PMultiSelectOption,\n POptgroup,\n PPagination,\n PPinCode,\n PPopover,\n PRadioButtonWrapper,\n PScroller,\n PSegmentedControl,\n PSegmentedControlItem,\n PSelect,\n PSelectOption,\n PSelectWrapper,\n PSheet,\n PSpinner,\n PStepperHorizontal,\n PStepperHorizontalItem,\n PSwitch,\n PTable,\n PTableBody,\n PTableCell,\n PTableHead,\n PTableHeadCell,\n PTableHeadRow,\n PTableRow,\n PTabs,\n PTabsBar,\n PTabsItem,\n PTag,\n PTagDismissible,\n PText,\n PTextFieldWrapper,\n PTextList,\n PTextListItem,\n PTextarea,\n PTextareaWrapper,\n PToast,\n PWordmark\n];\n\nexport * from './accordion.wrapper';\nexport * from './banner.wrapper';\nexport * from './button.wrapper';\nexport * from './button-group.wrapper';\nexport * from './button-pure.wrapper';\nexport * from './button-tile.wrapper';\nexport * from './canvas.wrapper';\nexport * from './carousel.wrapper';\nexport * from './checkbox.wrapper';\nexport * from './checkbox-wrapper.wrapper';\nexport * from './content-wrapper.wrapper';\nexport * from './crest.wrapper';\nexport * from './display.wrapper';\nexport * from './divider.wrapper';\nexport * from './fieldset.wrapper';\nexport * from './fieldset-wrapper.wrapper';\nexport * from './flex.wrapper';\nexport * from './flex-item.wrapper';\nexport * from './flyout.wrapper';\nexport * from './flyout-multilevel.wrapper';\nexport * from './flyout-multilevel-item.wrapper';\nexport * from './grid.wrapper';\nexport * from './grid-item.wrapper';\nexport * from './heading.wrapper';\nexport * from './headline.wrapper';\nexport * from './icon.wrapper';\nexport * from './inline-notification.wrapper';\nexport * from './link.wrapper';\nexport * from './link-pure.wrapper';\nexport * from './link-social.wrapper';\nexport * from './link-tile.wrapper';\nexport * from './link-tile-model-signature.wrapper';\nexport * from './link-tile-product.wrapper';\nexport * from './marque.wrapper';\nexport * from './modal.wrapper';\nexport * from './model-signature.wrapper';\nexport * from './multi-select.wrapper';\nexport * from './multi-select-option.wrapper';\nexport * from './optgroup.wrapper';\nexport * from './pagination.wrapper';\nexport * from './pin-code.wrapper';\nexport * from './popover.wrapper';\nexport * from './radio-button-wrapper.wrapper';\nexport * from './scroller.wrapper';\nexport * from './segmented-control.wrapper';\nexport * from './segmented-control-item.wrapper';\nexport * from './select.wrapper';\nexport * from './select-option.wrapper';\nexport * from './select-wrapper.wrapper';\nexport * from './sheet.wrapper';\nexport * from './spinner.wrapper';\nexport * from './stepper-horizontal.wrapper';\nexport * from './stepper-horizontal-item.wrapper';\nexport * from './switch.wrapper';\nexport * from './table.wrapper';\nexport * from './table-body.wrapper';\nexport * from './table-cell.wrapper';\nexport * from './table-head.wrapper';\nexport * from './table-head-cell.wrapper';\nexport * from './table-head-row.wrapper';\nexport * from './table-row.wrapper';\nexport * from './tabs.wrapper';\nexport * from './tabs-bar.wrapper';\nexport * from './tabs-item.wrapper';\nexport * from './tag.wrapper';\nexport * from './tag-dismissible.wrapper';\nexport * from './text.wrapper';\nexport * from './text-field-wrapper.wrapper';\nexport * from './text-list.wrapper';\nexport * from './text-list-item.wrapper';\nexport * from './textarea.wrapper';\nexport * from './textarea-wrapper.wrapper';\nexport * from './toast.wrapper';\nexport * from './wordmark.wrapper';","import { inject, type ModuleWithProviders, NgModule, Optional } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\nimport { load } from '@porsche-design-system/components-js';\nimport { DECLARATIONS } from './lib/components/barrel';\nimport type { Theme } from './lib/types';\nimport { THEME_TOKEN } from './utils';\n\nexport type PorscheDesignSystemModuleConfig = {\n prefix?: string;\n cdn?: 'auto' | 'cn';\n theme?: Theme;\n};\n\nexport class DefaultConfig implements PorscheDesignSystemModuleConfig {\n prefix = '';\n theme: 'light'; // since theme exists on almost every component, it is defined here kind of like a global prop\n // other component configurations should probably go into a separate `components`, `componentProps` or `componentDefaults`\n // property similar to https://mui.com/material-ui/customization/theme-components/\n}\n\n// TODO: unit tests are missing\n@NgModule({\n declarations: DECLARATIONS,\n exports: DECLARATIONS,\n providers: [\n {\n provide: THEME_TOKEN,\n useValue: new BehaviorSubject('light'),\n },\n ],\n})\nexport class PorscheDesignSystemModule {\n private theme$ = inject(THEME_TOKEN);\n\n constructor(@Optional() configParam: DefaultConfig) {\n const configs = (configParam as unknown as DefaultConfig[]) || [new DefaultConfig()];\n this.theme$.next(configs[0].theme || 'light'); // first config sets the theme\n configs.forEach(load);\n }\n\n static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule> {\n return {\n ngModule: PorscheDesignSystemModule,\n providers: [\n {\n provide: DefaultConfig,\n multi: true, // to support multiple prefixes in same module\n useValue: config,\n },\n ],\n };\n }\n}\n","import { Injectable } from '@angular/core';\nimport type { ToastMessage } from './public-api';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ToastManager {\n public addMessage(message: ToastMessage): void {\n const toast = document.body.querySelector('p-toast,[p-toast]') as HTMLElement & {\n addMessage(message: ToastMessage): void;\n };\n customElements.whenDefined(toast.tagName.toLowerCase()).then(() => toast.addMessage(message));\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1.PAccordion","i2.PBanner","i3.PButton","i4.PButtonGroup","i5.PButtonPure","i6.PButtonTile","i7.PCanvas","i8.PCarousel","i9.PCheckbox","i10.PCheckboxWrapper","i11.PContentWrapper","i12.PCrest","i13.PDisplay","i14.PDivider","i15.PFieldset","i16.PFieldsetWrapper","i17.PFlex","i18.PFlexItem","i19.PFlyout","i20.PFlyoutMultilevel","i21.PFlyoutMultilevelItem","i22.PGrid","i23.PGridItem","i24.PHeading","i25.PHeadline","i26.PIcon","i27.PInlineNotification","i28.PLink","i29.PLinkPure","i30.PLinkSocial","i31.PLinkTile","i32.PLinkTileModelSignature","i33.PLinkTileProduct","i34.PMarque","i35.PModal","i36.PModelSignature","i37.PMultiSelect","i38.PMultiSelectOption","i39.POptgroup","i40.PPagination","i41.PPinCode","i42.PPopover","i43.PRadioButtonWrapper","i44.PScroller","i45.PSegmentedControl","i46.PSegmentedControlItem","i47.PSelect","i48.PSelectOption","i49.PSelectWrapper","i50.PSheet","i51.PSpinner","i52.PStepperHorizontal","i53.PStepperHorizontalItem","i54.PSwitch","i55.PTable","i56.PTableBody","i57.PTableCell","i58.PTableHead","i59.PTableHeadCell","i60.PTableHeadRow","i61.PTableRow","i62.PTabs","i63.PTabsBar","i64.PTabsItem","i65.PTag","i66.PTagDismissible","i67.PText","i68.PTextFieldWrapper","i69.PTextList","i70.PTextListItem","i71.PTextarea","i72.PTextareaWrapper","i73.PToast","i74.PWordmark"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"porsche-design-system-components-angular.mjs","sources":["../../../projects/angular-wrapper/src/utils.ts","../../../projects/angular-wrapper/src/lib/components/accordion.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/banner.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/button.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/button-group.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/button-pure.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/button-tile.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/canvas.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/carousel.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/checkbox.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/checkbox-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/content-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/crest.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/display.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/divider.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/fieldset.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/fieldset-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flex.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flex-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flyout.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flyout-multilevel.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/flyout-multilevel-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/grid.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/grid-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/heading.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/headline.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/icon.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/inline-notification.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-pure.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-social.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-tile.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-tile-model-signature.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/link-tile-product.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/marque.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/modal.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/model-signature.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/multi-select.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/multi-select-option.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/optgroup.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/pagination.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/pin-code.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/popover.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/radio-button-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/scroller.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/segmented-control.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/segmented-control-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/select.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/select-option.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/select-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/sheet.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/spinner.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/stepper-horizontal.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/stepper-horizontal-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/switch.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-body.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-cell.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-head.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-head-cell.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-head-row.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/table-row.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tabs.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tabs-bar.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tabs-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tag.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/tag-dismissible.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/text.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/text-field-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/text-list.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/text-list-item.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/textarea.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/textarea-wrapper.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/toast.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/wordmark.wrapper.ts","../../../projects/angular-wrapper/src/lib/components/barrel.ts","../../../projects/angular-wrapper/src/porsche-design-system.module.ts","../../../projects/angular-wrapper/src/toast-manager.ts","../../../projects/angular-wrapper/src/porsche-design-system-components-angular.ts"],"sourcesContent":["import {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ElementRef,\n inject,\n InjectionToken,\n type OnChanges,\n type OnDestroy,\n} from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\nimport type { Theme } from './lib/types';\n\nexport const THEME_TOKEN = new InjectionToken<BehaviorSubject<Theme>>('pdsTheme');\n\n@Component({\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport abstract class BaseComponent implements OnChanges {\n protected el: HTMLElement;\n\n constructor(cdr: ChangeDetectorRef, elementRef: ElementRef) {\n cdr.detach();\n this.el = elementRef.nativeElement;\n }\n\n ngOnChanges(props: Record<string, { previousValue: any; currentValue: any; firstChange: boolean }>): void {\n for (const prop in props) {\n this.el[prop] = props[prop].currentValue;\n }\n }\n}\n\n@Component({\n template: '',\n})\nexport abstract class BaseComponentWithTheme extends BaseComponent implements OnDestroy {\n theme?: Theme;\n private themeSubscription = inject(THEME_TOKEN).subscribe((theme) => {\n (this.el as HTMLElement & { theme: Theme }).theme = this.theme || theme;\n });\n\n ngOnDestroy(): void {\n // need to manually unsubscribe or otherwise subscription is still active even after unmount\n // https://rafaelneto.dev/en/blog/unsubscribing-behaviorsubject-observable-angular/\n this.themeSubscription.unsubscribe();\n }\n}\n","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { AccordionHeadingTag, AccordionUpdateEventDetail, BreakpointCustomizable, AccordionSize, AccordionTag, Theme } from '../types';\n\n@Component({\n selector: 'p-accordion,[p-accordion]',\n template: '<ng-content />',\n inputs: ['compact', 'heading', 'headingTag', 'open', 'size', 'sticky', 'tag', 'theme'],\n outputs: ['accordionChange', 'update'],\n standalone: false\n})\nexport class PAccordion extends BaseComponentWithTheme {\n compact?: boolean;\n heading?: string;\n headingTag?: AccordionHeadingTag;\n open?: boolean;\n size?: BreakpointCustomizable<AccordionSize>;\n sticky?: boolean;\n /** @deprecated */\n tag?: AccordionTag;\n declare theme?: Theme;\n /** @deprecated */\n accordionChange = new EventEmitter<CustomEvent<AccordionUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<AccordionUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BannerHeadingTag, BannerState, Theme, BannerWidth } from '../types';\n\n@Component({\n selector: 'p-banner,[p-banner]',\n template: '<ng-content />',\n inputs: ['description', 'dismissButton', 'heading', 'headingTag', 'open', 'persistent', 'state', 'theme', 'width'],\n outputs: ['dismiss'],\n standalone: false\n})\nexport class PBanner extends BaseComponentWithTheme {\n description?: string;\n dismissButton?: boolean;\n heading?: string;\n headingTag?: BannerHeadingTag;\n open: boolean;\n /** @deprecated */\n persistent?: boolean;\n state?: BannerState;\n declare theme?: Theme;\n /** @deprecated */\n width?: BannerWidth;\n dismiss = new EventEmitter<CustomEvent<void>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, ButtonAriaAttribute, BreakpointCustomizable, ButtonIcon, Theme, ButtonType, ButtonVariant } from '../types';\n\n@Component({\n selector: 'p-button,[p-button]',\n template: '<ng-content />',\n inputs: ['aria', 'compact', 'disabled', 'form', 'hideLabel', 'icon', 'iconSource', 'loading', 'name', 'theme', 'type', 'value', 'variant'],\n standalone: false\n})\nexport class PButton extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<ButtonAriaAttribute>;\n compact?: BreakpointCustomizable<boolean>;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n icon?: ButtonIcon;\n iconSource?: string;\n loading?: boolean;\n name?: string;\n declare theme?: Theme;\n type?: ButtonType;\n value?: string;\n variant?: ButtonVariant;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, ButtonGroupDirection } from '../types';\n\n@Component({\n selector: 'p-button-group,[p-button-group]',\n template: '<ng-content />',\n inputs: ['direction'],\n standalone: false\n})\nexport class PButtonGroup extends BaseComponent {\n direction?: BreakpointCustomizable<ButtonGroupDirection>;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, ButtonPureAlignLabel, SelectedAriaAttributes, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, Theme, ButtonPureType, ButtonPureWeight } from '../types';\n\n@Component({\n selector: 'p-button-pure,[p-button-pure]',\n template: '<ng-content />',\n inputs: ['active', 'alignLabel', 'aria', 'disabled', 'form', 'hideLabel', 'icon', 'iconSource', 'loading', 'name', 'size', 'stretch', 'theme', 'type', 'underline', 'value', 'weight'],\n standalone: false\n})\nexport class PButtonPure extends BaseComponentWithTheme {\n active?: boolean;\n alignLabel?: BreakpointCustomizable<ButtonPureAlignLabel>;\n aria?: SelectedAriaAttributes<ButtonPureAriaAttribute>;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n icon?: ButtonPureIcon;\n iconSource?: string;\n loading?: boolean;\n name?: string;\n size?: BreakpointCustomizable<ButtonPureSize>;\n stretch?: BreakpointCustomizable<boolean>;\n declare theme?: Theme;\n type?: ButtonPureType;\n underline?: boolean;\n value?: string;\n /** @deprecated */\n weight?: ButtonPureWeight;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { ButtonTileAlign, SelectedAriaAttributes, ButtonTileAriaAttribute, BreakpointCustomizable, ButtonTileAspectRatio, ButtonTileBackground, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight } from '../types';\n\n@Component({\n selector: 'p-button-tile,[p-button-tile]',\n template: '<ng-content />',\n inputs: ['align', 'aria', 'aspectRatio', 'background', 'compact', 'description', 'disabled', 'gradient', 'icon', 'iconSource', 'label', 'loading', 'size', 'type', 'weight'],\n standalone: false\n})\nexport class PButtonTile extends BaseComponent {\n align?: ButtonTileAlign;\n aria?: SelectedAriaAttributes<ButtonTileAriaAttribute>;\n aspectRatio?: BreakpointCustomizable<ButtonTileAspectRatio>;\n background?: ButtonTileBackground;\n compact?: BreakpointCustomizable<boolean>;\n description: string;\n disabled?: boolean;\n gradient?: boolean;\n icon?: ButtonTileIcon;\n iconSource?: string;\n label: string;\n loading?: boolean;\n size?: BreakpointCustomizable<ButtonTileSize>;\n type?: ButtonTileType;\n weight?: BreakpointCustomizable<ButtonTileWeight>;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { CanvasSidebarStartUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-canvas,[p-canvas]',\n template: '<ng-content />',\n inputs: ['sidebarEndOpen', 'sidebarStartOpen', 'theme'],\n outputs: ['sidebarEndDismiss', 'sidebarStartUpdate'],\n standalone: false\n})\nexport class PCanvas extends BaseComponentWithTheme {\n sidebarEndOpen?: boolean;\n sidebarStartOpen?: boolean;\n declare theme?: Theme;\n sidebarEndDismiss = new EventEmitter<CustomEvent<void>>();\n sidebarStartUpdate = new EventEmitter<CustomEvent<CanvasSidebarStartUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { CarouselAlignControls, CarouselAlignHeader, SelectedAriaAttributes, CarouselAriaAttribute, BreakpointCustomizable, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, CarouselUpdateEventDetail, CarouselSlidesPerPage, Theme, CarouselWidth } from '../types';\n\n@Component({\n selector: 'p-carousel,[p-carousel]',\n template: '<ng-content />',\n inputs: ['activeSlideIndex', 'alignControls', 'alignHeader', 'aria', 'description', 'disablePagination', 'focusOnCenterSlide', 'gradientColor', 'heading', 'headingSize', 'intl', 'pagination', 'rewind', 'skipLinkTarget', 'slidesPerPage', 'theme', 'trimSpace', 'width', 'wrapContent'],\n outputs: ['carouselChange', 'update'],\n standalone: false\n})\nexport class PCarousel extends BaseComponentWithTheme {\n activeSlideIndex?: number;\n alignControls?: CarouselAlignControls;\n alignHeader?: CarouselAlignHeader;\n aria?: SelectedAriaAttributes<CarouselAriaAttribute>;\n description?: string;\n /** @deprecated */\n disablePagination?: BreakpointCustomizable<boolean>;\n focusOnCenterSlide?: boolean;\n gradientColor?: CarouselGradientColor;\n heading?: string;\n headingSize?: CarouselHeadingSize;\n intl?: CarouselInternationalization;\n pagination?: BreakpointCustomizable<boolean>;\n rewind?: boolean;\n skipLinkTarget?: string;\n slidesPerPage?: BreakpointCustomizable<CarouselSlidesPerPage>;\n declare theme?: Theme;\n trimSpace?: boolean;\n width?: CarouselWidth;\n /** @deprecated */\n wrapContent?: boolean;\n /** @deprecated */\n carouselChange = new EventEmitter<CustomEvent<CarouselUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<CarouselUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, CheckboxBlurEventDetail, CheckboxUpdateEventDetail, CheckboxState, Theme } from '../types';\n\n@Component({\n selector: 'p-checkbox,[p-checkbox]',\n template: '<ng-content />',\n inputs: ['checked', 'compact', 'disabled', 'form', 'hideLabel', 'indeterminate', 'label', 'loading', 'message', 'name', 'required', 'state', 'theme', 'value'],\n outputs: ['blur', 'update'],\n standalone: false\n})\nexport class PCheckbox extends BaseComponentWithTheme {\n checked?: boolean;\n compact?: boolean;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n indeterminate?: boolean;\n label?: string;\n loading?: boolean;\n message?: string;\n name?: string;\n required?: boolean;\n state?: CheckboxState;\n declare theme?: Theme;\n value?: string;\n blur = new EventEmitter<CustomEvent<CheckboxBlurEventDetail>>();\n update = new EventEmitter<CustomEvent<CheckboxUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, CheckboxWrapperState, Theme } from '../types';\n\n@Component({\n selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',\n template: '<ng-content />',\n inputs: ['hideLabel', 'label', 'loading', 'message', 'state', 'theme'],\n standalone: false\n})\nexport class PCheckboxWrapper extends BaseComponentWithTheme {\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n loading?: boolean;\n message?: string;\n state?: CheckboxWrapperState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { ContentWrapperBackgroundColor, Theme, ContentWrapperWidth } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */\n@Component({\n selector: 'p-content-wrapper,[p-content-wrapper]',\n template: '<ng-content />',\n inputs: ['backgroundColor', 'theme', 'width'],\n standalone: false\n})\nexport class PContentWrapper extends BaseComponentWithTheme {\n /** @deprecated */\n backgroundColor?: ContentWrapperBackgroundColor;\n /** @deprecated */\n declare theme?: Theme;\n width?: ContentWrapperWidth;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { SelectedAriaAttributes, CrestAriaAttribute, CrestTarget } from '../types';\n\n@Component({\n selector: 'p-crest,[p-crest]',\n template: '<ng-content />',\n inputs: ['aria', 'href', 'target'],\n standalone: false\n})\nexport class PCrest extends BaseComponent {\n aria?: SelectedAriaAttributes<CrestAriaAttribute>;\n href?: string;\n target?: CrestTarget;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { DisplayAlign, DisplayColor, BreakpointCustomizable, DisplaySize, DisplayTag, Theme } from '../types';\n\n@Component({\n selector: 'p-display,[p-display]',\n template: '<ng-content />',\n inputs: ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'],\n standalone: false\n})\nexport class PDisplay extends BaseComponentWithTheme {\n align?: DisplayAlign;\n color?: DisplayColor;\n ellipsis?: boolean;\n size?: BreakpointCustomizable<DisplaySize>;\n tag?: DisplayTag;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { DividerColor, BreakpointCustomizable, DividerDirection, DividerOrientation, Theme } from '../types';\n\n@Component({\n selector: 'p-divider,[p-divider]',\n template: '<ng-content />',\n inputs: ['color', 'direction', 'orientation', 'theme'],\n standalone: false\n})\nexport class PDivider extends BaseComponentWithTheme {\n color?: DividerColor;\n direction?: BreakpointCustomizable<DividerDirection>;\n /** @deprecated */\n orientation?: BreakpointCustomizable<DividerOrientation>;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { FieldsetLabelSize, FieldsetState, Theme } from '../types';\n\n@Component({\n selector: 'p-fieldset,[p-fieldset]',\n template: '<ng-content />',\n inputs: ['label', 'labelSize', 'message', 'required', 'state', 'theme'],\n standalone: false\n})\nexport class PFieldset extends BaseComponentWithTheme {\n label?: string;\n labelSize?: FieldsetLabelSize;\n message?: string;\n required?: boolean;\n state?: FieldsetState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { FieldsetWrapperLabelSize, FieldsetWrapperState, Theme } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Please use \"p-fieldset\" instead. */\n@Component({\n selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',\n template: '<ng-content />',\n inputs: ['label', 'labelSize', 'message', 'required', 'state', 'theme'],\n standalone: false\n})\nexport class PFieldsetWrapper extends BaseComponentWithTheme {\n label?: string;\n labelSize?: FieldsetWrapperLabelSize;\n message?: string;\n required?: boolean;\n state?: FieldsetWrapperState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, FlexAlignContent, FlexAlignItems, FlexDirection, FlexInline, FlexJustifyContent, FlexWrap } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */\n@Component({\n selector: 'p-flex,[p-flex]',\n template: '<ng-content />',\n inputs: ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'],\n standalone: false\n})\nexport class PFlex extends BaseComponent {\n alignContent?: BreakpointCustomizable<FlexAlignContent>;\n alignItems?: BreakpointCustomizable<FlexAlignItems>;\n direction?: BreakpointCustomizable<FlexDirection>;\n inline?: BreakpointCustomizable<FlexInline>;\n justifyContent?: BreakpointCustomizable<FlexJustifyContent>;\n wrap?: BreakpointCustomizable<FlexWrap>;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, FlexItemAlignSelf, FlexItemFlex, FlexItemGrow, FlexItemOffset, FlexItemShrink, FlexItemWidth } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */\n@Component({\n selector: 'p-flex-item,[p-flex-item]',\n template: '<ng-content />',\n inputs: ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'],\n standalone: false\n})\nexport class PFlexItem extends BaseComponent {\n alignSelf?: BreakpointCustomizable<FlexItemAlignSelf>;\n flex?: BreakpointCustomizable<FlexItemFlex>;\n grow?: BreakpointCustomizable<FlexItemGrow>;\n offset?: BreakpointCustomizable<FlexItemOffset>;\n shrink?: BreakpointCustomizable<FlexItemShrink>;\n width?: BreakpointCustomizable<FlexItemWidth>;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, FlyoutAriaAttribute, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, Theme } from '../types';\n\n@Component({\n selector: 'p-flyout,[p-flyout]',\n template: '<ng-content />',\n inputs: ['aria', 'disableBackdropClick', 'footerBehavior', 'open', 'position', 'theme'],\n outputs: ['dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],\n standalone: false\n})\nexport class PFlyout extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<FlyoutAriaAttribute>;\n disableBackdropClick?: boolean;\n footerBehavior?: FlyoutFooterBehavior;\n open: boolean;\n position?: FlyoutPosition;\n declare theme?: Theme;\n dismiss = new EventEmitter<CustomEvent<void>>();\n motionHiddenEnd = new EventEmitter<CustomEvent<FlyoutMotionHiddenEndEventDetail>>();\n motionVisibleEnd = new EventEmitter<CustomEvent<FlyoutMotionVisibleEndEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, FlyoutMultilevelAriaAttribute, FlyoutMultilevelUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-flyout-multilevel,[p-flyout-multilevel]',\n template: '<ng-content />',\n inputs: ['activeIdentifier', 'aria', 'open', 'theme'],\n outputs: ['dismiss', 'update'],\n standalone: false\n})\nexport class PFlyoutMultilevel extends BaseComponentWithTheme {\n activeIdentifier?: string | undefined;\n aria?: SelectedAriaAttributes<FlyoutMultilevelAriaAttribute>;\n open?: boolean;\n declare theme?: Theme;\n dismiss = new EventEmitter<CustomEvent<void>>();\n update = new EventEmitter<CustomEvent<FlyoutMultilevelUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-flyout-multilevel-item,[p-flyout-multilevel-item]',\n template: '<ng-content />',\n inputs: ['cascade', 'identifier', 'label', 'primary', 'secondary'],\n standalone: false\n})\nexport class PFlyoutMultilevelItem extends BaseComponent {\n cascade?: boolean;\n identifier: string;\n label?: string;\n primary?: boolean;\n secondary?: boolean;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, GridDirection, GridGutter, GridWrap } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */\n@Component({\n selector: 'p-grid,[p-grid]',\n template: '<ng-content />',\n inputs: ['direction', 'gutter', 'wrap'],\n standalone: false\n})\nexport class PGrid extends BaseComponent {\n direction?: BreakpointCustomizable<GridDirection>;\n /** @deprecated */\n gutter?: BreakpointCustomizable<GridGutter>;\n wrap?: BreakpointCustomizable<GridWrap>;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, GridItemOffset, GridItemSize } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */\n@Component({\n selector: 'p-grid-item,[p-grid-item]',\n template: '<ng-content />',\n inputs: ['offset', 'size'],\n standalone: false\n})\nexport class PGridItem extends BaseComponent {\n offset?: BreakpointCustomizable<GridItemOffset>;\n size?: BreakpointCustomizable<GridItemSize>;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { HeadingAlign, HeadingColor, BreakpointCustomizable, HeadingSize, HeadingTag, Theme } from '../types';\n\n@Component({\n selector: 'p-heading,[p-heading]',\n template: '<ng-content />',\n inputs: ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'],\n standalone: false\n})\nexport class PHeading extends BaseComponentWithTheme {\n align?: HeadingAlign;\n color?: HeadingColor;\n ellipsis?: boolean;\n size?: BreakpointCustomizable<HeadingSize>;\n tag?: HeadingTag;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { HeadlineAlign, HeadlineColor, HeadlineTag, Theme, HeadlineVariant } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Please use \"p-heading\" instead. */\n@Component({\n selector: 'p-headline,[p-headline]',\n template: '<ng-content />',\n inputs: ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'],\n standalone: false\n})\nexport class PHeadline extends BaseComponentWithTheme {\n align?: HeadlineAlign;\n color?: HeadlineColor;\n ellipsis?: boolean;\n tag?: HeadlineTag;\n declare theme?: Theme;\n variant?: HeadlineVariant;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, IconAriaAttribute, IconColor, IconName, IconSize, Theme } from '../types';\n\n@Component({\n selector: 'p-icon,[p-icon]',\n template: '<ng-content />',\n inputs: ['aria', 'color', 'lazy', 'name', 'size', 'source', 'theme'],\n standalone: false\n})\nexport class PIcon extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<IconAriaAttribute>;\n color?: IconColor;\n /** @deprecated */\n lazy?: boolean;\n name?: IconName;\n size?: IconSize;\n source?: string;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, Theme } from '../types';\n\n@Component({\n selector: 'p-inline-notification,[p-inline-notification]',\n template: '<ng-content />',\n inputs: ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'dismissButton', 'heading', 'headingTag', 'persistent', 'state', 'theme'],\n outputs: ['action', 'dismiss'],\n standalone: false\n})\nexport class PInlineNotification extends BaseComponentWithTheme {\n actionIcon?: InlineNotificationActionIcon;\n actionLabel?: string;\n actionLoading?: boolean;\n description?: string;\n dismissButton?: boolean;\n heading?: string;\n headingTag?: InlineNotificationHeadingTag;\n /** @deprecated */\n persistent?: boolean;\n state?: InlineNotificationState;\n declare theme?: Theme;\n action = new EventEmitter<CustomEvent<void>>();\n dismiss = new EventEmitter<CustomEvent<void>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, LinkAriaAttribute, BreakpointCustomizable, LinkIcon, LinkTarget, Theme, LinkVariant } from '../types';\n\n@Component({\n selector: 'p-link,[p-link]',\n template: '<ng-content />',\n inputs: ['aria', 'compact', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme', 'variant'],\n standalone: false\n})\nexport class PLink extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<LinkAriaAttribute>;\n compact?: BreakpointCustomizable<boolean>;\n download?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n href?: string;\n icon?: LinkIcon;\n iconSource?: string;\n rel?: string;\n target?: LinkTarget;\n declare theme?: Theme;\n variant?: LinkVariant;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, LinkPureAlignLabel, SelectedAriaAttributes, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, Theme, LinkPureWeight } from '../types';\n\n@Component({\n selector: 'p-link-pure,[p-link-pure]',\n template: '<ng-content />',\n inputs: ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'theme', 'underline', 'weight'],\n standalone: false\n})\nexport class PLinkPure extends BaseComponentWithTheme {\n active?: boolean;\n alignLabel?: BreakpointCustomizable<LinkPureAlignLabel>;\n aria?: SelectedAriaAttributes<LinkPureAriaAttribute>;\n download?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n href?: string;\n icon?: LinkPureIcon;\n iconSource?: string;\n rel?: string;\n size?: BreakpointCustomizable<LinkPureSize>;\n stretch?: BreakpointCustomizable<boolean>;\n target?: LinkPureTarget;\n declare theme?: Theme;\n underline?: boolean;\n /** @deprecated */\n weight?: LinkPureWeight;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, LinkSocialIcon, LinkSocialTarget, Theme } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Use `p-link` with corresponding social icon instead. */\n@Component({\n selector: 'p-link-social,[p-link-social]',\n template: '<ng-content />',\n inputs: ['compact', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'],\n standalone: false\n})\nexport class PLinkSocial extends BaseComponentWithTheme {\n compact?: boolean;\n hideLabel?: BreakpointCustomizable<boolean>;\n href?: string;\n icon?: LinkSocialIcon;\n iconSource?: string;\n rel?: string;\n target?: LinkSocialTarget;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { LinkTileAlign, SelectedAriaAttributes, LinkTileAriaAttribute, BreakpointCustomizable, LinkTileAspectRatio, LinkTileBackground, LinkTileSize, LinkTileTarget, LinkTileWeight } from '../types';\n\n@Component({\n selector: 'p-link-tile,[p-link-tile]',\n template: '<ng-content />',\n inputs: ['align', 'aria', 'aspectRatio', 'background', 'compact', 'description', 'download', 'gradient', 'href', 'label', 'rel', 'size', 'target', 'weight'],\n standalone: false\n})\nexport class PLinkTile extends BaseComponent {\n align?: LinkTileAlign;\n aria?: SelectedAriaAttributes<LinkTileAriaAttribute>;\n aspectRatio?: BreakpointCustomizable<LinkTileAspectRatio>;\n background?: LinkTileBackground;\n compact?: BreakpointCustomizable<boolean>;\n description: string;\n download?: string;\n gradient?: boolean;\n href: string;\n label: string;\n rel?: string;\n size?: BreakpointCustomizable<LinkTileSize>;\n target?: LinkTileTarget;\n weight?: BreakpointCustomizable<LinkTileWeight>;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { BreakpointCustomizable, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight } from '../types';\n\n@Component({\n selector: 'p-link-tile-model-signature,[p-link-tile-model-signature]',\n template: '<ng-content />',\n inputs: ['aspectRatio', 'description', 'heading', 'headingTag', 'linkDirection', 'model', 'weight'],\n standalone: false\n})\nexport class PLinkTileModelSignature extends BaseComponent {\n aspectRatio?: BreakpointCustomizable<LinkTileModelSignatureAspectRatio>;\n description?: string;\n heading: string;\n headingTag?: LinkTileModelSignatureHeadingTag;\n linkDirection?: BreakpointCustomizable<LinkTileModelSignatureLinkDirection>;\n model?: LinkTileModelSignatureModel;\n weight?: BreakpointCustomizable<LinkTileModelSignatureWeight>;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, LinkTileProductAspectRatio, LinkTileProductLikeEventDetail, LinkTileProductTarget, Theme } from '../types';\n\n@Component({\n selector: 'p-link-tile-product,[p-link-tile-product]',\n template: '<ng-content />',\n inputs: ['aspectRatio', 'description', 'heading', 'href', 'likeButton', 'liked', 'price', 'priceOriginal', 'rel', 'target', 'theme'],\n outputs: ['like'],\n standalone: false\n})\nexport class PLinkTileProduct extends BaseComponentWithTheme {\n aspectRatio?: BreakpointCustomizable<LinkTileProductAspectRatio>;\n description?: string;\n heading: string;\n href?: string;\n likeButton?: boolean;\n liked?: boolean;\n price: string;\n priceOriginal?: string;\n rel?: string;\n target?: LinkTileProductTarget;\n declare theme?: Theme;\n like = new EventEmitter<CustomEvent<LinkTileProductLikeEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { SelectedAriaAttributes, MarqueAriaAttribute, MarqueSize, MarqueTarget, MarqueVariant } from '../types';\n\n/** @deprecated since v3.0.0, will be removed with next major release. Please use \"p-wordmark\" instead. */\n@Component({\n selector: 'p-marque,[p-marque]',\n template: '<ng-content />',\n inputs: ['aria', 'href', 'size', 'target', 'trademark', 'variant'],\n standalone: false\n})\nexport class PMarque extends BaseComponent {\n aria?: SelectedAriaAttributes<MarqueAriaAttribute>;\n href?: string;\n size?: MarqueSize;\n target?: MarqueTarget;\n trademark?: boolean;\n variant?: MarqueVariant;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, ModalAriaAttribute, ModalBackdrop, BreakpointCustomizable, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-modal,[p-modal]',\n template: '<ng-content />',\n inputs: ['aria', 'backdrop', 'disableBackdropClick', 'disableCloseButton', 'dismissButton', 'fullscreen', 'heading', 'open', 'theme'],\n outputs: ['close', 'dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],\n standalone: false\n})\nexport class PModal extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<ModalAriaAttribute>;\n backdrop?: ModalBackdrop;\n disableBackdropClick?: boolean;\n /** @deprecated */\n disableCloseButton?: boolean;\n dismissButton?: boolean;\n fullscreen?: BreakpointCustomizable<boolean>;\n /** @deprecated */\n heading?: string;\n open: boolean;\n declare theme?: Theme;\n /** @deprecated */\n close = new EventEmitter<CustomEvent<void>>();\n dismiss = new EventEmitter<CustomEvent<void>>();\n motionHiddenEnd = new EventEmitter<CustomEvent<ModalMotionHiddenEndEventDetail>>();\n motionVisibleEnd = new EventEmitter<CustomEvent<ModalMotionVisibleEndEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, Theme } from '../types';\n\n@Component({\n selector: 'p-model-signature,[p-model-signature]',\n template: '<ng-content />',\n inputs: ['color', 'fetchPriority', 'lazy', 'model', 'safeZone', 'size', 'theme'],\n standalone: false\n})\nexport class PModelSignature extends BaseComponentWithTheme {\n color?: ModelSignatureColor;\n fetchPriority?: ModelSignatureFetchPriority;\n lazy?: boolean;\n model?: ModelSignatureModel;\n safeZone?: boolean;\n size?: ModelSignatureSize;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { MultiSelectDropdownDirection, BreakpointCustomizable, MultiSelectUpdateEventDetail, MultiSelectState, Theme } from '../types';\n\n@Component({\n selector: 'p-multi-select,[p-multi-select]',\n template: '<ng-content />',\n inputs: ['description', 'disabled', 'dropdownDirection', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'theme', 'value'],\n outputs: ['update'],\n standalone: false\n})\nexport class PMultiSelect extends BaseComponentWithTheme {\n description?: string;\n disabled?: boolean;\n dropdownDirection?: MultiSelectDropdownDirection;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n name: string;\n required?: boolean;\n state?: MultiSelectState;\n declare theme?: Theme;\n value?: string[];\n update = new EventEmitter<CustomEvent<MultiSelectUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-multi-select-option,[p-multi-select-option]',\n template: '<ng-content />',\n inputs: ['disabled', 'value'],\n standalone: false\n})\nexport class PMultiSelectOption extends BaseComponent {\n disabled?: boolean;\n value: string;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-optgroup,[p-optgroup]',\n template: '<ng-content />',\n inputs: ['disabled', 'label'],\n standalone: false\n})\nexport class POptgroup extends BaseComponent {\n disabled?: boolean;\n label?: string;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { PaginationInternationalization, BreakpointCustomizable, PaginationMaxNumberOfPageLinks, PaginationUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-pagination,[p-pagination]',\n template: '<ng-content />',\n inputs: ['activePage', 'allyLabel', 'allyLabelNext', 'allyLabelPage', 'allyLabelPrev', 'intl', 'itemsPerPage', 'maxNumberOfPageLinks', 'showLastPage', 'theme', 'totalItemsCount'],\n outputs: ['pageChange', 'update'],\n standalone: false\n})\nexport class PPagination extends BaseComponentWithTheme {\n activePage: number;\n /** @deprecated */\n allyLabel?: string;\n /** @deprecated */\n allyLabelNext?: string;\n /** @deprecated */\n allyLabelPage?: string;\n /** @deprecated */\n allyLabelPrev?: string;\n intl?: PaginationInternationalization;\n itemsPerPage?: number;\n /** @deprecated */\n maxNumberOfPageLinks?: BreakpointCustomizable<PaginationMaxNumberOfPageLinks>;\n showLastPage?: boolean;\n declare theme?: Theme;\n totalItemsCount: number;\n /** @deprecated */\n pageChange = new EventEmitter<CustomEvent<PaginationUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<PaginationUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, PinCodeLength, PinCodeUpdateEventDetail, PinCodeState, Theme, PinCodeType } from '../types';\n\n@Component({\n selector: 'p-pin-code,[p-pin-code]',\n template: '<ng-content />',\n inputs: ['description', 'disabled', 'form', 'hideLabel', 'label', 'length', 'loading', 'message', 'name', 'required', 'state', 'theme', 'type', 'value'],\n outputs: ['update'],\n standalone: false\n})\nexport class PPinCode extends BaseComponentWithTheme {\n description?: string;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n length?: PinCodeLength;\n loading?: boolean;\n message?: string;\n name?: string;\n required?: boolean;\n state?: PinCodeState;\n declare theme?: Theme;\n type?: PinCodeType;\n value?: string;\n update = new EventEmitter<CustomEvent<PinCodeUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, PopoverAriaAttribute, PopoverDirection, Theme } from '../types';\n\n@Component({\n selector: 'p-popover,[p-popover]',\n template: '<ng-content />',\n inputs: ['aria', 'description', 'direction', 'theme'],\n standalone: false\n})\nexport class PPopover extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<PopoverAriaAttribute>;\n description?: string;\n direction?: PopoverDirection;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, RadioButtonWrapperState, Theme } from '../types';\n\n@Component({\n selector: 'p-radio-button-wrapper,[p-radio-button-wrapper]',\n template: '<ng-content />',\n inputs: ['hideLabel', 'label', 'loading', 'message', 'state', 'theme'],\n standalone: false\n})\nexport class PRadioButtonWrapper extends BaseComponentWithTheme {\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n loading?: boolean;\n message?: string;\n state?: RadioButtonWrapperState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { ScrollerAlignScrollIndicator, SelectedAriaAttributes, ScrollerAriaAttribute, ScrollerGradientColor, ScrollerGradientColorScheme, ScrollerScrollIndicatorPosition, ScrollerScrollToPosition, Theme } from '../types';\n\n@Component({\n selector: 'p-scroller,[p-scroller]',\n template: '<ng-content />',\n inputs: ['alignScrollIndicator', 'aria', 'gradientColor', 'gradientColorScheme', 'scrollIndicatorPosition', 'scrollToPosition', 'scrollbar', 'theme'],\n standalone: false\n})\nexport class PScroller extends BaseComponentWithTheme {\n alignScrollIndicator?: ScrollerAlignScrollIndicator;\n aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;\n gradientColor?: ScrollerGradientColor;\n /** @deprecated */\n gradientColorScheme?: ScrollerGradientColorScheme;\n /** @deprecated */\n scrollIndicatorPosition?: ScrollerScrollIndicatorPosition;\n scrollToPosition?: ScrollerScrollToPosition;\n scrollbar?: boolean;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SegmentedControlBackgroundColor, BreakpointCustomizable, SegmentedControlColumns, SegmentedControlUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-segmented-control,[p-segmented-control]',\n template: '<ng-content />',\n inputs: ['backgroundColor', 'columns', 'disabled', 'form', 'name', 'theme', 'value'],\n outputs: ['segmentedControlChange', 'update'],\n standalone: false\n})\nexport class PSegmentedControl extends BaseComponentWithTheme {\n /** @deprecated */\n backgroundColor?: SegmentedControlBackgroundColor;\n columns?: BreakpointCustomizable<SegmentedControlColumns>;\n disabled?: boolean;\n form?: string;\n name?: string;\n declare theme?: Theme;\n value?: string | number;\n /** @deprecated */\n segmentedControlChange = new EventEmitter<CustomEvent<SegmentedControlUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<SegmentedControlUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { SelectedAriaAttributes, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon } from '../types';\n\n@Component({\n selector: 'p-segmented-control-item,[p-segmented-control-item]',\n template: '<ng-content />',\n inputs: ['aria', 'disabled', 'icon', 'iconSource', 'label', 'value'],\n standalone: false\n})\nexport class PSegmentedControlItem extends BaseComponent {\n aria?: SelectedAriaAttributes<SegmentedControlItemAriaAttribute>;\n disabled?: boolean;\n icon?: SegmentedControlItemIcon;\n iconSource?: string;\n label?: string;\n value: string | number;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectDropdownDirection, BreakpointCustomizable, SelectUpdateEventDetail, SelectState, Theme } from '../types';\n\n@Component({\n selector: 'p-select,[p-select]',\n template: '<ng-content />',\n inputs: ['compact', 'description', 'disabled', 'dropdownDirection', 'form', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'theme', 'value'],\n outputs: ['update'],\n standalone: false\n})\nexport class PSelect extends BaseComponentWithTheme {\n compact?: boolean;\n description?: string;\n disabled?: boolean;\n dropdownDirection?: SelectDropdownDirection;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n name: string;\n required?: boolean;\n state?: SelectState;\n declare theme?: Theme;\n value?: string;\n update = new EventEmitter<CustomEvent<SelectUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-select-option,[p-select-option]',\n template: '<ng-content />',\n inputs: ['disabled', 'value'],\n standalone: false\n})\nexport class PSelectOption extends BaseComponent {\n disabled?: boolean;\n value?: string;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectWrapperDropdownDirection, BreakpointCustomizable, SelectWrapperState, Theme } from '../types';\n\n@Component({\n selector: 'p-select-wrapper,[p-select-wrapper]',\n template: '<ng-content />',\n inputs: ['description', 'dropdownDirection', 'filter', 'hideLabel', 'label', 'message', 'native', 'state', 'theme'],\n standalone: false\n})\nexport class PSelectWrapper extends BaseComponentWithTheme {\n description?: string;\n dropdownDirection?: SelectWrapperDropdownDirection;\n filter?: boolean;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n native?: boolean;\n state?: SelectWrapperState;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, SheetAriaAttribute, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-sheet,[p-sheet]',\n template: '<ng-content />',\n inputs: ['aria', 'disableBackdropClick', 'dismissButton', 'open', 'theme'],\n outputs: ['dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],\n standalone: false\n})\nexport class PSheet extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<SheetAriaAttribute>;\n disableBackdropClick?: boolean;\n dismissButton?: boolean;\n open: boolean;\n declare theme?: Theme;\n dismiss = new EventEmitter<CustomEvent<void>>();\n motionHiddenEnd = new EventEmitter<CustomEvent<SheetMotionHiddenEndEventDetail>>();\n motionVisibleEnd = new EventEmitter<CustomEvent<SheetMotionVisibleEndEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, SpinnerAriaAttribute, BreakpointCustomizable, SpinnerSize, Theme } from '../types';\n\n@Component({\n selector: 'p-spinner,[p-spinner]',\n template: '<ng-content />',\n inputs: ['aria', 'size', 'theme'],\n standalone: false\n})\nexport class PSpinner extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<SpinnerAriaAttribute>;\n size?: BreakpointCustomizable<SpinnerSize>;\n declare theme?: Theme;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { StepperHorizontalUpdateEventDetail, BreakpointCustomizable, StepperHorizontalSize, Theme } from '../types';\n\n@Component({\n selector: 'p-stepper-horizontal,[p-stepper-horizontal]',\n template: '<ng-content />',\n inputs: ['size', 'theme'],\n outputs: ['stepChange', 'update'],\n standalone: false\n})\nexport class PStepperHorizontal extends BaseComponentWithTheme {\n size?: BreakpointCustomizable<StepperHorizontalSize>;\n declare theme?: Theme;\n /** @deprecated */\n stepChange = new EventEmitter<CustomEvent<StepperHorizontalUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<StepperHorizontalUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { StepperHorizontalItemState } from '../types';\n\n@Component({\n selector: 'p-stepper-horizontal-item,[p-stepper-horizontal-item]',\n template: '<ng-content />',\n inputs: ['disabled', 'state'],\n standalone: false\n})\nexport class PStepperHorizontalItem extends BaseComponent {\n disabled?: boolean;\n state?: StepperHorizontalItemState;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, SwitchAlignLabel, SwitchUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-switch,[p-switch]',\n template: '<ng-content />',\n inputs: ['alignLabel', 'checked', 'compact', 'disabled', 'hideLabel', 'loading', 'stretch', 'theme'],\n outputs: ['switchChange', 'update'],\n standalone: false\n})\nexport class PSwitch extends BaseComponentWithTheme {\n alignLabel?: BreakpointCustomizable<SwitchAlignLabel>;\n checked?: boolean;\n compact?: boolean;\n disabled?: boolean;\n hideLabel?: BreakpointCustomizable<boolean>;\n loading?: boolean;\n stretch?: BreakpointCustomizable<boolean>;\n declare theme?: Theme;\n /** @deprecated */\n switchChange = new EventEmitter<CustomEvent<SwitchUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<SwitchUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TableLayout, TableUpdateEventDetail, Theme } from '../types';\n\n@Component({\n selector: 'p-table,[p-table]',\n template: '<ng-content />',\n inputs: ['caption', 'compact', 'layout', 'theme'],\n outputs: ['sortingChange', 'update'],\n standalone: false\n})\nexport class PTable extends BaseComponentWithTheme {\n caption?: string;\n compact?: boolean;\n layout?: TableLayout;\n declare theme?: Theme;\n /** @deprecated */\n sortingChange = new EventEmitter<CustomEvent<TableUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<TableUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-body,[p-table-body]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTableBody extends BaseComponent {\n \n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-cell,[p-table-cell]',\n template: '<ng-content />',\n inputs: ['multiline'],\n standalone: false\n})\nexport class PTableCell extends BaseComponent {\n multiline?: boolean;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-head,[p-table-head]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTableHead extends BaseComponent {\n \n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\nimport type { TableHeadCellSort } from '../types';\n\n@Component({\n selector: 'p-table-head-cell,[p-table-head-cell]',\n template: '<ng-content />',\n inputs: ['hideLabel', 'multiline', 'sort'],\n standalone: false\n})\nexport class PTableHeadCell extends BaseComponent {\n hideLabel?: boolean;\n multiline?: boolean;\n sort?: TableHeadCellSort;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-head-row,[p-table-head-row]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTableHeadRow extends BaseComponent {\n \n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-table-row,[p-table-row]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTableRow extends BaseComponent {\n \n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TabsGradientColor, TabsGradientColorScheme, TabsUpdateEventDetail, BreakpointCustomizable, TabsSize, Theme, TabsWeight } from '../types';\n\n@Component({\n selector: 'p-tabs,[p-tabs]',\n template: '<ng-content />',\n inputs: ['activeTabIndex', 'gradientColor', 'gradientColorScheme', 'size', 'theme', 'weight'],\n outputs: ['tabChange', 'update'],\n standalone: false\n})\nexport class PTabs extends BaseComponentWithTheme {\n activeTabIndex?: number;\n gradientColor?: TabsGradientColor;\n /** @deprecated */\n gradientColorScheme?: TabsGradientColorScheme;\n size?: BreakpointCustomizable<TabsSize>;\n declare theme?: Theme;\n weight?: TabsWeight;\n /** @deprecated */\n tabChange = new EventEmitter<CustomEvent<TabsUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<TabsUpdateEventDetail>>();\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TabsBarGradientColor, TabsBarGradientColorScheme, TabsBarUpdateEventDetail, BreakpointCustomizable, TabsBarSize, Theme, TabsBarWeight } from '../types';\n\n@Component({\n selector: 'p-tabs-bar,[p-tabs-bar]',\n template: '<ng-content />',\n inputs: ['activeTabIndex', 'gradientColor', 'gradientColorScheme', 'size', 'theme', 'weight'],\n outputs: ['tabChange', 'update'],\n standalone: false\n})\nexport class PTabsBar extends BaseComponentWithTheme {\n activeTabIndex?: number | undefined;\n gradientColor?: TabsBarGradientColor;\n /** @deprecated */\n gradientColorScheme?: TabsBarGradientColorScheme;\n size?: BreakpointCustomizable<TabsBarSize>;\n declare theme?: Theme;\n weight?: TabsBarWeight;\n /** @deprecated */\n tabChange = new EventEmitter<CustomEvent<TabsBarUpdateEventDetail>>();\n update = new EventEmitter<CustomEvent<TabsBarUpdateEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-tabs-item,[p-tabs-item]',\n template: '<ng-content />',\n inputs: ['label'],\n standalone: false\n})\nexport class PTabsItem extends BaseComponent {\n label: string;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TagColor, TagIcon, Theme } from '../types';\n\n@Component({\n selector: 'p-tag,[p-tag]',\n template: '<ng-content />',\n inputs: ['color', 'compact', 'icon', 'iconSource', 'theme'],\n standalone: false\n})\nexport class PTag extends BaseComponentWithTheme {\n color?: TagColor;\n compact?: boolean;\n icon?: TagIcon;\n iconSource?: string;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, TagDismissibleAriaAttribute, TagDismissibleColor, Theme } from '../types';\n\n@Component({\n selector: 'p-tag-dismissible,[p-tag-dismissible]',\n template: '<ng-content />',\n inputs: ['aria', 'color', 'label', 'theme'],\n standalone: false\n})\nexport class PTagDismissible extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<TagDismissibleAriaAttribute>;\n color?: TagDismissibleColor;\n label?: string;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TextAlign, TextColor, BreakpointCustomizable, TextSize, TextTag, Theme, TextWeight } from '../types';\n\n@Component({\n selector: 'p-text,[p-text]',\n template: '<ng-content />',\n inputs: ['align', 'color', 'ellipsis', 'size', 'tag', 'theme', 'weight'],\n standalone: false\n})\nexport class PText extends BaseComponentWithTheme {\n align?: TextAlign;\n color?: TextColor;\n ellipsis?: boolean;\n size?: BreakpointCustomizable<TextSize>;\n tag?: TextTag;\n declare theme?: Theme;\n weight?: TextWeight;\n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TextFieldWrapperActionIcon, BreakpointCustomizable, TextFieldWrapperState, Theme, TextFieldWrapperUnitPosition } from '../types';\n\n@Component({\n selector: 'p-text-field-wrapper,[p-text-field-wrapper]',\n template: '<ng-content />',\n inputs: ['actionIcon', 'actionLoading', 'description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'showCounter', 'showPasswordToggle', 'state', 'submitButton', 'theme', 'unit', 'unitPosition'],\n outputs: ['action'],\n standalone: false\n})\nexport class PTextFieldWrapper extends BaseComponentWithTheme {\n actionIcon?: TextFieldWrapperActionIcon;\n actionLoading?: boolean;\n description?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n /** @deprecated */\n showCharacterCount?: boolean;\n showCounter?: boolean;\n showPasswordToggle?: boolean;\n state?: TextFieldWrapperState;\n submitButton?: boolean;\n declare theme?: Theme;\n unit?: string;\n unitPosition?: TextFieldWrapperUnitPosition;\n action = new EventEmitter<CustomEvent<void>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TextListListType, TextListOrderType, Theme, TextListType } from '../types';\n\n@Component({\n selector: 'p-text-list,[p-text-list]',\n template: '<ng-content />',\n inputs: ['listType', 'orderType', 'theme', 'type'],\n standalone: false\n})\nexport class PTextList extends BaseComponentWithTheme {\n /** @deprecated */\n listType?: TextListListType;\n /** @deprecated */\n orderType?: TextListOrderType;\n declare theme?: Theme;\n type?: TextListType;\n}","import { Component } from '@angular/core';\nimport { BaseComponent } from '../../utils';\n\n@Component({\n selector: 'p-text-list-item,[p-text-list-item]',\n template: '<ng-content />',\n standalone: false\n})\nexport class PTextListItem extends BaseComponent {\n \n}","import { Component, EventEmitter } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { TextareaAutoComplete, BreakpointCustomizable, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, Theme, TextareaWrap } from '../types';\n\n@Component({\n selector: 'p-textarea,[p-textarea]',\n template: '<ng-content />',\n inputs: ['autoComplete', 'description', 'disabled', 'form', 'hideLabel', 'label', 'maxLength', 'message', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'resize', 'rows', 'showCounter', 'spellCheck', 'state', 'theme', 'value', 'wrap'],\n outputs: ['blur', 'change', 'input'],\n standalone: false\n})\nexport class PTextarea extends BaseComponentWithTheme {\n autoComplete?: TextareaAutoComplete;\n description?: string;\n disabled?: boolean;\n form?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n maxLength?: number;\n message?: string;\n minLength?: number;\n name: string;\n placeholder?: string;\n readOnly?: boolean;\n required?: boolean;\n resize?: TextareaResize;\n rows?: number;\n showCounter?: boolean;\n spellCheck?: boolean;\n state?: TextareaState;\n declare theme?: Theme;\n value?: string;\n wrap?: TextareaWrap;\n blur = new EventEmitter<CustomEvent<TextareaBlurEventDetail>>();\n change = new EventEmitter<CustomEvent<TextareaChangeEventDetail>>();\n input = new EventEmitter<CustomEvent<TextareaInputEventDetail>>();\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { BreakpointCustomizable, TextareaWrapperState, Theme } from '../types';\n\n@Component({\n selector: 'p-textarea-wrapper,[p-textarea-wrapper]',\n template: '<ng-content />',\n inputs: ['description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'showCounter', 'state', 'theme'],\n standalone: false\n})\nexport class PTextareaWrapper extends BaseComponentWithTheme {\n description?: string;\n hideLabel?: BreakpointCustomizable<boolean>;\n label?: string;\n message?: string;\n /** @deprecated */\n showCharacterCount?: boolean;\n showCounter?: boolean;\n state?: TextareaWrapperState;\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { Theme } from '../types';\n\n@Component({\n selector: 'p-toast,[p-toast]',\n template: '<ng-content />',\n inputs: ['theme'],\n standalone: false\n})\nexport class PToast extends BaseComponentWithTheme {\n declare theme?: Theme;\n}","import { Component } from '@angular/core';\nimport { BaseComponentWithTheme } from '../../utils';\nimport type { SelectedAriaAttributes, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget, Theme } from '../types';\n\n@Component({\n selector: 'p-wordmark,[p-wordmark]',\n template: '<ng-content />',\n inputs: ['aria', 'href', 'size', 'target', 'theme'],\n standalone: false\n})\nexport class PWordmark extends BaseComponentWithTheme {\n aria?: SelectedAriaAttributes<WordmarkAriaAttribute>;\n href?: string;\n size?: WordmarkSize;\n target?: WordmarkTarget;\n declare theme?: Theme;\n}","import { PAccordion } from './accordion.wrapper';\nimport { PBanner } from './banner.wrapper';\nimport { PButton } from './button.wrapper';\nimport { PButtonGroup } from './button-group.wrapper';\nimport { PButtonPure } from './button-pure.wrapper';\nimport { PButtonTile } from './button-tile.wrapper';\nimport { PCanvas } from './canvas.wrapper';\nimport { PCarousel } from './carousel.wrapper';\nimport { PCheckbox } from './checkbox.wrapper';\nimport { PCheckboxWrapper } from './checkbox-wrapper.wrapper';\nimport { PContentWrapper } from './content-wrapper.wrapper';\nimport { PCrest } from './crest.wrapper';\nimport { PDisplay } from './display.wrapper';\nimport { PDivider } from './divider.wrapper';\nimport { PFieldset } from './fieldset.wrapper';\nimport { PFieldsetWrapper } from './fieldset-wrapper.wrapper';\nimport { PFlex } from './flex.wrapper';\nimport { PFlexItem } from './flex-item.wrapper';\nimport { PFlyout } from './flyout.wrapper';\nimport { PFlyoutMultilevel } from './flyout-multilevel.wrapper';\nimport { PFlyoutMultilevelItem } from './flyout-multilevel-item.wrapper';\nimport { PGrid } from './grid.wrapper';\nimport { PGridItem } from './grid-item.wrapper';\nimport { PHeading } from './heading.wrapper';\nimport { PHeadline } from './headline.wrapper';\nimport { PIcon } from './icon.wrapper';\nimport { PInlineNotification } from './inline-notification.wrapper';\nimport { PLink } from './link.wrapper';\nimport { PLinkPure } from './link-pure.wrapper';\nimport { PLinkSocial } from './link-social.wrapper';\nimport { PLinkTile } from './link-tile.wrapper';\nimport { PLinkTileModelSignature } from './link-tile-model-signature.wrapper';\nimport { PLinkTileProduct } from './link-tile-product.wrapper';\nimport { PMarque } from './marque.wrapper';\nimport { PModal } from './modal.wrapper';\nimport { PModelSignature } from './model-signature.wrapper';\nimport { PMultiSelect } from './multi-select.wrapper';\nimport { PMultiSelectOption } from './multi-select-option.wrapper';\nimport { POptgroup } from './optgroup.wrapper';\nimport { PPagination } from './pagination.wrapper';\nimport { PPinCode } from './pin-code.wrapper';\nimport { PPopover } from './popover.wrapper';\nimport { PRadioButtonWrapper } from './radio-button-wrapper.wrapper';\nimport { PScroller } from './scroller.wrapper';\nimport { PSegmentedControl } from './segmented-control.wrapper';\nimport { PSegmentedControlItem } from './segmented-control-item.wrapper';\nimport { PSelect } from './select.wrapper';\nimport { PSelectOption } from './select-option.wrapper';\nimport { PSelectWrapper } from './select-wrapper.wrapper';\nimport { PSheet } from './sheet.wrapper';\nimport { PSpinner } from './spinner.wrapper';\nimport { PStepperHorizontal } from './stepper-horizontal.wrapper';\nimport { PStepperHorizontalItem } from './stepper-horizontal-item.wrapper';\nimport { PSwitch } from './switch.wrapper';\nimport { PTable } from './table.wrapper';\nimport { PTableBody } from './table-body.wrapper';\nimport { PTableCell } from './table-cell.wrapper';\nimport { PTableHead } from './table-head.wrapper';\nimport { PTableHeadCell } from './table-head-cell.wrapper';\nimport { PTableHeadRow } from './table-head-row.wrapper';\nimport { PTableRow } from './table-row.wrapper';\nimport { PTabs } from './tabs.wrapper';\nimport { PTabsBar } from './tabs-bar.wrapper';\nimport { PTabsItem } from './tabs-item.wrapper';\nimport { PTag } from './tag.wrapper';\nimport { PTagDismissible } from './tag-dismissible.wrapper';\nimport { PText } from './text.wrapper';\nimport { PTextFieldWrapper } from './text-field-wrapper.wrapper';\nimport { PTextList } from './text-list.wrapper';\nimport { PTextListItem } from './text-list-item.wrapper';\nimport { PTextarea } from './textarea.wrapper';\nimport { PTextareaWrapper } from './textarea-wrapper.wrapper';\nimport { PToast } from './toast.wrapper';\nimport { PWordmark } from './wordmark.wrapper';\n\nexport const DECLARATIONS = [\n PAccordion,\n PBanner,\n PButton,\n PButtonGroup,\n PButtonPure,\n PButtonTile,\n PCanvas,\n PCarousel,\n PCheckbox,\n PCheckboxWrapper,\n PContentWrapper,\n PCrest,\n PDisplay,\n PDivider,\n PFieldset,\n PFieldsetWrapper,\n PFlex,\n PFlexItem,\n PFlyout,\n PFlyoutMultilevel,\n PFlyoutMultilevelItem,\n PGrid,\n PGridItem,\n PHeading,\n PHeadline,\n PIcon,\n PInlineNotification,\n PLink,\n PLinkPure,\n PLinkSocial,\n PLinkTile,\n PLinkTileModelSignature,\n PLinkTileProduct,\n PMarque,\n PModal,\n PModelSignature,\n PMultiSelect,\n PMultiSelectOption,\n POptgroup,\n PPagination,\n PPinCode,\n PPopover,\n PRadioButtonWrapper,\n PScroller,\n PSegmentedControl,\n PSegmentedControlItem,\n PSelect,\n PSelectOption,\n PSelectWrapper,\n PSheet,\n PSpinner,\n PStepperHorizontal,\n PStepperHorizontalItem,\n PSwitch,\n PTable,\n PTableBody,\n PTableCell,\n PTableHead,\n PTableHeadCell,\n PTableHeadRow,\n PTableRow,\n PTabs,\n PTabsBar,\n PTabsItem,\n PTag,\n PTagDismissible,\n PText,\n PTextFieldWrapper,\n PTextList,\n PTextListItem,\n PTextarea,\n PTextareaWrapper,\n PToast,\n PWordmark\n];\n\nexport * from './accordion.wrapper';\nexport * from './banner.wrapper';\nexport * from './button.wrapper';\nexport * from './button-group.wrapper';\nexport * from './button-pure.wrapper';\nexport * from './button-tile.wrapper';\nexport * from './canvas.wrapper';\nexport * from './carousel.wrapper';\nexport * from './checkbox.wrapper';\nexport * from './checkbox-wrapper.wrapper';\nexport * from './content-wrapper.wrapper';\nexport * from './crest.wrapper';\nexport * from './display.wrapper';\nexport * from './divider.wrapper';\nexport * from './fieldset.wrapper';\nexport * from './fieldset-wrapper.wrapper';\nexport * from './flex.wrapper';\nexport * from './flex-item.wrapper';\nexport * from './flyout.wrapper';\nexport * from './flyout-multilevel.wrapper';\nexport * from './flyout-multilevel-item.wrapper';\nexport * from './grid.wrapper';\nexport * from './grid-item.wrapper';\nexport * from './heading.wrapper';\nexport * from './headline.wrapper';\nexport * from './icon.wrapper';\nexport * from './inline-notification.wrapper';\nexport * from './link.wrapper';\nexport * from './link-pure.wrapper';\nexport * from './link-social.wrapper';\nexport * from './link-tile.wrapper';\nexport * from './link-tile-model-signature.wrapper';\nexport * from './link-tile-product.wrapper';\nexport * from './marque.wrapper';\nexport * from './modal.wrapper';\nexport * from './model-signature.wrapper';\nexport * from './multi-select.wrapper';\nexport * from './multi-select-option.wrapper';\nexport * from './optgroup.wrapper';\nexport * from './pagination.wrapper';\nexport * from './pin-code.wrapper';\nexport * from './popover.wrapper';\nexport * from './radio-button-wrapper.wrapper';\nexport * from './scroller.wrapper';\nexport * from './segmented-control.wrapper';\nexport * from './segmented-control-item.wrapper';\nexport * from './select.wrapper';\nexport * from './select-option.wrapper';\nexport * from './select-wrapper.wrapper';\nexport * from './sheet.wrapper';\nexport * from './spinner.wrapper';\nexport * from './stepper-horizontal.wrapper';\nexport * from './stepper-horizontal-item.wrapper';\nexport * from './switch.wrapper';\nexport * from './table.wrapper';\nexport * from './table-body.wrapper';\nexport * from './table-cell.wrapper';\nexport * from './table-head.wrapper';\nexport * from './table-head-cell.wrapper';\nexport * from './table-head-row.wrapper';\nexport * from './table-row.wrapper';\nexport * from './tabs.wrapper';\nexport * from './tabs-bar.wrapper';\nexport * from './tabs-item.wrapper';\nexport * from './tag.wrapper';\nexport * from './tag-dismissible.wrapper';\nexport * from './text.wrapper';\nexport * from './text-field-wrapper.wrapper';\nexport * from './text-list.wrapper';\nexport * from './text-list-item.wrapper';\nexport * from './textarea.wrapper';\nexport * from './textarea-wrapper.wrapper';\nexport * from './toast.wrapper';\nexport * from './wordmark.wrapper';","import { inject, type ModuleWithProviders, NgModule, Optional } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\nimport { load } from '@porsche-design-system/components-js';\nimport { DECLARATIONS } from './lib/components/barrel';\nimport type { Theme } from './lib/types';\nimport { THEME_TOKEN } from './utils';\n\nexport type PorscheDesignSystemModuleConfig = {\n prefix?: string;\n cdn?: 'auto' | 'cn';\n theme?: Theme;\n};\n\nexport class DefaultConfig implements PorscheDesignSystemModuleConfig {\n prefix = '';\n theme: 'light'; // since theme exists on almost every component, it is defined here kind of like a global prop\n // other component configurations should probably go into a separate `components`, `componentProps` or `componentDefaults`\n // property similar to https://mui.com/material-ui/customization/theme-components/\n}\n\n// TODO: unit tests are missing\n@NgModule({\n declarations: DECLARATIONS,\n exports: DECLARATIONS,\n providers: [\n {\n provide: THEME_TOKEN,\n useValue: new BehaviorSubject('light'),\n },\n ],\n})\nexport class PorscheDesignSystemModule {\n private theme$ = inject(THEME_TOKEN);\n\n constructor(@Optional() configParam: DefaultConfig) {\n const configs = (configParam as unknown as DefaultConfig[]) || [new DefaultConfig()];\n this.theme$.next(configs[0].theme || 'light'); // first config sets the theme\n configs.forEach(load);\n }\n\n static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule> {\n return {\n ngModule: PorscheDesignSystemModule,\n providers: [\n {\n provide: DefaultConfig,\n multi: true, // to support multiple prefixes in same module\n useValue: config,\n },\n ],\n };\n }\n}\n","import { Injectable } from '@angular/core';\nimport type { ToastMessage } from './public-api';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ToastManager {\n public addMessage(message: ToastMessage): void {\n const toast = document.body.querySelector('p-toast,[p-toast]') as HTMLElement & {\n addMessage(message: ToastMessage): void;\n };\n customElements.whenDefined(toast.tagName.toLowerCase()).then(() => toast.addMessage(message));\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1.PAccordion","i2.PBanner","i3.PButton","i4.PButtonGroup","i5.PButtonPure","i6.PButtonTile","i7.PCanvas","i8.PCarousel","i9.PCheckbox","i10.PCheckboxWrapper","i11.PContentWrapper","i12.PCrest","i13.PDisplay","i14.PDivider","i15.PFieldset","i16.PFieldsetWrapper","i17.PFlex","i18.PFlexItem","i19.PFlyout","i20.PFlyoutMultilevel","i21.PFlyoutMultilevelItem","i22.PGrid","i23.PGridItem","i24.PHeading","i25.PHeadline","i26.PIcon","i27.PInlineNotification","i28.PLink","i29.PLinkPure","i30.PLinkSocial","i31.PLinkTile","i32.PLinkTileModelSignature","i33.PLinkTileProduct","i34.PMarque","i35.PModal","i36.PModelSignature","i37.PMultiSelect","i38.PMultiSelectOption","i39.POptgroup","i40.PPagination","i41.PPinCode","i42.PPopover","i43.PRadioButtonWrapper","i44.PScroller","i45.PSegmentedControl","i46.PSegmentedControlItem","i47.PSelect","i48.PSelectOption","i49.PSelectWrapper","i50.PSheet","i51.PSpinner","i52.PStepperHorizontal","i53.PStepperHorizontalItem","i54.PSwitch","i55.PTable","i56.PTableBody","i57.PTableCell","i58.PTableHead","i59.PTableHeadCell","i60.PTableHeadRow","i61.PTableRow","i62.PTabs","i63.PTabsBar","i64.PTabsItem","i65.PTag","i66.PTagDismissible","i67.PText","i68.PTextFieldWrapper","i69.PTextList","i70.PTextListItem","i71.PTextarea","i72.PTextareaWrapper","i73.PToast","i74.PWordmark"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-angular",
|
|
3
|
-
"version": "3.27.0-rc.
|
|
3
|
+
"version": "3.27.0-rc.6",
|
|
4
4
|
"description": "Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"porsche",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"license": "SEE LICENSE IN LICENSE",
|
|
18
18
|
"homepage": "https://designsystem.porsche.com",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@porsche-design-system/components-js": "3.27.0-rc.
|
|
20
|
+
"@porsche-design-system/components-js": "3.27.0-rc.6"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@angular/common": ">=19.0.0 <20.0.0",
|