@porsche-design-system/components-angular 4.2.0-rc.4 → 4.2.0-rc.5
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,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
14
14
|
|
|
15
15
|
## [Unreleased]
|
|
16
16
|
|
|
17
|
+
## [4.2.0-rc.5] - 2026-06-12
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- `Flyout`: Prop `fullscreen` to stretch the flyout to the full viewport width with squared corners, useful for smaller
|
|
22
|
+
viewports ([#4498](https://github.com/porsche-design-system/porsche-design-system/pull/4498))
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- `Flyout`, `Modal`, `Sheet` ([#4498](https://github.com/porsche-design-system/porsche-design-system/pull/4498)):
|
|
27
|
+
- Nested dialog elements no longer cause rendering issues in Chromium
|
|
28
|
+
- Keep the dialog element on the `#top-layer` during the fade-out animation in Safari and Firefox, so closing
|
|
29
|
+
(especially nested) dialogs no longer drop behind surrounding content
|
|
30
|
+
- `Banner`: Keep the popover on the `#top-layer` during the fade-out animation in Safari and Firefox, so it no longer
|
|
31
|
+
drops behind surrounding content while closing
|
|
32
|
+
([#4498](https://github.com/porsche-design-system/porsche-design-system/pull/4498))
|
|
33
|
+
|
|
17
34
|
## [4.2.0-rc.4] - 2026-06-10
|
|
18
35
|
|
|
19
36
|
### Fixed
|
|
@@ -454,20 +454,21 @@ class PFlyout extends BaseComponent {
|
|
|
454
454
|
background;
|
|
455
455
|
disableBackdropClick;
|
|
456
456
|
footerBehavior;
|
|
457
|
+
fullscreen;
|
|
457
458
|
open;
|
|
458
459
|
position;
|
|
459
460
|
dismiss = new EventEmitter();
|
|
460
461
|
motionHiddenEnd = new EventEmitter();
|
|
461
462
|
motionVisibleEnd = new EventEmitter();
|
|
462
463
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: PFlyout, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
463
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.8", type: PFlyout, isStandalone: false, selector: "p-flyout,[p-flyout]", inputs: { aria: "aria", backdrop: "backdrop", background: "background", disableBackdropClick: "disableBackdropClick", footerBehavior: "footerBehavior", open: "open", position: "position" }, outputs: { dismiss: "dismiss", motionHiddenEnd: "motionHiddenEnd", motionVisibleEnd: "motionVisibleEnd" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
464
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.8", type: PFlyout, isStandalone: false, selector: "p-flyout,[p-flyout]", inputs: { aria: "aria", backdrop: "backdrop", background: "background", disableBackdropClick: "disableBackdropClick", footerBehavior: "footerBehavior", fullscreen: "fullscreen", open: "open", position: "position" }, outputs: { dismiss: "dismiss", motionHiddenEnd: "motionHiddenEnd", motionVisibleEnd: "motionVisibleEnd" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
464
465
|
}
|
|
465
466
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: PFlyout, decorators: [{
|
|
466
467
|
type: Component,
|
|
467
468
|
args: [{
|
|
468
469
|
selector: 'p-flyout,[p-flyout]',
|
|
469
470
|
template: '<ng-content />',
|
|
470
|
-
inputs: ['aria', 'backdrop', 'background', 'disableBackdropClick', 'footerBehavior', 'open', 'position'],
|
|
471
|
+
inputs: ['aria', 'backdrop', 'background', 'disableBackdropClick', 'footerBehavior', 'fullscreen', 'open', 'position'],
|
|
471
472
|
outputs: ['dismiss', 'motionHiddenEnd', 'motionVisibleEnd'],
|
|
472
473
|
standalone: false
|
|
473
474
|
}]
|