@porsche-design-system/components-angular 3.12.0 → 3.13.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 +18 -4
- package/esm/lib/components/link-tile-product.wrapper.d.ts +2 -1
- package/esm2020/lib/components/link-tile-product.wrapper.mjs +3 -3
- package/fesm2015/porsche-design-system-components-angular.mjs +2 -2
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +2 -2
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -14,14 +14,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
14
14
|
|
|
15
15
|
### [Unreleased]
|
|
16
16
|
|
|
17
|
+
### [3.13.0-rc.0] - 2024-02-19
|
|
18
|
+
|
|
19
|
+
#### Added
|
|
20
|
+
|
|
21
|
+
- `Link Tile Product`: Prop `price-original` to be able to visualize sale and original price
|
|
22
|
+
([#3040](https://github.com/porsche-design-system/porsche-design-system/pull/3040))
|
|
23
|
+
|
|
24
|
+
#### Changed
|
|
25
|
+
|
|
26
|
+
- Validation of `getInitialStyles()` partial is temporarily disabled
|
|
27
|
+
([#3049](https://github.com/porsche-design-system/porsche-design-system/pull/3049))
|
|
28
|
+
|
|
17
29
|
### [3.12.0] - 2024-02-12
|
|
18
30
|
|
|
19
31
|
### [3.12.0-rc.1] - 2024-02-08
|
|
20
32
|
|
|
21
33
|
#### Fixed
|
|
22
34
|
|
|
23
|
-
- `Checkbox Wrapper`, `Radio Button Wrapper`: Safari visually reflects input status (checked/unchecked) when
|
|
24
|
-
|
|
35
|
+
- `Checkbox Wrapper`, `Radio Button Wrapper`: Safari visually reflects input status (checked/unchecked) when used in
|
|
36
|
+
another Shadow DOM or changed programmatically
|
|
37
|
+
([#3028](https://github.com/porsche-design-system/porsche-design-system/pull/3028))
|
|
25
38
|
|
|
26
39
|
### [3.12.0-rc.0] - 2024-02-05
|
|
27
40
|
|
|
@@ -33,8 +46,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
33
46
|
#### Changed
|
|
34
47
|
|
|
35
48
|
- `Icon`: Visual appearance of `information-filled`, `information`, `success-filled`, `success`, `bookmark`, `compare`,
|
|
36
|
-
`configurate`, `heart-filled`, `heart`, `menu-lines`, `success`, `search`, `locate`, `star`, `shopping-bag-filled`,
|
|
37
|
-
`shopping-bag`, `user-filled` and `user`
|
|
49
|
+
`configurate`, `heart-filled`, `heart`, `menu-lines`, `success`, `search`, `locate`, `star`, `shopping-bag-filled`,
|
|
50
|
+
`shopping-bag`, `user-filled` and `user`
|
|
51
|
+
([#3025](https://github.com/porsche-design-system/porsche-design-system/pull/3025))
|
|
38
52
|
- All components (expect some form elements) have improved focus styling based on `:focus-visible`
|
|
39
53
|
([#3011](https://github.com/porsche-design-system/porsche-design-system/pull/3011))
|
|
40
54
|
- Several components are using CSS property `inset|inset-inline|inset-block` instead of `top|bottom|left|right` for
|
|
@@ -10,10 +10,11 @@ export declare class PLinkTileProduct extends BaseComponentWithTheme {
|
|
|
10
10
|
likeButton?: boolean;
|
|
11
11
|
liked?: boolean;
|
|
12
12
|
price: string;
|
|
13
|
+
priceOriginal?: string;
|
|
13
14
|
rel?: string;
|
|
14
15
|
target?: LinkTileProductTarget;
|
|
15
16
|
theme?: Theme;
|
|
16
17
|
like: EventEmitter<CustomEvent<import("../types").LinkTileProductLikeEvent>>;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLinkTileProduct, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PLinkTileProduct, "p-link-tile-product,[p-link-tile-product]", never, { "aspectRatio": "aspectRatio"; "description": "description"; "heading": "heading"; "href": "href"; "likeButton": "likeButton"; "liked": "liked"; "price": "price"; "rel": "rel"; "target": "target"; "theme": "theme"; }, { "like": "like"; }, never, ["*"], false, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLinkTileProduct, "p-link-tile-product,[p-link-tile-product]", never, { "aspectRatio": "aspectRatio"; "description": "description"; "heading": "heading"; "href": "href"; "likeButton": "likeButton"; "liked": "liked"; "price": "price"; "priceOriginal": "priceOriginal"; "rel": "rel"; "target": "target"; "theme": "theme"; }, { "like": "like"; }, never, ["*"], false, never>;
|
|
19
20
|
}
|
|
@@ -8,14 +8,14 @@ export class PLinkTileProduct extends BaseComponentWithTheme {
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
PLinkTileProduct.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PLinkTileProduct, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
11
|
-
PLinkTileProduct.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PLinkTileProduct, selector: "p-link-tile-product,[p-link-tile-product]", inputs: { aspectRatio: "aspectRatio", description: "description", heading: "heading", href: "href", likeButton: "likeButton", liked: "liked", price: "price", rel: "rel", target: "target", theme: "theme" }, outputs: { like: "like" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
11
|
+
PLinkTileProduct.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PLinkTileProduct, selector: "p-link-tile-product,[p-link-tile-product]", inputs: { aspectRatio: "aspectRatio", description: "description", heading: "heading", href: "href", likeButton: "likeButton", liked: "liked", price: "price", priceOriginal: "priceOriginal", rel: "rel", target: "target", theme: "theme" }, outputs: { like: "like" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
12
12
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PLinkTileProduct, decorators: [{
|
|
13
13
|
type: Component,
|
|
14
14
|
args: [{
|
|
15
15
|
selector: 'p-link-tile-product,[p-link-tile-product]',
|
|
16
16
|
template: '<ng-content />',
|
|
17
|
-
inputs: ['aspectRatio', 'description', 'heading', 'href', 'likeButton', 'liked', 'price', 'rel', 'target', 'theme'],
|
|
17
|
+
inputs: ['aspectRatio', 'description', 'heading', 'href', 'likeButton', 'liked', 'price', 'priceOriginal', 'rel', 'target', 'theme'],
|
|
18
18
|
outputs: ['like']
|
|
19
19
|
}]
|
|
20
20
|
}] });
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay10aWxlLXByb2R1Y3Qud3JhcHBlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItd3JhcHBlci9zcmMvbGliL2NvbXBvbmVudHMvbGluay10aWxlLXByb2R1Y3Qud3JhcHBlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4RCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxhQUFhLENBQUM7O0FBU3JELE1BQU0sT0FBTyxnQkFBaUIsU0FBUSxzQkFBc0I7SUFONUQ7O1FBa0JFLFNBQUksR0FBRyxJQUFJLFlBQVksRUFBK0MsQ0FBQztLQUN4RTs7OEdBYlksZ0JBQWdCO2tHQUFoQixnQkFBZ0IsaVhBSmpCLGdCQUFnQjs0RkFJZixnQkFBZ0I7a0JBTjVCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDJDQUEyQztvQkFDckQsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsTUFBTSxFQUFFLENBQUMsYUFBYSxFQUFFLGFBQWEsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLFlBQVksRUFBRSxPQUFPLEVBQUUsT0FBTyxFQUFFLGVBQWUsRUFBRSxLQUFLLEVBQUUsUUFBUSxFQUFFLE9BQU8sQ0FBQztvQkFDcEksT0FBTyxFQUFFLENBQUMsTUFBTSxDQUFDO2lCQUNsQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCYXNlQ29tcG9uZW50V2l0aFRoZW1lIH0gZnJvbSAnLi4vLi4vdXRpbHMnO1xuaW1wb3J0IHR5cGUgeyBCcmVha3BvaW50Q3VzdG9taXphYmxlLCBMaW5rVGlsZVByb2R1Y3RBc3BlY3RSYXRpbywgTGlua1RpbGVQcm9kdWN0TGlrZUV2ZW50RGV0YWlsLCBMaW5rVGlsZVByb2R1Y3RUYXJnZXQsIFRoZW1lIH0gZnJvbSAnLi4vdHlwZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdwLWxpbmstdGlsZS1wcm9kdWN0LFtwLWxpbmstdGlsZS1wcm9kdWN0XScsXG4gIHRlbXBsYXRlOiAnPG5nLWNvbnRlbnQgLz4nLFxuICBpbnB1dHM6IFsnYXNwZWN0UmF0aW8nLCAnZGVzY3JpcHRpb24nLCAnaGVhZGluZycsICdocmVmJywgJ2xpa2VCdXR0b24nLCAnbGlrZWQnLCAncHJpY2UnLCAncHJpY2VPcmlnaW5hbCcsICdyZWwnLCAndGFyZ2V0JywgJ3RoZW1lJ10sXG4gIG91dHB1dHM6IFsnbGlrZSddXG59KVxuZXhwb3J0IGNsYXNzIFBMaW5rVGlsZVByb2R1Y3QgZXh0ZW5kcyBCYXNlQ29tcG9uZW50V2l0aFRoZW1lIHtcbiAgYXNwZWN0UmF0aW8/OiBCcmVha3BvaW50Q3VzdG9taXphYmxlPExpbmtUaWxlUHJvZHVjdEFzcGVjdFJhdGlvPjtcbiAgZGVzY3JpcHRpb24/OiBzdHJpbmc7XG4gIGhlYWRpbmc6IHN0cmluZztcbiAgaHJlZj86IHN0cmluZztcbiAgbGlrZUJ1dHRvbj86IGJvb2xlYW47XG4gIGxpa2VkPzogYm9vbGVhbjtcbiAgcHJpY2U6IHN0cmluZztcbiAgcHJpY2VPcmlnaW5hbD86IHN0cmluZztcbiAgcmVsPzogc3RyaW5nO1xuICB0YXJnZXQ/OiBMaW5rVGlsZVByb2R1Y3RUYXJnZXQ7XG4gIGRlY2xhcmUgdGhlbWU/OiBUaGVtZTtcbiAgbGlrZSA9IG5ldyBFdmVudEVtaXR0ZXI8Q3VzdG9tRXZlbnQ8TGlua1RpbGVQcm9kdWN0TGlrZUV2ZW50RGV0YWlsPj4oKTtcbn0iXX0=
|
|
@@ -488,13 +488,13 @@ class PLinkTileProduct extends BaseComponentWithTheme {
|
|
|
488
488
|
}
|
|
489
489
|
}
|
|
490
490
|
PLinkTileProduct.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PLinkTileProduct, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
491
|
-
PLinkTileProduct.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PLinkTileProduct, selector: "p-link-tile-product,[p-link-tile-product]", inputs: { aspectRatio: "aspectRatio", description: "description", heading: "heading", href: "href", likeButton: "likeButton", liked: "liked", price: "price", rel: "rel", target: "target", theme: "theme" }, outputs: { like: "like" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
491
|
+
PLinkTileProduct.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PLinkTileProduct, selector: "p-link-tile-product,[p-link-tile-product]", inputs: { aspectRatio: "aspectRatio", description: "description", heading: "heading", href: "href", likeButton: "likeButton", liked: "liked", price: "price", priceOriginal: "priceOriginal", rel: "rel", target: "target", theme: "theme" }, outputs: { like: "like" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
492
492
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PLinkTileProduct, decorators: [{
|
|
493
493
|
type: Component,
|
|
494
494
|
args: [{
|
|
495
495
|
selector: 'p-link-tile-product,[p-link-tile-product]',
|
|
496
496
|
template: '<ng-content />',
|
|
497
|
-
inputs: ['aspectRatio', 'description', 'heading', 'href', 'likeButton', 'liked', 'price', 'rel', 'target', 'theme'],
|
|
497
|
+
inputs: ['aspectRatio', 'description', 'heading', 'href', 'likeButton', 'liked', 'price', 'priceOriginal', 'rel', 'target', 'theme'],
|
|
498
498
|
outputs: ['like']
|
|
499
499
|
}]
|
|
500
500
|
}] });
|