@porsche-design-system/components-angular 4.3.0 → 4.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porsche-design-system/components-angular",
3
- "version": "4.3.0",
3
+ "version": "4.4.0-rc.0",
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.3.0",
25
+ "@porsche-design-system/components-js": "4.4.0-rc.0",
26
26
  "tslib": "^2.8.1"
27
27
  },
28
28
  "peerDependencies": {
@@ -5377,7 +5377,11 @@ type PPopoverProps = {
5377
5377
  */
5378
5378
  aria?: SelectedAriaAttributes<PopoverAriaAttribute>;
5379
5379
  /**
5380
- * Sets the text content displayed inside the popover panel when it is open, providing contextual help or information.
5380
+ * Reduces padding and spacing for a more compact layout, useful in space-constrained interfaces.
5381
+ */
5382
+ compact?: boolean;
5383
+ /**
5384
+ * Sets the text content displayed inside the popover panel when it is open, providing contextual help or information. Takes precedence over the default slot when both are provided.
5381
5385
  */
5382
5386
  description?: string;
5383
5387
  /**
@@ -5385,13 +5389,20 @@ type PPopoverProps = {
5385
5389
  * @default 'bottom'
5386
5390
  */
5387
5391
  direction?: PopoverDirection;
5392
+ /**
5393
+ * Controls whether the popover is visible. When set (controlled mode), visibility follows this prop and the consumer owns the open state via a slotted `button`. When omitted (uncontrolled mode), the component manages visibility itself.
5394
+ */
5395
+ open?: boolean;
5388
5396
  };
5389
5397
  declare class PPopover extends BaseComponent {
5390
5398
  aria?: SelectedAriaAttributes<PopoverAriaAttribute>;
5399
+ compact?: boolean;
5391
5400
  description?: string;
5392
5401
  direction?: PopoverDirection;
5402
+ open?: boolean;
5403
+ dismiss: EventEmitter<CustomEvent<void>>;
5393
5404
  static ɵfac: i0.ɵɵFactoryDeclaration<PPopover, never>;
5394
- static ɵcmp: i0.ɵɵComponentDeclaration<PPopover, "p-popover,[p-popover]", never, { "aria": { "alias": "aria"; "required": false; }; "description": { "alias": "description"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, {}, never, ["*"], false, never>;
5405
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPopover, "p-popover,[p-popover]", never, { "aria": { "alias": "aria"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, { "dismiss": "dismiss"; }, never, ["*"], false, never>;
5395
5406
  }
5396
5407
 
5397
5408
  type PRadioGroupOptionProps = {