@porsche-design-system/components-angular 3.28.0-rc.3 → 3.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -14,6 +14,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
14
14
 
15
15
  ## [Unreleased]
16
16
 
17
+ ## [3.28.0] - 2025-06-02
18
+
19
+ #### Added
20
+
21
+ - `Input Number`: ([#3855](https://github.com/porsche-design-system/porsche-design-system/pull/3855))
22
+
23
+ #### Fixed
24
+
25
+ - `Select Wrapper`: update of scroll position if dropdown is navigated with keyboard
26
+ ([#3858](https://github.com/porsche-design-system/porsche-design-system/pull/3858))
27
+ - `Select`, `Multi Select`: replacement of static (english) a11y announcement of active `option` with dynamic
28
+ announcement through `ariaActiveDescendantElement`
29
+ ([#3826](https://github.com/porsche-design-system/porsche-design-system/pull/3826))
30
+
17
31
  ## [3.28.0-rc.3] - 2025-05-19
18
32
 
19
33
  ### Added
@@ -28,6 +28,7 @@ export * from './heading.wrapper';
28
28
  export * from './headline.wrapper';
29
29
  export * from './icon.wrapper';
30
30
  export * from './inline-notification.wrapper';
31
+ export * from './input-number.wrapper';
31
32
  export * from './input-password.wrapper';
32
33
  export * from './link.wrapper';
33
34
  export * from './link-pure.wrapper';
@@ -0,0 +1,30 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { BaseComponentWithTheme } from '../../utils';
3
+ import type { InputNumberAutoComplete, BreakpointCustomizable, InputNumberState, Theme } from '../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class PInputNumber extends BaseComponentWithTheme {
6
+ autoComplete?: InputNumberAutoComplete;
7
+ compact?: boolean;
8
+ controls?: boolean;
9
+ description?: string;
10
+ disabled?: boolean;
11
+ form?: string;
12
+ hideLabel?: BreakpointCustomizable<boolean>;
13
+ label?: string;
14
+ max?: number;
15
+ message?: string;
16
+ min?: number;
17
+ name: string;
18
+ placeholder?: string;
19
+ readOnly?: boolean;
20
+ required?: boolean;
21
+ state?: InputNumberState;
22
+ step?: number;
23
+ theme?: Theme;
24
+ value?: string;
25
+ blur: EventEmitter<CustomEvent<Event>>;
26
+ change: EventEmitter<CustomEvent<Event>>;
27
+ input: EventEmitter<CustomEvent<InputEvent>>;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputNumber, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputNumber, "p-input-number,[p-input-number]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "controls": { "alias": "controls"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "max": { "alias": "max"; "required": false; }; "message": { "alias": "message"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>;
30
+ }
@@ -1088,13 +1088,23 @@ declare const ICON_COLORS: readonly [
1088
1088
  "state-disabled"
1089
1089
  ];
1090
1090
  export type IconColor = (typeof ICON_COLORS)[number];
1091
+ export type InputNumberState = FormState;
1092
+ declare const INPUT_NUMBER_AUTO_COMPLETE: readonly [
1093
+ "off",
1094
+ "on",
1095
+ ""
1096
+ ];
1097
+ export type InputNumberAutoComplete = (typeof INPUT_NUMBER_AUTO_COMPLETE)[number];
1098
+ export type InputNumberChangeEventDetail = Event;
1099
+ export type InputNumberBlurEventDetail = Event;
1100
+ export type InputNumberInputEventDetail = InputEvent;
1091
1101
  export type InputPasswordState = FormState;
1092
1102
  declare const INPUT_PASSWORD_AUTO_COMPLETE: readonly [
1093
1103
  "off",
1094
1104
  "on",
1105
+ "",
1095
1106
  "current-password",
1096
- "new-password",
1097
- ""
1107
+ "new-password"
1098
1108
  ];
1099
1109
  export type InputPasswordAutoComplete = (typeof INPUT_PASSWORD_AUTO_COMPLETE)[number];
1100
1110
  export type InputPasswordChangeEventDetail = Event;
@@ -29,54 +29,55 @@ import * as i25 from "./lib/components/heading.wrapper";
29
29
  import * as i26 from "./lib/components/headline.wrapper";
30
30
  import * as i27 from "./lib/components/icon.wrapper";
31
31
  import * as i28 from "./lib/components/inline-notification.wrapper";
32
- import * as i29 from "./lib/components/input-password.wrapper";
33
- import * as i30 from "./lib/components/link.wrapper";
34
- import * as i31 from "./lib/components/link-pure.wrapper";
35
- import * as i32 from "./lib/components/link-social.wrapper";
36
- import * as i33 from "./lib/components/link-tile.wrapper";
37
- import * as i34 from "./lib/components/link-tile-model-signature.wrapper";
38
- import * as i35 from "./lib/components/link-tile-product.wrapper";
39
- import * as i36 from "./lib/components/marque.wrapper";
40
- import * as i37 from "./lib/components/modal.wrapper";
41
- import * as i38 from "./lib/components/model-signature.wrapper";
42
- import * as i39 from "./lib/components/multi-select.wrapper";
43
- import * as i40 from "./lib/components/multi-select-option.wrapper";
44
- import * as i41 from "./lib/components/optgroup.wrapper";
45
- import * as i42 from "./lib/components/pagination.wrapper";
46
- import * as i43 from "./lib/components/pin-code.wrapper";
47
- import * as i44 from "./lib/components/popover.wrapper";
48
- import * as i45 from "./lib/components/radio-button-wrapper.wrapper";
49
- import * as i46 from "./lib/components/scroller.wrapper";
50
- import * as i47 from "./lib/components/segmented-control.wrapper";
51
- import * as i48 from "./lib/components/segmented-control-item.wrapper";
52
- import * as i49 from "./lib/components/select.wrapper";
53
- import * as i50 from "./lib/components/select-option.wrapper";
54
- import * as i51 from "./lib/components/select-wrapper.wrapper";
55
- import * as i52 from "./lib/components/sheet.wrapper";
56
- import * as i53 from "./lib/components/spinner.wrapper";
57
- import * as i54 from "./lib/components/stepper-horizontal.wrapper";
58
- import * as i55 from "./lib/components/stepper-horizontal-item.wrapper";
59
- import * as i56 from "./lib/components/switch.wrapper";
60
- import * as i57 from "./lib/components/table.wrapper";
61
- import * as i58 from "./lib/components/table-body.wrapper";
62
- import * as i59 from "./lib/components/table-cell.wrapper";
63
- import * as i60 from "./lib/components/table-head.wrapper";
64
- import * as i61 from "./lib/components/table-head-cell.wrapper";
65
- import * as i62 from "./lib/components/table-head-row.wrapper";
66
- import * as i63 from "./lib/components/table-row.wrapper";
67
- import * as i64 from "./lib/components/tabs.wrapper";
68
- import * as i65 from "./lib/components/tabs-bar.wrapper";
69
- import * as i66 from "./lib/components/tabs-item.wrapper";
70
- import * as i67 from "./lib/components/tag.wrapper";
71
- import * as i68 from "./lib/components/tag-dismissible.wrapper";
72
- import * as i69 from "./lib/components/text.wrapper";
73
- import * as i70 from "./lib/components/text-field-wrapper.wrapper";
74
- import * as i71 from "./lib/components/text-list.wrapper";
75
- import * as i72 from "./lib/components/text-list-item.wrapper";
76
- import * as i73 from "./lib/components/textarea.wrapper";
77
- import * as i74 from "./lib/components/textarea-wrapper.wrapper";
78
- import * as i75 from "./lib/components/toast.wrapper";
79
- import * as i76 from "./lib/components/wordmark.wrapper";
32
+ import * as i29 from "./lib/components/input-number.wrapper";
33
+ import * as i30 from "./lib/components/input-password.wrapper";
34
+ import * as i31 from "./lib/components/link.wrapper";
35
+ import * as i32 from "./lib/components/link-pure.wrapper";
36
+ import * as i33 from "./lib/components/link-social.wrapper";
37
+ import * as i34 from "./lib/components/link-tile.wrapper";
38
+ import * as i35 from "./lib/components/link-tile-model-signature.wrapper";
39
+ import * as i36 from "./lib/components/link-tile-product.wrapper";
40
+ import * as i37 from "./lib/components/marque.wrapper";
41
+ import * as i38 from "./lib/components/modal.wrapper";
42
+ import * as i39 from "./lib/components/model-signature.wrapper";
43
+ import * as i40 from "./lib/components/multi-select.wrapper";
44
+ import * as i41 from "./lib/components/multi-select-option.wrapper";
45
+ import * as i42 from "./lib/components/optgroup.wrapper";
46
+ import * as i43 from "./lib/components/pagination.wrapper";
47
+ import * as i44 from "./lib/components/pin-code.wrapper";
48
+ import * as i45 from "./lib/components/popover.wrapper";
49
+ import * as i46 from "./lib/components/radio-button-wrapper.wrapper";
50
+ import * as i47 from "./lib/components/scroller.wrapper";
51
+ import * as i48 from "./lib/components/segmented-control.wrapper";
52
+ import * as i49 from "./lib/components/segmented-control-item.wrapper";
53
+ import * as i50 from "./lib/components/select.wrapper";
54
+ import * as i51 from "./lib/components/select-option.wrapper";
55
+ import * as i52 from "./lib/components/select-wrapper.wrapper";
56
+ import * as i53 from "./lib/components/sheet.wrapper";
57
+ import * as i54 from "./lib/components/spinner.wrapper";
58
+ import * as i55 from "./lib/components/stepper-horizontal.wrapper";
59
+ import * as i56 from "./lib/components/stepper-horizontal-item.wrapper";
60
+ import * as i57 from "./lib/components/switch.wrapper";
61
+ import * as i58 from "./lib/components/table.wrapper";
62
+ import * as i59 from "./lib/components/table-body.wrapper";
63
+ import * as i60 from "./lib/components/table-cell.wrapper";
64
+ import * as i61 from "./lib/components/table-head.wrapper";
65
+ import * as i62 from "./lib/components/table-head-cell.wrapper";
66
+ import * as i63 from "./lib/components/table-head-row.wrapper";
67
+ import * as i64 from "./lib/components/table-row.wrapper";
68
+ import * as i65 from "./lib/components/tabs.wrapper";
69
+ import * as i66 from "./lib/components/tabs-bar.wrapper";
70
+ import * as i67 from "./lib/components/tabs-item.wrapper";
71
+ import * as i68 from "./lib/components/tag.wrapper";
72
+ import * as i69 from "./lib/components/tag-dismissible.wrapper";
73
+ import * as i70 from "./lib/components/text.wrapper";
74
+ import * as i71 from "./lib/components/text-field-wrapper.wrapper";
75
+ import * as i72 from "./lib/components/text-list.wrapper";
76
+ import * as i73 from "./lib/components/text-list-item.wrapper";
77
+ import * as i74 from "./lib/components/textarea.wrapper";
78
+ import * as i75 from "./lib/components/textarea-wrapper.wrapper";
79
+ import * as i76 from "./lib/components/toast.wrapper";
80
+ import * as i77 from "./lib/components/wordmark.wrapper";
80
81
  export type PorscheDesignSystemModuleConfig = {
81
82
  prefix?: string;
82
83
  cdn?: 'auto' | 'cn';
@@ -91,6 +92,6 @@ export declare class PorscheDesignSystemModule {
91
92
  constructor(configParam: DefaultConfig);
92
93
  static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
93
94
  static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
94
- static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PDrilldown, typeof i16.PDrilldownItem, typeof i17.PDrilldownLink, typeof i18.PFieldset, typeof i19.PFieldsetWrapper, typeof i20.PFlex, typeof i21.PFlexItem, typeof i22.PFlyout, typeof i23.PGrid, typeof i24.PGridItem, typeof i25.PHeading, typeof i26.PHeadline, typeof i27.PIcon, typeof i28.PInlineNotification, typeof i29.PInputPassword, typeof i30.PLink, typeof i31.PLinkPure, typeof i32.PLinkSocial, typeof i33.PLinkTile, typeof i34.PLinkTileModelSignature, typeof i35.PLinkTileProduct, typeof i36.PMarque, typeof i37.PModal, typeof i38.PModelSignature, typeof i39.PMultiSelect, typeof i40.PMultiSelectOption, typeof i41.POptgroup, typeof i42.PPagination, typeof i43.PPinCode, typeof i44.PPopover, typeof i45.PRadioButtonWrapper, typeof i46.PScroller, typeof i47.PSegmentedControl, typeof i48.PSegmentedControlItem, typeof i49.PSelect, typeof i50.PSelectOption, typeof i51.PSelectWrapper, typeof i52.PSheet, typeof i53.PSpinner, typeof i54.PStepperHorizontal, typeof i55.PStepperHorizontalItem, typeof i56.PSwitch, typeof i57.PTable, typeof i58.PTableBody, typeof i59.PTableCell, typeof i60.PTableHead, typeof i61.PTableHeadCell, typeof i62.PTableHeadRow, typeof i63.PTableRow, typeof i64.PTabs, typeof i65.PTabsBar, typeof i66.PTabsItem, typeof i67.PTag, typeof i68.PTagDismissible, typeof i69.PText, typeof i70.PTextFieldWrapper, typeof i71.PTextList, typeof i72.PTextListItem, typeof i73.PTextarea, typeof i74.PTextareaWrapper, typeof i75.PToast, typeof i76.PWordmark], never, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PDrilldown, typeof i16.PDrilldownItem, typeof i17.PDrilldownLink, typeof i18.PFieldset, typeof i19.PFieldsetWrapper, typeof i20.PFlex, typeof i21.PFlexItem, typeof i22.PFlyout, typeof i23.PGrid, typeof i24.PGridItem, typeof i25.PHeading, typeof i26.PHeadline, typeof i27.PIcon, typeof i28.PInlineNotification, typeof i29.PInputPassword, typeof i30.PLink, typeof i31.PLinkPure, typeof i32.PLinkSocial, typeof i33.PLinkTile, typeof i34.PLinkTileModelSignature, typeof i35.PLinkTileProduct, typeof i36.PMarque, typeof i37.PModal, typeof i38.PModelSignature, typeof i39.PMultiSelect, typeof i40.PMultiSelectOption, typeof i41.POptgroup, typeof i42.PPagination, typeof i43.PPinCode, typeof i44.PPopover, typeof i45.PRadioButtonWrapper, typeof i46.PScroller, typeof i47.PSegmentedControl, typeof i48.PSegmentedControlItem, typeof i49.PSelect, typeof i50.PSelectOption, typeof i51.PSelectWrapper, typeof i52.PSheet, typeof i53.PSpinner, typeof i54.PStepperHorizontal, typeof i55.PStepperHorizontalItem, typeof i56.PSwitch, typeof i57.PTable, typeof i58.PTableBody, typeof i59.PTableCell, typeof i60.PTableHead, typeof i61.PTableHeadCell, typeof i62.PTableHeadRow, typeof i63.PTableRow, typeof i64.PTabs, typeof i65.PTabsBar, typeof i66.PTabsItem, typeof i67.PTag, typeof i68.PTagDismissible, typeof i69.PText, typeof i70.PTextFieldWrapper, typeof i71.PTextList, typeof i72.PTextListItem, typeof i73.PTextarea, typeof i74.PTextareaWrapper, typeof i75.PToast, typeof i76.PWordmark]>;
95
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PDrilldown, typeof i16.PDrilldownItem, typeof i17.PDrilldownLink, typeof i18.PFieldset, typeof i19.PFieldsetWrapper, typeof i20.PFlex, typeof i21.PFlexItem, typeof i22.PFlyout, typeof i23.PGrid, typeof i24.PGridItem, typeof i25.PHeading, typeof i26.PHeadline, typeof i27.PIcon, typeof i28.PInlineNotification, typeof i29.PInputNumber, typeof i30.PInputPassword, typeof i31.PLink, typeof i32.PLinkPure, typeof i33.PLinkSocial, typeof i34.PLinkTile, typeof i35.PLinkTileModelSignature, typeof i36.PLinkTileProduct, typeof i37.PMarque, typeof i38.PModal, typeof i39.PModelSignature, typeof i40.PMultiSelect, typeof i41.PMultiSelectOption, typeof i42.POptgroup, typeof i43.PPagination, typeof i44.PPinCode, typeof i45.PPopover, typeof i46.PRadioButtonWrapper, typeof i47.PScroller, typeof i48.PSegmentedControl, typeof i49.PSegmentedControlItem, typeof i50.PSelect, typeof i51.PSelectOption, typeof i52.PSelectWrapper, typeof i53.PSheet, typeof i54.PSpinner, typeof i55.PStepperHorizontal, typeof i56.PStepperHorizontalItem, typeof i57.PSwitch, typeof i58.PTable, typeof i59.PTableBody, typeof i60.PTableCell, typeof i61.PTableHead, typeof i62.PTableHeadCell, typeof i63.PTableHeadRow, typeof i64.PTableRow, typeof i65.PTabs, typeof i66.PTabsBar, typeof i67.PTabsItem, typeof i68.PTag, typeof i69.PTagDismissible, typeof i70.PText, typeof i71.PTextFieldWrapper, typeof i72.PTextList, typeof i73.PTextListItem, typeof i74.PTextarea, typeof i75.PTextareaWrapper, typeof i76.PToast, typeof i77.PWordmark], never, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCanvas, typeof i8.PCarousel, typeof i9.PCheckbox, typeof i10.PCheckboxWrapper, typeof i11.PContentWrapper, typeof i12.PCrest, typeof i13.PDisplay, typeof i14.PDivider, typeof i15.PDrilldown, typeof i16.PDrilldownItem, typeof i17.PDrilldownLink, typeof i18.PFieldset, typeof i19.PFieldsetWrapper, typeof i20.PFlex, typeof i21.PFlexItem, typeof i22.PFlyout, typeof i23.PGrid, typeof i24.PGridItem, typeof i25.PHeading, typeof i26.PHeadline, typeof i27.PIcon, typeof i28.PInlineNotification, typeof i29.PInputNumber, typeof i30.PInputPassword, typeof i31.PLink, typeof i32.PLinkPure, typeof i33.PLinkSocial, typeof i34.PLinkTile, typeof i35.PLinkTileModelSignature, typeof i36.PLinkTileProduct, typeof i37.PMarque, typeof i38.PModal, typeof i39.PModelSignature, typeof i40.PMultiSelect, typeof i41.PMultiSelectOption, typeof i42.POptgroup, typeof i43.PPagination, typeof i44.PPinCode, typeof i45.PPopover, typeof i46.PRadioButtonWrapper, typeof i47.PScroller, typeof i48.PSegmentedControl, typeof i49.PSegmentedControlItem, typeof i50.PSelect, typeof i51.PSelectOption, typeof i52.PSelectWrapper, typeof i53.PSheet, typeof i54.PSpinner, typeof i55.PStepperHorizontal, typeof i56.PStepperHorizontalItem, typeof i57.PSwitch, typeof i58.PTable, typeof i59.PTableBody, typeof i60.PTableCell, typeof i61.PTableHead, typeof i62.PTableHeadCell, typeof i63.PTableHeadRow, typeof i64.PTableRow, typeof i65.PTabs, typeof i66.PTabsBar, typeof i67.PTabsItem, typeof i68.PTag, typeof i69.PTagDismissible, typeof i70.PText, typeof i71.PTextFieldWrapper, typeof i72.PTextList, typeof i73.PTextListItem, typeof i74.PTextarea, typeof i75.PTextareaWrapper, typeof i76.PToast, typeof i77.PWordmark]>;
95
96
  static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
96
97
  }