@porsche-design-system/components-angular 3.29.0-rc.3 → 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,6 +1229,10 @@ 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;
1099
1236
  type InputEmailState = FormState;
1100
1237
  type InputEmailChangeEventDetail = Event;
1101
1238
  type InputEmailBlurEventDetail = Event;
@@ -1112,10 +1249,22 @@ type InputSearchState = FormState;
1112
1249
  type InputSearchChangeEventDetail = Event;
1113
1250
  type InputSearchBlurEventDetail = Event;
1114
1251
  type InputSearchInputEventDetail = InputEvent;
1252
+ type InputTelState = FormState;
1253
+ type InputTelChangeEventDetail = Event;
1254
+ type InputTelBlurEventDetail = Event;
1255
+ type InputTelInputEventDetail = InputEvent;
1115
1256
  type InputTextState = FormState;
1116
1257
  type InputTextChangeEventDetail = Event;
1117
1258
  type InputTextBlurEventDetail = Event;
1118
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;
1119
1268
  type LinkIcon = LinkButtonIconName;
1120
1269
  type LinkPureIcon = LinkButtonIconName;
1121
1270
  type LinkPureAriaAttribute = LinkAriaAttribute;
@@ -1270,14 +1419,6 @@ declare const MODEL_SIGNATURE_COLORS: readonly [
1270
1419
  "inherit"
1271
1420
  ];
1272
1421
  type ModelSignatureColor = (typeof MODEL_SIGNATURE_COLORS)[number];
