@porsche-design-system/components-angular 4.0.0-beta.1 → 4.0.0-beta.2
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,74 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
14
14
|
|
|
15
15
|
## [Unreleased]
|
|
16
16
|
|
|
17
|
+
## [4.0.0-beta.2] - 2026-03-11
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- `Scroller`:
|
|
22
|
+
- Prop `compact`: Displays with reduced spacing and smaller padding for a more condensed layout.
|
|
23
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
24
|
+
- Prop `sticky`: Makes the indicator sticky at the top or bottom while scrolling depending on the scroll direction.
|
|
25
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
26
|
+
- CSS Variable `--p-scroller-indicator-top`: Defines the distance from the top of the viewport at which the indicator
|
|
27
|
+
sticks when scrolling down and `sticky` is enabled.
|
|
28
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
29
|
+
- CSS Variable `--p-scroller-indicator-bottom`: Defines the distance from the bottom of the viewport at which the
|
|
30
|
+
indicator sticks when scrolling up and `sticky` is enabled.
|
|
31
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
32
|
+
- CSS Variable `--p-scroller-gap`: Defines the gap between slotted nodes.
|
|
33
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
34
|
+
- `Tabs Bar`:
|
|
35
|
+
- Prop `background`: Defines the background color. Use `frosted` only on images, videos or gradients.
|
|
36
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
37
|
+
- Prop `compact`: Displays with reduced spacing and smaller padding for a more condensed layout.
|
|
38
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
39
|
+
- `Tabs`:
|
|
40
|
+
- Prop `background`: Defines the background color. Use `frosted` only on images, videos or gradients.
|
|
41
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
42
|
+
- Prop `compact`: Displays with reduced spacing and smaller padding for a more condensed layout.
|
|
43
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
44
|
+
- `Table`:
|
|
45
|
+
- Prop `sticky`: Makes the scroll indicator sticky at the top or bottom while scrolling depending on the scroll
|
|
46
|
+
direction. ([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
47
|
+
- CSS Variable `--p-table-scroll-indicator-top`: Defines the distance from the top of the viewport at which the scroll
|
|
48
|
+
indicator sticks when scrolling down and `sticky` is enabled.
|
|
49
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
50
|
+
- CSS Variable `--p-table-scroll-indicator-bottom`: Defines the distance from the bottom of the viewport at which the
|
|
51
|
+
scroll indicator sticks when scrolling up and `sticky` is enabled.
|
|
52
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
53
|
+
|
|
54
|
+
### Changed
|
|
55
|
+
|
|
56
|
+
- `Scroller`:
|
|
57
|
+
- Modernize visual appearance ([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
58
|
+
- `Tabs Bar`:
|
|
59
|
+
- Modernize visual appearance ([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
60
|
+
- `Tabs`:
|
|
61
|
+
- Modernize visual appearance ([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
62
|
+
- `Table`:
|
|
63
|
+
- Use modernized scroller internally
|
|
64
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
65
|
+
- `Stepper Horizontal`:
|
|
66
|
+
- Use modernized scroller internally
|
|
67
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
68
|
+
|
|
69
|
+
### Deprecated
|
|
70
|
+
|
|
71
|
+
- `Scroller`:
|
|
72
|
+
- Prop `alignScrollIndicator`: Will be removed with next major release, has no effect anymore.
|
|
73
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
74
|
+
- Prop `scrollToPosition`: Will be removed with next major release, use native `scrollIntoView()` on the slotted
|
|
75
|
+
element itself, e.g.
|
|
76
|
+
`el.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'center', container: 'nearest' })`.
|
|
77
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
78
|
+
- `Tabs Bar`:
|
|
79
|
+
- Prop `weight`: Will be removed with next major release, has no effect anymore.
|
|
80
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
81
|
+
- `Tabs`:
|
|
82
|
+
- Prop `weight`: Will be removed with next major release, has no effect anymore.
|
|
83
|
+
([#4228](https://github.com/porsche-design-system/porsche-design-system/pull/4228))
|
|
84
|
+
|
|
17
85
|
## [4.0.0-beta.1] - 2026-03-02
|
|
18
86
|
|
|
19
87
|
### Added
|
|
@@ -525,6 +593,21 @@ and migration steps.
|
|
|
525
593
|
- `Multi Select`: trim whitespace of selected options text
|
|
526
594
|
([#4132](https://github.com/porsche-design-system/porsche-design-system/pull/4132))
|
|
527
595
|
|
|
596
|
+
## [3.33.0] - 2026-03-09
|
|
597
|
+
|
|
598
|
+
## [3.33.0-rc.0] - 2026-03-04
|
|
599
|
+
|
|
600
|
+
### Added
|
|
601
|
+
|
|
602
|
+
- `Tag`: new `variant` property to define background colors which complies now with PDS `v4`
|
|
603
|
+
([#4227](https://github.com/porsche-design-system/porsche-design-system/pull/4227))
|
|
604
|
+
- `Checkbox`: add warning for Firefox form restore bug
|
|
605
|
+
|
|
606
|
+
### Changed
|
|
607
|
+
|
|
608
|
+
- `Tag`: deprecated `color` property, use `variant` property instead to define background colors which complies now with
|
|
609
|
+
PDS `v4` ([#4227](https://github.com/porsche-design-system/porsche-design-system/pull/4227))
|
|
610
|
+
|
|
528
611
|
## [3.32.1] - 2026-02-24
|
|
529
612
|
|
|
530
613
|
## [3.32.1-rc.0] - 2026-02-20
|
|
@@ -601,11 +684,6 @@ and migration steps.
|
|
|
601
684
|
- `Multi Select`: trim whitespace of selected options text
|
|
602
685
|
([#4132](https://github.com/porsche-design-system/porsche-design-system/pull/4132))
|
|
603
686
|
|
|
604
|
-
### Changed
|
|
605
|
-
|
|
606
|
-
- `Link Tile`, `Button Tile`: appearance in compact mode
|
|
607
|
-
- `Canvas`: appearance on mobile view
|
|
608
|
-
|
|
609
687
|
## [3.31.0] - 2025-11-13
|
|
610
688
|
|
|
611
689
|
## [3.31.0-rc.0] - 2025-11-11
|
|
@@ -2021,7 +2099,7 @@ and migration steps.
|
|
|
2021
2099
|
|
|
2022
2100
|
```diff
|
|
2023
2101
|
- <p-carousel align-header="left"></p-carousel>
|
|
2024
|
-
+ <p-carousel align-header="start"></p-carousel>
|
|
2102
|
+
+ <p-carousel-pure align-header="start"></p-carousel>
|
|
2025
2103
|
```
|
|
2026
2104
|
|
|
2027
2105
|
### Fixed
|
|
@@ -1804,19 +1804,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImpor
|
|
|
1804
1804
|
}] });
|
|
1805
1805
|
|
|
1806
1806
|
class PScroller extends BaseComponent {
|
|
1807
|
+
/** @deprecated */
|
|
1807
1808
|
alignScrollIndicator;
|
|
1808
1809
|
aria;
|
|
1810
|
+
compact;
|
|
1811
|
+
/** @deprecated */
|
|
1809
1812
|
scrollToPosition;
|
|
1810
1813
|
scrollbar;
|
|
1814
|
+
sticky;
|
|
1811
1815
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PScroller, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1812
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", type: PScroller, isStandalone: false, selector: "p-scroller,[p-scroller]", inputs: { alignScrollIndicator: "alignScrollIndicator", aria: "aria", scrollToPosition: "scrollToPosition", scrollbar: "scrollbar" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1816
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", type: PScroller, isStandalone: false, selector: "p-scroller,[p-scroller]", inputs: { alignScrollIndicator: "alignScrollIndicator", aria: "aria", compact: "compact", scrollToPosition: "scrollToPosition", scrollbar: "scrollbar", sticky: "sticky" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
1813
1817
|
}
|
|
1814
1818
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PScroller, decorators: [{
|
|
1815
1819
|
type: Component,
|
|
1816
1820
|
args: [{
|
|
1817
1821
|
selector: 'p-scroller,[p-scroller]',
|
|
1818
1822
|
template: '<ng-content />',
|
|
1819
|
-
inputs: ['alignScrollIndicator', 'aria', 'scrollToPosition', 'scrollbar'],
|
|
1823
|
+
inputs: ['alignScrollIndicator', 'aria', 'compact', 'scrollToPosition', 'scrollbar', 'sticky'],
|
|
1820
1824
|
standalone: false
|
|
1821
1825
|
}]
|
|
1822
1826
|
}] });
|
|
@@ -2096,16 +2100,17 @@ class PTable extends BaseComponent {
|
|
|
2096
2100
|
caption;
|
|
2097
2101
|
compact;
|
|
2098
2102
|
layout;
|
|
2103
|
+
sticky;
|
|
2099
2104
|
update = new EventEmitter();
|
|
2100
2105
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PTable, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2101
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", type: PTable, isStandalone: false, selector: "p-table,[p-table]", inputs: { caption: "caption", compact: "compact", layout: "layout" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2106
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", type: PTable, isStandalone: false, selector: "p-table,[p-table]", inputs: { caption: "caption", compact: "compact", layout: "layout", sticky: "sticky" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2102
2107
|
}
|
|
2103
2108
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PTable, decorators: [{
|
|
2104
2109
|
type: Component,
|
|
2105
2110
|
args: [{
|
|
2106
2111
|
selector: 'p-table,[p-table]',
|
|
2107
2112
|
template: '<ng-content />',
|
|
2108
|
-
inputs: ['caption', 'compact', 'layout'],
|
|
2113
|
+
inputs: ['caption', 'compact', 'layout', 'sticky'],
|
|
2109
2114
|
outputs: ['update'],
|
|
2110
2115
|
standalone: false
|
|
2111
2116
|
}]
|
|
@@ -2197,18 +2202,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImpor
|
|
|
2197
2202
|
|
|
2198
2203
|
class PTabs extends BaseComponent {
|
|
2199
2204
|
activeTabIndex;
|
|
2205
|
+
background;
|
|
2206
|
+
compact;
|
|
2200
2207
|
size;
|
|
2208
|
+
/** @deprecated */
|
|
2201
2209
|
weight;
|
|
2202
2210
|
update = new EventEmitter();
|
|
2203
2211
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2204
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", type: PTabs, isStandalone: false, selector: "p-tabs,[p-tabs]", inputs: { activeTabIndex: "activeTabIndex", size: "size", weight: "weight" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2212
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", 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 });
|
|
2205
2213
|
}
|
|
2206
2214
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PTabs, decorators: [{
|
|
2207
2215
|
type: Component,
|
|
2208
2216
|
args: [{
|
|
2209
2217
|
selector: 'p-tabs,[p-tabs]',
|
|
2210
2218
|
template: '<ng-content />',
|
|
2211
|
-
inputs: ['activeTabIndex', 'size', 'weight'],
|
|
2219
|
+
inputs: ['activeTabIndex', 'background', 'compact', 'size', 'weight'],
|
|
2212
2220
|
outputs: ['update'],
|
|
2213
2221
|
standalone: false
|
|
2214
2222
|
}]
|
|
@@ -2216,18 +2224,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImpor
|
|
|
2216
2224
|
|
|
2217
2225
|
class PTabsBar extends BaseComponent {
|
|
2218
2226
|
activeTabIndex;
|
|
2227
|
+
background;
|
|
2228
|
+
compact;
|
|
2219
2229
|
size;
|
|
2230
|
+
/** @deprecated */
|
|
2220
2231
|
weight;
|
|
2221
2232
|
update = new EventEmitter();
|
|
2222
2233
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PTabsBar, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2223
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", type: PTabsBar, isStandalone: false, selector: "p-tabs-bar,[p-tabs-bar]", inputs: { activeTabIndex: "activeTabIndex", size: "size", weight: "weight" }, outputs: { update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2234
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", 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 });
|
|
2224
2235
|
}
|
|
2225
2236
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PTabsBar, decorators: [{
|
|
2226
2237
|
type: Component,
|
|
2227
2238
|
args: [{
|
|
2228
2239
|
selector: 'p-tabs-bar,[p-tabs-bar]',
|
|
2229
2240
|
template: '<ng-content />',
|
|
2230
|
-
inputs: ['activeTabIndex', 'size', 'weight'],
|
|
2241
|
+
inputs: ['activeTabIndex', 'background', 'compact', 'size', 'weight'],
|
|
2231
2242
|
outputs: ['update'],
|
|
2232
2243
|
standalone: false
|
|
2233
2244
|
}]
|