@porsche-design-system/components-angular 3.1.0-rc.1 → 3.1.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 +20 -0
- package/esm2020/lib/components/barrel.mjs +4 -1
- package/esm2020/lib/components/flyout.wrapper.mjs +38 -0
- package/esm2020/lib/types.mjs +1 -1
- package/esm2020/porsche-design-system.module.mjs +47 -46
- package/fesm2015/porsche-design-system-components-angular.mjs +130 -91
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +126 -91
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/barrel.d.ts +3 -1
- package/lib/components/flyout.wrapper.d.ts +15 -0
- package/lib/types.d.ts +9 -0
- package/package.json +2 -2
- package/porsche-design-system.module.d.ts +46 -45
|
@@ -43,7 +43,7 @@ function ProxyCmp({ inputs /*, methods*/ }) {
|
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
var __decorate$
|
|
46
|
+
var __decorate$Y = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
47
47
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
48
48
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
49
49
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -53,21 +53,21 @@ var __decorate$X = (this && this.__decorate) || function (decorators, target, ke
|
|
|
53
53
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
54
54
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
55
55
|
};
|
|
56
|
-
const inputs$
|
|
57
|
-
const outputs$
|
|
56
|
+
const inputs$T = ['compact', 'heading', 'open', 'size', 'tag', 'theme'];
|
|
57
|
+
const outputs$d = ['accordionChange', 'update'];
|
|
58
58
|
let PAccordion = class PAccordion {
|
|
59
59
|
constructor(c, r, z) {
|
|
60
60
|
this.z = z;
|
|
61
61
|
c.detach();
|
|
62
62
|
this.el = r.nativeElement;
|
|
63
|
-
proxyOutputs(this, outputs$
|
|
63
|
+
proxyOutputs(this, outputs$d);
|
|
64
64
|
}
|
|
65
65
|
};
|
|
66
66
|
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
67
67
|
PAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
68
|
-
PAccordion = __decorate$
|
|
68
|
+
PAccordion = __decorate$Y([
|
|
69
69
|
ProxyCmp({
|
|
70
|
-
inputs: inputs$
|
|
70
|
+
inputs: inputs$T
|
|
71
71
|
})
|
|
72
72
|
], PAccordion);
|
|
73
73
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PAccordion, decorators: [{
|
|
@@ -76,12 +76,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
76
76
|
selector: 'p-accordion,[p-accordion]',
|
|
77
77
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
78
78
|
template: '<ng-content></ng-content>',
|
|
79
|
-
inputs: inputs$
|
|
80
|
-
outputs: outputs$
|
|
79
|
+
inputs: inputs$T,
|
|
80
|
+
outputs: outputs$d
|
|
81
81
|
}]
|
|
82
82
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
83
83
|
|
|
84
|
-
var __decorate$
|
|
84
|
+
var __decorate$X = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
85
85
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
86
86
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
87
87
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -91,21 +91,21 @@ var __decorate$W = (this && this.__decorate) || function (decorators, target, ke
|
|
|
91
91
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
92
92
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
93
93
|
};
|
|
94
|
-
const inputs$
|
|
95
|
-
const outputs$
|
|
94
|
+
const inputs$S = ['description', 'dismissButton', 'heading', 'open', 'persistent', 'state', 'theme', 'width'];
|
|
95
|
+
const outputs$c = ['dismiss'];
|
|
96
96
|
let PBanner = class PBanner {
|
|
97
97
|
constructor(c, r, z) {
|
|
98
98
|
this.z = z;
|
|
99
99
|
c.detach();
|
|
100
100
|
this.el = r.nativeElement;
|
|
101
|
-
proxyOutputs(this, outputs$
|
|
101
|
+
proxyOutputs(this, outputs$c);
|
|
102
102
|
}
|
|
103
103
|
};
|
|
104
104
|
PBanner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
105
105
|
PBanner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
106
|
-
PBanner = __decorate$
|
|
106
|
+
PBanner = __decorate$X([
|
|
107
107
|
ProxyCmp({
|
|
108
|
-
inputs: inputs$
|
|
108
|
+
inputs: inputs$S
|
|
109
109
|
})
|
|
110
110
|
], PBanner);
|
|
111
111
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PBanner, decorators: [{
|
|
@@ -114,12 +114,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
114
114
|
selector: 'p-banner,[p-banner]',
|
|
115
115
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
116
116
|
template: '<ng-content></ng-content>',
|
|
117
|
-
inputs: inputs$
|
|
118
|
-
outputs: outputs$
|
|
117
|
+
inputs: inputs$S,
|
|
118
|
+
outputs: outputs$c
|
|
119
119
|
}]
|
|
120
120
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
121
121
|
|
|
122
|
-
var __decorate$
|
|
122
|
+
var __decorate$W = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
123
123
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
124
124
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
125
125
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -129,7 +129,7 @@ var __decorate$V = (this && this.__decorate) || function (decorators, target, ke
|
|
|
129
129
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
130
130
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
131
131
|
};
|
|
132
|
-
const inputs$
|
|
132
|
+
const inputs$R = ['aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'theme', 'type', 'variant'];
|
|
133
133
|
let PButton = class PButton {
|
|
134
134
|
constructor(c, r, z) {
|
|
135
135
|
this.z = z;
|
|
@@ -139,9 +139,9 @@ let PButton = class PButton {
|
|
|
139
139
|
};
|
|
140
140
|
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
141
141
|
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PButton, selector: "p-button,[p-button]", inputs: { aria: "aria", disabled: "disabled", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", theme: "theme", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
142
|
-
PButton = __decorate$
|
|
142
|
+
PButton = __decorate$W([
|
|
143
143
|
ProxyCmp({
|
|
144
|
-
inputs: inputs$
|
|
144
|
+
inputs: inputs$R
|
|
145
145
|
})
|
|
146
146
|
], PButton);
|
|
147
147
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButton, decorators: [{
|
|
@@ -150,11 +150,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
150
150
|
selector: 'p-button,[p-button]',
|
|
151
151
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
152
152
|
template: '<ng-content></ng-content>',
|
|
153
|
-
inputs: inputs$
|
|
153
|
+
inputs: inputs$R
|
|
154
154
|
}]
|
|
155
155
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
156
156
|
|
|
157
|
-
var __decorate$
|
|
157
|
+
var __decorate$V = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
158
158
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
159
159
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
160
160
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -164,7 +164,7 @@ var __decorate$U = (this && this.__decorate) || function (decorators, target, ke
|
|
|
164
164
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
165
165
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
166
166
|
};
|
|
167
|
-
const inputs$
|
|
167
|
+
const inputs$Q = ['direction'];
|
|
168
168
|
let PButtonGroup = class PButtonGroup {
|
|
169
169
|
constructor(c, r, z) {
|
|
170
170
|
this.z = z;
|
|
@@ -174,9 +174,9 @@ let PButtonGroup = class PButtonGroup {
|
|
|
174
174
|
};
|
|
175
175
|
PButtonGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
176
176
|
PButtonGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PButtonGroup, selector: "p-button-group,[p-button-group]", inputs: { direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
177
|
-
PButtonGroup = __decorate$
|
|
177
|
+
PButtonGroup = __decorate$V([
|
|
178
178
|
ProxyCmp({
|
|
179
|
-
inputs: inputs$
|
|
179
|
+
inputs: inputs$Q
|
|
180
180
|
})
|
|
181
181
|
], PButtonGroup);
|
|
182
182
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonGroup, decorators: [{
|
|
@@ -185,11 +185,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
185
185
|
selector: 'p-button-group,[p-button-group]',
|
|
186
186
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
187
187
|
template: '<ng-content></ng-content>',
|
|
188
|
-
inputs: inputs$
|
|
188
|
+
inputs: inputs$Q
|
|
189
189
|
}]
|
|
190
190
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
191
191
|
|
|
192
|
-
var __decorate$
|
|
192
|
+
var __decorate$U = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
193
193
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
194
194
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
195
195
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -199,7 +199,7 @@ var __decorate$T = (this && this.__decorate) || function (decorators, target, ke
|
|
|
199
199
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
200
200
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
201
201
|
};
|
|
202
|
-
const inputs$
|
|
202
|
+
const inputs$P = ['active', 'alignLabel', 'aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'size', 'stretch', 'theme', 'type', 'weight'];
|
|
203
203
|
let PButtonPure = class PButtonPure {
|
|
204
204
|
constructor(c, r, z) {
|
|
205
205
|
this.z = z;
|
|
@@ -209,9 +209,9 @@ let PButtonPure = class PButtonPure {
|
|
|
209
209
|
};
|
|
210
210
|
PButtonPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonPure, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
211
211
|
PButtonPure.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PButtonPure, selector: "p-button-pure,[p-button-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", disabled: "disabled", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", size: "size", stretch: "stretch", theme: "theme", type: "type", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
212
|
-
PButtonPure = __decorate$
|
|
212
|
+
PButtonPure = __decorate$U([
|
|
213
213
|
ProxyCmp({
|
|
214
|
-
inputs: inputs$
|
|
214
|
+
inputs: inputs$P
|
|
215
215
|
})
|
|
216
216
|
], PButtonPure);
|
|
217
217
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonPure, decorators: [{
|
|
@@ -220,11 +220,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
220
220
|
selector: 'p-button-pure,[p-button-pure]',
|
|
221
221
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
222
222
|
template: '<ng-content></ng-content>',
|
|
223
|
-
inputs: inputs$
|
|
223
|
+
inputs: inputs$P
|
|
224
224
|
}]
|
|
225
225
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
226
226
|
|
|
227
|
-
var __decorate$
|
|
227
|
+
var __decorate$T = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
228
228
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
229
229
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
230
230
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -234,7 +234,7 @@ var __decorate$S = (this && this.__decorate) || function (decorators, target, ke
|
|
|
234
234
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
235
235
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
236
236
|
};
|
|
237
|
-
const inputs$
|
|
237
|
+
const inputs$O = ['align', 'aria', 'aspectRatio', 'compact', 'description', 'disabled', 'gradient', 'icon', 'iconSource', 'label', 'loading', 'size', 'type', 'weight'];
|
|
238
238
|
let PButtonTile = class PButtonTile {
|
|
239
239
|
constructor(c, r, z) {
|
|
240
240
|
this.z = z;
|
|
@@ -244,9 +244,9 @@ let PButtonTile = class PButtonTile {
|
|
|
244
244
|
};
|
|
245
245
|
PButtonTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
246
246
|
PButtonTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PButtonTile, selector: "p-button-tile,[p-button-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio", compact: "compact", description: "description", disabled: "disabled", gradient: "gradient", icon: "icon", iconSource: "iconSource", label: "label", loading: "loading", size: "size", type: "type", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
247
|
-
PButtonTile = __decorate$
|
|
247
|
+
PButtonTile = __decorate$T([
|
|
248
248
|
ProxyCmp({
|
|
249
|
-
inputs: inputs$
|
|
249
|
+
inputs: inputs$O
|
|
250
250
|
})
|
|
251
251
|
], PButtonTile);
|
|
252
252
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonTile, decorators: [{
|
|
@@ -255,11 +255,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
255
255
|
selector: 'p-button-tile,[p-button-tile]',
|
|
256
256
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
257
257
|
template: '<ng-content></ng-content>',
|
|
258
|
-
inputs: inputs$
|
|
258
|
+
inputs: inputs$O
|
|
259
259
|
}]
|
|
260
260
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
261
261
|
|
|
262
|
-
var __decorate$
|
|
262
|
+
var __decorate$S = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
263
263
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
264
264
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
265
265
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -269,21 +269,21 @@ var __decorate$R = (this && this.__decorate) || function (decorators, target, ke
|
|
|
269
269
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
270
270
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
271
271
|
};
|
|
272
|
-
const inputs$
|
|
273
|
-
const outputs$
|
|
272
|
+
const inputs$N = ['activeSlideIndex', 'alignHeader', 'description', 'disablePagination', 'heading', 'intl', 'pagination', 'rewind', 'slidesPerPage', 'theme', 'width', 'wrapContent'];
|
|
273
|
+
const outputs$b = ['carouselChange', 'update'];
|
|
274
274
|
let PCarousel = class PCarousel {
|
|
275
275
|
constructor(c, r, z) {
|
|
276
276
|
this.z = z;
|
|
277
277
|
c.detach();
|
|
278
278
|
this.el = r.nativeElement;
|
|
279
|
-
proxyOutputs(this, outputs$
|
|
279
|
+
proxyOutputs(this, outputs$b);
|
|
280
280
|
}
|
|
281
281
|
};
|
|
282
282
|
PCarousel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
283
283
|
PCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PCarousel, selector: "p-carousel,[p-carousel]", inputs: { activeSlideIndex: "activeSlideIndex", alignHeader: "alignHeader", description: "description", disablePagination: "disablePagination", heading: "heading", intl: "intl", pagination: "pagination", rewind: "rewind", slidesPerPage: "slidesPerPage", theme: "theme", width: "width", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange", update: "update" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
284
|
-
PCarousel = __decorate$
|
|
284
|
+
PCarousel = __decorate$S([
|
|
285
285
|
ProxyCmp({
|
|
286
|
-
inputs: inputs$
|
|
286
|
+
inputs: inputs$N
|
|
287
287
|
})
|
|
288
288
|
], PCarousel);
|
|
289
289
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCarousel, decorators: [{
|
|
@@ -292,12 +292,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
292
292
|
selector: 'p-carousel,[p-carousel]',
|
|
293
293
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
294
294
|
template: '<ng-content></ng-content>',
|
|
295
|
-
inputs: inputs$
|
|
296
|
-
outputs: outputs$
|
|
295
|
+
inputs: inputs$N,
|
|
296
|
+
outputs: outputs$b
|
|
297
297
|
}]
|
|
298
298
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
299
299
|
|
|
300
|
-
var __decorate$
|
|
300
|
+
var __decorate$R = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
301
301
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
302
302
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
303
303
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -307,7 +307,7 @@ var __decorate$Q = (this && this.__decorate) || function (decorators, target, ke
|
|
|
307
307
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
308
308
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
309
309
|
};
|
|
310
|
-
const inputs$
|
|
310
|
+
const inputs$M = ['hideLabel', 'label', 'loading', 'message', 'state', 'theme'];
|
|
311
311
|
let PCheckboxWrapper = class PCheckboxWrapper {
|
|
312
312
|
constructor(c, r, z) {
|
|
313
313
|
this.z = z;
|
|
@@ -317,9 +317,9 @@ let PCheckboxWrapper = class PCheckboxWrapper {
|
|
|
317
317
|
};
|
|
318
318
|
PCheckboxWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCheckboxWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
319
319
|
PCheckboxWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PCheckboxWrapper, selector: "p-checkbox-wrapper,[p-checkbox-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", loading: "loading", message: "message", state: "state", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
320
|
-
PCheckboxWrapper = __decorate$
|
|
320
|
+
PCheckboxWrapper = __decorate$R([
|
|
321
321
|
ProxyCmp({
|
|
322
|
-
inputs: inputs$
|
|
322
|
+
inputs: inputs$M
|
|
323
323
|
})
|
|
324
324
|
], PCheckboxWrapper);
|
|
325
325
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCheckboxWrapper, decorators: [{
|
|
@@ -328,11 +328,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
328
328
|
selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',
|
|
329
329
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
330
330
|
template: '<ng-content></ng-content>',
|
|
331
|
-
inputs: inputs$
|
|
331
|
+
inputs: inputs$M
|
|
332
332
|
}]
|
|
333
333
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
334
334
|
|
|
335
|
-
var __decorate$
|
|
335
|
+
var __decorate$Q = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
336
336
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
337
337
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
338
338
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -342,7 +342,7 @@ var __decorate$P = (this && this.__decorate) || function (decorators, target, ke
|
|
|
342
342
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
343
343
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
344
344
|
};
|
|
345
|
-
const inputs$
|
|
345
|
+
const inputs$L = ['backgroundColor', 'theme', 'width'];
|
|
346
346
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
347
347
|
let PContentWrapper = class PContentWrapper {
|
|
348
348
|
constructor(c, r, z) {
|
|
@@ -353,9 +353,9 @@ let PContentWrapper = class PContentWrapper {
|
|
|
353
353
|
};
|
|
354
354
|
PContentWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PContentWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
355
355
|
PContentWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PContentWrapper, selector: "p-content-wrapper,[p-content-wrapper]", inputs: { backgroundColor: "backgroundColor", theme: "theme", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
356
|
-
PContentWrapper = __decorate$
|
|
356
|
+
PContentWrapper = __decorate$Q([
|
|
357
357
|
ProxyCmp({
|
|
358
|
-
inputs: inputs$
|
|
358
|
+
inputs: inputs$L
|
|
359
359
|
})
|
|
360
360
|
], PContentWrapper);
|
|
361
361
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PContentWrapper, decorators: [{
|
|
@@ -364,11 +364,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
364
364
|
selector: 'p-content-wrapper,[p-content-wrapper]',
|
|
365
365
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
366
366
|
template: '<ng-content></ng-content>',
|
|
367
|
-
inputs: inputs$
|
|
367
|
+
inputs: inputs$L
|
|
368
368
|
}]
|
|
369
369
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
370
370
|
|
|
371
|
-
var __decorate$
|
|
371
|
+
var __decorate$P = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
372
372
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
373
373
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
374
374
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -378,7 +378,7 @@ var __decorate$O = (this && this.__decorate) || function (decorators, target, ke
|
|
|
378
378
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
379
379
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
380
380
|
};
|
|
381
|
-
const inputs$
|
|
381
|
+
const inputs$K = ['aria', 'href', 'target'];
|
|
382
382
|
let PCrest = class PCrest {
|
|
383
383
|
constructor(c, r, z) {
|
|
384
384
|
this.z = z;
|
|
@@ -388,9 +388,9 @@ let PCrest = class PCrest {
|
|
|
388
388
|
};
|
|
389
389
|
PCrest.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCrest, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
390
390
|
PCrest.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PCrest, selector: "p-crest,[p-crest]", inputs: { aria: "aria", href: "href", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
391
|
-
PCrest = __decorate$
|
|
391
|
+
PCrest = __decorate$P([
|
|
392
392
|
ProxyCmp({
|
|
393
|
-
inputs: inputs$
|
|
393
|
+
inputs: inputs$K
|
|
394
394
|
})
|
|
395
395
|
], PCrest);
|
|
396
396
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCrest, decorators: [{
|
|
@@ -399,11 +399,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
399
399
|
selector: 'p-crest,[p-crest]',
|
|
400
400
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
401
401
|
template: '<ng-content></ng-content>',
|
|
402
|
-
inputs: inputs$
|
|
402
|
+
inputs: inputs$K
|
|
403
403
|
}]
|
|
404
404
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
405
405
|
|
|
406
|
-
var __decorate$
|
|
406
|
+
var __decorate$O = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
407
407
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
408
408
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
409
409
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -413,7 +413,7 @@ var __decorate$N = (this && this.__decorate) || function (decorators, target, ke
|
|
|
413
413
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
414
414
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
415
415
|
};
|
|
416
|
-
const inputs$
|
|
416
|
+
const inputs$J = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'];
|
|
417
417
|
let PDisplay = class PDisplay {
|
|
418
418
|
constructor(c, r, z) {
|
|
419
419
|
this.z = z;
|
|
@@ -423,9 +423,9 @@ let PDisplay = class PDisplay {
|
|
|
423
423
|
};
|
|
424
424
|
PDisplay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PDisplay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
425
425
|
PDisplay.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PDisplay, selector: "p-display,[p-display]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
426
|
-
PDisplay = __decorate$
|
|
426
|
+
PDisplay = __decorate$O([
|
|
427
427
|
ProxyCmp({
|
|
428
|
-
inputs: inputs$
|
|
428
|
+
inputs: inputs$J
|
|
429
429
|
})
|
|
430
430
|
], PDisplay);
|
|
431
431
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PDisplay, decorators: [{
|
|
@@ -434,11 +434,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
434
434
|
selector: 'p-display,[p-display]',
|
|
435
435
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
436
436
|
template: '<ng-content></ng-content>',
|
|
437
|
-
inputs: inputs$
|
|
437
|
+
inputs: inputs$J
|
|
438
438
|
}]
|
|
439
439
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
440
440
|
|
|
441
|
-
var __decorate$
|
|
441
|
+
var __decorate$N = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
442
442
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
443
443
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
444
444
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -448,7 +448,7 @@ var __decorate$M = (this && this.__decorate) || function (decorators, target, ke
|
|
|
448
448
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
449
449
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
450
450
|
};
|
|
451
|
-
const inputs$
|
|
451
|
+
const inputs$I = ['color', 'direction', 'orientation', 'theme'];
|
|
452
452
|
let PDivider = class PDivider {
|
|
453
453
|
constructor(c, r, z) {
|
|
454
454
|
this.z = z;
|
|
@@ -458,9 +458,9 @@ let PDivider = class PDivider {
|
|
|
458
458
|
};
|
|
459
459
|
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
460
460
|
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PDivider, selector: "p-divider,[p-divider]", inputs: { color: "color", direction: "direction", orientation: "orientation", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
461
|
-
PDivider = __decorate$
|
|
461
|
+
PDivider = __decorate$N([
|
|
462
462
|
ProxyCmp({
|
|
463
|
-
inputs: inputs$
|
|
463
|
+
inputs: inputs$I
|
|
464
464
|
})
|
|
465
465
|
], PDivider);
|
|
466
466
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PDivider, decorators: [{
|
|
@@ -469,11 +469,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
469
469
|
selector: 'p-divider,[p-divider]',
|
|
470
470
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
471
471
|
template: '<ng-content></ng-content>',
|
|
472
|
-
inputs: inputs$
|
|
472
|
+
inputs: inputs$I
|
|
473
473
|
}]
|
|
474
474
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
475
475
|
|
|
476
|
-
var __decorate$
|
|
476
|
+
var __decorate$M = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
477
477
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
478
478
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
479
479
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -483,7 +483,7 @@ var __decorate$L = (this && this.__decorate) || function (decorators, target, ke
|
|
|
483
483
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
484
484
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
485
485
|
};
|
|
486
|
-
const inputs$
|
|
486
|
+
const inputs$H = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
487
487
|
let PFieldset = class PFieldset {
|
|
488
488
|
constructor(c, r, z) {
|
|
489
489
|
this.z = z;
|
|
@@ -493,9 +493,9 @@ let PFieldset = class PFieldset {
|
|
|
493
493
|
};
|
|
494
494
|
PFieldset.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFieldset, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
495
495
|
PFieldset.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PFieldset, selector: "p-fieldset,[p-fieldset]", inputs: { label: "label", labelSize: "labelSize", message: "message", required: "required", state: "state", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
496
|
-
PFieldset = __decorate$
|
|
496
|
+
PFieldset = __decorate$M([
|
|
497
497
|
ProxyCmp({
|
|
498
|
-
inputs: inputs$
|
|
498
|
+
inputs: inputs$H
|
|
499
499
|
})
|
|
500
500
|
], PFieldset);
|
|
501
501
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFieldset, decorators: [{
|
|
@@ -504,11 +504,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
504
504
|
selector: 'p-fieldset,[p-fieldset]',
|
|
505
505
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
506
506
|
template: '<ng-content></ng-content>',
|
|
507
|
-
inputs: inputs$
|
|
507
|
+
inputs: inputs$H
|
|
508
508
|
}]
|
|
509
509
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
510
510
|
|
|
511
|
-
var __decorate$
|
|
511
|
+
var __decorate$L = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
512
512
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
513
513
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
514
514
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -518,7 +518,7 @@ var __decorate$K = (this && this.__decorate) || function (decorators, target, ke
|
|
|
518
518
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
519
519
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
520
520
|
};
|
|
521
|
-
const inputs$
|
|
521
|
+
const inputs$G = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
522
522
|
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-fieldset" instead. */
|
|
523
523
|
let PFieldsetWrapper = class PFieldsetWrapper {
|
|
524
524
|
constructor(c, r, z) {
|
|
@@ -529,9 +529,9 @@ let PFieldsetWrapper = class PFieldsetWrapper {
|
|
|
529
529
|
};
|
|
530
530
|
PFieldsetWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFieldsetWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
531
531
|
PFieldsetWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PFieldsetWrapper, selector: "p-fieldset-wrapper,[p-fieldset-wrapper]", inputs: { label: "label", labelSize: "labelSize", message: "message", required: "required", state: "state", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
532
|
-
PFieldsetWrapper = __decorate$
|
|
532
|
+
PFieldsetWrapper = __decorate$L([
|
|
533
533
|
ProxyCmp({
|
|
534
|
-
inputs: inputs$
|
|
534
|
+
inputs: inputs$G
|
|
535
535
|
})
|
|
536
536
|
], PFieldsetWrapper);
|
|
537
537
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFieldsetWrapper, decorators: [{
|
|
@@ -540,11 +540,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
540
540
|
selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',
|
|
541
541
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
542
542
|
template: '<ng-content></ng-content>',
|
|
543
|
-
inputs: inputs$
|
|
543
|
+
inputs: inputs$G
|
|
544
544
|
}]
|
|
545
545
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
546
546
|
|
|
547
|
-
var __decorate$
|
|
547
|
+
var __decorate$K = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
548
548
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
549
549
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
550
550
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -554,7 +554,7 @@ var __decorate$J = (this && this.__decorate) || function (decorators, target, ke
|
|
|
554
554
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
555
555
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
556
556
|
};
|
|
557
|
-
const inputs$
|
|
557
|
+
const inputs$F = ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'];
|
|
558
558
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
559
559
|
let PFlex = class PFlex {
|
|
560
560
|
constructor(c, r, z) {
|
|
@@ -565,9 +565,9 @@ let PFlex = class PFlex {
|
|
|
565
565
|
};
|
|
566
566
|
PFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlex, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
567
567
|
PFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PFlex, selector: "p-flex,[p-flex]", inputs: { alignContent: "alignContent", alignItems: "alignItems", direction: "direction", inline: "inline", justifyContent: "justifyContent", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
568
|
-
PFlex = __decorate$
|
|
568
|
+
PFlex = __decorate$K([
|
|
569
569
|
ProxyCmp({
|
|
570
|
-
inputs: inputs$
|
|
570
|
+
inputs: inputs$F
|
|
571
571
|
})
|
|
572
572
|
], PFlex);
|
|
573
573
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlex, decorators: [{
|
|
@@ -576,11 +576,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
576
576
|
selector: 'p-flex,[p-flex]',
|
|
577
577
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
578
578
|
template: '<ng-content></ng-content>',
|
|
579
|
-
inputs: inputs$
|
|
579
|
+
inputs: inputs$F
|
|
580
580
|
}]
|
|
581
581
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
582
582
|
|
|
583
|
-
var __decorate$
|
|
583
|
+
var __decorate$J = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
584
584
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
585
585
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
586
586
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -590,7 +590,7 @@ var __decorate$I = (this && this.__decorate) || function (decorators, target, ke
|
|
|
590
590
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
591
591
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
592
592
|
};
|
|
593
|
-
const inputs$
|
|
593
|
+
const inputs$E = ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'];
|
|
594
594
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
595
595
|
let PFlexItem = class PFlexItem {
|
|
596
596
|
constructor(c, r, z) {
|
|
@@ -601,9 +601,9 @@ let PFlexItem = class PFlexItem {
|
|
|
601
601
|
};
|
|
602
602
|
PFlexItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlexItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
603
603
|
PFlexItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PFlexItem, selector: "p-flex-item,[p-flex-item]", inputs: { alignSelf: "alignSelf", flex: "flex", grow: "grow", offset: "offset", shrink: "shrink", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
604
|
-
PFlexItem = __decorate$
|
|
604
|
+
PFlexItem = __decorate$J([
|
|
605
605
|
ProxyCmp({
|
|
606
|
-
inputs: inputs$
|
|
606
|
+
inputs: inputs$E
|
|
607
607
|
})
|
|
608
608
|
], PFlexItem);
|
|
609
609
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlexItem, decorators: [{
|
|
@@ -612,7 +612,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
612
612
|
selector: 'p-flex-item,[p-flex-item]',
|
|
613
613
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
614
614
|
template: '<ng-content></ng-content>',
|
|
615
|
-
inputs: inputs$
|
|
615
|
+
inputs: inputs$E
|
|
616
|
+
}]
|
|
617
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
618
|
+
|
|
619
|
+
var __decorate$I = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
620
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
621
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
622
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
623
|
+
else
|
|
624
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
625
|
+
if (d = decorators[i])
|
|
626
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
627
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
628
|
+
};
|
|
629
|
+
const inputs$D = ['aria', 'open', 'position', 'theme'];
|
|
630
|
+
const outputs$a = ['dismiss'];
|
|
631
|
+
let PFlyout = class PFlyout {
|
|
632
|
+
constructor(c, r, z) {
|
|
633
|
+
this.z = z;
|
|
634
|
+
c.detach();
|
|
635
|
+
this.el = r.nativeElement;
|
|
636
|
+
proxyOutputs(this, outputs$a);
|
|
637
|
+
}
|
|
638
|
+
};
|
|
639
|
+
PFlyout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlyout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
640
|
+
PFlyout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PFlyout, selector: "p-flyout,[p-flyout]", inputs: { aria: "aria", open: "open", position: "position", theme: "theme" }, outputs: { dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
641
|
+
PFlyout = __decorate$I([
|
|
642
|
+
ProxyCmp({
|
|
643
|
+
inputs: inputs$D
|
|
644
|
+
})
|
|
645
|
+
], PFlyout);
|
|
646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlyout, decorators: [{
|
|
647
|
+
type: Component,
|
|
648
|
+
args: [{
|
|
649
|
+
selector: 'p-flyout,[p-flyout]',
|
|
650
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
651
|
+
template: '<ng-content></ng-content>',
|
|
652
|
+
inputs: inputs$D,
|
|
653
|
+
outputs: outputs$a
|
|
616
654
|
}]
|
|
617
655
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
618
656
|
|
|
@@ -2188,6 +2226,7 @@ const DECLARATIONS = [
|
|
|
2188
2226
|
PFieldsetWrapper,
|
|
2189
2227
|
PFlex,
|
|
2190
2228
|
PFlexItem,
|
|
2229
|
+
PFlyout,
|
|
2191
2230
|
PGrid,
|
|
2192
2231
|
PGridItem,
|
|
2193
2232
|
PHeading,
|
|
@@ -2258,7 +2297,7 @@ class PorscheDesignSystemModule {
|
|
|
2258
2297
|
}
|
|
2259
2298
|
}
|
|
2260
2299
|
PorscheDesignSystemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2261
|
-
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark] });
|
|
2300
|
+
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark] });
|
|
2262
2301
|
PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule });
|
|
2263
2302
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
|
|
2264
2303
|
type: NgModule,
|
|
@@ -2291,5 +2330,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2291
2330
|
* Generated bundle index. Do not edit.
|
|
2292
2331
|
*/
|
|
2293
2332
|
|
|
2294
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, ToastManager };
|
|
2333
|
+
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, ToastManager };
|
|
2295
2334
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|