@porsche-design-system/components-angular 3.29.0-rc.2 → 3.29.0-rc.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -499,6 +499,116 @@ declare const ICON_NAMES: readonly [
499
499
  "zoom-out"
500
500
  ];
501
501
  type IconName = typeof ICON_NAMES[number];
502
+ declare const FLAG_NAMES: readonly [
503
+ "ae",
504
+ "am",
505
+ "ar",
506
+ "at",
507
+ "au",
508
+ "az",
509
+ "ba",
510
+ "be",
511
+ "bg",
512
+ "bh",
513
+ "bn",
514
+ "bo",
515
+ "br",
516
+ "by",
517
+ "ca",
518
+ "ch",
519
+ "cl",
520
+ "cn",
521
+ "co",
522
+ "cr",
523
+ "cw",
524
+ "cy",
525
+ "cz",
526
+ "de",
527
+ "dk",
528
+ "do",
529
+ "dz",
530
+ "ec",
531
+ "ee",
532
+ "eg",
533
+ "es",
534
+ "fi",
535
+ "fr",
536
+ "gb",
537
+ "ge",
538
+ "gh",
539
+ "gr",
540
+ "gt",
541
+ "hk",
542
+ "hn",
543
+ "hr",
544
+ "ht",
545
+ "hu",
546
+ "id",
547
+ "ie",
548
+ "il",
549
+ "in",
550
+ "is",
551
+ "it",
552
+ "jm",
553
+ "jo",
554
+ "jp",
555
+ "ke",
556
+ "kh",
557
+ "kr",
558
+ "kw",
559
+ "kz",
560
+ "lb",
561
+ "lk",
562
+ "lt",
563
+ "lu",
564
+ "lv",
565
+ "ma",
566
+ "md",
567
+ "mk",
568
+ "mn",
569
+ "mo",
570
+ "mq",
571
+ "mt",
572
+ "mu",
573
+ "mx",
574
+ "my",
575
+ "ng",
576
+ "nl",
577
+ "no",
578
+ "nz",
579
+ "om",
580
+ "pa",
581
+ "pe",
582
+ "pf",
583
+ "ph",
584
+ "pk",
585
+ "pl",
586
+ "pr",
587
+ "pt",
588
+ "py",
589
+ "qa",
590
+ "ro",
591
+ "rs",
592
+ "ru",
593
+ "sa",
594
+ "se",
595
+ "sg",
596
+ "si",
597
+ "sk",
598
+ "sv",
599
+ "th",
600
+ "tn",
601
+ "tr",
602
+ "tt",
603
+ "ua",
604
+ "us",
605
+ "uy",
606
+ "uz",
607
+ "ve",
608
+ "vn",
609
+ "za"
610
+ ];
611
+ type FlagName = typeof FLAG_NAMES[number];
502
612
  declare const FORM_STATES: readonly [
503
613
  "none",
504
614
  "error",
@@ -592,6 +702,7 @@ declare const GRADIENT_COLORS: readonly [
592
702
  "background-base",
593
703
  "background-surface"
594
704
  ];
705
+ /** @deprecated */
595
706
  type ScrollerGradientColor = (typeof GRADIENT_COLORS)[number];
596
707
  type ScrollerScrollToPosition = {
597
708
  scrollPosition: number;
@@ -604,6 +715,20 @@ declare const SCROLL_INDICATOR_POSITIONS: readonly [
604
715
  /** @deprecated */
605
716
  type ScrollerScrollIndicatorPosition = (typeof SCROLL_INDICATOR_POSITIONS)[number];
606
717
  type ScrollerAlignScrollIndicator = ScrollerScrollIndicatorPosition;
718
+ type MultiSelectState = FormState;
719
+ type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
720
+ /** @deprecated */
721
+ type MultiSelectUpdateEvent = {
722
+ name: string;
723
+ value: string[];
724
+ };
725
+ type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
726
+ type SelectState = FormState;
727
+ type SelectDropdownDirection = SelectComponentsDropdownDirection;
728
+ type SelectUpdateEventDetail = {
729
+ name: string;
730
+ value: string;
731
+ };
607
732
  declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
608
733
  "down",
609
734
  "up",
@@ -708,6 +833,9 @@ type PorscheDesignSystem = {
708
833
  };
709
834
  };
710
835
  type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAttributes, T>;
836
+ type SelectedAriaRole<T> = {
837
+ role: Extract<AriaRole, T>;
838
+ };
711
839
  declare const ACCORDION_SIZES: readonly [
712
840
  "small",
713
841
  "medium"
@@ -887,6 +1015,11 @@ type FieldsetLabelSize = (typeof FIELDSET_LABEL_SIZES)[number];
887
1015
  type FieldsetState = FormState;
888
1016
  type FieldsetWrapperLabelSize = FieldsetLabelSize;
889
1017
  type FieldsetWrapperState = FieldsetState;
1018
+ declare const FLAG_ARIA_ATTRIBUTES: readonly [
1019
+ "aria-label"
1020
+ ];
1021
+ type FlagAriaAttribute = (typeof FLAG_ARIA_ATTRIBUTES)[number];
1022
+ type FlagSize = TextSize;
890
1023
  type FlexInline = boolean;
891
1024
  declare const FLEX_WRAPS: readonly [
892
1025
  "nowrap",
@@ -1096,44 +1229,42 @@ declare const ICON_COLORS: readonly [
1096
1229
  "state-disabled"
1097
1230
  ];
1098
1231
  type IconColor = (typeof ICON_COLORS)[number];
1232
+ type InputDateState = FormState;
1233
+ type InputDateChangeEventDetail = Event;
1234
+ type InputDateBlurEventDetail = Event;
1235
+ type InputDateInputEventDetail = InputEvent;
1236
+ type InputEmailState = FormState;
1237
+ type InputEmailChangeEventDetail = Event;
1238
+ type InputEmailBlurEventDetail = Event;
1239
+ type InputEmailInputEventDetail = InputEvent;
1099
1240
  type InputNumberState = FormState;
1100
- declare const INPUT_NUMBER_AUTO_COMPLETE: readonly [
1101
- "off",
1102
- "on"
1103
- ];
1104
- type InputNumberAutoComplete = (typeof INPUT_NUMBER_AUTO_COMPLETE)[number];
1105
1241
  type InputNumberChangeEventDetail = Event;
1106
1242
  type InputNumberBlurEventDetail = Event;
1107
1243
  type InputNumberInputEventDetail = InputEvent;
1108
1244
  type InputPasswordState = FormState;
1109
- declare const INPUT_PASSWORD_AUTO_COMPLETE: readonly [
1110
- "off",
1111
- "on",
1112
- "current-password",
1113
- "new-password"
1114
- ];
1115
- type InputPasswordAutoComplete = (typeof INPUT_PASSWORD_AUTO_COMPLETE)[number];
1116
1245
  type InputPasswordChangeEventDetail = Event;
1117
1246
  type InputPasswordBlurEventDetail = Event;
1118
1247
  type InputPasswordInputEventDetail = InputEvent;
1119
1248
  type InputSearchState = FormState;
1120
- declare const INPUT_SEARCH_AUTO_COMPLETE: readonly [
1121
- "off",
1122
- "on"
1123
- ];
1124
- type InputSearchAutoComplete = (typeof INPUT_SEARCH_AUTO_COMPLETE)[number];
1125
1249
  type InputSearchChangeEventDetail = Event;
1126
1250
  type InputSearchBlurEventDetail = Event;
1127
1251
  type InputSearchInputEventDetail = InputEvent;
1252
+ type InputTelState = FormState;
1253
+ type InputTelChangeEventDetail = Event;
1254
+ type InputTelBlurEventDetail = Event;
1255
+ type InputTelInputEventDetail = InputEvent;
1128
1256
  type InputTextState = FormState;
1129
- declare const INPUT_TEXT_AUTO_COMPLETE: readonly [
1130
- "off",
1131
- "on"
1132
- ];
1133
- type InputTextAutoComplete = (typeof INPUT_TEXT_AUTO_COMPLETE)[number];
1134
1257
  type InputTextChangeEventDetail = Event;
1135
1258
  type InputTextBlurEventDetail = Event;
1136
1259
  type InputTextInputEventDetail = InputEvent;
1260
+ type InputTimeState = FormState;
1261
+ type InputTimeChangeEventDetail = Event;
1262
+ type InputTimeBlurEventDetail = Event;
1263
+ type InputTimeInputEventDetail = InputEvent;
1264
+ type InputUrlState = FormState;
1265
+ type InputUrlChangeEventDetail = Event;
1266
+ type InputUrlBlurEventDetail = Event;
1267
+ type InputUrlInputEventDetail = InputEvent;
1137
1268
  type LinkIcon = LinkButtonIconName;
1138
1269
  type LinkPureIcon = LinkButtonIconName;
1139
1270
  type LinkPureAriaAttribute = LinkAriaAttribute;
@@ -1288,14 +1419,6 @@ declare const MODEL_SIGNATURE_COLORS: readonly [
1288
1419
  "inherit"
1289
1420
  ];
1290
1421
  type ModelSignatureColor = (typeof MODEL_SIGNATURE_COLORS)[number];
1291
- type MultiSelectState = FormState;
1292
- type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
1293
- /** @deprecated */
1294
- type MultiSelectUpdateEvent = {
1295
- name: string;
1296
- value: string[];
1297
- };
1298
- type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
1299
1422
  declare const PAGINATION_NUMBER_OF_PAGE_LINKS: readonly [
1300
1423
  5,
1301
1424
  7
@@ -1359,12 +1482,6 @@ declare const SEGMENTED_CONTROL_ITEM_ARIA_ATTRIBUTES: readonly [
1359
1482
  "aria-label"
1360
1483
  ];
1361
1484
  type SegmentedControlItemAriaAttribute = (typeof SEGMENTED_CONTROL_ITEM_ARIA_ATTRIBUTES)[number];
1362
- type SelectState = FormState;
1363
- type SelectDropdownDirection = SelectComponentsDropdownDirection;
1364
- type SelectUpdateEventDetail = {
1365
- name: string;
1366
- value: string;
1367
- };
1368
1485
  declare const DROPDOWN_DIRECTIONS: readonly [
1369
1486
  "down",
1370
1487
  "up",
@@ -1522,11 +1639,6 @@ declare const TEXT_LIST_TYPES: readonly [
1522
1639
  ];
1523
1640
  type TextListType = (typeof TEXT_LIST_TYPES)[number];
1524
1641
  type TextareaState = FormState;
1525
- declare const AUTO_COMPLETE: readonly [
1526
- "off",
1527
- "on"
1528
- ];
1529
- type TextareaAutoComplete = (typeof AUTO_COMPLETE)[number];
1530
1642
  declare const TEXTAREA_WRAPS: readonly [
1531
1643
  "hard",
1532
1644
  "soft",
@@ -1834,6 +1946,7 @@ declare class PDrilldownLink extends BaseComponent {
1834
1946
  }
1835
1947
 
1836
1948
  declare class PFieldset extends BaseComponentWithTheme {
1949
+ aria?: SelectedAriaRole<"radiogroup">;
1837
1950
  label?: string;
1838
1951
  labelSize?: FieldsetLabelSize;
1839
1952
  message?: string;
@@ -1841,7 +1954,7 @@ declare class PFieldset extends BaseComponentWithTheme {
1841
1954
  state?: FieldsetState;
1842
1955
  theme?: Theme;
1843
1956
  static ɵfac: i0.ɵɵFactoryDeclaration<PFieldset, never>;
1844
- static ɵcmp: i0.ɵɵComponentDeclaration<PFieldset, "p-fieldset,[p-fieldset]", never, { "label": { "alias": "label"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "message": { "alias": "message"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1957
+ static ɵcmp: i0.ɵɵComponentDeclaration<PFieldset, "p-fieldset,[p-fieldset]", never, { "aria": { "alias": "aria"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "message": { "alias": "message"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1845
1958
  }
1846
1959
 
1847
1960
  /** @deprecated since v3.0.0, will be removed with next major release. Please use "p-fieldset" instead. */
@@ -1856,6 +1969,14 @@ declare class PFieldsetWrapper extends BaseComponentWithTheme {
1856
1969
  static ɵcmp: i0.ɵɵComponentDeclaration<PFieldsetWrapper, "p-fieldset-wrapper,[p-fieldset-wrapper]", never, { "label": { "alias": "label"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "message": { "alias": "message"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1857
1970
  }
1858
1971
 
1972
+ declare class PFlag extends BaseComponent {
1973
+ aria?: SelectedAriaAttributes<FlagAriaAttribute>;
1974
+ name?: FlagName;
1975
+ size?: FlagSize;
1976
+ static ɵfac: i0.ɵɵFactoryDeclaration<PFlag, never>;
1977
+ static ɵcmp: i0.ɵɵComponentDeclaration<PFlag, "p-flag,[p-flag]", never, { "aria": { "alias": "aria"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
1978
+ }
1979
+
1859
1980
  /** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
1860
1981
  declare class PFlex extends BaseComponent {
1861
1982
  alignContent?: BreakpointCustomizable<FlexAlignContent>;
@@ -1966,8 +2087,63 @@ declare class PInlineNotification extends BaseComponentWithTheme {
1966
2087
  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>;
1967
2088
  }
1968
2089
 
2090
+ declare class PInputDate extends BaseComponentWithTheme {
2091
+ autoComplete?: string;
2092
+ compact?: boolean;
2093
+ description?: string;
2094
+ disabled?: boolean;
2095
+ form?: string;
2096
+ hideLabel?: BreakpointCustomizable<boolean>;
2097
+ label?: string;
2098
+ loading?: boolean;
2099
+ max?: string;
2100
+ message?: string;
2101
+ min?: string;
2102
+ name: string;
2103
+ readOnly?: boolean;
2104
+ required?: boolean;
2105
+ state?: InputDateState;
2106
+ step?: number;
2107
+ theme?: Theme;
2108
+ value?: string;
2109
+ blur: EventEmitter<CustomEvent<Event>>;
2110
+ change: EventEmitter<CustomEvent<Event>>;
2111
+ input: EventEmitter<CustomEvent<InputEvent>>;
2112
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputDate, never>;
2113
+ 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>;
2114
+ }
2115
+
2116
+ declare class PInputEmail extends BaseComponentWithTheme {
2117
+ autoComplete?: string;
2118
+ compact?: boolean;
2119
+ description?: string;
2120
+ disabled?: boolean;
2121
+ form?: string;
2122
+ hideLabel?: BreakpointCustomizable<boolean>;
2123
+ indicator?: boolean;
2124
+ label?: string;
2125
+ loading?: boolean;
2126
+ maxLength?: number;
2127
+ message?: string;
2128
+ minLength?: number;
2129
+ multiple?: boolean;
2130
+ name: string;
2131
+ pattern?: string;
2132
+ placeholder?: string;
2133
+ readOnly?: boolean;
2134
+ required?: boolean;
2135
+ state?: InputEmailState;
2136
+ theme?: Theme;
2137
+ value?: string;
2138
+ blur: EventEmitter<CustomEvent<Event>>;
2139
+ change: EventEmitter<CustomEvent<Event>>;
2140
+ input: EventEmitter<CustomEvent<InputEvent>>;
2141
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputEmail, never>;
2142
+ 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>;
2143
+ }
2144
+
1969
2145
  declare class PInputNumber extends BaseComponentWithTheme {
1970
- autoComplete?: InputNumberAutoComplete;
2146
+ autoComplete?: string;
1971
2147
  compact?: boolean;
1972
2148
  controls?: boolean;
1973
2149
  description?: string;
@@ -1995,7 +2171,7 @@ declare class PInputNumber extends BaseComponentWithTheme {
1995
2171
  }
1996
2172
 
1997
2173
  declare class PInputPassword extends BaseComponentWithTheme {
1998
- autoComplete?: InputPasswordAutoComplete;
2174
+ autoComplete?: string;
1999
2175
  compact?: boolean;
2000
2176
  description?: string;
2001
2177
  disabled?: boolean;
@@ -2022,7 +2198,7 @@ declare class PInputPassword extends BaseComponentWithTheme {
2022
2198
  }
2023
2199
 
2024
2200
  declare class PInputSearch extends BaseComponentWithTheme {
2025
- autoComplete?: InputSearchAutoComplete;
2201
+ autoComplete?: string;
2026
2202
  clear?: boolean;
2027
2203
  compact?: boolean;
2028
2204
  description?: string;
@@ -2047,8 +2223,36 @@ declare class PInputSearch extends BaseComponentWithTheme {
2047
2223
  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>;
2048
2224
  }
2049
2225
 
2226
+ declare class PInputTel extends BaseComponentWithTheme {
2227
+ autoComplete?: string;
2228
+ compact?: boolean;
2229
+ description?: string;
2230
+ disabled?: boolean;
2231
+ form?: string;
2232
+ hideLabel?: BreakpointCustomizable<boolean>;
2233
+ indicator?: boolean;
2234
+ label?: string;
2235
+ loading?: boolean;
2236
+ maxLength?: number;
2237
+ message?: string;
2238
+ minLength?: number;
2239
+ name: string;
2240
+ pattern?: string;
2241
+ placeholder?: string;
2242
+ readOnly?: boolean;
2243
+ required?: boolean;
2244
+ state?: InputTelState;
2245
+ theme?: Theme;
2246
+ value?: string;
2247
+ blur: EventEmitter<CustomEvent<Event>>;
2248
+ change: EventEmitter<CustomEvent<Event>>;
2249
+ input: EventEmitter<CustomEvent<InputEvent>>;
2250
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputTel, never>;
2251
+ 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>;
2252
+ }
2253
+
2050
2254
  declare class PInputText extends BaseComponentWithTheme {
2051
- autoComplete?: InputTextAutoComplete;
2255
+ autoComplete?: string;
2052
2256
  compact?: boolean;
2053
2257
  counter?: boolean;
2054
2258
  description?: string;
@@ -2075,6 +2279,60 @@ declare class PInputText extends BaseComponentWithTheme {
2075
2279
  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>;
2076
2280
  }
2077
2281
 
2282
+ declare class PInputTime extends BaseComponentWithTheme {
2283
+ autoComplete?: string;
2284
+ compact?: boolean;
2285
+ description?: string;
2286
+ disabled?: boolean;
2287
+ form?: string;
2288
+ hideLabel?: BreakpointCustomizable<boolean>;
2289
+ label?: string;
2290
+ loading?: boolean;
2291
+ max?: string;
2292
+ message?: string;
2293
+ min?: string;
2294
+ name: string;
2295
+ readOnly?: boolean;
2296
+ required?: boolean;
2297
+ state?: InputTimeState;
2298
+ step?: number;
2299
+ theme?: Theme;
2300
+ value?: string;
2301
+ blur: EventEmitter<CustomEvent<Event>>;
2302
+ change: EventEmitter<CustomEvent<Event>>;
2303
+ input: EventEmitter<CustomEvent<InputEvent>>;
2304
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputTime, never>;
2305
+ 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>;
2306
+ }
2307
+
2308
+ declare class PInputUrl extends BaseComponentWithTheme {
2309
+ autoComplete?: string;
2310
+ compact?: boolean;
2311
+ description?: string;
2312
+ disabled?: boolean;
2313
+ form?: string;
2314
+ hideLabel?: BreakpointCustomizable<boolean>;
2315
+ indicator?: boolean;
2316
+ label?: string;
2317
+ loading?: boolean;
2318
+ maxLength?: number;
2319
+ message?: string;
2320
+ minLength?: number;
2321
+ name: string;
2322
+ pattern?: string;
2323
+ placeholder?: string;
2324
+ readOnly?: boolean;
2325
+ required?: boolean;
2326
+ state?: InputUrlState;
2327
+ theme?: Theme;
2328
+ value?: string;
2329
+ blur: EventEmitter<CustomEvent<Event>>;
2330
+ change: EventEmitter<CustomEvent<Event>>;
2331
+ input: EventEmitter<CustomEvent<InputEvent>>;
2332
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputUrl, never>;
2333
+ 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>;
2334
+ }
2335
+
2078
2336
  declare class PLink extends BaseComponentWithTheme {
2079
2337
  aria?: SelectedAriaAttributes<LinkAriaAttribute>;
2080
2338
  compact?: BreakpointCustomizable<boolean>;
@@ -2220,6 +2478,7 @@ declare class PModelSignature extends BaseComponentWithTheme {
2220
2478
  }
2221
2479
 
2222
2480
  declare class PMultiSelect extends BaseComponentWithTheme {
2481
+ compact?: boolean;
2223
2482
  description?: string;
2224
2483
  disabled?: boolean;
2225
2484
  dropdownDirection?: MultiSelectDropdownDirection;
@@ -2234,7 +2493,7 @@ declare class PMultiSelect extends BaseComponentWithTheme {
2234
2493
  value?: string[];
2235
2494
  update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.MultiSelectUpdateEvent>>;
2236
2495
  static ɵfac: i0.ɵɵFactoryDeclaration<PMultiSelect, never>;
2237
- static ɵcmp: i0.ɵɵComponentDeclaration<PMultiSelect, "p-multi-select,[p-multi-select]", never, { "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>;
2496
+ 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>;
2238
2497
  }
2239
2498
 
2240
2499
  declare class PMultiSelectOption extends BaseComponent {
@@ -2320,6 +2579,7 @@ declare class PRadioButtonWrapper extends BaseComponentWithTheme {
2320
2579
  declare class PScroller extends BaseComponentWithTheme {
2321
2580
  alignScrollIndicator?: ScrollerAlignScrollIndicator;
2322
2581
  aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;
2582
+ /** @deprecated */
2323
2583
  gradientColor?: ScrollerGradientColor;
2324
2584
  /** @deprecated */
2325
2585
  gradientColorScheme?: ScrollerGradientColorScheme;
@@ -2497,6 +2757,7 @@ declare class PTableRow extends BaseComponent {
2497
2757
 
2498
2758
  declare class PTabs extends BaseComponentWithTheme {
2499
2759
  activeTabIndex?: number;
2760
+ /** @deprecated */
2500
2761
  gradientColor?: TabsGradientColor;
2501
2762
  /** @deprecated */
2502
2763
  gradientColorScheme?: TabsGradientColorScheme;
@@ -2512,6 +2773,7 @@ declare class PTabs extends BaseComponentWithTheme {
2512
2773
 
2513
2774
  declare class PTabsBar extends BaseComponentWithTheme {
2514
2775
  activeTabIndex?: number | undefined;
2776
+ /** @deprecated */
2515
2777
  gradientColor?: TabsBarGradientColor;
2516
2778
  /** @deprecated */
2517
2779
  gradientColorScheme?: TabsBarGradientColorScheme;
@@ -2600,7 +2862,7 @@ declare class PTextListItem extends BaseComponent {
2600
2862
  }
2601
2863
 
2602
2864
  declare class PTextarea extends BaseComponentWithTheme {
2603
- autoComplete?: TextareaAutoComplete;
2865
+ autoComplete?: string;
2604
2866
  counter?: boolean;
2605
2867
  description?: string;
2606
2868
  disabled?: boolean;
@@ -2674,7 +2936,7 @@ declare class PorscheDesignSystemModule {
2674
2936
  constructor(configParam: DefaultConfig);
2675
2937
  static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
2676
2938
  static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
2677
- 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 PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputText, 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 PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputText, 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]>;
2939
+ 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]>;
2678
2940
  static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
2679
2941
  }
2680
2942
 
@@ -2684,5 +2946,5 @@ declare class ToastManager {
2684
2946
  static ɵprov: i0.ɵɵInjectableDeclaration<ToastManager>;
2685
2947
  }
2686
2948
 
2687
- export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputNumber, PInputPassword, PInputSearch, PInputText, 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 };
2688
- 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, 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, InputNumberAutoComplete, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordAutoComplete, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchAutoComplete, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, InputTextAutoComplete, InputTextBlurEventDetail, InputTextChangeEventDetail, InputTextInputEventDetail, InputTextState, 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, 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, TextareaAutoComplete, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TextareaWrapperState, Theme, TileAlign, TileAspectRatio, TileBackground, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
2949
+ 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 };
2950
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porsche-design-system/components-angular",
3
- "version": "3.29.0-rc.2",
3
+ "version": "3.29.0-rc.4",
4
4
  "description": "Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.",
5
5
  "keywords": [
6
6
  "porsche",
@@ -17,7 +17,7 @@
17
17
  "license": "SEE LICENSE IN LICENSE",
18
18
  "homepage": "https://designsystem.porsche.com",
19
19
  "dependencies": {
20
- "@porsche-design-system/components-js": "3.29.0-rc.2",
20
+ "@porsche-design-system/components-js": "3.29.0-rc.4",
21
21
  "tslib": "^2.8.1"
22
22
  },
23
23
  "peerDependencies": {