@porsche-design-system/components-angular 3.15.0-rc.1 → 3.15.0-rc.2
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 +27 -3
- package/esm/lib/components/accordion.wrapper.d.ts +5 -2
- package/esm/lib/components/banner.wrapper.d.ts +3 -2
- package/esm/lib/components/inline-notification.wrapper.d.ts +3 -2
- package/esm/lib/types.d.ts +24 -20
- package/esm2022/lib/components/accordion.wrapper.mjs +6 -3
- package/esm2022/lib/components/banner.wrapper.mjs +4 -3
- package/esm2022/lib/components/inline-notification.wrapper.mjs +4 -3
- package/esm2022/lib/types.mjs +1 -1
- package/fesm2022/porsche-design-system-components-angular.mjs +11 -6
- package/fesm2022/porsche-design-system-components-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -49,22 +49,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImpor
|
|
|
49
49
|
class PAccordion extends BaseComponentWithTheme {
|
|
50
50
|
compact;
|
|
51
51
|
heading;
|
|
52
|
+
headingTag;
|
|
52
53
|
open;
|
|
53
54
|
size;
|
|
55
|
+
sticky;
|
|
56
|
+
/** @deprecated */
|
|
54
57
|
tag;
|
|
55
58
|
theme;
|
|
56
59
|
/** @deprecated */
|
|
57
60
|
accordionChange = new EventEmitter();
|
|
58
61
|
update = new EventEmitter();
|
|
59
62
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: PAccordion, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
60
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.3", type: PAccordion, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", open: "open", size: "size", tag: "tag", theme: "theme" }, outputs: { accordionChange: "accordionChange", update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
63
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.3", type: PAccordion, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", headingTag: "headingTag", open: "open", size: "size", sticky: "sticky", tag: "tag", theme: "theme" }, outputs: { accordionChange: "accordionChange", update: "update" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
61
64
|
}
|
|
62
65
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: PAccordion, decorators: [{
|
|
63
66
|
type: Component,
|
|
64
67
|
args: [{
|
|
65
68
|
selector: 'p-accordion,[p-accordion]',
|
|
66
69
|
template: '<ng-content />',
|
|
67
|
-
inputs: ['compact', 'heading', 'open', 'size', 'tag', 'theme'],
|
|
70
|
+
inputs: ['compact', 'heading', 'headingTag', 'open', 'size', 'sticky', 'tag', 'theme'],
|
|
68
71
|
outputs: ['accordionChange', 'update']
|
|
69
72
|
}]
|
|
70
73
|
}] });
|
|
@@ -73,6 +76,7 @@ class PBanner extends BaseComponentWithTheme {
|
|
|
73
76
|
description;
|
|
74
77
|
dismissButton;
|
|
75
78
|
heading;
|
|
79
|
+
headingTag;
|
|
76
80
|
open;
|
|
77
81
|
/** @deprecated */
|
|
78
82
|
persistent;
|
|
@@ -82,14 +86,14 @@ class PBanner extends BaseComponentWithTheme {
|
|
|
82
86
|
width;
|
|
83
87
|
dismiss = new EventEmitter();
|
|
84
88
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: PBanner, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
85
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.3", type: PBanner, selector: "p-banner,[p-banner]", inputs: { description: "description", dismissButton: "dismissButton", heading: "heading", open: "open", persistent: "persistent", state: "state", theme: "theme", width: "width" }, outputs: { dismiss: "dismiss" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
89
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.3", type: PBanner, selector: "p-banner,[p-banner]", inputs: { description: "description", dismissButton: "dismissButton", heading: "heading", headingTag: "headingTag", open: "open", persistent: "persistent", state: "state", theme: "theme", width: "width" }, outputs: { dismiss: "dismiss" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
86
90
|
}
|
|
87
91
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: PBanner, decorators: [{
|
|
88
92
|
type: Component,
|
|
89
93
|
args: [{
|
|
90
94
|
selector: 'p-banner,[p-banner]',
|
|
91
95
|
template: '<ng-content />',
|
|
92
|
-
inputs: ['description', 'dismissButton', 'heading', 'open', 'persistent', 'state', 'theme', 'width'],
|
|
96
|
+
inputs: ['description', 'dismissButton', 'heading', 'headingTag', 'open', 'persistent', 'state', 'theme', 'width'],
|
|
93
97
|
outputs: ['dismiss']
|
|
94
98
|
}]
|
|
95
99
|
}] });
|
|
@@ -548,6 +552,7 @@ class PInlineNotification extends BaseComponentWithTheme {
|
|
|
548
552
|
description;
|
|
549
553
|
dismissButton;
|
|
550
554
|
heading;
|
|
555
|
+
headingTag;
|
|
551
556
|
/** @deprecated */
|
|
552
557
|
persistent;
|
|
553
558
|
state;
|
|
@@ -555,14 +560,14 @@ class PInlineNotification extends BaseComponentWithTheme {
|
|
|
555
560
|
action = new EventEmitter();
|
|
556
561
|
dismiss = new EventEmitter();
|
|
557
562
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: PInlineNotification, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
558
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.3", type: PInlineNotification, selector: "p-inline-notification,[p-inline-notification]", inputs: { actionIcon: "actionIcon", actionLabel: "actionLabel", actionLoading: "actionLoading", description: "description", dismissButton: "dismissButton", heading: "heading", persistent: "persistent", state: "state", theme: "theme" }, outputs: { action: "action", dismiss: "dismiss" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
563
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.3", type: PInlineNotification, selector: "p-inline-notification,[p-inline-notification]", inputs: { actionIcon: "actionIcon", actionLabel: "actionLabel", actionLoading: "actionLoading", description: "description", dismissButton: "dismissButton", heading: "heading", headingTag: "headingTag", persistent: "persistent", state: "state", theme: "theme" }, outputs: { action: "action", dismiss: "dismiss" }, usesInheritance: true, ngImport: i0, template: '<ng-content />', isInline: true });
|
|
559
564
|
}
|
|
560
565
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: PInlineNotification, decorators: [{
|
|
561
566
|
type: Component,
|
|
562
567
|
args: [{
|
|
563
568
|
selector: 'p-inline-notification,[p-inline-notification]',
|
|
564
569
|
template: '<ng-content />',
|
|
565
|
-
inputs: ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'dismissButton', 'heading', 'persistent', 'state', 'theme'],
|
|
570
|
+
inputs: ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'dismissButton', 'heading', 'headingTag', 'persistent', 'state', 'theme'],
|
|
566
571
|
outputs: ['action', 'dismiss']
|
|
567
572
|
}]
|
|
568
573
|
}] });
|