@porsche-design-system/components-angular 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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-angular",
|
|
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
|
"type": "commonjs",
|
|
6
6
|
"keywords": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"url": "https://github.com/porsche-design-system/porsche-design-system"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@porsche-design-system/components-js": "4.2.0-rc.
|
|
25
|
+
"@porsche-design-system/components-js": "4.2.0-rc.5",
|
|
26
26
|
"tslib": "^2.8.1"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
@@ -4731,6 +4731,11 @@ type PFlyoutProps = {
|
|
|
4731
4731
|
* @default 'sticky'
|
|
4732
4732
|
*/
|
|
4733
4733
|
footerBehavior?: FlyoutFooterBehavior;
|
|
4734
|
+
/**
|
|
4735
|
+
* 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.
|
|
4736
|
+
* @default false
|
|
4737
|
+
*/
|
|
4738
|
+
fullscreen?: BreakpointCustomizable<boolean>;
|
|
4734
4739
|
/**
|
|
4735
4740
|
* If true, the flyout is open.
|
|
4736
4741
|
* @default false
|
|
@@ -4748,13 +4753,14 @@ declare class PFlyout extends BaseComponent {
|
|
|
4748
4753
|
background?: FlyoutBackground;
|
|
4749
4754
|
disableBackdropClick?: boolean;
|
|
4750
4755
|
footerBehavior?: FlyoutFooterBehavior;
|
|
4756
|
+
fullscreen?: BreakpointCustomizable<boolean>;
|
|
4751
4757
|
open: boolean;
|
|
4752
4758
|
position?: FlyoutPosition;
|
|
4753
4759
|
dismiss: EventEmitter<CustomEvent<void>>;
|
|
4754
4760
|
motionHiddenEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
4755
4761
|
motionVisibleEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
4756
4762
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFlyout, never>;
|
|
4757
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFlyout, "p-flyout,[p-flyout]", never, { "aria": { "alias": "aria"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "background": { "alias": "background"; "required": false; }; "disableBackdropClick": { "alias": "disableBackdropClick"; "required": false; }; "footerBehavior": { "alias": "footerBehavior"; "required": false; }; "open": { "alias": "open"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, { "dismiss": "dismiss"; "motionHiddenEnd": "motionHiddenEnd"; "motionVisibleEnd": "motionVisibleEnd"; }, never, ["*"], false, never>;
|
|
4763
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFlyout, "p-flyout,[p-flyout]", never, { "aria": { "alias": "aria"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "background": { "alias": "background"; "required": false; }; "disableBackdropClick": { "alias": "disableBackdropClick"; "required": false; }; "footerBehavior": { "alias": "footerBehavior"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "open": { "alias": "open"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, { "dismiss": "dismiss"; "motionHiddenEnd": "motionHiddenEnd"; "motionVisibleEnd": "motionVisibleEnd"; }, never, ["*"], false, never>;
|
|
4758
4764
|
}
|
|
4759
4765
|
|
|
4760
4766
|
type PHeadingProps = {
|