@porsche-design-system/components-angular 3.32.1 → 3.33.0-rc.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,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
14
14
|
|
|
15
15
|
## [Unreleased]
|
|
16
16
|
|
|
17
|
+
## [3.33.0-rc.0] - 2026-03-04
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- `Tag`: new `variant` property to define background colors which complies now with PDS `v4`
|
|
22
|
+
([#4227](https://github.com/porsche-design-system/porsche-design-system/pull/4227))
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- `Tag`: deprecated `color` property, use `variant` property instead to define background colors which complies now with
|
|
27
|
+
PDS `v4` ([#4227](https://github.com/porsche-design-system/porsche-design-system/pull/4227))
|
|
28
|
+
|
|
17
29
|
## [3.32.1] - 2026-02-24
|
|
18
30
|
|
|
19
31
|
## [3.32.1-rc.0] - 2026-02-20
|
|
@@ -2676,20 +2676,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImpor
|
|
|
2676
2676
|
}] });
|
|
2677
2677
|
|
|
2678
2678
|
class PTag extends BaseComponentWithTheme {
|
|
2679
|
+
/** @deprecated */
|
|
2679
2680
|
color;
|
|
2680
2681
|
compact;
|
|
2681
2682
|
icon;
|
|
2682
2683
|
iconSource;
|
|
2683
2684
|
theme;
|
|
2685
|
+
variant;
|
|
2684
2686
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PTag, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2685
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", type: PTag, isStandalone: false, selector: "p-tag,[p-tag]", inputs: { color: "color", compact: "compact", icon: "icon", iconSource: "iconSource", theme: "theme" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2687
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.1", type: PTag, isStandalone: false, selector: "p-tag,[p-tag]", inputs: { color: "color", compact: "compact", icon: "icon", iconSource: "iconSource", theme: "theme", variant: "variant" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
2686
2688
|
}
|
|
2687
2689
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: PTag, decorators: [{
|
|
2688
2690
|
type: Component,
|
|
2689
2691
|
args: [{
|
|
2690
2692
|
selector: 'p-tag,[p-tag]',
|
|
2691
2693
|
template: '<ng-content />',
|
|
2692
|
-
inputs: ['color', 'compact', 'icon', 'iconSource', 'theme'],
|
|
2694
|
+
inputs: ['color', 'compact', 'icon', 'iconSource', 'theme', 'variant'],
|
|
2693
2695
|
standalone: false
|
|
2694
2696
|
}]
|
|
2695
2697
|
}] });
|