@porsche-design-system/components-angular 2.15.1-rc.0 → 2.16.1
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 +22 -0
- package/components-wrapper.module.d.ts +47 -45
- package/esm2020/components-wrapper.module.mjs +48 -46
- package/esm2020/lib/components/barrel.mjs +7 -1
- package/esm2020/lib/components/carousel.wrapper.mjs +33 -0
- package/esm2020/lib/components/scroller.wrapper.mjs +30 -0
- package/esm2020/lib/components/stepper-horizontal.wrapper.mjs +3 -3
- package/esm2020/lib/types.mjs +1 -1
- package/fesm2015/porsche-design-system-components-angular.mjs +136 -81
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +136 -81
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/barrel.d.ts +5 -1
- package/lib/components/carousel.wrapper.d.ts +18 -0
- package/lib/components/scroller.wrapper.d.ts +14 -0
- package/lib/components/stepper-horizontal.wrapper.d.ts +3 -2
- package/lib/types.d.ts +16 -2
- package/package.json +2 -2
|
@@ -44,21 +44,21 @@ function ProxyCmp({ inputs /*, methods*/ }) {
|
|
|
44
44
|
};
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
const inputs$
|
|
48
|
-
const outputs$
|
|
47
|
+
const inputs$J = ['compact', 'heading', 'open', 'size', 'tag', 'theme'];
|
|
48
|
+
const outputs$c = ['accordionChange'];
|
|
49
49
|
let PAccordion = class PAccordion {
|
|
50
50
|
constructor(c, r, z) {
|
|
51
51
|
this.z = z;
|
|
52
52
|
c.detach();
|
|
53
53
|
this.el = r.nativeElement;
|
|
54
|
-
proxyOutputs(this, outputs$
|
|
54
|
+
proxyOutputs(this, outputs$c);
|
|
55
55
|
}
|
|
56
56
|
};
|
|
57
57
|
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
58
58
|
PAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PAccordion, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", open: "open", size: "size", tag: "tag", theme: "theme" }, outputs: { accordionChange: "accordionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
59
59
|
PAccordion = __decorate([
|
|
60
60
|
ProxyCmp({
|
|
61
|
-
inputs: inputs$
|
|
61
|
+
inputs: inputs$J
|
|
62
62
|
})
|
|
63
63
|
], PAccordion);
|
|
64
64
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PAccordion, decorators: [{
|
|
@@ -67,26 +67,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
67
67
|
selector: 'p-accordion,[p-accordion]',
|
|
68
68
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
69
69
|
template: '<ng-content></ng-content>',
|
|
70
|
-
inputs: inputs$
|
|
71
|
-
outputs: outputs$
|
|
70
|
+
inputs: inputs$J,
|
|
71
|
+
outputs: outputs$c
|
|
72
72
|
}]
|
|
73
73
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
74
74
|
|
|
75
|
-
const inputs$
|
|
76
|
-
const outputs$
|
|
75
|
+
const inputs$I = ['persistent', 'state', 'theme', 'width'];
|
|
76
|
+
const outputs$b = ['dismiss'];
|
|
77
77
|
let PBanner = class PBanner {
|
|
78
78
|
constructor(c, r, z) {
|
|
79
79
|
this.z = z;
|
|
80
80
|
c.detach();
|
|
81
81
|
this.el = r.nativeElement;
|
|
82
|
-
proxyOutputs(this, outputs$
|
|
82
|
+
proxyOutputs(this, outputs$b);
|
|
83
83
|
}
|
|
84
84
|
};
|
|
85
85
|
PBanner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
86
86
|
PBanner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PBanner, selector: "p-banner,[p-banner]", inputs: { persistent: "persistent", state: "state", theme: "theme", width: "width" }, outputs: { dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
87
87
|
PBanner = __decorate([
|
|
88
88
|
ProxyCmp({
|
|
89
|
-
inputs: inputs$
|
|
89
|
+
inputs: inputs$I
|
|
90
90
|
})
|
|
91
91
|
], PBanner);
|
|
92
92
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PBanner, decorators: [{
|
|
@@ -95,12 +95,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
95
95
|
selector: 'p-banner,[p-banner]',
|
|
96
96
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
97
97
|
template: '<ng-content></ng-content>',
|
|
98
|
-
inputs: inputs$
|
|
99
|
-
outputs: outputs$
|
|
98
|
+
inputs: inputs$I,
|
|
99
|
+
outputs: outputs$b
|
|
100
100
|
}]
|
|
101
101
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
102
102
|
|
|
103
|
-
const inputs$
|
|
103
|
+
const inputs$H = ['aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'tabbable', 'theme', 'type', 'variant'];
|
|
104
104
|
let PButton = class PButton {
|
|
105
105
|
constructor(c, r, z) {
|
|
106
106
|
this.z = z;
|
|
@@ -112,7 +112,7 @@ PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.1
|
|
|
112
112
|
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PButton, selector: "p-button,[p-button]", inputs: { aria: "aria", disabled: "disabled", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", tabbable: "tabbable", theme: "theme", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
113
113
|
PButton = __decorate([
|
|
114
114
|
ProxyCmp({
|
|
115
|
-
inputs: inputs$
|
|
115
|
+
inputs: inputs$H
|
|
116
116
|
})
|
|
117
117
|
], PButton);
|
|
118
118
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButton, decorators: [{
|
|
@@ -121,11 +121,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
121
121
|
selector: 'p-button,[p-button]',
|
|
122
122
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
123
123
|
template: '<ng-content></ng-content>',
|
|
124
|
-
inputs: inputs$
|
|
124
|
+
inputs: inputs$H
|
|
125
125
|
}]
|
|
126
126
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
127
127
|
|
|
128
|
-
const inputs$
|
|
128
|
+
const inputs$G = ['direction'];
|
|
129
129
|
let PButtonGroup = class PButtonGroup {
|
|
130
130
|
constructor(c, r, z) {
|
|
131
131
|
this.z = z;
|
|
@@ -137,7 +137,7 @@ PButtonGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "1
|
|
|
137
137
|
PButtonGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
|
|
138
138
|
PButtonGroup = __decorate([
|
|
139
139
|
ProxyCmp({
|
|
140
|
-
inputs: inputs$
|
|
140
|
+
inputs: inputs$G
|
|
141
141
|
})
|
|
142
142
|
], PButtonGroup);
|
|
143
143
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButtonGroup, decorators: [{
|
|
@@ -146,11 +146,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
146
146
|
selector: 'p-button-group,[p-button-group]',
|
|
147
147
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
148
148
|
template: '<ng-content></ng-content>',
|
|
149
|
-
inputs: inputs$
|
|
149
|
+
inputs: inputs$G
|
|
150
150
|
}]
|
|
151
151
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
152
152
|
|
|
153
|
-
const inputs$
|
|
153
|
+
const inputs$F = ['active', 'alignLabel', 'aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'size', 'stretch', 'tabbable', 'theme', 'type', 'weight'];
|
|
154
154
|
let PButtonPure = class PButtonPure {
|
|
155
155
|
constructor(c, r, z) {
|
|
156
156
|
this.z = z;
|
|
@@ -162,7 +162,7 @@ PButtonPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13
|
|
|
162
162
|
PButtonPure.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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", tabbable: "tabbable", theme: "theme", type: "type", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
163
163
|
PButtonPure = __decorate([
|
|
164
164
|
ProxyCmp({
|
|
165
|
-
inputs: inputs$
|
|
165
|
+
inputs: inputs$F
|
|
166
166
|
})
|
|
167
167
|
], PButtonPure);
|
|
168
168
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButtonPure, decorators: [{
|
|
@@ -171,11 +171,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
171
171
|
selector: 'p-button-pure,[p-button-pure]',
|
|
172
172
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
173
173
|
template: '<ng-content></ng-content>',
|
|
174
|
-
inputs: inputs$
|
|
174
|
+
inputs: inputs$F
|
|
175
175
|
}]
|
|
176
176
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
177
177
|
|
|
178
|
-
const inputs$
|
|
178
|
+
const inputs$E = ['description', 'disablePagination', 'heading', 'intl', 'slidesPerPage', 'theme', 'wrapContent'];
|
|
179
|
+
const outputs$a = ['carouselChange'];
|
|
180
|
+
let PCarousel = class PCarousel {
|
|
181
|
+
constructor(c, r, z) {
|
|
182
|
+
this.z = z;
|
|
183
|
+
c.detach();
|
|
184
|
+
this.el = r.nativeElement;
|
|
185
|
+
proxyOutputs(this, outputs$a);
|
|
186
|
+
}
|
|
187
|
+
};
|
|
188
|
+
PCarousel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
189
|
+
PCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCarousel, selector: "p-carousel,[p-carousel]", inputs: { description: "description", disablePagination: "disablePagination", heading: "heading", intl: "intl", slidesPerPage: "slidesPerPage", theme: "theme", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
190
|
+
PCarousel = __decorate([
|
|
191
|
+
ProxyCmp({
|
|
192
|
+
inputs: inputs$E
|
|
193
|
+
})
|
|
194
|
+
], PCarousel);
|
|
195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCarousel, decorators: [{
|
|
196
|
+
type: Component,
|
|
197
|
+
args: [{
|
|
198
|
+
selector: 'p-carousel,[p-carousel]',
|
|
199
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
200
|
+
template: '<ng-content></ng-content>',
|
|
201
|
+
inputs: inputs$E,
|
|
202
|
+
outputs: outputs$a
|
|
203
|
+
}]
|
|
204
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
205
|
+
|
|
206
|
+
const inputs$D = ['hideLabel', 'label', 'message', 'state'];
|
|
179
207
|
let PCheckboxWrapper = class PCheckboxWrapper {
|
|
180
208
|
constructor(c, r, z) {
|
|
181
209
|
this.z = z;
|
|
@@ -187,7 +215,7 @@ PCheckboxWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version
|
|
|
187
215
|
PCheckboxWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCheckboxWrapper, selector: "p-checkbox-wrapper,[p-checkbox-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", message: "message", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
188
216
|
PCheckboxWrapper = __decorate([
|
|
189
217
|
ProxyCmp({
|
|
190
|
-
inputs: inputs$
|
|
218
|
+
inputs: inputs$D
|
|
191
219
|
})
|
|
192
220
|
], PCheckboxWrapper);
|
|
193
221
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCheckboxWrapper, decorators: [{
|
|
@@ -196,11 +224,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
196
224
|
selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',
|
|
197
225
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
198
226
|
template: '<ng-content></ng-content>',
|
|
199
|
-
inputs: inputs$
|
|
227
|
+
inputs: inputs$D
|
|
200
228
|
}]
|
|
201
229
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
202
230
|
|
|
203
|
-
const inputs$
|
|
231
|
+
const inputs$C = ['backgroundColor', 'theme', 'width'];
|
|
204
232
|
let PContentWrapper = class PContentWrapper {
|
|
205
233
|
constructor(c, r, z) {
|
|
206
234
|
this.z = z;
|
|
@@ -212,7 +240,7 @@ PContentWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version:
|
|
|
212
240
|
PContentWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
|
|
213
241
|
PContentWrapper = __decorate([
|
|
214
242
|
ProxyCmp({
|
|
215
|
-
inputs: inputs$
|
|
243
|
+
inputs: inputs$C
|
|
216
244
|
})
|
|
217
245
|
], PContentWrapper);
|
|
218
246
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PContentWrapper, decorators: [{
|
|
@@ -221,11 +249,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
221
249
|
selector: 'p-content-wrapper,[p-content-wrapper]',
|
|
222
250
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
223
251
|
template: '<ng-content></ng-content>',
|
|
224
|
-
inputs: inputs$
|
|
252
|
+
inputs: inputs$C
|
|
225
253
|
}]
|
|
226
254
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
227
255
|
|
|
228
|
-
const inputs$
|
|
256
|
+
const inputs$B = ['color', 'orientation', 'theme'];
|
|
229
257
|
let PDivider = class PDivider {
|
|
230
258
|
constructor(c, r, z) {
|
|
231
259
|
this.z = z;
|
|
@@ -237,7 +265,7 @@ PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
|
237
265
|
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PDivider, selector: "p-divider,[p-divider]", inputs: { color: "color", orientation: "orientation", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
238
266
|
PDivider = __decorate([
|
|
239
267
|
ProxyCmp({
|
|
240
|
-
inputs: inputs$
|
|
268
|
+
inputs: inputs$B
|
|
241
269
|
})
|
|
242
270
|
], PDivider);
|
|
243
271
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, decorators: [{
|
|
@@ -246,11 +274,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
246
274
|
selector: 'p-divider,[p-divider]',
|
|
247
275
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
248
276
|
template: '<ng-content></ng-content>',
|
|
249
|
-
inputs: inputs$
|
|
277
|
+
inputs: inputs$B
|
|
250
278
|
}]
|
|
251
279
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
252
280
|
|
|
253
|
-
const inputs$
|
|
281
|
+
const inputs$A = ['label', 'labelSize', 'message', 'required', 'state'];
|
|
254
282
|
let PFieldsetWrapper = class PFieldsetWrapper {
|
|
255
283
|
constructor(c, r, z) {
|
|
256
284
|
this.z = z;
|
|
@@ -262,7 +290,7 @@ PFieldsetWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version
|
|
|
262
290
|
PFieldsetWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PFieldsetWrapper, selector: "p-fieldset-wrapper,[p-fieldset-wrapper]", inputs: { label: "label", labelSize: "labelSize", message: "message", required: "required", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
263
291
|
PFieldsetWrapper = __decorate([
|
|
264
292
|
ProxyCmp({
|
|
265
|
-
inputs: inputs$
|
|
293
|
+
inputs: inputs$A
|
|
266
294
|
})
|
|
267
295
|
], PFieldsetWrapper);
|
|
268
296
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFieldsetWrapper, decorators: [{
|
|
@@ -271,11 +299,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
271
299
|
selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',
|
|
272
300
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
273
301
|
template: '<ng-content></ng-content>',
|
|
274
|
-
inputs: inputs$
|
|
302
|
+
inputs: inputs$A
|
|
275
303
|
}]
|
|
276
304
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
277
305
|
|
|
278
|
-
const inputs$
|
|
306
|
+
const inputs$z = ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'];
|
|
279
307
|
let PFlex = class PFlex {
|
|
280
308
|
constructor(c, r, z) {
|
|
281
309
|
this.z = z;
|
|
@@ -287,7 +315,7 @@ PFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11"
|
|
|
287
315
|
PFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
|
|
288
316
|
PFlex = __decorate([
|
|
289
317
|
ProxyCmp({
|
|
290
|
-
inputs: inputs$
|
|
318
|
+
inputs: inputs$z
|
|
291
319
|
})
|
|
292
320
|
], PFlex);
|
|
293
321
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlex, decorators: [{
|
|
@@ -296,11 +324,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
296
324
|
selector: 'p-flex,[p-flex]',
|
|
297
325
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
298
326
|
template: '<ng-content></ng-content>',
|
|
299
|
-
inputs: inputs$
|
|
327
|
+
inputs: inputs$z
|
|
300
328
|
}]
|
|
301
329
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
302
330
|
|
|
303
|
-
const inputs$
|
|
331
|
+
const inputs$y = ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'];
|
|
304
332
|
let PFlexItem = class PFlexItem {
|
|
305
333
|
constructor(c, r, z) {
|
|
306
334
|
this.z = z;
|
|
@@ -312,7 +340,7 @@ PFlexItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3
|
|
|
312
340
|
PFlexItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
|
|
313
341
|
PFlexItem = __decorate([
|
|
314
342
|
ProxyCmp({
|
|
315
|
-
inputs: inputs$
|
|
343
|
+
inputs: inputs$y
|
|
316
344
|
})
|
|
317
345
|
], PFlexItem);
|
|
318
346
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlexItem, decorators: [{
|
|
@@ -321,11 +349,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
321
349
|
selector: 'p-flex-item,[p-flex-item]',
|
|
322
350
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
323
351
|
template: '<ng-content></ng-content>',
|
|
324
|
-
inputs: inputs$
|
|
352
|
+
inputs: inputs$y
|
|
325
353
|
}]
|
|
326
354
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
327
355
|
|
|
328
|
-
const inputs$
|
|
356
|
+
const inputs$x = ['direction', 'gutter', 'wrap'];
|
|
329
357
|
let PGrid = class PGrid {
|
|
330
358
|
constructor(c, r, z) {
|
|
331
359
|
this.z = z;
|
|
@@ -337,7 +365,7 @@ PGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11"
|
|
|
337
365
|
PGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PGrid, selector: "p-grid,[p-grid]", inputs: { direction: "direction", gutter: "gutter", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
338
366
|
PGrid = __decorate([
|
|
339
367
|
ProxyCmp({
|
|
340
|
-
inputs: inputs$
|
|
368
|
+
inputs: inputs$x
|
|
341
369
|
})
|
|
342
370
|
], PGrid);
|
|
343
371
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGrid, decorators: [{
|
|
@@ -346,11 +374,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
346
374
|
selector: 'p-grid,[p-grid]',
|
|
347
375
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
348
376
|
template: '<ng-content></ng-content>',
|
|
349
|
-
inputs: inputs$
|
|
377
|
+
inputs: inputs$x
|
|
350
378
|
}]
|
|
351
379
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
352
380
|
|
|
353
|
-
const inputs$
|
|
381
|
+
const inputs$w = ['offset', 'size'];
|
|
354
382
|
let PGridItem = class PGridItem {
|
|
355
383
|
constructor(c, r, z) {
|
|
356
384
|
this.z = z;
|
|
@@ -362,7 +390,7 @@ PGridItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3
|
|
|
362
390
|
PGridItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PGridItem, selector: "p-grid-item,[p-grid-item]", inputs: { offset: "offset", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
363
391
|
PGridItem = __decorate([
|
|
364
392
|
ProxyCmp({
|
|
365
|
-
inputs: inputs$
|
|
393
|
+
inputs: inputs$w
|
|
366
394
|
})
|
|
367
395
|
], PGridItem);
|
|
368
396
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGridItem, decorators: [{
|
|
@@ -371,11 +399,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
371
399
|
selector: 'p-grid-item,[p-grid-item]',
|
|
372
400
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
373
401
|
template: '<ng-content></ng-content>',
|
|
374
|
-
inputs: inputs$
|
|
402
|
+
inputs: inputs$w
|
|
375
403
|
}]
|
|
376
404
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
377
405
|
|
|
378
|
-
const inputs$
|
|
406
|
+
const inputs$v = ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'];
|
|
379
407
|
let PHeadline = class PHeadline {
|
|
380
408
|
constructor(c, r, z) {
|
|
381
409
|
this.z = z;
|
|
@@ -387,7 +415,7 @@ PHeadline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3
|
|
|
387
415
|
PHeadline.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PHeadline, selector: "p-headline,[p-headline]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", tag: "tag", theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
388
416
|
PHeadline = __decorate([
|
|
389
417
|
ProxyCmp({
|
|
390
|
-
inputs: inputs$
|
|
418
|
+
inputs: inputs$v
|
|
391
419
|
})
|
|
392
420
|
], PHeadline);
|
|
393
421
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PHeadline, decorators: [{
|
|
@@ -396,11 +424,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
396
424
|
selector: 'p-headline,[p-headline]',
|
|
397
425
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
398
426
|
template: '<ng-content></ng-content>',
|
|
399
|
-
inputs: inputs$
|
|
427
|
+
inputs: inputs$v
|
|
400
428
|
}]
|
|
401
429
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
402
430
|
|
|
403
|
-
const inputs$
|
|
431
|
+
const inputs$u = ['aria', 'color', 'lazy', 'name', 'size', 'source', 'theme'];
|
|
404
432
|
let PIcon = class PIcon {
|
|
405
433
|
constructor(c, r, z) {
|
|
406
434
|
this.z = z;
|
|
@@ -412,7 +440,7 @@ PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11"
|
|
|
412
440
|
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PIcon, selector: "p-icon,[p-icon]", inputs: { aria: "aria", color: "color", lazy: "lazy", name: "name", size: "size", source: "source", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
413
441
|
PIcon = __decorate([
|
|
414
442
|
ProxyCmp({
|
|
415
|
-
inputs: inputs$
|
|
443
|
+
inputs: inputs$u
|
|
416
444
|
})
|
|
417
445
|
], PIcon);
|
|
418
446
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PIcon, decorators: [{
|
|
@@ -421,11 +449,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
421
449
|
selector: 'p-icon,[p-icon]',
|
|
422
450
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
423
451
|
template: '<ng-content></ng-content>',
|
|
424
|
-
inputs: inputs$
|
|
452
|
+
inputs: inputs$u
|
|
425
453
|
}]
|
|
426
454
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
427
455
|
|
|
428
|
-
const inputs$
|
|
456
|
+
const inputs$t = ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'heading', 'persistent', 'state', 'theme'];
|
|
429
457
|
const outputs$9 = ['action', 'dismiss'];
|
|
430
458
|
let PInlineNotification = class PInlineNotification {
|
|
431
459
|
constructor(c, r, z) {
|
|
@@ -439,7 +467,7 @@ PInlineNotification.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", vers
|
|
|
439
467
|
PInlineNotification.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PInlineNotification, selector: "p-inline-notification,[p-inline-notification]", inputs: { actionIcon: "actionIcon", actionLabel: "actionLabel", actionLoading: "actionLoading", description: "description", heading: "heading", persistent: "persistent", state: "state", theme: "theme" }, outputs: { action: "action", dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
440
468
|
PInlineNotification = __decorate([
|
|
441
469
|
ProxyCmp({
|
|
442
|
-
inputs: inputs$
|
|
470
|
+
inputs: inputs$t
|
|
443
471
|
})
|
|
444
472
|
], PInlineNotification);
|
|
445
473
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PInlineNotification, decorators: [{
|
|
@@ -448,12 +476,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
448
476
|
selector: 'p-inline-notification,[p-inline-notification]',
|
|
449
477
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
450
478
|
template: '<ng-content></ng-content>',
|
|
451
|
-
inputs: inputs$
|
|
479
|
+
inputs: inputs$t,
|
|
452
480
|
outputs: outputs$9
|
|
453
481
|
}]
|
|
454
482
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
455
483
|
|
|
456
|
-
const inputs$
|
|
484
|
+
const inputs$s = ['aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme', 'variant'];
|
|
457
485
|
let PLink = class PLink {
|
|
458
486
|
constructor(c, r, z) {
|
|
459
487
|
this.z = z;
|
|
@@ -465,7 +493,7 @@ PLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11"
|
|
|
465
493
|
PLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PLink, selector: "p-link,[p-link]", inputs: { aria: "aria", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
466
494
|
PLink = __decorate([
|
|
467
495
|
ProxyCmp({
|
|
468
|
-
inputs: inputs$
|
|
496
|
+
inputs: inputs$s
|
|
469
497
|
})
|
|
470
498
|
], PLink);
|
|
471
499
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLink, decorators: [{
|
|
@@ -474,11 +502,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
474
502
|
selector: 'p-link,[p-link]',
|
|
475
503
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
476
504
|
template: '<ng-content></ng-content>',
|
|
477
|
-
inputs: inputs$
|
|
505
|
+
inputs: inputs$s
|
|
478
506
|
}]
|
|
479
507
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
480
508
|
|
|
481
|
-
const inputs$
|
|
509
|
+
const inputs$r = ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'theme', 'weight'];
|
|
482
510
|
let PLinkPure = class PLinkPure {
|
|
483
511
|
constructor(c, r, z) {
|
|
484
512
|
this.z = z;
|
|
@@ -490,7 +518,7 @@ PLinkPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3
|
|
|
490
518
|
PLinkPure.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PLinkPure, selector: "p-link-pure,[p-link-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", size: "size", stretch: "stretch", target: "target", theme: "theme", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
491
519
|
PLinkPure = __decorate([
|
|
492
520
|
ProxyCmp({
|
|
493
|
-
inputs: inputs$
|
|
521
|
+
inputs: inputs$r
|
|
494
522
|
})
|
|
495
523
|
], PLinkPure);
|
|
496
524
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkPure, decorators: [{
|
|
@@ -499,11 +527,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
499
527
|
selector: 'p-link-pure,[p-link-pure]',
|
|
500
528
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
501
529
|
template: '<ng-content></ng-content>',
|
|
502
|
-
inputs: inputs$
|
|
530
|
+
inputs: inputs$r
|
|
503
531
|
}]
|
|
504
532
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
505
533
|
|
|
506
|
-
const inputs$
|
|
534
|
+
const inputs$q = ['hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'];
|
|
507
535
|
let PLinkSocial = class PLinkSocial {
|
|
508
536
|
constructor(c, r, z) {
|
|
509
537
|
this.z = z;
|
|
@@ -515,7 +543,7 @@ PLinkSocial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13
|
|
|
515
543
|
PLinkSocial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PLinkSocial, selector: "p-link-social,[p-link-social]", inputs: { hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
516
544
|
PLinkSocial = __decorate([
|
|
517
545
|
ProxyCmp({
|
|
518
|
-
inputs: inputs$
|
|
546
|
+
inputs: inputs$q
|
|
519
547
|
})
|
|
520
548
|
], PLinkSocial);
|
|
521
549
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkSocial, decorators: [{
|
|
@@ -524,11 +552,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
524
552
|
selector: 'p-link-social,[p-link-social]',
|
|
525
553
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
526
554
|
template: '<ng-content></ng-content>',
|
|
527
|
-
inputs: inputs$
|
|
555
|
+
inputs: inputs$q
|
|
528
556
|
}]
|
|
529
557
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
530
558
|
|
|
531
|
-
const inputs$
|
|
559
|
+
const inputs$p = ['aria', 'href', 'size', 'target', 'trademark'];
|
|
532
560
|
let PMarque = class PMarque {
|
|
533
561
|
constructor(c, r, z) {
|
|
534
562
|
this.z = z;
|
|
@@ -540,7 +568,7 @@ PMarque.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.1
|
|
|
540
568
|
PMarque.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PMarque, selector: "p-marque,[p-marque]", inputs: { aria: "aria", href: "href", size: "size", target: "target", trademark: "trademark" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
541
569
|
PMarque = __decorate([
|
|
542
570
|
ProxyCmp({
|
|
543
|
-
inputs: inputs$
|
|
571
|
+
inputs: inputs$p
|
|
544
572
|
})
|
|
545
573
|
], PMarque);
|
|
546
574
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PMarque, decorators: [{
|
|
@@ -549,11 +577,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
549
577
|
selector: 'p-marque,[p-marque]',
|
|
550
578
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
551
579
|
template: '<ng-content></ng-content>',
|
|
552
|
-
inputs: inputs$
|
|
580
|
+
inputs: inputs$p
|
|
553
581
|
}]
|
|
554
582
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
555
583
|
|
|
556
|
-
const inputs$
|
|
584
|
+
const inputs$o = ['aria', 'disableBackdropClick', 'disableCloseButton', 'fullscreen', 'heading', 'open'];
|
|
557
585
|
const outputs$8 = ['close'];
|
|
558
586
|
let PModal = class PModal {
|
|
559
587
|
constructor(c, r, z) {
|
|
@@ -567,7 +595,7 @@ PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11
|
|
|
567
595
|
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PModal, selector: "p-modal,[p-modal]", inputs: { aria: "aria", disableBackdropClick: "disableBackdropClick", disableCloseButton: "disableCloseButton", fullscreen: "fullscreen", heading: "heading", open: "open" }, outputs: { close: "close" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
568
596
|
PModal = __decorate([
|
|
569
597
|
ProxyCmp({
|
|
570
|
-
inputs: inputs$
|
|
598
|
+
inputs: inputs$o
|
|
571
599
|
})
|
|
572
600
|
], PModal);
|
|
573
601
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModal, decorators: [{
|
|
@@ -576,12 +604,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
576
604
|
selector: 'p-modal,[p-modal]',
|
|
577
605
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
578
606
|
template: '<ng-content></ng-content>',
|
|
579
|
-
inputs: inputs$
|
|
607
|
+
inputs: inputs$o,
|
|
580
608
|
outputs: outputs$8
|
|
581
609
|
}]
|
|
582
610
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
583
611
|
|
|
584
|
-
const inputs$
|
|
612
|
+
const inputs$n = ['activePage', 'allyLabel', 'allyLabelNext', 'allyLabelPage', 'allyLabelPrev', 'itemsPerPage', 'maxNumberOfPageLinks', 'theme', 'totalItemsCount'];
|
|
585
613
|
const outputs$7 = ['pageChange'];
|
|
586
614
|
let PPagination = class PPagination {
|
|
587
615
|
constructor(c, r, z) {
|
|
@@ -595,7 +623,7 @@ PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13
|
|
|
595
623
|
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PPagination, selector: "p-pagination,[p-pagination]", inputs: { activePage: "activePage", allyLabel: "allyLabel", allyLabelNext: "allyLabelNext", allyLabelPage: "allyLabelPage", allyLabelPrev: "allyLabelPrev", itemsPerPage: "itemsPerPage", maxNumberOfPageLinks: "maxNumberOfPageLinks", theme: "theme", totalItemsCount: "totalItemsCount" }, outputs: { pageChange: "pageChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
596
624
|
PPagination = __decorate([
|
|
597
625
|
ProxyCmp({
|
|
598
|
-
inputs: inputs$
|
|
626
|
+
inputs: inputs$n
|
|
599
627
|
})
|
|
600
628
|
], PPagination);
|
|
601
629
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPagination, decorators: [{
|
|
@@ -604,12 +632,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
604
632
|
selector: 'p-pagination,[p-pagination]',
|
|
605
633
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
606
634
|
template: '<ng-content></ng-content>',
|
|
607
|
-
inputs: inputs$
|
|
635
|
+
inputs: inputs$n,
|
|
608
636
|
outputs: outputs$7
|
|
609
637
|
}]
|
|
610
638
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
611
639
|
|
|
612
|
-
const inputs$
|
|
640
|
+
const inputs$m = ['aria', 'description', 'direction'];
|
|
613
641
|
let PPopover = class PPopover {
|
|
614
642
|
constructor(c, r, z) {
|
|
615
643
|
this.z = z;
|
|
@@ -621,7 +649,7 @@ PPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.
|
|
|
621
649
|
PPopover.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PPopover, selector: "p-popover,[p-popover]", inputs: { aria: "aria", description: "description", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
622
650
|
PPopover = __decorate([
|
|
623
651
|
ProxyCmp({
|
|
624
|
-
inputs: inputs$
|
|
652
|
+
inputs: inputs$m
|
|
625
653
|
})
|
|
626
654
|
], PPopover);
|
|
627
655
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPopover, decorators: [{
|
|
@@ -630,11 +658,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
630
658
|
selector: 'p-popover,[p-popover]',
|
|
631
659
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
632
660
|
template: '<ng-content></ng-content>',
|
|
633
|
-
inputs: inputs$
|
|
661
|
+
inputs: inputs$m
|
|
634
662
|
}]
|
|
635
663
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
636
664
|
|
|
637
|
-
const inputs$
|
|
665
|
+
const inputs$l = ['hideLabel', 'label', 'message', 'state'];
|
|
638
666
|
let PRadioButtonWrapper = class PRadioButtonWrapper {
|
|
639
667
|
constructor(c, r, z) {
|
|
640
668
|
this.z = z;
|
|
@@ -646,7 +674,7 @@ PRadioButtonWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", vers
|
|
|
646
674
|
PRadioButtonWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PRadioButtonWrapper, selector: "p-radio-button-wrapper,[p-radio-button-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", message: "message", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
647
675
|
PRadioButtonWrapper = __decorate([
|
|
648
676
|
ProxyCmp({
|
|
649
|
-
inputs: inputs$
|
|
677
|
+
inputs: inputs$l
|
|
650
678
|
})
|
|
651
679
|
], PRadioButtonWrapper);
|
|
652
680
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PRadioButtonWrapper, decorators: [{
|
|
@@ -655,6 +683,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
655
683
|
selector: 'p-radio-button-wrapper,[p-radio-button-wrapper]',
|
|
656
684
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
657
685
|
template: '<ng-content></ng-content>',
|
|
686
|
+
inputs: inputs$l
|
|
687
|
+
}]
|
|
688
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
689
|
+
|
|
690
|
+
const inputs$k = ['gradientColorScheme', 'scrollIndicatorPosition', 'scrollToPosition', 'theme'];
|
|
691
|
+
let PScroller = class PScroller {
|
|
692
|
+
constructor(c, r, z) {
|
|
693
|
+
this.z = z;
|
|
694
|
+
c.detach();
|
|
695
|
+
this.el = r.nativeElement;
|
|
696
|
+
}
|
|
697
|
+
};
|
|
698
|
+
PScroller.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PScroller, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
699
|
+
PScroller.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PScroller, selector: "p-scroller,[p-scroller]", inputs: { gradientColorScheme: "gradientColorScheme", scrollIndicatorPosition: "scrollIndicatorPosition", scrollToPosition: "scrollToPosition", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
700
|
+
PScroller = __decorate([
|
|
701
|
+
ProxyCmp({
|
|
702
|
+
inputs: inputs$k
|
|
703
|
+
})
|
|
704
|
+
], PScroller);
|
|
705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PScroller, decorators: [{
|
|
706
|
+
type: Component,
|
|
707
|
+
args: [{
|
|
708
|
+
selector: 'p-scroller,[p-scroller]',
|
|
709
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
710
|
+
template: '<ng-content></ng-content>',
|
|
658
711
|
inputs: inputs$k
|
|
659
712
|
}]
|
|
660
713
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -762,7 +815,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
762
815
|
}]
|
|
763
816
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
764
817
|
|
|
765
|
-
const inputs$f = ['theme'];
|
|
818
|
+
const inputs$f = ['size', 'theme'];
|
|
766
819
|
const outputs$5 = ['stepChange'];
|
|
767
820
|
let PStepperHorizontal = class PStepperHorizontal {
|
|
768
821
|
constructor(c, r, z) {
|
|
@@ -773,7 +826,7 @@ let PStepperHorizontal = class PStepperHorizontal {
|
|
|
773
826
|
}
|
|
774
827
|
};
|
|
775
828
|
PStepperHorizontal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PStepperHorizontal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
776
|
-
PStepperHorizontal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PStepperHorizontal, selector: "p-stepper-horizontal,[p-stepper-horizontal]", inputs: { theme: "theme" }, outputs: { stepChange: "stepChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
829
|
+
PStepperHorizontal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PStepperHorizontal, selector: "p-stepper-horizontal,[p-stepper-horizontal]", inputs: { size: "size", theme: "theme" }, outputs: { stepChange: "stepChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
777
830
|
PStepperHorizontal = __decorate([
|
|
778
831
|
ProxyCmp({
|
|
779
832
|
inputs: inputs$f
|
|
@@ -1291,6 +1344,7 @@ const DECLARATIONS = [
|
|
|
1291
1344
|
PButton,
|
|
1292
1345
|
PButtonGroup,
|
|
1293
1346
|
PButtonPure,
|
|
1347
|
+
PCarousel,
|
|
1294
1348
|
PCheckboxWrapper,
|
|
1295
1349
|
PContentWrapper,
|
|
1296
1350
|
PDivider,
|
|
@@ -1310,6 +1364,7 @@ const DECLARATIONS = [
|
|
|
1310
1364
|
PPagination,
|
|
1311
1365
|
PPopover,
|
|
1312
1366
|
PRadioButtonWrapper,
|
|
1367
|
+
PScroller,
|
|
1313
1368
|
PSegmentedControl,
|
|
1314
1369
|
PSegmentedControlItem,
|
|
1315
1370
|
PSelectWrapper,
|
|
@@ -1364,7 +1419,7 @@ class PorscheDesignSystemModule {
|
|
|
1364
1419
|
}
|
|
1365
1420
|
}
|
|
1366
1421
|
PorscheDesignSystemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1367
|
-
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, 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], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, 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] });
|
|
1422
|
+
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, 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], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, 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] });
|
|
1368
1423
|
PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, providers: [{ provide: USES_SKELETONS, useValue: usesSkeletons() }] });
|
|
1369
1424
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
|
|
1370
1425
|
type: NgModule,
|
|
@@ -1396,5 +1451,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1396
1451
|
* Generated bundle index. Do not edit.
|
|
1397
1452
|
*/
|
|
1398
1453
|
|
|
1399
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, 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, PorscheDesignSystemModule, ToastManager };
|
|
1454
|
+
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, 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, PorscheDesignSystemModule, ToastManager };
|
|
1400
1455
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|