@porsche-design-system/components-angular 4.2.0 → 4.3.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
+ ## [4.3.0] - 2026-06-24
18
+
19
+ ## [4.3.0-rc.0] - 2026-06-24
20
+
21
+ ### Added
22
+
23
+ - `Tabs`, `Tabs Bar`: `aria` prop to provide additional context for screen readers
24
+ ([#4538](https://github.com/porsche-design-system/porsche-design-system/pull/4538))
25
+
26
+ ### Changed
27
+
28
+ - `Angular`: Widen peer dependency to support Angular version 21 + 22
29
+ ([#4546](https://github.com/porsche-design-system/porsche-design-system/pull/4546))
30
+
17
31
  ## [4.2.0] - 2026-06-22
18
32
 
19
33
  ## [4.2.0-rc.5] - 2026-06-12
@@ -2229,6 +2229,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
2229
2229
 
2230
2230
  class PTabs extends BaseComponent {
2231
2231
  activeTabIndex;
2232
+ aria;
2232
2233
  background;
2233
2234
  compact;
2234
2235
  size;
@@ -2236,14 +2237,14 @@ class PTabs extends BaseComponent {
2236
2237
  weight;
2237
2238
  update = new EventEmitter();
2238
2239
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: PTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
2239
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.2", type: PTabs, isStandalone: false, selector: "p-tabs,[p-tabs]", inputs: { activeTabIndex: "activeTabIndex", background: "background", compact: "compact", size: "size", weight: "weight" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
2240
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.2", type: PTabs, isStandalone: false, selector: "p-tabs,[p-tabs]", inputs: { activeTabIndex: "activeTabIndex", aria: "aria", background: "background", compact: "compact", size: "size", weight: "weight" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
2240
2241
  }
2241
2242
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: PTabs, decorators: [{
2242
2243
  type: Component,
2243
2244
  args: [{
2244
2245
  selector: 'p-tabs,[p-tabs]',
2245
2246
  template: '<ng-content />',
2246
- inputs: ['activeTabIndex', 'background', 'compact', 'size', 'weight'],
2247
+ inputs: ['activeTabIndex', 'aria', 'background', 'compact', 'size', 'weight'],
2247
2248
  outputs: ['update'],
2248
2249
  standalone: false
2249
2250
  }]
@@ -2251,6 +2252,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
2251
2252
 
2252
2253
  class PTabsBar extends BaseComponent {
2253
2254
  activeTabIndex;
2255
+ aria;
2254
2256
  background;
2255
2257
  compact;
2256
2258
  size;
@@ -2258,14 +2260,14 @@ class PTabsBar extends BaseComponent {
2258
2260
  weight;
2259
2261
  update = new EventEmitter();
2260
2262
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: PTabsBar, deps: null, target: i0.ɵɵFactoryTarget.Component });
2261
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.2", type: PTabsBar, isStandalone: false, selector: "p-tabs-bar,[p-tabs-bar]", inputs: { activeTabIndex: "activeTabIndex", background: "background", compact: "compact", size: "size", weight: "weight" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
2263
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.2", type: PTabsBar, isStandalone: false, selector: "p-tabs-bar,[p-tabs-bar]", inputs: { activeTabIndex: "activeTabIndex", aria: "aria", background: "background", compact: "compact", size: "size", weight: "weight" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
2262
2264
  }
2263
2265
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: PTabsBar, decorators: [{
2264
2266
  type: Component,
2265
2267
  args: [{
2266
2268
  selector: 'p-tabs-bar,[p-tabs-bar]',
2267
2269
  template: '<ng-content />',
2268
- inputs: ['activeTabIndex', 'background', 'compact', 'size', 'weight'],
2270
+ inputs: ['activeTabIndex', 'aria', 'background', 'compact', 'size', 'weight'],
2269
2271
  outputs: ['update'],
2270
2272
  standalone: false
2271
2273
  }]