1273
- type MultiSelectState = FormState;
1274
- type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
1275
- /** @deprecated */
1276
- type MultiSelectUpdateEvent = {
1277
- name: string;
1278
- value: string[];
1279
- };
1280
- type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
1281
1422
  declare const PAGINATION_NUMBER_OF_PAGE_LINKS: readonly [
1282
1423
  5,
1283
1424
  7
@@ -1341,12 +1482,6 @@ declare const SEGMENTED_CONTROL_ITEM_ARIA_ATTRIBUTES: readonly [
1341
1482
  "aria-label"
1342
1483
  ];
1343
1484
  type SegmentedControlItemAriaAttribute = (typeof SEGMENTED_CONTROL_ITEM_ARIA_ATTRIBUTES)[number];
1344
- type SelectState = FormState;
1345
- type SelectDropdownDirection = SelectComponentsDropdownDirection;
1346
- type SelectUpdateEventDetail = {
1347
- name: string;
1348
- value: string;
1349
- };
1350
1485
  declare const DROPDOWN_DIRECTIONS: readonly [
1351
1486
  "down",
1352
1487
  "up",
@@ -1811,6 +1946,7 @@ declare class PDrilldownLink extends BaseComponent {
1811
1946
  }
1812
1947
 
1813
1948
  declare class PFieldset extends BaseComponentWithTheme {
1949
+ aria?: SelectedAriaRole<"radiogroup">;
1814
1950
  label?: string;
1815
1951
  labelSize?: FieldsetLabelSize;
1816
1952
  message?: string;
@@ -1818,7 +1954,7 @@ declare class PFieldset extends BaseComponentWithTheme {
1818
1954
  state?: FieldsetState;
1819
1955
  theme?: Theme;
1820
1956
  static ɵfac: i0.ɵɵFactoryDeclaration<PFieldset, never>;
1821
- 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>;
1822
1958
  }
1823
1959
 
1824
1960
  /** @deprecated since v3.0.0, will be removed with next major release. Please use "p-fieldset" instead. */
@@ -1833,6 +1969,14 @@ declare class PFieldsetWrapper extends BaseComponentWithTheme {
1833
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>;
1834
1970
  }
1835
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
+
1836
1980
  /** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
1837
1981
  declare class PFlex extends BaseComponent {
1838
1982
  alignContent?: BreakpointCustomizable<FlexAlignContent>;
@@ -1943,6 +2087,32 @@ declare class PInlineNotification extends BaseComponentWithTheme {
1943
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>;
1944
2088
  }
1945
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
+
1946
2116
  declare class PInputEmail extends BaseComponentWithTheme {
1947
2117
  autoComplete?: string;
1948
2118
  compact?: boolean;
@@ -2053,6 +2223,34 @@ declare class PInputSearch extends BaseComponentWithTheme {
2053
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>;
2054
2224
  }
2055
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
+
2056
2254
  declare class PInputText extends BaseComponentWithTheme {
2057
2255
  autoComplete?: string;
2058
2256
  compact?: boolean;
@@ -2081,6 +2279,60 @@ declare class PInputText extends BaseComponentWithTheme {
2081
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>;
2082
2280
  }
2083
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
+
2084
2336
  declare class PLink extends BaseComponentWithTheme {
2085
2337
  aria?: SelectedAriaAttributes<LinkAriaAttribute>;
2086
2338
  compact?: BreakpointCustomizable<boolean>;
@@ -2226,6 +2478,7 @@ declare class PModelSignature extends BaseComponentWithTheme {
2226
2478
  }
2227
2479
 
2228
2480
  declare class PMultiSelect extends BaseComponentWithTheme {
2481
+ compact?: boolean;
2229
2482
  description?: string;
2230
2483
  disabled?: boolean;
2231
2484
  dropdownDirection?: MultiSelectDropdownDirection;
@@ -2240,7 +2493,7 @@ declare class PMultiSelect extends BaseComponentWithTheme {
2240
2493
  value?: string[];
2241
2494
  update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.MultiSelectUpdateEvent>>;
2242
2495
  static ɵfac: i0.ɵɵFactoryDeclaration<PMultiSelect, never>;
2243
- 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>;
2244
2497
  }
2245
2498
 
2246
2499
  declare class PMultiSelectOption extends BaseComponent {
@@ -2326,6 +2579,7 @@ declare class PRadioButtonWrapper extends BaseComponentWithTheme {
2326
2579
  declare class PScroller extends BaseComponentWithTheme {
2327
2580
  alignScrollIndicator?: ScrollerAlignScrollIndicator;
2328
2581
  aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;
2582
+ /** @deprecated */
2329
2583
  gradientColor?: ScrollerGradientColor;
2330
2584
  /** @deprecated */
2331
2585
  gradientColorScheme?: ScrollerGradientColorScheme;
@@ -2503,6 +2757,7 @@ declare class PTableRow extends BaseComponent {
2503
2757
 
2504
2758
  declare class PTabs extends BaseComponentWithTheme {
2505
2759
  activeTabIndex?: number;
2760
+ /** @deprecated */
2506
2761
  gradientColor?: TabsGradientColor;
2507
2762
  /** @deprecated */
2508
2763
  gradientColorScheme?: TabsGradientColorScheme;
@@ -2518,6 +2773,7 @@ declare class PTabs extends BaseComponentWithTheme {
2518
2773
 
2519
2774
  declare class PTabsBar extends BaseComponentWithTheme {
2520
2775
  activeTabIndex?: number | undefined;
2776
+ /** @deprecated */
2521
2777
  gradientColor?: TabsBarGradientColor;
2522
2778
  /** @deprecated */
2523
2779
  gradientColorScheme?: TabsBarGradientColorScheme;
@@ -2680,7 +2936,7 @@ declare class PorscheDesignSystemModule {
2680
2936
  constructor(configParam: DefaultConfig);
2681
2937
  static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
2682
2938
  static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
2683
- 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 PInputEmail, 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 PInputEmail, 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]>;
2684
2940
  static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
2685
2941
  }
2686
2942
 
@@ -2690,5 +2946,5 @@ declare class ToastManager {
2690
2946
  static ɵprov: i0.ɵɵInjectableDeclaration<ToastManager>;
2691
2947
  }
2692
2948
 
2693
- 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, PInputEmail, 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 };
2694
- 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, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, 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, 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.3",
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.3",
20
+ "@porsche-design-system/components-js": "3.29.0-rc.4",
21
21
  "tslib": "^2.8.1"
22
22
  },
23
23
  "peerDependencies": {