@porsche-design-system/components-angular 3.29.0 → 3.30.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +60 -0
- package/OSS_NOTICE +1635 -2257
- package/fesm2022/porsche-design-system-components-angular.mjs +1016 -307
- package/fesm2022/porsche-design-system-components-angular.mjs.map +1 -1
- package/index.d.ts +805 -556
- package/package.json +2 -2
- package/tailwindcss/index.css +6 -6
package/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export { componentsReady } from '@porsche-design-system/components-js';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { InjectionToken, OnChanges, ChangeDetectorRef, ElementRef, OnDestroy, EventEmitter, ModuleWithProviders } from '@angular/core';
|
|
3
|
+
import { InjectionToken, OnChanges, ChangeDetectorRef, ElementRef, OnDestroy, EventEmitter, Renderer2, ModuleWithProviders } from '@angular/core';
|
|
4
4
|
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
5
6
|
import * as _porsche_design_system_components_angular from '@porsche-design-system/components-angular';
|
|
6
7
|
|
|
7
8
|
type Booleanish = boolean | "true" | "false";
|
|
@@ -227,8 +228,16 @@ declare const ICON_NAMES: readonly [
|
|
|
227
228
|
"add",
|
|
228
229
|
"adjust",
|
|
229
230
|
"aggregation",
|
|
231
|
+
"ai-3d-object",
|
|
232
|
+
"ai-code",
|
|
233
|
+
"ai-edit",
|
|
234
|
+
"ai-image",
|
|
235
|
+
"ai-scale",
|
|
236
|
+
"ai-sound",
|
|
230
237
|
"ai-spark",
|
|
231
238
|
"ai-spark-filled",
|
|
239
|
+
"ai-text",
|
|
240
|
+
"ai-video",
|
|
232
241
|
"arrow-compact-down",
|
|
233
242
|
"arrow-compact-left",
|
|
234
243
|
"arrow-compact-right",
|
|
@@ -617,6 +626,7 @@ declare const FORM_STATES: readonly [
|
|
|
617
626
|
type FormState = (typeof FORM_STATES)[number];
|
|
618
627
|
declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
619
628
|
"aria-label",
|
|
629
|
+
"aria-description",
|
|
620
630
|
"aria-expanded",
|
|
621
631
|
"aria-pressed",
|
|
622
632
|
"aria-haspopup"
|
|
@@ -624,6 +634,7 @@ declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
|
624
634
|
type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
|
|
625
635
|
declare const LINK_ARIA_ATTRIBUTES: readonly [
|
|
626
636
|
"aria-label",
|
|
637
|
+
"aria-description",
|
|
627
638
|
"aria-current",
|
|
628
639
|
"aria-haspopup"
|
|
629
640
|
];
|
|
@@ -722,13 +733,17 @@ type MultiSelectUpdateEvent = {
|
|
|
722
733
|
name: string;
|
|
723
734
|
value: string[];
|
|
724
735
|
};
|
|
736
|
+
/** @deprecated */
|
|
725
737
|
type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
|
|
738
|
+
type MultiSelectChangeEventDetail = MultiSelectUpdateEventDetail;
|
|
726
739
|
type SelectState = FormState;
|
|
727
740
|
type SelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
741
|
+
/** @deprecated */
|
|
728
742
|
type SelectUpdateEventDetail = {
|
|
729
743
|
name: string;
|
|
730
744
|
value: string;
|
|
731
745
|
};
|
|
746
|
+
type SelectChangeEventDetail = SelectUpdateEventDetail;
|
|
732
747
|
declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
|
|
733
748
|
"down",
|
|
734
749
|
"up",
|
|
@@ -942,6 +957,7 @@ type CheckboxUpdateEventDetail = {
|
|
|
942
957
|
checked: boolean;
|
|
943
958
|
};
|
|
944
959
|
type CheckboxBlurEventDetail = Event;
|
|
960
|
+
type CheckboxChangeEventDetail = Event;
|
|
945
961
|
type CheckboxWrapperState = FormState;
|
|
946
962
|
declare const CONTENT_WRAPPER_BACKGROUND_COLORS: readonly [
|
|
947
963
|
"transparent",
|
|
@@ -1106,6 +1122,11 @@ declare const FLEX_ITEM_FLEXS: readonly [
|
|
|
1106
1122
|
"equal"
|
|
1107
1123
|
];
|
|
1108
1124
|
type FlexItemFlex = (typeof FLEX_ITEM_FLEXS)[number];
|
|
1125
|
+
declare const BACKDROPS: readonly [
|
|
1126
|
+
"blur",
|
|
1127
|
+
"shading"
|
|
1128
|
+
];
|
|
1129
|
+
type Backdrop = (typeof BACKDROPS)[number];
|
|
1109
1130
|
declare const FLYOUT_POSITIONS: readonly [
|
|
1110
1131
|
"start",
|
|
1111
1132
|
"end",
|
|
@@ -1124,6 +1145,7 @@ declare const FLYOUT_ARIA_ATTRIBUTES: readonly [
|
|
|
1124
1145
|
type FlyoutAriaAttribute = (typeof FLYOUT_ARIA_ATTRIBUTES)[number];
|
|
1125
1146
|
type FlyoutMotionVisibleEndEventDetail = TransitionEvent;
|
|
1126
1147
|
type FlyoutMotionHiddenEndEventDetail = TransitionEvent;
|
|
1148
|
+
type FlyoutBackdrop = Backdrop;
|
|
1127
1149
|
declare const GRID_DIRECTIONS: readonly [
|
|
1128
1150
|
"row",
|
|
1129
1151
|
"row-reverse",
|
|
@@ -1292,6 +1314,9 @@ declare const LINK_TILE_MODEL_SIGNATURE_MODELS: readonly [
|
|
|
1292
1314
|
"boxster",
|
|
1293
1315
|
"cayenne",
|
|
1294
1316
|
"cayman",
|
|
1317
|
+
"gt3-rs",
|
|
1318
|
+
"gt3",
|
|
1319
|
+
"gts",
|
|
1295
1320
|
"macan",
|
|
1296
1321
|
"panamera",
|
|
1297
1322
|
"taycan",
|
|
@@ -1347,6 +1372,21 @@ declare const MODEL_SIGNATURES_MANIFEST: {
|
|
|
1347
1372
|
width: number;
|
|
1348
1373
|
height: number;
|
|
1349
1374
|
};
|
|
1375
|
+
"gt3-rs": {
|
|
1376
|
+
src: string;
|
|
1377
|
+
width: number;
|
|
1378
|
+
height: number;
|
|
1379
|
+
};
|
|
1380
|
+
gt3: {
|
|
1381
|
+
src: string;
|
|
1382
|
+
width: number;
|
|
1383
|
+
height: number;
|
|
1384
|
+
};
|
|
1385
|
+
gts: {
|
|
1386
|
+
src: string;
|
|
1387
|
+
width: number;
|
|
1388
|
+
height: number;
|
|
1389
|
+
};
|
|
1350
1390
|
macan: {
|
|
1351
1391
|
src: string;
|
|
1352
1392
|
width: number;
|
|
@@ -1386,11 +1426,6 @@ declare const MARQUE_SIZES: readonly [
|
|
|
1386
1426
|
"medium"
|
|
1387
1427
|
];
|
|
1388
1428
|
type MarqueSize = (typeof MARQUE_SIZES)[number];
|
|
1389
|
-
declare const BACKDROPS: readonly [
|
|
1390
|
-
"blur",
|
|
1391
|
-
"shading"
|
|
1392
|
-
];
|
|
1393
|
-
type Backdrop = (typeof BACKDROPS)[number];
|
|
1394
1429
|
declare const MODAL_ARIA_ATTRIBUTES: readonly [
|
|
1395
1430
|
"aria-label",
|
|
1396
1431
|
"role"
|
|
@@ -1451,7 +1486,9 @@ type PinCodeUpdateEvent = {
|
|
|
1451
1486
|
value: string;
|
|
1452
1487
|
isComplete: boolean;
|
|
1453
1488
|
};
|
|
1489
|
+
/** @deprecated */
|
|
1454
1490
|
type PinCodeUpdateEventDetail = PinCodeUpdateEvent;
|
|
1491
|
+
type PinCodeChangeEventDetail = PinCodeUpdateEventDetail;
|
|
1455
1492
|
type PinCodeState = FormState;
|
|
1456
1493
|
declare const POPOVER_DIRECTIONS: readonly [
|
|
1457
1494
|
"top",
|
|
@@ -1465,6 +1502,9 @@ declare const POPOVER_ARIA_ATTRIBUTES: readonly [
|
|
|
1465
1502
|
];
|
|
1466
1503
|
type PopoverAriaAttribute = (typeof POPOVER_ARIA_ATTRIBUTES)[number];
|
|
1467
1504
|
type RadioButtonWrapperState = FormState;
|
|
1505
|
+
type RadioGroupState = FormState;
|
|
1506
|
+
type RadioGroupDirection = GroupDirection;
|
|
1507
|
+
type RadioGroupChangeEventDetail = Event;
|
|
1468
1508
|
declare const SEGMENTED_CONTROL_BACKGROUND_COLORS: readonly [
|
|
1469
1509
|
"background-surface",
|
|
1470
1510
|
"background-default"
|
|
@@ -1474,7 +1514,9 @@ type SegmentedControlBackgroundColor = (typeof SEGMENTED_CONTROL_BACKGROUND_COLO
|
|
|
1474
1514
|
type SegmentedControlUpdateEvent = {
|
|
1475
1515
|
value: string | number;
|
|
1476
1516
|
};
|
|
1517
|
+
/** @deprecated */
|
|
1477
1518
|
type SegmentedControlUpdateEventDetail = SegmentedControlUpdateEvent;
|
|
1519
|
+
type SegmentedControlChangeEventDetail = SegmentedControlUpdateEventDetail;
|
|
1478
1520
|
declare const SEGMENTED_CONTROL_COLUMNS: (string | number)[];
|
|
1479
1521
|
type SegmentedControlColumns = (typeof SEGMENTED_CONTROL_COLUMNS)[number];
|
|
1480
1522
|
type SegmentedControlItemIcon = LinkButtonIconName;
|
|
@@ -1696,184 +1738,730 @@ declare abstract class BaseComponentWithTheme extends BaseComponent implements O
|
|
|
1696
1738
|
static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentWithTheme, "ng-component", never, {}, {}, never, never, true, never>;
|
|
1697
1739
|
}
|
|
1698
1740
|
|
|
1699
|
-
declare class
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
declare class PAccordion extends BaseComponentWithTheme {
|
|
1741
|
+
declare class PCheckbox extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
1742
|
+
private _renderer;
|
|
1743
|
+
private _elementRef;
|
|
1744
|
+
private _cdr;
|
|
1745
|
+
checked?: boolean;
|
|
1705
1746
|
compact?: boolean;
|
|
1706
|
-
heading?: string;
|
|
1707
|
-
headingTag?: AccordionHeadingTag;
|
|
1708
|
-
open?: boolean;
|
|
1709
|
-
size?: BreakpointCustomizable<AccordionSize>;
|
|
1710
|
-
sticky?: boolean;
|
|
1711
|
-
/** @deprecated */
|
|
1712
|
-
tag?: AccordionTag;
|
|
1713
|
-
theme?: Theme;
|
|
1714
|
-
/** @deprecated */
|
|
1715
|
-
accordionChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.AccordionUpdateEvent>>;
|
|
1716
|
-
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.AccordionUpdateEvent>>;
|
|
1717
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
|
|
1718
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion,[p-accordion]", never, { "compact": { "alias": "compact"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "accordionChange": "accordionChange"; "update": "update"; }, never, ["*"], false, never>;
|
|
1719
|
-
}
|
|
1720
|
-
|
|
1721
|
-
declare class PBanner extends BaseComponentWithTheme {
|
|
1722
|
-
description?: string;
|
|
1723
|
-
dismissButton?: boolean;
|
|
1724
|
-
heading?: string;
|
|
1725
|
-
headingTag?: BannerHeadingTag;
|
|
1726
|
-
open: boolean;
|
|
1727
|
-
/** @deprecated */
|
|
1728
|
-
persistent?: boolean;
|
|
1729
|
-
state?: BannerState;
|
|
1730
|
-
theme?: Theme;
|
|
1731
|
-
/** @deprecated */
|
|
1732
|
-
width?: BannerWidth;
|
|
1733
|
-
dismiss: EventEmitter<CustomEvent<void>>;
|
|
1734
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PBanner, never>;
|
|
1735
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PBanner, "p-banner,[p-banner]", never, { "description": { "alias": "description"; "required": false; }; "dismissButton": { "alias": "dismissButton"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "persistent": { "alias": "persistent"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "dismiss": "dismiss"; }, never, ["*"], false, never>;
|
|
1736
|
-
}
|
|
1737
|
-
|
|
1738
|
-
declare class PButton extends BaseComponentWithTheme {
|
|
1739
|
-
aria?: SelectedAriaAttributes<ButtonAriaAttribute>;
|
|
1740
|
-
compact?: BreakpointCustomizable<boolean>;
|
|
1741
1747
|
disabled?: boolean;
|
|
1742
1748
|
form?: string;
|
|
1743
1749
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
1744
|
-
|
|
1745
|
-
|
|
1750
|
+
indeterminate?: boolean;
|
|
1751
|
+
label?: string;
|
|
1746
1752
|
loading?: boolean;
|
|
1753
|
+
message?: string;
|
|
1747
1754
|
name?: string;
|
|
1755
|
+
required?: boolean;
|
|
1756
|
+
state?: CheckboxState;
|
|
1748
1757
|
theme?: Theme;
|
|
1749
|
-
type?: ButtonType;
|
|
1750
1758
|
value?: string;
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1759
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
1760
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
1761
|
+
/** @deprecated */
|
|
1762
|
+
update: EventEmitter<CustomEvent<CheckboxUpdateEventDetail>>;
|
|
1763
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
1764
|
+
_onChange: (value: any) => void;
|
|
1765
|
+
_onTouched: () => void;
|
|
1766
|
+
writeValue(value: any): void;
|
|
1767
|
+
registerOnChange(fn: any): void;
|
|
1768
|
+
registerOnTouched(fn: any): void;
|
|
1769
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1770
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCheckbox, never>;
|
|
1771
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCheckbox, "p-checkbox,[p-checkbox]", never, { "checked": { "alias": "checked"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "update": "update"; }, never, ["*"], false, never>;
|
|
1760
1772
|
}
|
|
1761
1773
|
|
|
1762
|
-
declare class
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1774
|
+
declare class PInputDate extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
1775
|
+
private _renderer;
|
|
1776
|
+
private _elementRef;
|
|
1777
|
+
private _cdr;
|
|
1778
|
+
autoComplete?: string;
|
|
1779
|
+
compact?: boolean;
|
|
1780
|
+
description?: string;
|
|
1766
1781
|
disabled?: boolean;
|
|
1767
1782
|
form?: string;
|
|
1768
1783
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
1769
|
-
|
|
1770
|
-
iconSource?: string;
|
|
1784
|
+
label?: string;
|
|
1771
1785
|
loading?: boolean;
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1786
|
+
max?: string;
|
|
1787
|
+
message?: string;
|
|
1788
|
+
min?: string;
|
|
1789
|
+
name: string;
|
|
1790
|
+
readOnly?: boolean;
|
|
1791
|
+
required?: boolean;
|
|
1792
|
+
state?: InputDateState;
|
|
1793
|
+
step?: number;
|
|
1775
1794
|
theme?: Theme;
|
|
1776
|
-
type?: ButtonPureType;
|
|
1777
|
-
underline?: boolean;
|
|
1778
1795
|
value?: string;
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1796
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
1797
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
1798
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
1799
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
1800
|
+
_onChange: (value: any) => void;
|
|
1801
|
+
_onTouched: () => void;
|
|
1802
|
+
writeValue(value: any): void;
|
|
1803
|
+
registerOnChange(fn: any): void;
|
|
1804
|
+
registerOnTouched(fn: any): void;
|
|
1805
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1806
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputDate, never>;
|
|
1807
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputDate, "p-input-date,[p-input-date]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
1783
1808
|
}
|
|
1784
1809
|
|
|
1785
|
-
declare class
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
compact?:
|
|
1791
|
-
description
|
|
1810
|
+
declare class PInputEmail extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
1811
|
+
private _renderer;
|
|
1812
|
+
private _elementRef;
|
|
1813
|
+
private _cdr;
|
|
1814
|
+
autoComplete?: string;
|
|
1815
|
+
compact?: boolean;
|
|
1816
|
+
description?: string;
|
|
1792
1817
|
disabled?: boolean;
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
label
|
|
1818
|
+
form?: string;
|
|
1819
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
1820
|
+
indicator?: boolean;
|
|
1821
|
+
label?: string;
|
|
1797
1822
|
loading?: boolean;
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1823
|
+
maxLength?: number;
|
|
1824
|
+
message?: string;
|
|
1825
|
+
minLength?: number;
|
|
1826
|
+
multiple?: boolean;
|
|
1827
|
+
name: string;
|
|
1828
|
+
pattern?: string;
|
|
1829
|
+
placeholder?: string;
|
|
1830
|
+
readOnly?: boolean;
|
|
1831
|
+
required?: boolean;
|
|
1832
|
+
state?: InputEmailState;
|
|
1808
1833
|
theme?: Theme;
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1834
|
+
value?: string;
|
|
1835
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
1836
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
1837
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
1838
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
1839
|
+
_onChange: (value: any) => void;
|
|
1840
|
+
_onTouched: () => void;
|
|
1841
|
+
writeValue(value: any): void;
|
|
1842
|
+
registerOnChange(fn: any): void;
|
|
1843
|
+
registerOnTouched(fn: any): void;
|
|
1844
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1845
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputEmail, never>;
|
|
1846
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputEmail, "p-input-email,[p-input-email]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
1813
1847
|
}
|
|
1814
1848
|
|
|
1815
|
-
declare class
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1849
|
+
declare class PInputNumber extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
1850
|
+
private _renderer;
|
|
1851
|
+
private _elementRef;
|
|
1852
|
+
private _cdr;
|
|
1853
|
+
autoComplete?: string;
|
|
1854
|
+
compact?: boolean;
|
|
1855
|
+
controls?: boolean;
|
|
1820
1856
|
description?: string;
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1857
|
+
disabled?: boolean;
|
|
1858
|
+
form?: string;
|
|
1859
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
1860
|
+
label?: string;
|
|
1861
|
+
loading?: boolean;
|
|
1862
|
+
max?: number;
|
|
1863
|
+
message?: string;
|
|
1864
|
+
min?: number;
|
|
1865
|
+
name: string;
|
|
1866
|
+
placeholder?: string;
|
|
1867
|
+
readOnly?: boolean;
|
|
1868
|
+
required?: boolean;
|
|
1869
|
+
state?: InputNumberState;
|
|
1870
|
+
step?: number;
|
|
1832
1871
|
theme?: Theme;
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1872
|
+
value?: string;
|
|
1873
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
1874
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
1875
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
1876
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
1877
|
+
_onChange: (value: any) => void;
|
|
1878
|
+
_onTouched: () => void;
|
|
1879
|
+
writeValue(value: any): void;
|
|
1880
|
+
registerOnChange(fn: any): void;
|
|
1881
|
+
registerOnTouched(fn: any): void;
|
|
1882
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1883
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputNumber, never>;
|
|
1884
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputNumber, "p-input-number,[p-input-number]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "controls": { "alias": "controls"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
1842
1885
|
}
|
|
1843
1886
|
|
|
1844
|
-
declare class
|
|
1845
|
-
|
|
1887
|
+
declare class PInputPassword extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
1888
|
+
private _renderer;
|
|
1889
|
+
private _elementRef;
|
|
1890
|
+
private _cdr;
|
|
1891
|
+
autoComplete?: string;
|
|
1846
1892
|
compact?: boolean;
|
|
1893
|
+
description?: string;
|
|
1847
1894
|
disabled?: boolean;
|
|
1848
1895
|
form?: string;
|
|
1849
1896
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
1850
|
-
indeterminate?: boolean;
|
|
1851
1897
|
label?: string;
|
|
1852
1898
|
loading?: boolean;
|
|
1899
|
+
maxLength?: number;
|
|
1853
1900
|
message?: string;
|
|
1854
|
-
|
|
1901
|
+
minLength?: number;
|
|
1902
|
+
name: string;
|
|
1903
|
+
placeholder?: string;
|
|
1904
|
+
readOnly?: boolean;
|
|
1855
1905
|
required?: boolean;
|
|
1856
|
-
state?:
|
|
1906
|
+
state?: InputPasswordState;
|
|
1857
1907
|
theme?: Theme;
|
|
1908
|
+
toggle?: boolean;
|
|
1858
1909
|
value?: string;
|
|
1859
1910
|
blur: EventEmitter<CustomEvent<Event>>;
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1911
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
1912
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
1913
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
1914
|
+
_onChange: (value: any) => void;
|
|
1915
|
+
_onTouched: () => void;
|
|
1916
|
+
writeValue(value: any): void;
|
|
1917
|
+
registerOnChange(fn: any): void;
|
|
1918
|
+
registerOnTouched(fn: any): void;
|
|
1919
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1920
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputPassword, never>;
|
|
1921
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputPassword, "p-input-password,[p-input-password]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
1863
1922
|
}
|
|
1864
1923
|
|
|
1865
|
-
|
|
1866
|
-
|
|
1924
|
+
declare class PInputSearch extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
1925
|
+
private _renderer;
|
|
1926
|
+
private _elementRef;
|
|
1927
|
+
private _cdr;
|
|
1928
|
+
autoComplete?: string;
|
|
1929
|
+
clear?: boolean;
|
|
1930
|
+
compact?: boolean;
|
|
1931
|
+
description?: string;
|
|
1932
|
+
disabled?: boolean;
|
|
1933
|
+
form?: string;
|
|
1867
1934
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
1935
|
+
indicator?: boolean;
|
|
1868
1936
|
label?: string;
|
|
1869
1937
|
loading?: boolean;
|
|
1870
1938
|
message?: string;
|
|
1871
|
-
|
|
1939
|
+
name: string;
|
|
1940
|
+
placeholder?: string;
|
|
1941
|
+
readOnly?: boolean;
|
|
1942
|
+
required?: boolean;
|
|
1943
|
+
state?: InputSearchState;
|
|
1872
1944
|
theme?: Theme;
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1945
|
+
value?: string;
|
|
1946
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
1947
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
1948
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
1949
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
1950
|
+
_onChange: (value: any) => void;
|
|
1951
|
+
_onTouched: () => void;
|
|
1952
|
+
writeValue(value: any): void;
|
|
1953
|
+
registerOnChange(fn: any): void;
|
|
1954
|
+
registerOnTouched(fn: any): void;
|
|
1955
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1956
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputSearch, never>;
|
|
1957
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputSearch, "p-input-search,[p-input-search]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "clear": { "alias": "clear"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
declare class PInputTel extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
1961
|
+
private _renderer;
|
|
1962
|
+
private _elementRef;
|
|
1963
|
+
private _cdr;
|
|
1964
|
+
autoComplete?: string;
|
|
1965
|
+
compact?: boolean;
|
|
1966
|
+
description?: string;
|
|
1967
|
+
disabled?: boolean;
|
|
1968
|
+
form?: string;
|
|
1969
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
1970
|
+
indicator?: boolean;
|
|
1971
|
+
label?: string;
|
|
1972
|
+
loading?: boolean;
|
|
1973
|
+
maxLength?: number;
|
|
1974
|
+
message?: string;
|
|
1975
|
+
minLength?: number;
|
|
1976
|
+
name: string;
|
|
1977
|
+
pattern?: string;
|
|
1978
|
+
placeholder?: string;
|
|
1979
|
+
readOnly?: boolean;
|
|
1980
|
+
required?: boolean;
|
|
1981
|
+
state?: InputTelState;
|
|
1982
|
+
theme?: Theme;
|
|
1983
|
+
value?: string;
|
|
1984
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
1985
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
1986
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
1987
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
1988
|
+
_onChange: (value: any) => void;
|
|
1989
|
+
_onTouched: () => void;
|
|
1990
|
+
writeValue(value: any): void;
|
|
1991
|
+
registerOnChange(fn: any): void;
|
|
1992
|
+
registerOnTouched(fn: any): void;
|
|
1993
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1994
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputTel, never>;
|
|
1995
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputTel, "p-input-tel,[p-input-tel]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
declare class PInputText extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
1999
|
+
private _renderer;
|
|
2000
|
+
private _elementRef;
|
|
2001
|
+
private _cdr;
|
|
2002
|
+
autoComplete?: string;
|
|
2003
|
+
compact?: boolean;
|
|
2004
|
+
counter?: boolean;
|
|
2005
|
+
description?: string;
|
|
2006
|
+
disabled?: boolean;
|
|
2007
|
+
form?: string;
|
|
2008
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2009
|
+
label?: string;
|
|
2010
|
+
loading?: boolean;
|
|
2011
|
+
maxLength?: number;
|
|
2012
|
+
message?: string;
|
|
2013
|
+
minLength?: number;
|
|
2014
|
+
name: string;
|
|
2015
|
+
placeholder?: string;
|
|
2016
|
+
readOnly?: boolean;
|
|
2017
|
+
required?: boolean;
|
|
2018
|
+
spellCheck?: boolean;
|
|
2019
|
+
state?: InputTextState;
|
|
2020
|
+
theme?: Theme;
|
|
2021
|
+
value?: string;
|
|
2022
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
2023
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
2024
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2025
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
2026
|
+
_onChange: (value: any) => void;
|
|
2027
|
+
_onTouched: () => void;
|
|
2028
|
+
writeValue(value: any): void;
|
|
2029
|
+
registerOnChange(fn: any): void;
|
|
2030
|
+
registerOnTouched(fn: any): void;
|
|
2031
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2032
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputText, never>;
|
|
2033
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputText, "p-input-text,[p-input-text]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
declare class PInputTime extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
2037
|
+
private _renderer;
|
|
2038
|
+
private _elementRef;
|
|
2039
|
+
private _cdr;
|
|
2040
|
+
autoComplete?: string;
|
|
2041
|
+
compact?: boolean;
|
|
2042
|
+
description?: string;
|
|
2043
|
+
disabled?: boolean;
|
|
2044
|
+
form?: string;
|
|
2045
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2046
|
+
label?: string;
|
|
2047
|
+
loading?: boolean;
|
|
2048
|
+
max?: string;
|
|
2049
|
+
message?: string;
|
|
2050
|
+
min?: string;
|
|
2051
|
+
name: string;
|
|
2052
|
+
readOnly?: boolean;
|
|
2053
|
+
required?: boolean;
|
|
2054
|
+
state?: InputTimeState;
|
|
2055
|
+
step?: number;
|
|
2056
|
+
theme?: Theme;
|
|
2057
|
+
value?: string;
|
|
2058
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
2059
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
2060
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2061
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
2062
|
+
_onChange: (value: any) => void;
|
|
2063
|
+
_onTouched: () => void;
|
|
2064
|
+
writeValue(value: any): void;
|
|
2065
|
+
registerOnChange(fn: any): void;
|
|
2066
|
+
registerOnTouched(fn: any): void;
|
|
2067
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2068
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputTime, never>;
|
|
2069
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputTime, "p-input-time,[p-input-time]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
declare class PInputUrl extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
2073
|
+
private _renderer;
|
|
2074
|
+
private _elementRef;
|
|
2075
|
+
private _cdr;
|
|
2076
|
+
autoComplete?: string;
|
|
2077
|
+
compact?: boolean;
|
|
2078
|
+
description?: string;
|
|
2079
|
+
disabled?: boolean;
|
|
2080
|
+
form?: string;
|
|
2081
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2082
|
+
indicator?: boolean;
|
|
2083
|
+
label?: string;
|
|
2084
|
+
loading?: boolean;
|
|
2085
|
+
maxLength?: number;
|
|
2086
|
+
message?: string;
|
|
2087
|
+
minLength?: number;
|
|
2088
|
+
name: string;
|
|
2089
|
+
pattern?: string;
|
|
2090
|
+
placeholder?: string;
|
|
2091
|
+
readOnly?: boolean;
|
|
2092
|
+
required?: boolean;
|
|
2093
|
+
state?: InputUrlState;
|
|
2094
|
+
theme?: Theme;
|
|
2095
|
+
value?: string;
|
|
2096
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
2097
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
2098
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2099
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
2100
|
+
_onChange: (value: any) => void;
|
|
2101
|
+
_onTouched: () => void;
|
|
2102
|
+
writeValue(value: any): void;
|
|
2103
|
+
registerOnChange(fn: any): void;
|
|
2104
|
+
registerOnTouched(fn: any): void;
|
|
2105
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2106
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputUrl, never>;
|
|
2107
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputUrl, "p-input-url,[p-input-url]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
declare class PMultiSelect extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
2111
|
+
private _renderer;
|
|
2112
|
+
private _elementRef;
|
|
2113
|
+
private _cdr;
|
|
2114
|
+
compact?: boolean;
|
|
2115
|
+
description?: string;
|
|
2116
|
+
disabled?: boolean;
|
|
2117
|
+
dropdownDirection?: MultiSelectDropdownDirection;
|
|
2118
|
+
form?: string;
|
|
2119
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2120
|
+
label?: string;
|
|
2121
|
+
message?: string;
|
|
2122
|
+
name: string;
|
|
2123
|
+
required?: boolean;
|
|
2124
|
+
state?: MultiSelectState;
|
|
2125
|
+
theme?: Theme;
|
|
2126
|
+
value?: string[];
|
|
2127
|
+
blur: EventEmitter<CustomEvent<void>>;
|
|
2128
|
+
change: EventEmitter<CustomEvent<_porsche_design_system_components_angular.MultiSelectUpdateEvent>>;
|
|
2129
|
+
/** @deprecated */
|
|
2130
|
+
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.MultiSelectUpdateEvent>>;
|
|
2131
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
2132
|
+
_onChange: (value: any) => void;
|
|
2133
|
+
_onTouched: () => void;
|
|
2134
|
+
writeValue(value: any): void;
|
|
2135
|
+
registerOnChange(fn: any): void;
|
|
2136
|
+
registerOnTouched(fn: any): void;
|
|
2137
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2138
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PMultiSelect, never>;
|
|
2139
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PMultiSelect, "p-multi-select,[p-multi-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "update": "update"; }, never, ["*"], false, never>;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
declare class PPinCode extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
2143
|
+
private _renderer;
|
|
2144
|
+
private _elementRef;
|
|
2145
|
+
private _cdr;
|
|
2146
|
+
compact?: boolean;
|
|
2147
|
+
description?: string;
|
|
2148
|
+
disabled?: boolean;
|
|
2149
|
+
form?: string;
|
|
2150
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2151
|
+
label?: string;
|
|
2152
|
+
length?: PinCodeLength;
|
|
2153
|
+
loading?: boolean;
|
|
2154
|
+
message?: string;
|
|
2155
|
+
name?: string;
|
|
2156
|
+
required?: boolean;
|
|
2157
|
+
state?: PinCodeState;
|
|
2158
|
+
theme?: Theme;
|
|
2159
|
+
type?: PinCodeType;
|
|
2160
|
+
value?: string;
|
|
2161
|
+
blur: EventEmitter<CustomEvent<void>>;
|
|
2162
|
+
change: EventEmitter<CustomEvent<_porsche_design_system_components_angular.PinCodeUpdateEvent>>;
|
|
2163
|
+
/** @deprecated */
|
|
2164
|
+
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.PinCodeUpdateEvent>>;
|
|
2165
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
2166
|
+
_onChange: (value: any) => void;
|
|
2167
|
+
_onTouched: () => void;
|
|
2168
|
+
writeValue(value: any): void;
|
|
2169
|
+
registerOnChange(fn: any): void;
|
|
2170
|
+
registerOnTouched(fn: any): void;
|
|
2171
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2172
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPinCode, never>;
|
|
2173
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPinCode, "p-pin-code,[p-pin-code]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "length": { "alias": "length"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "update": "update"; }, never, ["*"], false, never>;
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
declare class PRadioGroup extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
2177
|
+
private _renderer;
|
|
2178
|
+
private _elementRef;
|
|
2179
|
+
private _cdr;
|
|
2180
|
+
compact?: boolean;
|
|
2181
|
+
description?: string;
|
|
2182
|
+
direction?: BreakpointCustomizable<RadioGroupDirection>;
|
|
2183
|
+
disabled?: boolean;
|
|
2184
|
+
form?: string;
|
|
2185
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2186
|
+
label?: string;
|
|
2187
|
+
loading?: boolean;
|
|
2188
|
+
message?: string;
|
|
2189
|
+
name: string;
|
|
2190
|
+
required?: boolean;
|
|
2191
|
+
state?: RadioGroupState;
|
|
2192
|
+
theme?: Theme;
|
|
2193
|
+
value?: string;
|
|
2194
|
+
blur: EventEmitter<CustomEvent<void>>;
|
|
2195
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
2196
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
2197
|
+
_onChange: (value: any) => void;
|
|
2198
|
+
_onTouched: () => void;
|
|
2199
|
+
writeValue(value: any): void;
|
|
2200
|
+
registerOnChange(fn: any): void;
|
|
2201
|
+
registerOnTouched(fn: any): void;
|
|
2202
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2203
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PRadioGroup, never>;
|
|
2204
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PRadioGroup, "p-radio-group,[p-radio-group]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; }, never, ["*"], false, never>;
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
declare class PSegmentedControl extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
2208
|
+
private _renderer;
|
|
2209
|
+
private _elementRef;
|
|
2210
|
+
private _cdr;
|
|
2211
|
+
/** @deprecated */
|
|
2212
|
+
backgroundColor?: SegmentedControlBackgroundColor;
|
|
2213
|
+
columns?: BreakpointCustomizable<SegmentedControlColumns>;
|
|
2214
|
+
disabled?: boolean;
|
|
2215
|
+
form?: string;
|
|
2216
|
+
name?: string;
|
|
2217
|
+
theme?: Theme;
|
|
2218
|
+
value?: string | number;
|
|
2219
|
+
blur: EventEmitter<CustomEvent<void>>;
|
|
2220
|
+
change: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
|
|
2221
|
+
/** @deprecated */
|
|
2222
|
+
segmentedControlChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
|
|
2223
|
+
/** @deprecated */
|
|
2224
|
+
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
|
|
2225
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
2226
|
+
_onChange: (value: any) => void;
|
|
2227
|
+
_onTouched: () => void;
|
|
2228
|
+
writeValue(value: any): void;
|
|
2229
|
+
registerOnChange(fn: any): void;
|
|
2230
|
+
registerOnTouched(fn: any): void;
|
|
2231
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2232
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentedControl, never>;
|
|
2233
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentedControl, "p-segmented-control,[p-segmented-control]", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "segmentedControlChange": "segmentedControlChange"; "update": "update"; }, never, ["*"], false, never>;
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
declare class PSelect extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
2237
|
+
private _renderer;
|
|
2238
|
+
private _elementRef;
|
|
2239
|
+
private _cdr;
|
|
2240
|
+
compact?: boolean;
|
|
2241
|
+
description?: string;
|
|
2242
|
+
disabled?: boolean;
|
|
2243
|
+
dropdownDirection?: SelectDropdownDirection;
|
|
2244
|
+
filter?: boolean;
|
|
2245
|
+
form?: string;
|
|
2246
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2247
|
+
label?: string;
|
|
2248
|
+
message?: string;
|
|
2249
|
+
name: string;
|
|
2250
|
+
required?: boolean;
|
|
2251
|
+
state?: SelectState;
|
|
2252
|
+
theme?: Theme;
|
|
2253
|
+
value?: string;
|
|
2254
|
+
blur: EventEmitter<CustomEvent<void>>;
|
|
2255
|
+
change: EventEmitter<CustomEvent<SelectUpdateEventDetail>>;
|
|
2256
|
+
/** @deprecated */
|
|
2257
|
+
update: EventEmitter<CustomEvent<SelectUpdateEventDetail>>;
|
|
2258
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
2259
|
+
_onChange: (value: any) => void;
|
|
2260
|
+
_onTouched: () => void;
|
|
2261
|
+
writeValue(value: any): void;
|
|
2262
|
+
registerOnChange(fn: any): void;
|
|
2263
|
+
registerOnTouched(fn: any): void;
|
|
2264
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2265
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
|
|
2266
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select,[p-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "update": "update"; }, never, ["*"], false, never>;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
declare class PTableBody extends BaseComponent {
|
|
2270
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTableBody, never>;
|
|
2271
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableBody, "p-table-body,[p-table-body]", never, {}, {}, never, ["*"], false, never>;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
declare class PTextarea extends BaseComponentWithTheme implements ControlValueAccessor {
|
|
2275
|
+
private _renderer;
|
|
2276
|
+
private _elementRef;
|
|
2277
|
+
private _cdr;
|
|
2278
|
+
autoComplete?: string;
|
|
2279
|
+
counter?: boolean;
|
|
2280
|
+
description?: string;
|
|
2281
|
+
disabled?: boolean;
|
|
2282
|
+
form?: string;
|
|
2283
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2284
|
+
label?: string;
|
|
2285
|
+
maxLength?: number;
|
|
2286
|
+
message?: string;
|
|
2287
|
+
minLength?: number;
|
|
2288
|
+
name: string;
|
|
2289
|
+
placeholder?: string;
|
|
2290
|
+
readOnly?: boolean;
|
|
2291
|
+
required?: boolean;
|
|
2292
|
+
resize?: TextareaResize;
|
|
2293
|
+
rows?: number;
|
|
2294
|
+
spellCheck?: boolean;
|
|
2295
|
+
state?: TextareaState;
|
|
2296
|
+
theme?: Theme;
|
|
2297
|
+
value?: string;
|
|
2298
|
+
wrap?: TextareaWrap;
|
|
2299
|
+
blur: EventEmitter<CustomEvent<Event>>;
|
|
2300
|
+
change: EventEmitter<CustomEvent<Event>>;
|
|
2301
|
+
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2302
|
+
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
2303
|
+
_onChange: (value: any) => void;
|
|
2304
|
+
_onTouched: () => void;
|
|
2305
|
+
writeValue(value: any): void;
|
|
2306
|
+
registerOnChange(fn: any): void;
|
|
2307
|
+
registerOnTouched(fn: any): void;
|
|
2308
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2309
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTextarea, never>;
|
|
2310
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTextarea, "p-textarea,[p-textarea]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "resize": { "alias": "resize"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
declare class PAccordion extends BaseComponentWithTheme {
|
|
2314
|
+
compact?: boolean;
|
|
2315
|
+
heading?: string;
|
|
2316
|
+
headingTag?: AccordionHeadingTag;
|
|
2317
|
+
open?: boolean;
|
|
2318
|
+
size?: BreakpointCustomizable<AccordionSize>;
|
|
2319
|
+
sticky?: boolean;
|
|
2320
|
+
/** @deprecated */
|
|
2321
|
+
tag?: AccordionTag;
|
|
2322
|
+
theme?: Theme;
|
|
2323
|
+
/** @deprecated */
|
|
2324
|
+
accordionChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.AccordionUpdateEvent>>;
|
|
2325
|
+
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.AccordionUpdateEvent>>;
|
|
2326
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
|
|
2327
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion,[p-accordion]", never, { "compact": { "alias": "compact"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "accordionChange": "accordionChange"; "update": "update"; }, never, ["*"], false, never>;
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
declare class PBanner extends BaseComponentWithTheme {
|
|
2331
|
+
description?: string;
|
|
2332
|
+
dismissButton?: boolean;
|
|
2333
|
+
heading?: string;
|
|
2334
|
+
headingTag?: BannerHeadingTag;
|
|
2335
|
+
open: boolean;
|
|
2336
|
+
/** @deprecated */
|
|
2337
|
+
persistent?: boolean;
|
|
2338
|
+
state?: BannerState;
|
|
2339
|
+
theme?: Theme;
|
|
2340
|
+
/** @deprecated */
|
|
2341
|
+
width?: BannerWidth;
|
|
2342
|
+
dismiss: EventEmitter<CustomEvent<void>>;
|
|
2343
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PBanner, never>;
|
|
2344
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PBanner, "p-banner,[p-banner]", never, { "description": { "alias": "description"; "required": false; }; "dismissButton": { "alias": "dismissButton"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "persistent": { "alias": "persistent"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "dismiss": "dismiss"; }, never, ["*"], false, never>;
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2347
|
+
declare class PButton extends BaseComponentWithTheme {
|
|
2348
|
+
aria?: SelectedAriaAttributes<ButtonAriaAttribute>;
|
|
2349
|
+
compact?: BreakpointCustomizable<boolean>;
|
|
2350
|
+
disabled?: boolean;
|
|
2351
|
+
form?: string;
|
|
2352
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2353
|
+
icon?: ButtonIcon;
|
|
2354
|
+
iconSource?: string;
|
|
2355
|
+
loading?: boolean;
|
|
2356
|
+
name?: string;
|
|
2357
|
+
theme?: Theme;
|
|
2358
|
+
type?: ButtonType;
|
|
2359
|
+
value?: string;
|
|
2360
|
+
variant?: ButtonVariant;
|
|
2361
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PButton, never>;
|
|
2362
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button,[p-button]", never, { "aria": { "alias": "aria"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2365
|
+
declare class PButtonGroup extends BaseComponent {
|
|
2366
|
+
direction?: BreakpointCustomizable<ButtonGroupDirection>;
|
|
2367
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PButtonGroup, never>;
|
|
2368
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButtonGroup, "p-button-group,[p-button-group]", never, { "direction": { "alias": "direction"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
declare class PButtonPure extends BaseComponentWithTheme {
|
|
2372
|
+
active?: boolean;
|
|
2373
|
+
alignLabel?: BreakpointCustomizable<ButtonPureAlignLabel>;
|
|
2374
|
+
aria?: SelectedAriaAttributes<ButtonPureAriaAttribute>;
|
|
2375
|
+
disabled?: boolean;
|
|
2376
|
+
form?: string;
|
|
2377
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2378
|
+
icon?: ButtonPureIcon;
|
|
2379
|
+
iconSource?: string;
|
|
2380
|
+
loading?: boolean;
|
|
2381
|
+
name?: string;
|
|
2382
|
+
size?: BreakpointCustomizable<ButtonPureSize>;
|
|
2383
|
+
stretch?: BreakpointCustomizable<boolean>;
|
|
2384
|
+
theme?: Theme;
|
|
2385
|
+
type?: ButtonPureType;
|
|
2386
|
+
underline?: boolean;
|
|
2387
|
+
value?: string;
|
|
2388
|
+
/** @deprecated */
|
|
2389
|
+
weight?: ButtonPureWeight;
|
|
2390
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PButtonPure, never>;
|
|
2391
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButtonPure, "p-button-pure,[p-button-pure]", never, { "active": { "alias": "active"; "required": false; }; "alignLabel": { "alias": "alignLabel"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "underline": { "alias": "underline"; "required": false; }; "value": { "alias": "value"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
declare class PButtonTile extends BaseComponent {
|
|
2395
|
+
align?: ButtonTileAlign;
|
|
2396
|
+
aria?: SelectedAriaAttributes<ButtonTileAriaAttribute>;
|
|
2397
|
+
aspectRatio?: BreakpointCustomizable<ButtonTileAspectRatio>;
|
|
2398
|
+
background?: ButtonTileBackground;
|
|
2399
|
+
compact?: BreakpointCustomizable<boolean>;
|
|
2400
|
+
description: string;
|
|
2401
|
+
disabled?: boolean;
|
|
2402
|
+
gradient?: boolean;
|
|
2403
|
+
icon?: ButtonTileIcon;
|
|
2404
|
+
iconSource?: string;
|
|
2405
|
+
label: string;
|
|
2406
|
+
loading?: boolean;
|
|
2407
|
+
size?: BreakpointCustomizable<ButtonTileSize>;
|
|
2408
|
+
type?: ButtonTileType;
|
|
2409
|
+
weight?: BreakpointCustomizable<ButtonTileWeight>;
|
|
2410
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PButtonTile, never>;
|
|
2411
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButtonTile, "p-button-tile,[p-button-tile]", never, { "align": { "alias": "align"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "aspectRatio": { "alias": "aspectRatio"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "gradient": { "alias": "gradient"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
declare class PCanvas extends BaseComponentWithTheme {
|
|
2415
|
+
sidebarEndOpen?: boolean;
|
|
2416
|
+
sidebarStartOpen?: boolean;
|
|
2417
|
+
theme?: Theme;
|
|
2418
|
+
sidebarEndDismiss: EventEmitter<CustomEvent<void>>;
|
|
2419
|
+
sidebarStartUpdate: EventEmitter<CustomEvent<CanvasSidebarStartUpdateEventDetail>>;
|
|
2420
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCanvas, never>;
|
|
2421
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCanvas, "p-canvas,[p-canvas]", never, { "sidebarEndOpen": { "alias": "sidebarEndOpen"; "required": false; }; "sidebarStartOpen": { "alias": "sidebarStartOpen"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "sidebarEndDismiss": "sidebarEndDismiss"; "sidebarStartUpdate": "sidebarStartUpdate"; }, never, ["*"], false, never>;
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
declare class PCarousel extends BaseComponentWithTheme {
|
|
2425
|
+
activeSlideIndex?: number;
|
|
2426
|
+
alignControls?: CarouselAlignControls;
|
|
2427
|
+
alignHeader?: CarouselAlignHeader;
|
|
2428
|
+
aria?: SelectedAriaAttributes<CarouselAriaAttribute>;
|
|
2429
|
+
description?: string;
|
|
2430
|
+
/** @deprecated */
|
|
2431
|
+
disablePagination?: BreakpointCustomizable<boolean>;
|
|
2432
|
+
focusOnCenterSlide?: boolean;
|
|
2433
|
+
gradientColor?: CarouselGradientColor;
|
|
2434
|
+
heading?: string;
|
|
2435
|
+
headingSize?: CarouselHeadingSize;
|
|
2436
|
+
intl?: CarouselInternationalization;
|
|
2437
|
+
pagination?: BreakpointCustomizable<boolean>;
|
|
2438
|
+
rewind?: boolean;
|
|
2439
|
+
skipLinkTarget?: string;
|
|
2440
|
+
slidesPerPage?: BreakpointCustomizable<CarouselSlidesPerPage>;
|
|
2441
|
+
theme?: Theme;
|
|
2442
|
+
trimSpace?: boolean;
|
|
2443
|
+
width?: CarouselWidth;
|
|
2444
|
+
/** @deprecated */
|
|
2445
|
+
wrapContent?: boolean;
|
|
2446
|
+
/** @deprecated */
|
|
2447
|
+
carouselChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.CarouselUpdateEvent>>;
|
|
2448
|
+
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.CarouselUpdateEvent>>;
|
|
2449
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCarousel, never>;
|
|
2450
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCarousel, "p-carousel,[p-carousel]", never, { "activeSlideIndex": { "alias": "activeSlideIndex"; "required": false; }; "alignControls": { "alias": "alignControls"; "required": false; }; "alignHeader": { "alias": "alignHeader"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disablePagination": { "alias": "disablePagination"; "required": false; }; "focusOnCenterSlide": { "alias": "focusOnCenterSlide"; "required": false; }; "gradientColor": { "alias": "gradientColor"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingSize": { "alias": "headingSize"; "required": false; }; "intl": { "alias": "intl"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "rewind": { "alias": "rewind"; "required": false; }; "skipLinkTarget": { "alias": "skipLinkTarget"; "required": false; }; "slidesPerPage": { "alias": "slidesPerPage"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "trimSpace": { "alias": "trimSpace"; "required": false; }; "width": { "alias": "width"; "required": false; }; "wrapContent": { "alias": "wrapContent"; "required": false; }; }, { "carouselChange": "carouselChange"; "update": "update"; }, never, ["*"], false, never>;
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
/** @deprecated since v3.29.0, will be removed with next major release. Please use `p-checkbox` instead. */
|
|
2454
|
+
declare class PCheckboxWrapper extends BaseComponentWithTheme {
|
|
2455
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2456
|
+
label?: string;
|
|
2457
|
+
loading?: boolean;
|
|
2458
|
+
message?: string;
|
|
2459
|
+
state?: CheckboxWrapperState;
|
|
2460
|
+
theme?: Theme;
|
|
2461
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCheckboxWrapper, never>;
|
|
2462
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCheckboxWrapper, "p-checkbox-wrapper,[p-checkbox-wrapper]", never, { "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
1877
2465
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
1878
2466
|
declare class PContentWrapper extends BaseComponentWithTheme {
|
|
1879
2467
|
/** @deprecated */
|
|
@@ -2004,334 +2592,89 @@ declare class PFlexItem extends BaseComponent {
|
|
|
2004
2592
|
|
|
2005
2593
|
declare class PFlyout extends BaseComponentWithTheme {
|
|
2006
2594
|
aria?: SelectedAriaAttributes<FlyoutAriaAttribute>;
|
|
2595
|
+
backdrop?: FlyoutBackdrop;
|
|
2007
2596
|
disableBackdropClick?: boolean;
|
|
2008
2597
|
footerBehavior?: FlyoutFooterBehavior;
|
|
2009
2598
|
open: boolean;
|
|
2010
2599
|
position?: FlyoutPosition;
|
|
2011
2600
|
theme?: Theme;
|
|
2012
2601
|
dismiss: EventEmitter<CustomEvent<void>>;
|
|
2013
|
-
motionHiddenEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
2014
|
-
motionVisibleEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
2015
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PFlyout, never>;
|
|
2016
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFlyout, "p-flyout,[p-flyout]", never, { "aria": { "alias": "aria"; "required": false; }; "disableBackdropClick": { "alias": "disableBackdropClick"; "required": false; }; "footerBehavior": { "alias": "footerBehavior"; "required": false; }; "open": { "alias": "open"; "required": false; }; "position": { "alias": "position"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "dismiss": "dismiss"; "motionHiddenEnd": "motionHiddenEnd"; "motionVisibleEnd": "motionVisibleEnd"; }, never, ["*"], false, never>;
|
|
2017
|
-
}
|
|
2018
|
-
|
|
2019
|
-
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
2020
|
-
declare class PGrid extends BaseComponent {
|
|
2021
|
-
direction?: BreakpointCustomizable<GridDirection>;
|
|
2022
|
-
/** @deprecated */
|
|
2023
|
-
gutter?: BreakpointCustomizable<GridGutter>;
|
|
2024
|
-
wrap?: BreakpointCustomizable<GridWrap>;
|
|
2025
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PGrid, never>;
|
|
2026
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PGrid, "p-grid,[p-grid]", never, { "direction": { "alias": "direction"; "required": false; }; "gutter": { "alias": "gutter"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2027
|
-
}
|
|
2028
|
-
|
|
2029
|
-
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
2030
|
-
declare class PGridItem extends BaseComponent {
|
|
2031
|
-
offset?: BreakpointCustomizable<GridItemOffset>;
|
|
2032
|
-
size?: BreakpointCustomizable<GridItemSize>;
|
|
2033
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PGridItem, never>;
|
|
2034
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PGridItem, "p-grid-item,[p-grid-item]", never, { "offset": { "alias": "offset"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2035
|
-
}
|
|
2036
|
-
|
|
2037
|
-
declare class PHeading extends BaseComponentWithTheme {
|
|
2038
|
-
align?: HeadingAlign;
|
|
2039
|
-
color?: HeadingColor;
|
|
2040
|
-
ellipsis?: boolean;
|
|
2041
|
-
size?: BreakpointCustomizable<HeadingSize>;
|
|
2042
|
-
tag?: HeadingTag;
|
|
2043
|
-
theme?: Theme;
|
|
2044
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PHeading, never>;
|
|
2045
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PHeading, "p-heading,[p-heading]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2046
|
-
}
|
|
2047
|
-
|
|
2048
|
-
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-heading" instead. */
|
|
2049
|
-
declare class PHeadline extends BaseComponentWithTheme {
|
|
2050
|
-
align?: HeadlineAlign;
|
|
2051
|
-
color?: HeadlineColor;
|
|
2052
|
-
ellipsis?: boolean;
|
|
2053
|
-
tag?: HeadlineTag;
|
|
2054
|
-
theme?: Theme;
|
|
2055
|
-
variant?: HeadlineVariant;
|
|
2056
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PHeadline, never>;
|
|
2057
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PHeadline, "p-headline,[p-headline]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2058
|
-
}
|
|
2059
|
-
|
|
2060
|
-
declare class PIcon extends BaseComponentWithTheme {
|
|
2061
|
-
aria?: SelectedAriaAttributes<IconAriaAttribute>;
|
|
2062
|
-
color?: IconColor;
|
|
2063
|
-
/** @deprecated */
|
|
2064
|
-
lazy?: boolean;
|
|
2065
|
-
name?: IconName;
|
|
2066
|
-
size?: IconSize;
|
|
2067
|
-
source?: string;
|
|
2068
|
-
theme?: Theme;
|
|
2069
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
|
|
2070
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon,[p-icon]", never, { "aria": { "alias": "aria"; "required": false; }; "color": { "alias": "color"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "source": { "alias": "source"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2071
|
-
}
|
|
2072
|
-
|
|
2073
|
-
declare class PInlineNotification extends BaseComponentWithTheme {
|
|
2074
|
-
actionIcon?: InlineNotificationActionIcon;
|
|
2075
|
-
actionLabel?: string;
|
|
2076
|
-
actionLoading?: boolean;
|
|
2077
|
-
description?: string;
|
|
2078
|
-
dismissButton?: boolean;
|
|
2079
|
-
heading?: string;
|
|
2080
|
-
headingTag?: InlineNotificationHeadingTag;
|
|
2081
|
-
/** @deprecated */
|
|
2082
|
-
persistent?: boolean;
|
|
2083
|
-
state?: InlineNotificationState;
|
|
2084
|
-
theme?: Theme;
|
|
2085
|
-
action: EventEmitter<CustomEvent<void>>;
|
|
2086
|
-
dismiss: EventEmitter<CustomEvent<void>>;
|
|
2087
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInlineNotification, never>;
|
|
2088
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInlineNotification, "p-inline-notification,[p-inline-notification]", never, { "actionIcon": { "alias": "actionIcon"; "required": false; }; "actionLabel": { "alias": "actionLabel"; "required": false; }; "actionLoading": { "alias": "actionLoading"; "required": false; }; "description": { "alias": "description"; "required": false; }; "dismissButton": { "alias": "dismissButton"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "persistent": { "alias": "persistent"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "action": "action"; "dismiss": "dismiss"; }, never, ["*"], false, never>;
|
|
2089
|
-
}
|
|
2090
|
-
|
|
2091
|
-
declare class PInputDate extends BaseComponentWithTheme {
|
|
2092
|
-
autoComplete?: string;
|
|
2093
|
-
compact?: boolean;
|
|
2094
|
-
description?: string;
|
|
2095
|
-
disabled?: boolean;
|
|
2096
|
-
form?: string;
|
|
2097
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2098
|
-
label?: string;
|
|
2099
|
-
loading?: boolean;
|
|
2100
|
-
max?: string;
|
|
2101
|
-
message?: string;
|
|
2102
|
-
min?: string;
|
|
2103
|
-
name: string;
|
|
2104
|
-
readOnly?: boolean;
|
|
2105
|
-
required?: boolean;
|
|
2106
|
-
state?: InputDateState;
|
|
2107
|
-
step?: number;
|
|
2108
|
-
theme?: Theme;
|
|
2109
|
-
value?: string;
|
|
2110
|
-
blur: EventEmitter<CustomEvent<Event>>;
|
|
2111
|
-
change: EventEmitter<CustomEvent<Event>>;
|
|
2112
|
-
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2113
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputDate, never>;
|
|
2114
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputDate, "p-input-date,[p-input-date]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2115
|
-
}
|
|
2116
|
-
|
|
2117
|
-
declare class PInputEmail extends BaseComponentWithTheme {
|
|
2118
|
-
autoComplete?: string;
|
|
2119
|
-
compact?: boolean;
|
|
2120
|
-
description?: string;
|
|
2121
|
-
disabled?: boolean;
|
|
2122
|
-
form?: string;
|
|
2123
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2124
|
-
indicator?: boolean;
|
|
2125
|
-
label?: string;
|
|
2126
|
-
loading?: boolean;
|
|
2127
|
-
maxLength?: number;
|
|
2128
|
-
message?: string;
|
|
2129
|
-
minLength?: number;
|
|
2130
|
-
multiple?: boolean;
|
|
2131
|
-
name: string;
|
|
2132
|
-
pattern?: string;
|
|
2133
|
-
placeholder?: string;
|
|
2134
|
-
readOnly?: boolean;
|
|
2135
|
-
required?: boolean;
|
|
2136
|
-
state?: InputEmailState;
|
|
2137
|
-
theme?: Theme;
|
|
2138
|
-
value?: string;
|
|
2139
|
-
blur: EventEmitter<CustomEvent<Event>>;
|
|
2140
|
-
change: EventEmitter<CustomEvent<Event>>;
|
|
2141
|
-
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2142
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputEmail, never>;
|
|
2143
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputEmail, "p-input-email,[p-input-email]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2144
|
-
}
|
|
2145
|
-
|
|
2146
|
-
declare class PInputNumber extends BaseComponentWithTheme {
|
|
2147
|
-
autoComplete?: string;
|
|
2148
|
-
compact?: boolean;
|
|
2149
|
-
controls?: boolean;
|
|
2150
|
-
description?: string;
|
|
2151
|
-
disabled?: boolean;
|
|
2152
|
-
form?: string;
|
|
2153
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2154
|
-
label?: string;
|
|
2155
|
-
loading?: boolean;
|
|
2156
|
-
max?: number;
|
|
2157
|
-
message?: string;
|
|
2158
|
-
min?: number;
|
|
2159
|
-
name: string;
|
|
2160
|
-
placeholder?: string;
|
|
2161
|
-
readOnly?: boolean;
|
|
2162
|
-
required?: boolean;
|
|
2163
|
-
state?: InputNumberState;
|
|
2164
|
-
step?: number;
|
|
2165
|
-
theme?: Theme;
|
|
2166
|
-
value?: string;
|
|
2167
|
-
blur: EventEmitter<CustomEvent<Event>>;
|
|
2168
|
-
change: EventEmitter<CustomEvent<Event>>;
|
|
2169
|
-
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2170
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputNumber, never>;
|
|
2171
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputNumber, "p-input-number,[p-input-number]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "controls": { "alias": "controls"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2172
|
-
}
|
|
2173
|
-
|
|
2174
|
-
declare class PInputPassword extends BaseComponentWithTheme {
|
|
2175
|
-
autoComplete?: string;
|
|
2176
|
-
compact?: boolean;
|
|
2177
|
-
description?: string;
|
|
2178
|
-
disabled?: boolean;
|
|
2179
|
-
form?: string;
|
|
2180
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2181
|
-
label?: string;
|
|
2182
|
-
loading?: boolean;
|
|
2183
|
-
maxLength?: number;
|
|
2184
|
-
message?: string;
|
|
2185
|
-
minLength?: number;
|
|
2186
|
-
name: string;
|
|
2187
|
-
placeholder?: string;
|
|
2188
|
-
readOnly?: boolean;
|
|
2189
|
-
required?: boolean;
|
|
2190
|
-
state?: InputPasswordState;
|
|
2191
|
-
theme?: Theme;
|
|
2192
|
-
toggle?: boolean;
|
|
2193
|
-
value?: string;
|
|
2194
|
-
blur: EventEmitter<CustomEvent<Event>>;
|
|
2195
|
-
change: EventEmitter<CustomEvent<Event>>;
|
|
2196
|
-
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2197
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputPassword, never>;
|
|
2198
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputPassword, "p-input-password,[p-input-password]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2199
|
-
}
|
|
2200
|
-
|
|
2201
|
-
declare class PInputSearch extends BaseComponentWithTheme {
|
|
2202
|
-
autoComplete?: string;
|
|
2203
|
-
clear?: boolean;
|
|
2204
|
-
compact?: boolean;
|
|
2205
|
-
description?: string;
|
|
2206
|
-
disabled?: boolean;
|
|
2207
|
-
form?: string;
|
|
2208
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2209
|
-
indicator?: boolean;
|
|
2210
|
-
label?: string;
|
|
2211
|
-
loading?: boolean;
|
|
2212
|
-
message?: string;
|
|
2213
|
-
name: string;
|
|
2214
|
-
placeholder?: string;
|
|
2215
|
-
readOnly?: boolean;
|
|
2216
|
-
required?: boolean;
|
|
2217
|
-
state?: InputSearchState;
|
|
2218
|
-
theme?: Theme;
|
|
2219
|
-
value?: string;
|
|
2220
|
-
blur: EventEmitter<CustomEvent<Event>>;
|
|
2221
|
-
change: EventEmitter<CustomEvent<Event>>;
|
|
2222
|
-
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2223
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputSearch, never>;
|
|
2224
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputSearch, "p-input-search,[p-input-search]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "clear": { "alias": "clear"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2602
|
+
motionHiddenEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
2603
|
+
motionVisibleEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
2604
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PFlyout, never>;
|
|
2605
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFlyout, "p-flyout,[p-flyout]", never, { "aria": { "alias": "aria"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "disableBackdropClick": { "alias": "disableBackdropClick"; "required": false; }; "footerBehavior": { "alias": "footerBehavior"; "required": false; }; "open": { "alias": "open"; "required": false; }; "position": { "alias": "position"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "dismiss": "dismiss"; "motionHiddenEnd": "motionHiddenEnd"; "motionVisibleEnd": "motionVisibleEnd"; }, never, ["*"], false, never>;
|
|
2225
2606
|
}
|
|
2226
2607
|
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2608
|
+
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
2609
|
+
declare class PGrid extends BaseComponent {
|
|
2610
|
+
direction?: BreakpointCustomizable<GridDirection>;
|
|
2611
|
+
/** @deprecated */
|
|
2612
|
+
gutter?: BreakpointCustomizable<GridGutter>;
|
|
2613
|
+
wrap?: BreakpointCustomizable<GridWrap>;
|
|
2614
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PGrid, never>;
|
|
2615
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PGrid, "p-grid,[p-grid]", never, { "direction": { "alias": "direction"; "required": false; }; "gutter": { "alias": "gutter"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
2619
|
+
declare class PGridItem extends BaseComponent {
|
|
2620
|
+
offset?: BreakpointCustomizable<GridItemOffset>;
|
|
2621
|
+
size?: BreakpointCustomizable<GridItemSize>;
|
|
2622
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PGridItem, never>;
|
|
2623
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PGridItem, "p-grid-item,[p-grid-item]", never, { "offset": { "alias": "offset"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2624
|
+
}
|
|
2625
|
+
|
|
2626
|
+
declare class PHeading extends BaseComponentWithTheme {
|
|
2627
|
+
align?: HeadingAlign;
|
|
2628
|
+
color?: HeadingColor;
|
|
2629
|
+
ellipsis?: boolean;
|
|
2630
|
+
size?: BreakpointCustomizable<HeadingSize>;
|
|
2631
|
+
tag?: HeadingTag;
|
|
2246
2632
|
theme?: Theme;
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
change: EventEmitter<CustomEvent<Event>>;
|
|
2250
|
-
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2251
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputTel, never>;
|
|
2252
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputTel, "p-input-tel,[p-input-tel]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2633
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PHeading, never>;
|
|
2634
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PHeading, "p-heading,[p-heading]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2253
2635
|
}
|
|
2254
2636
|
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
form?: string;
|
|
2262
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2263
|
-
label?: string;
|
|
2264
|
-
loading?: boolean;
|
|
2265
|
-
maxLength?: number;
|
|
2266
|
-
message?: string;
|
|
2267
|
-
minLength?: number;
|
|
2268
|
-
name: string;
|
|
2269
|
-
placeholder?: string;
|
|
2270
|
-
readOnly?: boolean;
|
|
2271
|
-
required?: boolean;
|
|
2272
|
-
spellCheck?: boolean;
|
|
2273
|
-
state?: InputTextState;
|
|
2637
|
+
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-heading" instead. */
|
|
2638
|
+
declare class PHeadline extends BaseComponentWithTheme {
|
|
2639
|
+
align?: HeadlineAlign;
|
|
2640
|
+
color?: HeadlineColor;
|
|
2641
|
+
ellipsis?: boolean;
|
|
2642
|
+
tag?: HeadlineTag;
|
|
2274
2643
|
theme?: Theme;
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2279
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputText, never>;
|
|
2280
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputText, "p-input-text,[p-input-text]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2644
|
+
variant?: HeadlineVariant;
|
|
2645
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PHeadline, never>;
|
|
2646
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PHeadline, "p-headline,[p-headline]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2281
2647
|
}
|
|
2282
2648
|
|
|
2283
|
-
declare class
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
loading?: boolean;
|
|
2292
|
-
max?: string;
|
|
2293
|
-
message?: string;
|
|
2294
|
-
min?: string;
|
|
2295
|
-
name: string;
|
|
2296
|
-
readOnly?: boolean;
|
|
2297
|
-
required?: boolean;
|
|
2298
|
-
state?: InputTimeState;
|
|
2299
|
-
step?: number;
|
|
2649
|
+
declare class PIcon extends BaseComponentWithTheme {
|
|
2650
|
+
aria?: SelectedAriaAttributes<IconAriaAttribute>;
|
|
2651
|
+
color?: IconColor;
|
|
2652
|
+
/** @deprecated */
|
|
2653
|
+
lazy?: boolean;
|
|
2654
|
+
name?: IconName;
|
|
2655
|
+
size?: IconSize;
|
|
2656
|
+
source?: string;
|
|
2300
2657
|
theme?: Theme;
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
change: EventEmitter<CustomEvent<Event>>;
|
|
2304
|
-
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2305
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputTime, never>;
|
|
2306
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputTime, "p-input-time,[p-input-time]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2658
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
|
|
2659
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon,[p-icon]", never, { "aria": { "alias": "aria"; "required": false; }; "color": { "alias": "color"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "source": { "alias": "source"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2307
2660
|
}
|
|
2308
2661
|
|
|
2309
|
-
declare class
|
|
2310
|
-
|
|
2311
|
-
|
|
2662
|
+
declare class PInlineNotification extends BaseComponentWithTheme {
|
|
2663
|
+
actionIcon?: InlineNotificationActionIcon;
|
|
2664
|
+
actionLabel?: string;
|
|
2665
|
+
actionLoading?: boolean;
|
|
2312
2666
|
description?: string;
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
maxLength?: number;
|
|
2320
|
-
message?: string;
|
|
2321
|
-
minLength?: number;
|
|
2322
|
-
name: string;
|
|
2323
|
-
pattern?: string;
|
|
2324
|
-
placeholder?: string;
|
|
2325
|
-
readOnly?: boolean;
|
|
2326
|
-
required?: boolean;
|
|
2327
|
-
state?: InputUrlState;
|
|
2667
|
+
dismissButton?: boolean;
|
|
2668
|
+
heading?: string;
|
|
2669
|
+
headingTag?: InlineNotificationHeadingTag;
|
|
2670
|
+
/** @deprecated */
|
|
2671
|
+
persistent?: boolean;
|
|
2672
|
+
state?: InlineNotificationState;
|
|
2328
2673
|
theme?: Theme;
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputUrl, never>;
|
|
2334
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputUrl, "p-input-url,[p-input-url]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "indicator": { "alias": "indicator"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2674
|
+
action: EventEmitter<CustomEvent<void>>;
|
|
2675
|
+
dismiss: EventEmitter<CustomEvent<void>>;
|
|
2676
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInlineNotification, never>;
|
|
2677
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInlineNotification, "p-inline-notification,[p-inline-notification]", never, { "actionIcon": { "alias": "actionIcon"; "required": false; }; "actionLabel": { "alias": "actionLabel"; "required": false; }; "actionLoading": { "alias": "actionLoading"; "required": false; }; "description": { "alias": "description"; "required": false; }; "dismissButton": { "alias": "dismissButton"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "persistent": { "alias": "persistent"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "action": "action"; "dismiss": "dismiss"; }, never, ["*"], false, never>;
|
|
2335
2678
|
}
|
|
2336
2679
|
|
|
2337
2680
|
declare class PLink extends BaseComponentWithTheme {
|
|
@@ -2478,25 +2821,6 @@ declare class PModelSignature extends BaseComponentWithTheme {
|
|
|
2478
2821
|
static ɵcmp: i0.ɵɵComponentDeclaration<PModelSignature, "p-model-signature,[p-model-signature]", never, { "color": { "alias": "color"; "required": false; }; "fetchPriority": { "alias": "fetchPriority"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "model": { "alias": "model"; "required": false; }; "safeZone": { "alias": "safeZone"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2479
2822
|
}
|
|
2480
2823
|
|
|
2481
|
-
declare class PMultiSelect extends BaseComponentWithTheme {
|
|
2482
|
-
compact?: boolean;
|
|
2483
|
-
description?: string;
|
|
2484
|
-
disabled?: boolean;
|
|
2485
|
-
dropdownDirection?: MultiSelectDropdownDirection;
|
|
2486
|
-
form?: string;
|
|
2487
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2488
|
-
label?: string;
|
|
2489
|
-
message?: string;
|
|
2490
|
-
name: string;
|
|
2491
|
-
required?: boolean;
|
|
2492
|
-
state?: MultiSelectState;
|
|
2493
|
-
theme?: Theme;
|
|
2494
|
-
value?: string[];
|
|
2495
|
-
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.MultiSelectUpdateEvent>>;
|
|
2496
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PMultiSelect, never>;
|
|
2497
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PMultiSelect, "p-multi-select,[p-multi-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2498
|
-
}
|
|
2499
|
-
|
|
2500
2824
|
declare class PMultiSelectOption extends BaseComponent {
|
|
2501
2825
|
disabled?: boolean;
|
|
2502
2826
|
value: string;
|
|
@@ -2535,26 +2859,6 @@ declare class PPagination extends BaseComponentWithTheme {
|
|
|
2535
2859
|
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination,[p-pagination]", never, { "activePage": { "alias": "activePage"; "required": false; }; "allyLabel": { "alias": "allyLabel"; "required": false; }; "allyLabelNext": { "alias": "allyLabelNext"; "required": false; }; "allyLabelPage": { "alias": "allyLabelPage"; "required": false; }; "allyLabelPrev": { "alias": "allyLabelPrev"; "required": false; }; "intl": { "alias": "intl"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "maxNumberOfPageLinks": { "alias": "maxNumberOfPageLinks"; "required": false; }; "showLastPage": { "alias": "showLastPage"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "totalItemsCount": { "alias": "totalItemsCount"; "required": false; }; }, { "pageChange": "pageChange"; "update": "update"; }, never, ["*"], false, never>;
|
|
2536
2860
|
}
|
|
2537
2861
|
|
|
2538
|
-
declare class PPinCode extends BaseComponentWithTheme {
|
|
2539
|
-
description?: string;
|
|
2540
|
-
disabled?: boolean;
|
|
2541
|
-
form?: string;
|
|
2542
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2543
|
-
label?: string;
|
|
2544
|
-
length?: PinCodeLength;
|
|
2545
|
-
loading?: boolean;
|
|
2546
|
-
message?: string;
|
|
2547
|
-
name?: string;
|
|
2548
|
-
required?: boolean;
|
|
2549
|
-
state?: PinCodeState;
|
|
2550
|
-
theme?: Theme;
|
|
2551
|
-
type?: PinCodeType;
|
|
2552
|
-
value?: string;
|
|
2553
|
-
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.PinCodeUpdateEvent>>;
|
|
2554
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PPinCode, never>;
|
|
2555
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PPinCode, "p-pin-code,[p-pin-code]", never, { "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "length": { "alias": "length"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2556
|
-
}
|
|
2557
|
-
|
|
2558
2862
|
declare class PPopover extends BaseComponentWithTheme {
|
|
2559
2863
|
aria?: SelectedAriaAttributes<PopoverAriaAttribute>;
|
|
2560
2864
|
description?: string;
|
|
@@ -2564,6 +2868,7 @@ declare class PPopover extends BaseComponentWithTheme {
|
|
|
2564
2868
|
static ɵcmp: i0.ɵɵComponentDeclaration<PPopover, "p-popover,[p-popover]", never, { "aria": { "alias": "aria"; "required": false; }; "description": { "alias": "description"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2565
2869
|
}
|
|
2566
2870
|
|
|
2871
|
+
/** @deprecated since v3.30.0, will be removed with next major release. Please use `p-radio-group` instead. */
|
|
2567
2872
|
declare class PRadioButtonWrapper extends BaseComponentWithTheme {
|
|
2568
2873
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2569
2874
|
label?: string;
|
|
@@ -2575,6 +2880,15 @@ declare class PRadioButtonWrapper extends BaseComponentWithTheme {
|
|
|
2575
2880
|
static ɵcmp: i0.ɵɵComponentDeclaration<PRadioButtonWrapper, "p-radio-button-wrapper,[p-radio-button-wrapper]", never, { "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "message": { "alias": "message"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2576
2881
|
}
|
|
2577
2882
|
|
|
2883
|
+
declare class PRadioGroupOption extends BaseComponent {
|
|
2884
|
+
disabled?: boolean;
|
|
2885
|
+
label?: string;
|
|
2886
|
+
loading?: boolean;
|
|
2887
|
+
value?: string;
|
|
2888
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PRadioGroupOption, never>;
|
|
2889
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PRadioGroupOption, "p-radio-group-option,[p-radio-group-option]", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2578
2892
|
declare class PScroller extends BaseComponentWithTheme {
|
|
2579
2893
|
alignScrollIndicator?: ScrollerAlignScrollIndicator;
|
|
2580
2894
|
aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;
|
|
@@ -2591,22 +2905,6 @@ declare class PScroller extends BaseComponentWithTheme {
|
|
|
2591
2905
|
static ɵcmp: i0.ɵɵComponentDeclaration<PScroller, "p-scroller,[p-scroller]", never, { "alignScrollIndicator": { "alias": "alignScrollIndicator"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "gradientColor": { "alias": "gradientColor"; "required": false; }; "gradientColorScheme": { "alias": "gradientColorScheme"; "required": false; }; "scrollIndicatorPosition": { "alias": "scrollIndicatorPosition"; "required": false; }; "scrollToPosition": { "alias": "scrollToPosition"; "required": false; }; "scrollbar": { "alias": "scrollbar"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2592
2906
|
}
|
|
2593
2907
|
|
|
2594
|
-
declare class PSegmentedControl extends BaseComponentWithTheme {
|
|
2595
|
-
/** @deprecated */
|
|
2596
|
-
backgroundColor?: SegmentedControlBackgroundColor;
|
|
2597
|
-
columns?: BreakpointCustomizable<SegmentedControlColumns>;
|
|
2598
|
-
disabled?: boolean;
|
|
2599
|
-
form?: string;
|
|
2600
|
-
name?: string;
|
|
2601
|
-
theme?: Theme;
|
|
2602
|
-
value?: string | number;
|
|
2603
|
-
/** @deprecated */
|
|
2604
|
-
segmentedControlChange: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
|
|
2605
|
-
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.SegmentedControlUpdateEvent>>;
|
|
2606
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentedControl, never>;
|
|
2607
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentedControl, "p-segmented-control,[p-segmented-control]", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "segmentedControlChange": "segmentedControlChange"; "update": "update"; }, never, ["*"], false, never>;
|
|
2608
|
-
}
|
|
2609
|
-
|
|
2610
2908
|
declare class PSegmentedControlItem extends BaseComponent {
|
|
2611
2909
|
aria?: SelectedAriaAttributes<SegmentedControlItemAriaAttribute>;
|
|
2612
2910
|
disabled?: boolean;
|
|
@@ -2618,26 +2916,6 @@ declare class PSegmentedControlItem extends BaseComponent {
|
|
|
2618
2916
|
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentedControlItem, "p-segmented-control-item,[p-segmented-control-item]", never, { "aria": { "alias": "aria"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2619
2917
|
}
|
|
2620
2918
|
|
|
2621
|
-
declare class PSelect extends BaseComponentWithTheme {
|
|
2622
|
-
compact?: boolean;
|
|
2623
|
-
description?: string;
|
|
2624
|
-
disabled?: boolean;
|
|
2625
|
-
dropdownDirection?: SelectDropdownDirection;
|
|
2626
|
-
filter?: boolean;
|
|
2627
|
-
form?: string;
|
|
2628
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2629
|
-
label?: string;
|
|
2630
|
-
message?: string;
|
|
2631
|
-
name: string;
|
|
2632
|
-
required?: boolean;
|
|
2633
|
-
state?: SelectState;
|
|
2634
|
-
theme?: Theme;
|
|
2635
|
-
value?: string;
|
|
2636
|
-
update: EventEmitter<CustomEvent<SelectUpdateEventDetail>>;
|
|
2637
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
|
|
2638
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select,[p-select]", never, { "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownDirection": { "alias": "dropdownDirection"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2639
|
-
}
|
|
2640
|
-
|
|
2641
2919
|
declare class PSelectOption extends BaseComponent {
|
|
2642
2920
|
disabled?: boolean;
|
|
2643
2921
|
value?: string;
|
|
@@ -2862,35 +3140,6 @@ declare class PTextListItem extends BaseComponent {
|
|
|
2862
3140
|
static ɵcmp: i0.ɵɵComponentDeclaration<PTextListItem, "p-text-list-item,[p-text-list-item]", never, {}, {}, never, ["*"], false, never>;
|
|
2863
3141
|
}
|
|
2864
3142
|
|
|
2865
|
-
declare class PTextarea extends BaseComponentWithTheme {
|
|
2866
|
-
autoComplete?: string;
|
|
2867
|
-
counter?: boolean;
|
|
2868
|
-
description?: string;
|
|
2869
|
-
disabled?: boolean;
|
|
2870
|
-
form?: string;
|
|
2871
|
-
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2872
|
-
label?: string;
|
|
2873
|
-
maxLength?: number;
|
|
2874
|
-
message?: string;
|
|
2875
|
-
minLength?: number;
|
|
2876
|
-
name: string;
|
|
2877
|
-
placeholder?: string;
|
|
2878
|
-
readOnly?: boolean;
|
|
2879
|
-
required?: boolean;
|
|
2880
|
-
resize?: TextareaResize;
|
|
2881
|
-
rows?: number;
|
|
2882
|
-
spellCheck?: boolean;
|
|
2883
|
-
state?: TextareaState;
|
|
2884
|
-
theme?: Theme;
|
|
2885
|
-
value?: string;
|
|
2886
|
-
wrap?: TextareaWrap;
|
|
2887
|
-
blur: EventEmitter<CustomEvent<Event>>;
|
|
2888
|
-
change: EventEmitter<CustomEvent<Event>>;
|
|
2889
|
-
input: EventEmitter<CustomEvent<InputEvent>>;
|
|
2890
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PTextarea, never>;
|
|
2891
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTextarea, "p-textarea,[p-textarea]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "resize": { "alias": "resize"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
|
|
2892
|
-
}
|
|
2893
|
-
|
|
2894
3143
|
/** @deprecated since v3.29.0, will be removed with next major release. Please use `p-textarea` instead. */
|
|
2895
3144
|
declare class PTextareaWrapper extends BaseComponentWithTheme {
|
|
2896
3145
|
description?: string;
|
|
@@ -2922,7 +3171,7 @@ declare class PWordmark extends BaseComponentWithTheme {
|
|
|
2922
3171
|
static ɵcmp: i0.ɵɵComponentDeclaration<PWordmark, "p-wordmark,[p-wordmark]", never, { "aria": { "alias": "aria"; "required": false; }; "href": { "alias": "href"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2923
3172
|
}
|
|
2924
3173
|
|
|
2925
|
-
declare const DECLARATIONS: (typeof PTableBody)[];
|
|
3174
|
+
declare const DECLARATIONS: (typeof PCheckbox | typeof PInputDate | typeof PInputEmail | typeof PInputNumber | typeof PInputPassword | typeof PInputSearch | typeof PInputTel | typeof PInputText | typeof PInputTime | typeof PInputUrl | typeof PMultiSelect | typeof PPinCode | typeof PRadioGroup | typeof PSegmentedControl | typeof PSelect | typeof PTableBody | typeof PTextarea)[];
|
|
2926
3175
|
|
|
2927
3176
|
type PorscheDesignSystemModuleConfig = {
|
|
2928
3177
|
prefix?: string;
|
|
@@ -2938,7 +3187,7 @@ declare class PorscheDesignSystemModule {
|
|
|
2938
3187
|
constructor(configParam: DefaultConfig);
|
|
2939
3188
|
static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
|
|
2940
3189
|
static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
|
|
2941
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, typeof PSpinner, typeof PStepperHorizontal, typeof PStepperHorizontalItem, typeof PSwitch, typeof PTable, typeof PTableBody, typeof PTableCell, typeof PTableHead, typeof PTableHeadCell, typeof PTableHeadRow, typeof PTableRow, typeof PTabs, typeof PTabsBar, typeof PTabsItem, typeof PTag, typeof PTagDismissible, typeof PText, typeof PTextFieldWrapper, typeof PTextList, typeof PTextListItem, typeof PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark], never, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, typeof PSpinner, typeof PStepperHorizontal, typeof PStepperHorizontalItem, typeof PSwitch, typeof PTable, typeof PTableBody, typeof PTableCell, typeof PTableHead, typeof PTableHeadCell, typeof PTableHeadRow, typeof PTableRow, typeof PTabs, typeof PTabsBar, typeof PTabsItem, typeof PTag, typeof PTagDismissible, typeof PText, typeof PTextFieldWrapper, typeof PTextList, typeof PTextListItem, typeof PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark]>;
|
|
3190
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PRadioGroup, typeof PRadioGroupOption, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, typeof PSpinner, typeof PStepperHorizontal, typeof PStepperHorizontalItem, typeof PSwitch, typeof PTable, typeof PTableBody, typeof PTableCell, typeof PTableHead, typeof PTableHeadCell, typeof PTableHeadRow, typeof PTableRow, typeof PTabs, typeof PTabsBar, typeof PTabsItem, typeof PTag, typeof PTagDismissible, typeof PText, typeof PTextFieldWrapper, typeof PTextList, typeof PTextListItem, typeof PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark], never, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PRadioGroup, typeof PRadioGroupOption, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, typeof PSpinner, typeof PStepperHorizontal, typeof PStepperHorizontalItem, typeof PSwitch, typeof PTable, typeof PTableBody, typeof PTableCell, typeof PTableHead, typeof PTableHeadCell, typeof PTableHeadRow, typeof PTableRow, typeof PTabs, typeof PTabsBar, typeof PTabsItem, typeof PTag, typeof PTagDismissible, typeof PText, typeof PTextFieldWrapper, typeof PTextList, typeof PTextListItem, typeof PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark]>;
|
|
2942
3191
|
static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
|
|
2943
3192
|
}
|
|
2944
3193
|
|
|
@@ -2948,5 +3197,5 @@ declare class ToastManager {
|
|
|
2948
3197
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastManager>;
|
|
2949
3198
|
}
|
|
2950
3199
|
|
|
2951
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlag, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, THEME_TOKEN, ToastManager };
|
|
2952
|
-
export type { AccordionHeadingTag, AccordionSize, AccordionTag, AccordionUpdateEvent, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, BannerWidth, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonGroupDirection, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonPureWeight, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileBackground, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEvent, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxState, CheckboxUpdateEventDetail, CheckboxWrapperState, ContentWrapperBackgroundColor, ContentWrapperWidth, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DividerOrientation, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdate, DrilldownUpdateEvent, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FieldsetWrapperLabelSize, FieldsetWrapperState, FlagAriaAttribute, FlagName, FlagSize, FlexAlignContent, FlexAlignItems, FlexDirection, FlexInline, FlexItemAlignSelf, FlexItemFlex, FlexItemGrow, FlexItemOffset, FlexItemShrink, FlexItemWidth, FlexJustifyContent, FlexWrap, FlyoutAriaAttribute, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GridDirection, GridGutter, GridItemOffset, GridItemSize, GridWrap, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, HeadlineAlign, HeadlineColor, HeadlineTag, HeadlineVariant, HeadlineVariantCustom, HeadlineVariantType, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, InputTelBlurEventDetail, InputTelChangeEventDetail, InputTelInputEventDetail, InputTelState, InputTextBlurEventDetail, InputTextChangeEventDetail, InputTextInputEventDetail, InputTextState, InputTimeBlurEventDetail, InputTimeChangeEventDetail, InputTimeInputEventDetail, InputTimeState, InputUrlBlurEventDetail, InputUrlChangeEventDetail, InputUrlInputEventDetail, InputUrlState, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkPureWeight, LinkSocialIcon, LinkSocialTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileBackground, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight, LinkTileProductAspectRatio, LinkTileProductLikeEvent, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, MarqueAriaAttribute, MarqueSize, MarqueTarget, MarqueVariant, ModalAriaAttribute, ModalBackdrop, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectDropdownDirection, MultiSelectState, MultiSelectUpdateEvent, MultiSelectUpdateEventDetail, PaginationInternationalization, PaginationMaxNumberOfPageLinks, PaginationUpdateEvent, PaginationUpdateEventDetail, PinCodeLength, PinCodeState, PinCodeType, PinCodeUpdateEvent, PinCodeUpdateEventDetail, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioButtonWrapperState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerGradientColor, ScrollerGradientColorScheme, ScrollerScrollIndicatorPosition, ScrollerScrollToPosition, SegmentedControlBackgroundColor, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlUpdateEvent, SegmentedControlUpdateEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectUpdateEventDetail, SelectWrapperDropdownDirection, SelectWrapperState, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEvent, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEvent, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEvent, TableUpdateEventDetail, TabsBarGradientColor, TabsBarGradientColorScheme, TabsBarSize, TabsBarUpdateEvent, TabsBarUpdateEventDetail, TabsBarWeight, TabsGradientColor, TabsGradientColorScheme, TabsSize, TabsUpdateEvent, TabsUpdateEventDetail, TabsWeight, TagColor, TagDismissibleAriaAttribute, TagDismissibleColor, TagIcon, TextAlign, TextColor, TextFieldWrapperActionIcon, TextFieldWrapperState, TextFieldWrapperUnitPosition, TextListListType, TextListOrderType, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TextareaWrapperState, Theme, TileAlign, TileAspectRatio, TileBackground, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|
|
3200
|
+
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlag, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PRadioGroup, PRadioGroupOption, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, THEME_TOKEN, ToastManager };
|
|
3201
|
+
export type { AccordionHeadingTag, AccordionSize, AccordionTag, AccordionUpdateEvent, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, BannerWidth, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonGroupDirection, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonPureWeight, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileBackground, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEvent, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CheckboxUpdateEventDetail, CheckboxWrapperState, ContentWrapperBackgroundColor, ContentWrapperWidth, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DividerOrientation, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdate, DrilldownUpdateEvent, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FieldsetWrapperLabelSize, FieldsetWrapperState, FlagAriaAttribute, FlagName, FlagSize, FlexAlignContent, FlexAlignItems, FlexDirection, FlexInline, FlexItemAlignSelf, FlexItemFlex, FlexItemGrow, FlexItemOffset, FlexItemShrink, FlexItemWidth, FlexJustifyContent, FlexWrap, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GridDirection, GridGutter, GridItemOffset, GridItemSize, GridWrap, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, HeadlineAlign, HeadlineColor, HeadlineTag, HeadlineVariant, HeadlineVariantCustom, HeadlineVariantType, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, InputTelBlurEventDetail, InputTelChangeEventDetail, InputTelInputEventDetail, InputTelState, InputTextBlurEventDetail, InputTextChangeEventDetail, InputTextInputEventDetail, InputTextState, InputTimeBlurEventDetail, InputTimeChangeEventDetail, InputTimeInputEventDetail, InputTimeState, InputUrlBlurEventDetail, InputUrlChangeEventDetail, InputUrlInputEventDetail, InputUrlState, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkPureWeight, LinkSocialIcon, LinkSocialTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileBackground, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight, LinkTileProductAspectRatio, LinkTileProductLikeEvent, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, MarqueAriaAttribute, MarqueSize, MarqueTarget, MarqueVariant, ModalAriaAttribute, ModalBackdrop, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectUpdateEvent, MultiSelectUpdateEventDetail, PaginationInternationalization, PaginationMaxNumberOfPageLinks, PaginationUpdateEvent, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PinCodeUpdateEvent, PinCodeUpdateEventDetail, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioButtonWrapperState, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerGradientColor, ScrollerGradientColorScheme, ScrollerScrollIndicatorPosition, ScrollerScrollToPosition, SegmentedControlBackgroundColor, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlUpdateEvent, SegmentedControlUpdateEventDetail, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectUpdateEventDetail, SelectWrapperDropdownDirection, SelectWrapperState, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEvent, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEvent, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEvent, TableUpdateEventDetail, TabsBarGradientColor, TabsBarGradientColorScheme, TabsBarSize, TabsBarUpdateEvent, TabsBarUpdateEventDetail, TabsBarWeight, TabsGradientColor, TabsGradientColorScheme, TabsSize, TabsUpdateEvent, TabsUpdateEventDetail, TabsWeight, TagColor, TagDismissibleAriaAttribute, TagDismissibleColor, TagIcon, TextAlign, TextColor, TextFieldWrapperActionIcon, TextFieldWrapperState, TextFieldWrapperUnitPosition, TextListListType, TextListOrderType, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TextareaWrapperState, Theme, TileAlign, TileAspectRatio, TileBackground, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|