@porsche-design-system/components-vue 4.2.0-rc.3 → 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,32 @@ 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
|
+
|
|
34
|
+
## [4.2.0-rc.4] - 2026-06-10
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
|
|
38
|
+
- `Radio Group`: Prevent clicks on `label-after` slot from bubbling to the host element
|
|
39
|
+
([#4477](https://github.com/porsche-design-system/porsche-design-system/pull/4477))
|
|
40
|
+
- `Flyout`, `Modal`, `Sheet`: Prevent dialog elements from reserving layout space in closed state when placed within a
|
|
41
|
+
new stacking context ([#4494](https://github.com/porsche-design-system/porsche-design-system/pull/4494))
|
|
42
|
+
|
|
17
43
|
## [4.2.0-rc.3] - 2026-06-09
|
|
18
44
|
|
|
19
45
|
### Fixed
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=require(`../../utils.cjs`);let t=require(`vue`);var n=(0,t.defineComponent)({__name:`FlyoutWrapper`,props:{aria:{},backdrop:{default:`blur`},background:{default:`canvas`},disableBackdropClick:{type:Boolean,default:!1},footerBehavior:{default:`sticky`},open:{type:Boolean,default:!1},position:{default:`end`}},emits:[`dismiss`,`motionHiddenEnd`,`motionVisibleEnd`],setup(n,{emit:r}){let i=e.usePrefix(`p-flyout`),a=n,o=(0,t.ref)(),s=r,c=()=>e.syncProperties(o,a);return(0,t.onMounted)(()=>{c(),e.addEventListenerToElementRef(o,`dismiss`,s),e.addEventListenerToElementRef(o,`motionHiddenEnd`,s),e.addEventListenerToElementRef(o,`motionVisibleEnd`,s)}),(0,t.onUpdated)(c),(e,n)=>((0,t.openBlock)(),(0,t.createBlock)((0,t.resolveDynamicComponent)((0,t.unref)(i)),{ref_key:`pdsComponentRef`,ref:o},{default:(0,t.withCtx)(()=>[(0,t.renderSlot)(e.$slots,`default`)]),_:3},512))}});exports.default=n;
|
|
1
|
+
const e=require(`../../utils.cjs`);let t=require(`vue`);var n=(0,t.defineComponent)({__name:`FlyoutWrapper`,props:{aria:{},backdrop:{default:`blur`},background:{default:`canvas`},disableBackdropClick:{type:Boolean,default:!1},footerBehavior:{default:`sticky`},fullscreen:{type:[Boolean,Object],default:!1},open:{type:Boolean,default:!1},position:{default:`end`}},emits:[`dismiss`,`motionHiddenEnd`,`motionVisibleEnd`],setup(n,{emit:r}){let i=e.usePrefix(`p-flyout`),a=n,o=(0,t.ref)(),s=r,c=()=>e.syncProperties(o,a);return(0,t.onMounted)(()=>{c(),e.addEventListenerToElementRef(o,`dismiss`,s),e.addEventListenerToElementRef(o,`motionHiddenEnd`,s),e.addEventListenerToElementRef(o,`motionVisibleEnd`,s)}),(0,t.onUpdated)(c),(e,n)=>((0,t.openBlock)(),(0,t.createBlock)((0,t.resolveDynamicComponent)((0,t.unref)(i)),{ref_key:`pdsComponentRef`,ref:o},{default:(0,t.withCtx)(()=>[(0,t.renderSlot)(e.$slots,`default`)]),_:3},512))}});exports.default=n;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { SelectedAriaAttributes, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutBackground, FlyoutFooterBehavior, FlyoutPosition } from '../types';
|
|
1
|
+
import type { SelectedAriaAttributes, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutBackground, FlyoutFooterBehavior, BreakpointCustomizable, FlyoutPosition } from '../types';
|
|
2
2
|
export type PFlyoutProps = {
|
|
3
3
|
/**
|
|
4
4
|
* Sets ARIA attributes.
|
|
@@ -24,6 +24,11 @@ export type PFlyoutProps = {
|
|
|
24
24
|
* @default 'sticky'
|
|
25
25
|
*/
|
|
26
26
|
footerBehavior?: FlyoutFooterBehavior;
|
|
27
|
+
/**
|
|
28
|
+
* If true the flyout stretches to the full viewport width with squared corners. Useful for smaller viewports where the flyout would otherwise fill the screen but still show rounded corners.
|
|
29
|
+
* @default false
|
|
30
|
+
*/
|
|
31
|
+
fullscreen?: BreakpointCustomizable<boolean>;
|
|
27
32
|
/**
|
|
28
33
|
* If true, the flyout is open.
|
|
29
34
|
* @default false
|
|
@@ -52,6 +57,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<PFlyou
|
|
|
52
57
|
backdrop: FlyoutBackdrop;
|
|
53
58
|
disableBackdropClick: boolean;
|
|
54
59
|
footerBehavior: FlyoutFooterBehavior;
|
|
60
|
+
fullscreen: BreakpointCustomizable<boolean>;
|
|
55
61
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
56
62
|
default?: (props: {}) => any;
|
|
57
63
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-vue",
|
|
3
|
-
"version": "4.2.0-rc.
|
|
3
|
+
"version": "4.2.0-rc.5",
|
|
4
4
|
"description": "Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"porsche",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"url": "https://github.com/porsche-design-system/porsche-design-system"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@porsche-design-system/components-js": "4.2.0-rc.
|
|
24
|
+
"@porsche-design-system/components-js": "4.2.0-rc.5"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"ag-grid-enterprise": ">= 35.0.0 <36.0.0",
|