@porsche-design-system/components-angular 3.7.0-rc.0 → 3.7.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 +39 -0
- package/LICENSE.md +115 -0
- package/esm/lib/components/barrel.d.ts +3 -1
- package/esm/lib/components/pin-code.wrapper.d.ts +24 -0
- package/esm/lib/components/radio-button-wrapper.wrapper.d.ts +2 -1
- package/esm/lib/types.d.ts +18 -2
- package/esm/porsche-design-system.module.d.ts +31 -30
- package/esm2020/lib/components/barrel.mjs +4 -1
- package/esm2020/lib/components/pin-code.wrapper.mjs +38 -0
- package/esm2020/lib/components/radio-button-wrapper.wrapper.mjs +3 -3
- package/esm2020/lib/types.mjs +1 -1
- package/esm2020/porsche-design-system.module.mjs +32 -31
- package/fesm2015/porsche-design-system-components-angular.mjs +235 -196
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +231 -196
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/LICENSE +0 -59
|
@@ -43,7 +43,7 @@ function ProxyCmp({ inputs /*, methods*/ }) {
|
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
var __decorate
|
|
46
|
+
var __decorate$$ = (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$_ = (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$W = ['compact', 'heading', 'open', 'size', 'tag', 'theme'];
|
|
57
|
+
const outputs$f = ['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$f);
|
|
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$$([
|
|
69
69
|
ProxyCmp({
|
|
70
|
-
inputs: inputs$
|
|
70
|
+
inputs: inputs$W
|
|
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$W,
|
|
80
|
+
outputs: outputs$f
|
|
81
81
|
}]
|
|
82
82
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
83
83
|
|
|
84
|
-
var __decorate$
|
|
84
|
+
var __decorate$_ = (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$Z = (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$V = ['description', 'dismissButton', 'heading', 'open', 'persistent', 'state', 'theme', 'width'];
|
|
95
|
+
const outputs$e = ['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$e);
|
|
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$_([
|
|
107
107
|
ProxyCmp({
|
|
108
|
-
inputs: inputs$
|
|
108
|
+
inputs: inputs$V
|
|
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$V,
|
|
118
|
+
outputs: outputs$e
|
|
119
119
|
}]
|
|
120
120
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
121
121
|
|
|
122
|
-
var __decorate$
|
|
122
|
+
var __decorate$Z = (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$Y = (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$U = ['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$Z([
|
|
143
143
|
ProxyCmp({
|
|
144
|
-
inputs: inputs$
|
|
144
|
+
inputs: inputs$U
|
|
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$U
|
|
154
154
|
}]
|
|
155
155
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
156
156
|
|
|
157
|
-
var __decorate$
|
|
157
|
+
var __decorate$Y = (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$X = (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$T = ['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$Y([
|
|
178
178
|
ProxyCmp({
|
|
179
|
-
inputs: inputs$
|
|
179
|
+
inputs: inputs$T
|
|
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$T
|
|
189
189
|
}]
|
|
190
190
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
191
191
|
|
|
192
|
-
var __decorate$
|
|
192
|
+
var __decorate$X = (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$W = (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$S = ['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$X([
|
|
213
213
|
ProxyCmp({
|
|
214
|
-
inputs: inputs$
|
|
214
|
+
inputs: inputs$S
|
|
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$S
|
|
224
224
|
}]
|
|
225
225
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
226
226
|
|
|
227
|
-
var __decorate$
|
|
227
|
+
var __decorate$W = (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$V = (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$R = ['align', 'aria', 'aspectRatio', 'background', '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", background: "background", 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$W([
|
|
248
248
|
ProxyCmp({
|
|
249
|
-
inputs: inputs$
|
|
249
|
+
inputs: inputs$R
|
|
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$R
|
|
259
259
|
}]
|
|
260
260
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
261
261
|
|
|
262
|
-
var __decorate$
|
|
262
|
+
var __decorate$V = (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$U = (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$Q = ['activeSlideIndex', 'alignHeader', 'description', 'disablePagination', 'heading', 'intl', 'pagination', 'rewind', 'skipLinkTarget', 'slidesPerPage', 'theme', 'width', 'wrapContent'];
|
|
273
|
+
const outputs$d = ['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$d);
|
|
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", skipLinkTarget: "skipLinkTarget", 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$V([
|
|
285
285
|
ProxyCmp({
|
|
286
|
-
inputs: inputs$
|
|
286
|
+
inputs: inputs$Q
|
|
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$Q,
|
|
296
|
+
outputs: outputs$d
|
|
297
297
|
}]
|
|
298
298
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
299
299
|
|
|
300
|
-
var __decorate$
|
|
300
|
+
var __decorate$U = (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$T = (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$P = ['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$U([
|
|
321
321
|
ProxyCmp({
|
|
322
|
-
inputs: inputs$
|
|
322
|
+
inputs: inputs$P
|
|
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$P
|
|
332
332
|
}]
|
|
333
333
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
334
334
|
|
|
335
|
-
var __decorate$
|
|
335
|
+
var __decorate$T = (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$S = (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$O = ['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$T([
|
|
357
357
|
ProxyCmp({
|
|
358
|
-
inputs: inputs$
|
|
358
|
+
inputs: inputs$O
|
|
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$O
|
|
368
368
|
}]
|
|
369
369
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
370
370
|
|
|
371
|
-
var __decorate$
|
|
371
|
+
var __decorate$S = (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$R = (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$N = ['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$S([
|
|
392
392
|
ProxyCmp({
|
|
393
|
-
inputs: inputs$
|
|
393
|
+
inputs: inputs$N
|
|
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$N
|
|
403
403
|
}]
|
|
404
404
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
405
405
|
|
|
406
|
-
var __decorate$
|
|
406
|
+
var __decorate$R = (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$Q = (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$M = ['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$R([
|
|
427
427
|
ProxyCmp({
|
|
428
|
-
inputs: inputs$
|
|
428
|
+
inputs: inputs$M
|
|
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$M
|
|
438
438
|
}]
|
|
439
439
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
440
440
|
|
|
441
|
-
var __decorate$
|
|
441
|
+
var __decorate$Q = (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$P = (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$L = ['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$Q([
|
|
462
462
|
ProxyCmp({
|
|
463
|
-
inputs: inputs$
|
|
463
|
+
inputs: inputs$L
|
|
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$L
|
|
473
473
|
}]
|
|
474
474
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
475
475
|
|
|
476
|
-
var __decorate$
|
|
476
|
+
var __decorate$P = (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$O = (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$K = ['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$P([
|
|
497
497
|
ProxyCmp({
|
|
498
|
-
inputs: inputs$
|
|
498
|
+
inputs: inputs$K
|
|
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$K
|
|
508
508
|
}]
|
|
509
509
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
510
510
|
|
|
511
|
-
var __decorate$
|
|
511
|
+
var __decorate$O = (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$N = (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$J = ['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$O([
|
|
533
533
|
ProxyCmp({
|
|
534
|
-
inputs: inputs$
|
|
534
|
+
inputs: inputs$J
|
|
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$J
|
|
544
544
|
}]
|
|
545
545
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
546
546
|
|
|
547
|
-
var __decorate$
|
|
547
|
+
var __decorate$N = (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$M = (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$I = ['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$N([
|
|
569
569
|
ProxyCmp({
|
|
570
|
-
inputs: inputs$
|
|
570
|
+
inputs: inputs$I
|
|
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$I
|
|
580
580
|
}]
|
|
581
581
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
582
582
|
|
|
583
|
-
var __decorate$
|
|
583
|
+
var __decorate$M = (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$L = (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$H = ['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$M([
|
|
605
605
|
ProxyCmp({
|
|
606
|
-
inputs: inputs$
|
|
606
|
+
inputs: inputs$H
|
|
607
607
|
})
|
|
608
608
|
], PFlexItem);
|
|
609
609
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlexItem, decorators: [{
|
|
@@ -612,11 +612,11 @@ 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$H
|
|
616
616
|
}]
|
|
617
617
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
618
618
|
|
|
619
|
-
var __decorate$
|
|
619
|
+
var __decorate$L = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
620
620
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
621
621
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
622
622
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -626,21 +626,21 @@ var __decorate$K = (this && this.__decorate) || function (decorators, target, ke
|
|
|
626
626
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
627
627
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
628
628
|
};
|
|
629
|
-
const inputs$
|
|
630
|
-
const outputs$
|
|
629
|
+
const inputs$G = ['aria', 'open', 'position', 'theme'];
|
|
630
|
+
const outputs$c = ['dismiss'];
|
|
631
631
|
let PFlyout = class PFlyout {
|
|
632
632
|
constructor(c, r, z) {
|
|
633
633
|
this.z = z;
|
|
634
634
|
c.detach();
|
|
635
635
|
this.el = r.nativeElement;
|
|
636
|
-
proxyOutputs(this, outputs$
|
|
636
|
+
proxyOutputs(this, outputs$c);
|
|
637
637
|
}
|
|
638
638
|
};
|
|
639
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
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$
|
|
641
|
+
PFlyout = __decorate$L([
|
|
642
642
|
ProxyCmp({
|
|
643
|
-
inputs: inputs$
|
|
643
|
+
inputs: inputs$G
|
|
644
644
|
})
|
|
645
645
|
], PFlyout);
|
|
646
646
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlyout, decorators: [{
|
|
@@ -649,12 +649,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
649
649
|
selector: 'p-flyout,[p-flyout]',
|
|
650
650
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
651
651
|
template: '<ng-content></ng-content>',
|
|
652
|
-
inputs: inputs$
|
|
653
|
-
outputs: outputs$
|
|
652
|
+
inputs: inputs$G,
|
|
653
|
+
outputs: outputs$c
|
|
654
654
|
}]
|
|
655
655
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
656
656
|
|
|
657
|
-
var __decorate$
|
|
657
|
+
var __decorate$K = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
658
658
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
659
659
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
660
660
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -664,7 +664,7 @@ var __decorate$J = (this && this.__decorate) || function (decorators, target, ke
|
|
|
664
664
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
665
665
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
666
666
|
};
|
|
667
|
-
const inputs$
|
|
667
|
+
const inputs$F = ['direction', 'gutter', 'wrap'];
|
|
668
668
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
669
669
|
let PGrid = class PGrid {
|
|
670
670
|
constructor(c, r, z) {
|
|
@@ -675,9 +675,9 @@ let PGrid = class PGrid {
|
|
|
675
675
|
};
|
|
676
676
|
PGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
677
677
|
PGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
678
|
-
PGrid = __decorate$
|
|
678
|
+
PGrid = __decorate$K([
|
|
679
679
|
ProxyCmp({
|
|
680
|
-
inputs: inputs$
|
|
680
|
+
inputs: inputs$F
|
|
681
681
|
})
|
|
682
682
|
], PGrid);
|
|
683
683
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PGrid, decorators: [{
|
|
@@ -686,11 +686,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
686
686
|
selector: 'p-grid,[p-grid]',
|
|
687
687
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
688
688
|
template: '<ng-content></ng-content>',
|
|
689
|
-
inputs: inputs$
|
|
689
|
+
inputs: inputs$F
|
|
690
690
|
}]
|
|
691
691
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
692
692
|
|
|
693
|
-
var __decorate$
|
|
693
|
+
var __decorate$J = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
694
694
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
695
695
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
696
696
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -700,7 +700,7 @@ var __decorate$I = (this && this.__decorate) || function (decorators, target, ke
|
|
|
700
700
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
701
701
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
702
702
|
};
|
|
703
|
-
const inputs$
|
|
703
|
+
const inputs$E = ['offset', 'size'];
|
|
704
704
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
705
705
|
let PGridItem = class PGridItem {
|
|
706
706
|
constructor(c, r, z) {
|
|
@@ -711,9 +711,9 @@ let PGridItem = class PGridItem {
|
|
|
711
711
|
};
|
|
712
712
|
PGridItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PGridItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
713
713
|
PGridItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
714
|
-
PGridItem = __decorate$
|
|
714
|
+
PGridItem = __decorate$J([
|
|
715
715
|
ProxyCmp({
|
|
716
|
-
inputs: inputs$
|
|
716
|
+
inputs: inputs$E
|
|
717
717
|
})
|
|
718
718
|
], PGridItem);
|
|
719
719
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PGridItem, decorators: [{
|
|
@@ -722,11 +722,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
722
722
|
selector: 'p-grid-item,[p-grid-item]',
|
|
723
723
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
724
724
|
template: '<ng-content></ng-content>',
|
|
725
|
-
inputs: inputs$
|
|
725
|
+
inputs: inputs$E
|
|
726
726
|
}]
|
|
727
727
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
728
728
|
|
|
729
|
-
var __decorate$
|
|
729
|
+
var __decorate$I = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
730
730
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
731
731
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
732
732
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -736,7 +736,7 @@ var __decorate$H = (this && this.__decorate) || function (decorators, target, ke
|
|
|
736
736
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
737
737
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
738
738
|
};
|
|
739
|
-
const inputs$
|
|
739
|
+
const inputs$D = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'];
|
|
740
740
|
let PHeading = class PHeading {
|
|
741
741
|
constructor(c, r, z) {
|
|
742
742
|
this.z = z;
|
|
@@ -746,9 +746,9 @@ let PHeading = class PHeading {
|
|
|
746
746
|
};
|
|
747
747
|
PHeading.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PHeading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
748
748
|
PHeading.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PHeading, selector: "p-heading,[p-heading]", 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 });
|
|
749
|
-
PHeading = __decorate$
|
|
749
|
+
PHeading = __decorate$I([
|
|
750
750
|
ProxyCmp({
|
|
751
|
-
inputs: inputs$
|
|
751
|
+
inputs: inputs$D
|
|
752
752
|
})
|
|
753
753
|
], PHeading);
|
|
754
754
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PHeading, decorators: [{
|
|
@@ -757,11 +757,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
757
757
|
selector: 'p-heading,[p-heading]',
|
|
758
758
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
759
759
|
template: '<ng-content></ng-content>',
|
|
760
|
-
inputs: inputs$
|
|
760
|
+
inputs: inputs$D
|
|
761
761
|
}]
|
|
762
762
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
763
763
|
|
|
764
|
-
var __decorate$
|
|
764
|
+
var __decorate$H = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
765
765
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
766
766
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
767
767
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -771,7 +771,7 @@ var __decorate$G = (this && this.__decorate) || function (decorators, target, ke
|
|
|
771
771
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
772
772
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
773
773
|
};
|
|
774
|
-
const inputs$
|
|
774
|
+
const inputs$C = ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'];
|
|
775
775
|
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-heading" instead. */
|
|
776
776
|
let PHeadline = class PHeadline {
|
|
777
777
|
constructor(c, r, z) {
|
|
@@ -782,9 +782,9 @@ let PHeadline = class PHeadline {
|
|
|
782
782
|
};
|
|
783
783
|
PHeadline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PHeadline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
784
784
|
PHeadline.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
785
|
-
PHeadline = __decorate$
|
|
785
|
+
PHeadline = __decorate$H([
|
|
786
786
|
ProxyCmp({
|
|
787
|
-
inputs: inputs$
|
|
787
|
+
inputs: inputs$C
|
|
788
788
|
})
|
|
789
789
|
], PHeadline);
|
|
790
790
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PHeadline, decorators: [{
|
|
@@ -793,11 +793,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
793
793
|
selector: 'p-headline,[p-headline]',
|
|
794
794
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
795
795
|
template: '<ng-content></ng-content>',
|
|
796
|
-
inputs: inputs$
|
|
796
|
+
inputs: inputs$C
|
|
797
797
|
}]
|
|
798
798
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
799
799
|
|
|
800
|
-
var __decorate$
|
|
800
|
+
var __decorate$G = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
801
801
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
802
802
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
803
803
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -807,7 +807,7 @@ var __decorate$F = (this && this.__decorate) || function (decorators, target, ke
|
|
|
807
807
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
808
808
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
809
809
|
};
|
|
810
|
-
const inputs$
|
|
810
|
+
const inputs$B = ['aria', 'color', 'lazy', 'name', 'size', 'source', 'theme'];
|
|
811
811
|
let PIcon = class PIcon {
|
|
812
812
|
constructor(c, r, z) {
|
|
813
813
|
this.z = z;
|
|
@@ -817,9 +817,9 @@ let PIcon = class PIcon {
|
|
|
817
817
|
};
|
|
818
818
|
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
819
819
|
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
820
|
-
PIcon = __decorate$
|
|
820
|
+
PIcon = __decorate$G([
|
|
821
821
|
ProxyCmp({
|
|
822
|
-
inputs: inputs$
|
|
822
|
+
inputs: inputs$B
|
|
823
823
|
})
|
|
824
824
|
], PIcon);
|
|
825
825
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PIcon, decorators: [{
|
|
@@ -828,11 +828,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
828
828
|
selector: 'p-icon,[p-icon]',
|
|
829
829
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
830
830
|
template: '<ng-content></ng-content>',
|
|
831
|
-
inputs: inputs$
|
|
831
|
+
inputs: inputs$B
|
|
832
832
|
}]
|
|
833
833
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
834
834
|
|
|
835
|
-
var __decorate$
|
|
835
|
+
var __decorate$F = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
836
836
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
837
837
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
838
838
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -842,21 +842,21 @@ var __decorate$E = (this && this.__decorate) || function (decorators, target, ke
|
|
|
842
842
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
843
843
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
844
844
|
};
|
|
845
|
-
const inputs$
|
|
846
|
-
const outputs$
|
|
845
|
+
const inputs$A = ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'dismissButton', 'heading', 'persistent', 'state', 'theme'];
|
|
846
|
+
const outputs$b = ['action', 'dismiss'];
|
|
847
847
|
let PInlineNotification = class PInlineNotification {
|
|
848
848
|
constructor(c, r, z) {
|
|
849
849
|
this.z = z;
|
|
850
850
|
c.detach();
|
|
851
851
|
this.el = r.nativeElement;
|
|
852
|
-
proxyOutputs(this, outputs$
|
|
852
|
+
proxyOutputs(this, outputs$b);
|
|
853
853
|
}
|
|
854
854
|
};
|
|
855
855
|
PInlineNotification.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PInlineNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
856
856
|
PInlineNotification.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PInlineNotification, selector: "p-inline-notification,[p-inline-notification]", inputs: { actionIcon: "actionIcon", actionLabel: "actionLabel", actionLoading: "actionLoading", description: "description", dismissButton: "dismissButton", heading: "heading", persistent: "persistent", state: "state", theme: "theme" }, outputs: { action: "action", dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
857
|
-
PInlineNotification = __decorate$
|
|
857
|
+
PInlineNotification = __decorate$F([
|
|
858
858
|
ProxyCmp({
|
|
859
|
-
inputs: inputs$
|
|
859
|
+
inputs: inputs$A
|
|
860
860
|
})
|
|
861
861
|
], PInlineNotification);
|
|
862
862
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PInlineNotification, decorators: [{
|
|
@@ -865,12 +865,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
865
865
|
selector: 'p-inline-notification,[p-inline-notification]',
|
|
866
866
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
867
867
|
template: '<ng-content></ng-content>',
|
|
868
|
-
inputs: inputs$
|
|
869
|
-
outputs: outputs$
|
|
868
|
+
inputs: inputs$A,
|
|
869
|
+
outputs: outputs$b
|
|
870
870
|
}]
|
|
871
871
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
872
872
|
|
|
873
|
-
var __decorate$
|
|
873
|
+
var __decorate$E = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
874
874
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
875
875
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
876
876
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -880,7 +880,7 @@ var __decorate$D = (this && this.__decorate) || function (decorators, target, ke
|
|
|
880
880
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
881
881
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
882
882
|
};
|
|
883
|
-
const inputs$
|
|
883
|
+
const inputs$z = ['aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme', 'variant'];
|
|
884
884
|
let PLink = class PLink {
|
|
885
885
|
constructor(c, r, z) {
|
|
886
886
|
this.z = z;
|
|
@@ -890,9 +890,9 @@ let PLink = class PLink {
|
|
|
890
890
|
};
|
|
891
891
|
PLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
892
892
|
PLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
893
|
-
PLink = __decorate$
|
|
893
|
+
PLink = __decorate$E([
|
|
894
894
|
ProxyCmp({
|
|
895
|
-
inputs: inputs$
|
|
895
|
+
inputs: inputs$z
|
|
896
896
|
})
|
|
897
897
|
], PLink);
|
|
898
898
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLink, decorators: [{
|
|
@@ -901,11 +901,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
901
901
|
selector: 'p-link,[p-link]',
|
|
902
902
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
903
903
|
template: '<ng-content></ng-content>',
|
|
904
|
-
inputs: inputs$
|
|
904
|
+
inputs: inputs$z
|
|
905
905
|
}]
|
|
906
906
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
907
907
|
|
|
908
|
-
var __decorate$
|
|
908
|
+
var __decorate$D = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
909
909
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
910
910
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
911
911
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -915,7 +915,7 @@ var __decorate$C = (this && this.__decorate) || function (decorators, target, ke
|
|
|
915
915
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
916
916
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
917
917
|
};
|
|
918
|
-
const inputs$
|
|
918
|
+
const inputs$y = ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'theme', 'underline', 'weight'];
|
|
919
919
|
let PLinkPure = class PLinkPure {
|
|
920
920
|
constructor(c, r, z) {
|
|
921
921
|
this.z = z;
|
|
@@ -925,9 +925,9 @@ let PLinkPure = class PLinkPure {
|
|
|
925
925
|
};
|
|
926
926
|
PLinkPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLinkPure, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
927
927
|
PLinkPure.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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", underline: "underline", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
928
|
-
PLinkPure = __decorate$
|
|
928
|
+
PLinkPure = __decorate$D([
|
|
929
929
|
ProxyCmp({
|
|
930
|
-
inputs: inputs$
|
|
930
|
+
inputs: inputs$y
|
|
931
931
|
})
|
|
932
932
|
], PLinkPure);
|
|
933
933
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLinkPure, decorators: [{
|
|
@@ -936,11 +936,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
936
936
|
selector: 'p-link-pure,[p-link-pure]',
|
|
937
937
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
938
938
|
template: '<ng-content></ng-content>',
|
|
939
|
-
inputs: inputs$
|
|
939
|
+
inputs: inputs$y
|
|
940
940
|
}]
|
|
941
941
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
942
942
|
|
|
943
|
-
var __decorate$
|
|
943
|
+
var __decorate$C = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
944
944
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
945
945
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
946
946
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -950,7 +950,7 @@ var __decorate$B = (this && this.__decorate) || function (decorators, target, ke
|
|
|
950
950
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
951
951
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
952
952
|
};
|
|
953
|
-
const inputs$
|
|
953
|
+
const inputs$x = ['hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'];
|
|
954
954
|
/** @deprecated since v3.0.0, will be removed with next major release. Use `p-link` with corresponding social icon instead. */
|
|
955
955
|
let PLinkSocial = class PLinkSocial {
|
|
956
956
|
constructor(c, r, z) {
|
|
@@ -961,9 +961,9 @@ let PLinkSocial = class PLinkSocial {
|
|
|
961
961
|
};
|
|
962
962
|
PLinkSocial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLinkSocial, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
963
963
|
PLinkSocial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
964
|
-
PLinkSocial = __decorate$
|
|
964
|
+
PLinkSocial = __decorate$C([
|
|
965
965
|
ProxyCmp({
|
|
966
|
-
inputs: inputs$
|
|
966
|
+
inputs: inputs$x
|
|
967
967
|
})
|
|
968
968
|
], PLinkSocial);
|
|
969
969
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLinkSocial, decorators: [{
|
|
@@ -972,11 +972,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
972
972
|
selector: 'p-link-social,[p-link-social]',
|
|
973
973
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
974
974
|
template: '<ng-content></ng-content>',
|
|
975
|
-
inputs: inputs$
|
|
975
|
+
inputs: inputs$x
|
|
976
976
|
}]
|
|
977
977
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
978
978
|
|
|
979
|
-
var __decorate$
|
|
979
|
+
var __decorate$B = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
980
980
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
981
981
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
982
982
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -986,7 +986,7 @@ var __decorate$A = (this && this.__decorate) || function (decorators, target, ke
|
|
|
986
986
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
987
987
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
988
988
|
};
|
|
989
|
-
const inputs$
|
|
989
|
+
const inputs$w = ['align', 'aria', 'aspectRatio', 'background', 'compact', 'description', 'download', 'gradient', 'href', 'label', 'rel', 'size', 'target', 'weight'];
|
|
990
990
|
let PLinkTile = class PLinkTile {
|
|
991
991
|
constructor(c, r, z) {
|
|
992
992
|
this.z = z;
|
|
@@ -996,9 +996,9 @@ let PLinkTile = class PLinkTile {
|
|
|
996
996
|
};
|
|
997
997
|
PLinkTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLinkTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
998
998
|
PLinkTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PLinkTile, selector: "p-link-tile,[p-link-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio", background: "background", compact: "compact", description: "description", download: "download", gradient: "gradient", href: "href", label: "label", rel: "rel", size: "size", target: "target", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
999
|
-
PLinkTile = __decorate$
|
|
999
|
+
PLinkTile = __decorate$B([
|
|
1000
1000
|
ProxyCmp({
|
|
1001
|
-
inputs: inputs$
|
|
1001
|
+
inputs: inputs$w
|
|
1002
1002
|
})
|
|
1003
1003
|
], PLinkTile);
|
|
1004
1004
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLinkTile, decorators: [{
|
|
@@ -1007,11 +1007,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1007
1007
|
selector: 'p-link-tile,[p-link-tile]',
|
|
1008
1008
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1009
1009
|
template: '<ng-content></ng-content>',
|
|
1010
|
-
inputs: inputs$
|
|
1010
|
+
inputs: inputs$w
|
|
1011
1011
|
}]
|
|
1012
1012
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1013
1013
|
|
|
1014
|
-
var __decorate$
|
|
1014
|
+
var __decorate$A = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1015
1015
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1016
1016
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1017
1017
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1021,7 +1021,7 @@ var __decorate$z = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1021
1021
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1022
1022
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1023
1023
|
};
|
|
1024
|
-
const inputs$
|
|
1024
|
+
const inputs$v = ['aspectRatio', 'description', 'heading', 'headingTag', 'linkDirection', 'model', 'weight'];
|
|
1025
1025
|
let PLinkTileModelSignature = class PLinkTileModelSignature {
|
|
1026
1026
|
constructor(c, r, z) {
|
|
1027
1027
|
this.z = z;
|
|
@@ -1031,9 +1031,9 @@ let PLinkTileModelSignature = class PLinkTileModelSignature {
|
|
|
1031
1031
|
};
|
|
1032
1032
|
PLinkTileModelSignature.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLinkTileModelSignature, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1033
1033
|
PLinkTileModelSignature.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PLinkTileModelSignature, selector: "p-link-tile-model-signature,[p-link-tile-model-signature]", inputs: { aspectRatio: "aspectRatio", description: "description", heading: "heading", headingTag: "headingTag", linkDirection: "linkDirection", model: "model", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1034
|
-
PLinkTileModelSignature = __decorate$
|
|
1034
|
+
PLinkTileModelSignature = __decorate$A([
|
|
1035
1035
|
ProxyCmp({
|
|
1036
|
-
inputs: inputs$
|
|
1036
|
+
inputs: inputs$v
|
|
1037
1037
|
})
|
|
1038
1038
|
], PLinkTileModelSignature);
|
|
1039
1039
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PLinkTileModelSignature, decorators: [{
|
|
@@ -1042,11 +1042,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1042
1042
|
selector: 'p-link-tile-model-signature,[p-link-tile-model-signature]',
|
|
1043
1043
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1044
1044
|
template: '<ng-content></ng-content>',
|
|
1045
|
-
inputs: inputs$
|
|
1045
|
+
inputs: inputs$v
|
|
1046
1046
|
}]
|
|
1047
1047
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1048
1048
|
|
|
1049
|
-
var __decorate$
|
|
1049
|
+
var __decorate$z = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1050
1050
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1051
1051
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1052
1052
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1056,7 +1056,7 @@ var __decorate$y = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1056
1056
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1057
1057
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1058
1058
|
};
|
|
1059
|
-
const inputs$
|
|
1059
|
+
const inputs$u = ['aria', 'href', 'size', 'target', 'trademark', 'variant'];
|
|
1060
1060
|
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-wordmark" instead. */
|
|
1061
1061
|
let PMarque = class PMarque {
|
|
1062
1062
|
constructor(c, r, z) {
|
|
@@ -1067,9 +1067,9 @@ let PMarque = class PMarque {
|
|
|
1067
1067
|
};
|
|
1068
1068
|
PMarque.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PMarque, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1069
1069
|
PMarque.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PMarque, selector: "p-marque,[p-marque]", inputs: { aria: "aria", href: "href", size: "size", target: "target", trademark: "trademark", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1070
|
-
PMarque = __decorate$
|
|
1070
|
+
PMarque = __decorate$z([
|
|
1071
1071
|
ProxyCmp({
|
|
1072
|
-
inputs: inputs$
|
|
1072
|
+
inputs: inputs$u
|
|
1073
1073
|
})
|
|
1074
1074
|
], PMarque);
|
|
1075
1075
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PMarque, decorators: [{
|
|
@@ -1078,11 +1078,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1078
1078
|
selector: 'p-marque,[p-marque]',
|
|
1079
1079
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1080
1080
|
template: '<ng-content></ng-content>',
|
|
1081
|
-
inputs: inputs$
|
|
1081
|
+
inputs: inputs$u
|
|
1082
1082
|
}]
|
|
1083
1083
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1084
1084
|
|
|
1085
|
-
var __decorate$
|
|
1085
|
+
var __decorate$y = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1086
1086
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1087
1087
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1088
1088
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1092,21 +1092,21 @@ var __decorate$x = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1092
1092
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1093
1093
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1094
1094
|
};
|
|
1095
|
-
const inputs$
|
|
1096
|
-
const outputs$
|
|
1095
|
+
const inputs$t = ['aria', 'disableBackdropClick', 'disableCloseButton', 'dismissButton', 'fullscreen', 'heading', 'open'];
|
|
1096
|
+
const outputs$a = ['close', 'dismiss'];
|
|
1097
1097
|
let PModal = class PModal {
|
|
1098
1098
|
constructor(c, r, z) {
|
|
1099
1099
|
this.z = z;
|
|
1100
1100
|
c.detach();
|
|
1101
1101
|
this.el = r.nativeElement;
|
|
1102
|
-
proxyOutputs(this, outputs$
|
|
1102
|
+
proxyOutputs(this, outputs$a);
|
|
1103
1103
|
}
|
|
1104
1104
|
};
|
|
1105
1105
|
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1106
1106
|
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PModal, selector: "p-modal,[p-modal]", inputs: { aria: "aria", disableBackdropClick: "disableBackdropClick", disableCloseButton: "disableCloseButton", dismissButton: "dismissButton", fullscreen: "fullscreen", heading: "heading", open: "open" }, outputs: { close: "close", dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1107
|
-
PModal = __decorate$
|
|
1107
|
+
PModal = __decorate$y([
|
|
1108
1108
|
ProxyCmp({
|
|
1109
|
-
inputs: inputs$
|
|
1109
|
+
inputs: inputs$t
|
|
1110
1110
|
})
|
|
1111
1111
|
], PModal);
|
|
1112
1112
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PModal, decorators: [{
|
|
@@ -1115,12 +1115,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1115
1115
|
selector: 'p-modal,[p-modal]',
|
|
1116
1116
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1117
1117
|
template: '<ng-content></ng-content>',
|
|
1118
|
-
inputs: inputs$
|
|
1119
|
-
outputs: outputs$
|
|
1118
|
+
inputs: inputs$t,
|
|
1119
|
+
outputs: outputs$a
|
|
1120
1120
|
}]
|
|
1121
1121
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1122
1122
|
|
|
1123
|
-
var __decorate$
|
|
1123
|
+
var __decorate$x = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1124
1124
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1125
1125
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1126
1126
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1130,7 +1130,7 @@ var __decorate$w = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1130
1130
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1131
1131
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1132
1132
|
};
|
|
1133
|
-
const inputs$
|
|
1133
|
+
const inputs$s = ['color', 'model', 'size', 'theme'];
|
|
1134
1134
|
let PModelSignature = class PModelSignature {
|
|
1135
1135
|
constructor(c, r, z) {
|
|
1136
1136
|
this.z = z;
|
|
@@ -1140,9 +1140,9 @@ let PModelSignature = class PModelSignature {
|
|
|
1140
1140
|
};
|
|
1141
1141
|
PModelSignature.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PModelSignature, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1142
1142
|
PModelSignature.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PModelSignature, selector: "p-model-signature,[p-model-signature]", inputs: { color: "color", model: "model", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1143
|
-
PModelSignature = __decorate$
|
|
1143
|
+
PModelSignature = __decorate$x([
|
|
1144
1144
|
ProxyCmp({
|
|
1145
|
-
inputs: inputs$
|
|
1145
|
+
inputs: inputs$s
|
|
1146
1146
|
})
|
|
1147
1147
|
], PModelSignature);
|
|
1148
1148
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PModelSignature, decorators: [{
|
|
@@ -1151,11 +1151,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1151
1151
|
selector: 'p-model-signature,[p-model-signature]',
|
|
1152
1152
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1153
1153
|
template: '<ng-content></ng-content>',
|
|
1154
|
-
inputs: inputs$
|
|
1154
|
+
inputs: inputs$s
|
|
1155
1155
|
}]
|
|
1156
1156
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1157
1157
|
|
|
1158
|
-
var __decorate$
|
|
1158
|
+
var __decorate$w = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1159
1159
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1160
1160
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1161
1161
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1165,21 +1165,21 @@ var __decorate$v = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1165
1165
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1166
1166
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1167
1167
|
};
|
|
1168
|
-
const inputs$
|
|
1169
|
-
const outputs$
|
|
1168
|
+
const inputs$r = ['description', 'disabled', 'dropdownDirection', 'hideLabel', 'label', 'message', 'name', 'required', 'state', 'theme', 'value'];
|
|
1169
|
+
const outputs$9 = ['update'];
|
|
1170
1170
|
let PMultiSelect = class PMultiSelect {
|
|
1171
1171
|
constructor(c, r, z) {
|
|
1172
1172
|
this.z = z;
|
|
1173
1173
|
c.detach();
|
|
1174
1174
|
this.el = r.nativeElement;
|
|
1175
|
-
proxyOutputs(this, outputs$
|
|
1175
|
+
proxyOutputs(this, outputs$9);
|
|
1176
1176
|
}
|
|
1177
1177
|
};
|
|
1178
1178
|
PMultiSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PMultiSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1179
1179
|
PMultiSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PMultiSelect, selector: "p-multi-select,[p-multi-select]", inputs: { description: "description", disabled: "disabled", dropdownDirection: "dropdownDirection", hideLabel: "hideLabel", label: "label", message: "message", name: "name", required: "required", state: "state", theme: "theme", value: "value" }, outputs: { update: "update" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1180
|
-
PMultiSelect = __decorate$
|
|
1180
|
+
PMultiSelect = __decorate$w([
|
|
1181
1181
|
ProxyCmp({
|
|
1182
|
-
inputs: inputs$
|
|
1182
|
+
inputs: inputs$r
|
|
1183
1183
|
})
|
|
1184
1184
|
], PMultiSelect);
|
|
1185
1185
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PMultiSelect, decorators: [{
|
|
@@ -1188,12 +1188,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1188
1188
|
selector: 'p-multi-select,[p-multi-select]',
|
|
1189
1189
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1190
1190
|
template: '<ng-content></ng-content>',
|
|
1191
|
-
inputs: inputs$
|
|
1192
|
-
outputs: outputs$
|
|
1191
|
+
inputs: inputs$r,
|
|
1192
|
+
outputs: outputs$9
|
|
1193
1193
|
}]
|
|
1194
1194
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1195
1195
|
|
|
1196
|
-
var __decorate$
|
|
1196
|
+
var __decorate$v = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1197
1197
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1198
1198
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1199
1199
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1203,7 +1203,7 @@ var __decorate$u = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1203
1203
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1204
1204
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1205
1205
|
};
|
|
1206
|
-
const inputs$
|
|
1206
|
+
const inputs$q = ['disabled', 'value'];
|
|
1207
1207
|
let PMultiSelectOption = class PMultiSelectOption {
|
|
1208
1208
|
constructor(c, r, z) {
|
|
1209
1209
|
this.z = z;
|
|
@@ -1213,9 +1213,9 @@ let PMultiSelectOption = class PMultiSelectOption {
|
|
|
1213
1213
|
};
|
|
1214
1214
|
PMultiSelectOption.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PMultiSelectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1215
1215
|
PMultiSelectOption.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PMultiSelectOption, selector: "p-multi-select-option,[p-multi-select-option]", inputs: { disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1216
|
-
PMultiSelectOption = __decorate$
|
|
1216
|
+
PMultiSelectOption = __decorate$v([
|
|
1217
1217
|
ProxyCmp({
|
|
1218
|
-
inputs: inputs$
|
|
1218
|
+
inputs: inputs$q
|
|
1219
1219
|
})
|
|
1220
1220
|
], PMultiSelectOption);
|
|
1221
1221
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PMultiSelectOption, decorators: [{
|
|
@@ -1224,11 +1224,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1224
1224
|
selector: 'p-multi-select-option,[p-multi-select-option]',
|
|
1225
1225
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1226
1226
|
template: '<ng-content></ng-content>',
|
|
1227
|
-
inputs: inputs$
|
|
1227
|
+
inputs: inputs$q
|
|
1228
1228
|
}]
|
|
1229
1229
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1230
1230
|
|
|
1231
|
-
var __decorate$
|
|
1231
|
+
var __decorate$u = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1232
1232
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1233
1233
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1234
1234
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1238,21 +1238,21 @@ var __decorate$t = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1238
1238
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1239
1239
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1240
1240
|
};
|
|
1241
|
-
const inputs$
|
|
1242
|
-
const outputs$
|
|
1241
|
+
const inputs$p = ['activePage', 'allyLabel', 'allyLabelNext', 'allyLabelPage', 'allyLabelPrev', 'intl', 'itemsPerPage', 'maxNumberOfPageLinks', 'showLastPage', 'theme', 'totalItemsCount'];
|
|
1242
|
+
const outputs$8 = ['pageChange', 'update'];
|
|
1243
1243
|
let PPagination = class PPagination {
|
|
1244
1244
|
constructor(c, r, z) {
|
|
1245
1245
|
this.z = z;
|
|
1246
1246
|
c.detach();
|
|
1247
1247
|
this.el = r.nativeElement;
|
|
1248
|
-
proxyOutputs(this, outputs$
|
|
1248
|
+
proxyOutputs(this, outputs$8);
|
|
1249
1249
|
}
|
|
1250
1250
|
};
|
|
1251
1251
|
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1252
1252
|
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PPagination, selector: "p-pagination,[p-pagination]", inputs: { activePage: "activePage", allyLabel: "allyLabel", allyLabelNext: "allyLabelNext", allyLabelPage: "allyLabelPage", allyLabelPrev: "allyLabelPrev", intl: "intl", itemsPerPage: "itemsPerPage", maxNumberOfPageLinks: "maxNumberOfPageLinks", showLastPage: "showLastPage", theme: "theme", totalItemsCount: "totalItemsCount" }, outputs: { pageChange: "pageChange", update: "update" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1253
|
-
PPagination = __decorate$
|
|
1253
|
+
PPagination = __decorate$u([
|
|
1254
1254
|
ProxyCmp({
|
|
1255
|
-
inputs: inputs$
|
|
1255
|
+
inputs: inputs$p
|
|
1256
1256
|
})
|
|
1257
1257
|
], PPagination);
|
|
1258
1258
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PPagination, decorators: [{
|
|
@@ -1261,6 +1261,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1261
1261
|
selector: 'p-pagination,[p-pagination]',
|
|
1262
1262
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1263
1263
|
template: '<ng-content></ng-content>',
|
|
1264
|
+
inputs: inputs$p,
|
|
1265
|
+
outputs: outputs$8
|
|
1266
|
+
}]
|
|
1267
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1268
|
+
|
|
1269
|
+
var __decorate$t = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1270
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1271
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1272
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
1273
|
+
else
|
|
1274
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
1275
|
+
if (d = decorators[i])
|
|
1276
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1277
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1278
|
+
};
|
|
1279
|
+
const inputs$o = ['description', 'disabled', 'hideLabel', 'label', 'length', 'loading', 'message', 'name', 'required', 'state', 'theme', 'type', 'value'];
|
|
1280
|
+
const outputs$7 = ['update'];
|
|
1281
|
+
let PPinCode = class PPinCode {
|
|
1282
|
+
constructor(c, r, z) {
|
|
1283
|
+
this.z = z;
|
|
1284
|
+
c.detach();
|
|
1285
|
+
this.el = r.nativeElement;
|
|
1286
|
+
proxyOutputs(this, outputs$7);
|
|
1287
|
+
}
|
|
1288
|
+
};
|
|
1289
|
+
PPinCode.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PPinCode, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1290
|
+
PPinCode.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PPinCode, selector: "p-pin-code,[p-pin-code]", inputs: { description: "description", disabled: "disabled", hideLabel: "hideLabel", label: "label", length: "length", loading: "loading", message: "message", name: "name", required: "required", state: "state", theme: "theme", type: "type", value: "value" }, outputs: { update: "update" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1291
|
+
PPinCode = __decorate$t([
|
|
1292
|
+
ProxyCmp({
|
|
1293
|
+
inputs: inputs$o
|
|
1294
|
+
})
|
|
1295
|
+
], PPinCode);
|
|
1296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PPinCode, decorators: [{
|
|
1297
|
+
type: Component,
|
|
1298
|
+
args: [{
|
|
1299
|
+
selector: 'p-pin-code,[p-pin-code]',
|
|
1300
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1301
|
+
template: '<ng-content></ng-content>',
|
|
1264
1302
|
inputs: inputs$o,
|
|
1265
1303
|
outputs: outputs$7
|
|
1266
1304
|
}]
|
|
@@ -1311,7 +1349,7 @@ var __decorate$r = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1311
1349
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1312
1350
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1313
1351
|
};
|
|
1314
|
-
const inputs$m = ['hideLabel', 'label', 'message', 'state', 'theme'];
|
|
1352
|
+
const inputs$m = ['hideLabel', 'label', 'loading', 'message', 'state', 'theme'];
|
|
1315
1353
|
let PRadioButtonWrapper = class PRadioButtonWrapper {
|
|
1316
1354
|
constructor(c, r, z) {
|
|
1317
1355
|
this.z = z;
|
|
@@ -1320,7 +1358,7 @@ let PRadioButtonWrapper = class PRadioButtonWrapper {
|
|
|
1320
1358
|
}
|
|
1321
1359
|
};
|
|
1322
1360
|
PRadioButtonWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PRadioButtonWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1323
|
-
PRadioButtonWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PRadioButtonWrapper, selector: "p-radio-button-wrapper,[p-radio-button-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", message: "message", state: "state", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1361
|
+
PRadioButtonWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PRadioButtonWrapper, selector: "p-radio-button-wrapper,[p-radio-button-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 });
|
|
1324
1362
|
PRadioButtonWrapper = __decorate$r([
|
|
1325
1363
|
ProxyCmp({
|
|
1326
1364
|
inputs: inputs$m
|
|
@@ -2317,6 +2355,7 @@ const DECLARATIONS = [
|
|
|
2317
2355
|
PMultiSelect,
|
|
2318
2356
|
PMultiSelectOption,
|
|
2319
2357
|
PPagination,
|
|
2358
|
+
PPinCode,
|
|
2320
2359
|
PPopover,
|
|
2321
2360
|
PRadioButtonWrapper,
|
|
2322
2361
|
PScroller,
|
|
@@ -2373,7 +2412,7 @@ class PorscheDesignSystemModule {
|
|
|
2373
2412
|
}
|
|
2374
2413
|
}
|
|
2375
2414
|
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 });
|
|
2376
|
-
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, PMultiSelect, PMultiSelectOption, 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, PMultiSelect, PMultiSelectOption, 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] });
|
|
2415
|
+
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, PMultiSelect, PMultiSelectOption, PPagination, PPinCode, 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, PMultiSelect, PMultiSelectOption, PPagination, PPinCode, 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] });
|
|
2377
2416
|
PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule });
|
|
2378
2417
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
|
|
2379
2418
|
type: NgModule,
|
|
@@ -2406,5 +2445,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2406
2445
|
* Generated bundle index. Do not edit.
|
|
2407
2446
|
*/
|
|
2408
2447
|
|
|
2409
|
-
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, PMultiSelect, PMultiSelectOption, 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 };
|
|
2448
|
+
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, PMultiSelect, PMultiSelectOption, PPagination, PPinCode, 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 };
|
|
2410
2449
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|