@porsche-design-system/components-angular 3.0.0-alpha.3 → 3.0.0-alpha.5
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 +99 -0
- package/esm2020/lib/components/banner.wrapper.mjs +1 -1
- package/esm2020/lib/components/barrel.mjs +17 -2
- package/esm2020/lib/components/button-tile.wrapper.mjs +35 -0
- package/esm2020/lib/components/carousel.wrapper.mjs +3 -3
- package/esm2020/lib/components/crest.wrapper.mjs +35 -0
- package/esm2020/lib/components/fieldset-wrapper.wrapper.mjs +2 -1
- package/esm2020/lib/components/fieldset.wrapper.mjs +35 -0
- package/esm2020/lib/components/link-tile-model-signature.wrapper.mjs +35 -0
- package/esm2020/lib/components/marque.wrapper.mjs +2 -1
- package/esm2020/lib/components/scroller.wrapper.mjs +3 -3
- package/esm2020/lib/components/table.wrapper.mjs +3 -3
- package/esm2020/lib/components/wordmark.wrapper.mjs +35 -0
- package/esm2020/lib/types.mjs +1 -1
- package/esm2020/porsche-design-system.module.mjs +57 -52
- package/fesm2015/porsche-design-system-components-angular.mjs +447 -265
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +427 -265
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/banner.wrapper.d.ts +1 -0
- package/lib/components/barrel.d.ts +11 -1
- package/lib/components/button-tile.wrapper.d.ts +24 -0
- package/lib/components/carousel.wrapper.d.ts +3 -2
- package/lib/components/crest.wrapper.d.ts +13 -0
- package/lib/components/fieldset-wrapper.wrapper.d.ts +1 -0
- package/lib/components/fieldset.wrapper.d.ts +16 -0
- package/lib/components/link-tile-model-signature.wrapper.d.ts +17 -0
- package/lib/components/marque.wrapper.d.ts +1 -0
- package/lib/components/scroller.wrapper.d.ts +2 -1
- package/lib/components/table.wrapper.d.ts +3 -2
- package/lib/components/wordmark.wrapper.d.ts +15 -0
- package/lib/types.d.ts +89 -43
- package/package.json +2 -2
- package/porsche-design-system.module.d.ts +56 -51
- package/styles/_index.scss +1 -0
- package/styles/scss.scss +0 -1
|
@@ -43,7 +43,7 @@ function ProxyCmp({ inputs /*, methods*/ }) {
|
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
var __decorate$
|
|
46
|
+
var __decorate$X = (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,7 +53,7 @@ var __decorate$S = (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$
|
|
56
|
+
const inputs$S = ['compact', 'heading', 'open', 'size', 'tag', 'theme'];
|
|
57
57
|
const outputs$c = ['accordionChange', 'change'];
|
|
58
58
|
let PAccordion = class PAccordion {
|
|
59
59
|
constructor(c, r, z) {
|
|
@@ -65,9 +65,9 @@ let PAccordion = class PAccordion {
|
|
|
65
65
|
};
|
|
66
66
|
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", 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: "12.0.0", version: "13.3.12", type: PAccordion, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", open: "open", size: "size", tag: "tag", theme: "theme" }, outputs: { accordionChange: "accordionChange", change: "change" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
68
|
-
PAccordion = __decorate$
|
|
68
|
+
PAccordion = __decorate$X([
|
|
69
69
|
ProxyCmp({
|
|
70
|
-
inputs: inputs$
|
|
70
|
+
inputs: inputs$S
|
|
71
71
|
})
|
|
72
72
|
], PAccordion);
|
|
73
73
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PAccordion, decorators: [{
|
|
@@ -76,12 +76,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
76
76
|
selector: 'p-accordion,[p-accordion]',
|
|
77
77
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
78
78
|
template: '<ng-content></ng-content>',
|
|
79
|
-
inputs: inputs$
|
|
79
|
+
inputs: inputs$S,
|
|
80
80
|
outputs: outputs$c
|
|
81
81
|
}]
|
|
82
82
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
83
83
|
|
|
84
|
-
var __decorate$
|
|
84
|
+
var __decorate$W = (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,7 +91,7 @@ var __decorate$R = (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$
|
|
94
|
+
const inputs$R = ['description', 'heading', 'persistent', 'state', 'theme', 'width'];
|
|
95
95
|
const outputs$b = ['dismiss'];
|
|
96
96
|
let PBanner = class PBanner {
|
|
97
97
|
constructor(c, r, z) {
|
|
@@ -103,9 +103,9 @@ let PBanner = class PBanner {
|
|
|
103
103
|
};
|
|
104
104
|
PBanner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", 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: "12.0.0", version: "13.3.12", type: PBanner, selector: "p-banner,[p-banner]", inputs: { description: "description", heading: "heading", 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$W([
|
|
107
107
|
ProxyCmp({
|
|
108
|
-
inputs: inputs$
|
|
108
|
+
inputs: inputs$R
|
|
109
109
|
})
|
|
110
110
|
], PBanner);
|
|
111
111
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PBanner, decorators: [{
|
|
@@ -114,12 +114,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
114
114
|
selector: 'p-banner,[p-banner]',
|
|
115
115
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
116
116
|
template: '<ng-content></ng-content>',
|
|
117
|
-
inputs: inputs$
|
|
117
|
+
inputs: inputs$R,
|
|
118
118
|
outputs: outputs$b
|
|
119
119
|
}]
|
|
120
120
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
121
121
|
|
|
122
|
-
var __decorate$
|
|
122
|
+
var __decorate$V = (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$Q = (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$Q = ['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: "13.3.12", 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: "12.0.0", version: "13.3.12", 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$V([
|
|
143
143
|
ProxyCmp({
|
|
144
|
-
inputs: inputs$
|
|
144
|
+
inputs: inputs$Q
|
|
145
145
|
})
|
|
146
146
|
], PButton);
|
|
147
147
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButton, decorators: [{
|
|
@@ -150,11 +150,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
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$Q
|
|
154
154
|
}]
|
|
155
155
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
156
156
|
|
|
157
|
-
var __decorate$
|
|
157
|
+
var __decorate$U = (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$P = (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$P = ['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: "13.3.12", 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: "12.0.0", version: "13.3.12", 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$U([
|
|
178
178
|
ProxyCmp({
|
|
179
|
-
inputs: inputs$
|
|
179
|
+
inputs: inputs$P
|
|
180
180
|
})
|
|
181
181
|
], PButtonGroup);
|
|
182
182
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButtonGroup, decorators: [{
|
|
@@ -185,11 +185,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
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$P
|
|
189
189
|
}]
|
|
190
190
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
191
191
|
|
|
192
|
-
var __decorate$
|
|
192
|
+
var __decorate$T = (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$O = (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$O = ['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: "13.3.12", 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: "12.0.0", version: "13.3.12", 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$T([
|
|
213
213
|
ProxyCmp({
|
|
214
|
-
inputs: inputs$
|
|
214
|
+
inputs: inputs$O
|
|
215
215
|
})
|
|
216
216
|
], PButtonPure);
|
|
217
217
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButtonPure, decorators: [{
|
|
@@ -220,11 +220,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
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$O
|
|
224
224
|
}]
|
|
225
225
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
226
226
|
|
|
227
|
-
var __decorate$
|
|
227
|
+
var __decorate$S = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
228
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
229
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
230
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
231
|
+
else
|
|
232
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
233
|
+
if (d = decorators[i])
|
|
234
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
235
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
236
|
+
};
|
|
237
|
+
const inputs$N = ['align', 'aria', 'aspectRatio', 'compact', 'description', 'disabled', 'gradient', 'icon', 'iconSource', 'label', 'loading', 'size', 'type', 'weight'];
|
|
238
|
+
let PButtonTile = class PButtonTile {
|
|
239
|
+
constructor(c, r, z) {
|
|
240
|
+
this.z = z;
|
|
241
|
+
c.detach();
|
|
242
|
+
this.el = r.nativeElement;
|
|
243
|
+
}
|
|
244
|
+
};
|
|
245
|
+
PButtonTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButtonTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
246
|
+
PButtonTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PButtonTile, selector: "p-button-tile,[p-button-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio", compact: "compact", description: "description", disabled: "disabled", gradient: "gradient", icon: "icon", iconSource: "iconSource", label: "label", loading: "loading", size: "size", type: "type", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
247
|
+
PButtonTile = __decorate$S([
|
|
248
|
+
ProxyCmp({
|
|
249
|
+
inputs: inputs$N
|
|
250
|
+
})
|
|
251
|
+
], PButtonTile);
|
|
252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButtonTile, decorators: [{
|
|
253
|
+
type: Component,
|
|
254
|
+
args: [{
|
|
255
|
+
selector: 'p-button-tile,[p-button-tile]',
|
|
256
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
257
|
+
template: '<ng-content></ng-content>',
|
|
258
|
+
inputs: inputs$N
|
|
259
|
+
}]
|
|
260
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
261
|
+
|
|
262
|
+
var __decorate$R = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
228
263
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
229
264
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
230
265
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -234,7 +269,7 @@ var __decorate$N = (this && this.__decorate) || function (decorators, target, ke
|
|
|
234
269
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
235
270
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
236
271
|
};
|
|
237
|
-
const inputs$
|
|
272
|
+
const inputs$M = ['activeSlideIndex', 'alignHeader', 'description', 'disablePagination', 'heading', 'intl', 'pagination', 'rewind', 'slidesPerPage', 'theme', 'width', 'wrapContent'];
|
|
238
273
|
const outputs$a = ['carouselChange', 'change'];
|
|
239
274
|
let PCarousel = class PCarousel {
|
|
240
275
|
constructor(c, r, z) {
|
|
@@ -245,10 +280,10 @@ let PCarousel = class PCarousel {
|
|
|
245
280
|
}
|
|
246
281
|
};
|
|
247
282
|
PCarousel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
248
|
-
PCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PCarousel, selector: "p-carousel,[p-carousel]", inputs: { alignHeader: "alignHeader", description: "description", disablePagination: "disablePagination", heading: "heading", intl: "intl", pagination: "pagination", rewind: "rewind", slidesPerPage: "slidesPerPage", theme: "theme", width: "width", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange", change: "change" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
249
|
-
PCarousel = __decorate$
|
|
283
|
+
PCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PCarousel, selector: "p-carousel,[p-carousel]", inputs: { activeSlideIndex: "activeSlideIndex", alignHeader: "alignHeader", description: "description", disablePagination: "disablePagination", heading: "heading", intl: "intl", pagination: "pagination", rewind: "rewind", slidesPerPage: "slidesPerPage", theme: "theme", width: "width", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange", change: "change" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
284
|
+
PCarousel = __decorate$R([
|
|
250
285
|
ProxyCmp({
|
|
251
|
-
inputs: inputs$
|
|
286
|
+
inputs: inputs$M
|
|
252
287
|
})
|
|
253
288
|
], PCarousel);
|
|
254
289
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCarousel, decorators: [{
|
|
@@ -257,12 +292,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
257
292
|
selector: 'p-carousel,[p-carousel]',
|
|
258
293
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
259
294
|
template: '<ng-content></ng-content>',
|
|
260
|
-
inputs: inputs$
|
|
295
|
+
inputs: inputs$M,
|
|
261
296
|
outputs: outputs$a
|
|
262
297
|
}]
|
|
263
298
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
264
299
|
|
|
265
|
-
var __decorate$
|
|
300
|
+
var __decorate$Q = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
266
301
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
267
302
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
268
303
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -272,7 +307,7 @@ var __decorate$M = (this && this.__decorate) || function (decorators, target, ke
|
|
|
272
307
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
273
308
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
274
309
|
};
|
|
275
|
-
const inputs$
|
|
310
|
+
const inputs$L = ['hideLabel', 'label', 'message', 'state', 'theme'];
|
|
276
311
|
let PCheckboxWrapper = class PCheckboxWrapper {
|
|
277
312
|
constructor(c, r, z) {
|
|
278
313
|
this.z = z;
|
|
@@ -282,9 +317,9 @@ let PCheckboxWrapper = class PCheckboxWrapper {
|
|
|
282
317
|
};
|
|
283
318
|
PCheckboxWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCheckboxWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
284
319
|
PCheckboxWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PCheckboxWrapper, selector: "p-checkbox-wrapper,[p-checkbox-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 });
|
|
285
|
-
PCheckboxWrapper = __decorate$
|
|
320
|
+
PCheckboxWrapper = __decorate$Q([
|
|
286
321
|
ProxyCmp({
|
|
287
|
-
inputs: inputs$
|
|
322
|
+
inputs: inputs$L
|
|
288
323
|
})
|
|
289
324
|
], PCheckboxWrapper);
|
|
290
325
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCheckboxWrapper, decorators: [{
|
|
@@ -293,11 +328,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
293
328
|
selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',
|
|
294
329
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
295
330
|
template: '<ng-content></ng-content>',
|
|
296
|
-
inputs: inputs$
|
|
331
|
+
inputs: inputs$L
|
|
297
332
|
}]
|
|
298
333
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
299
334
|
|
|
300
|
-
var __decorate$
|
|
335
|
+
var __decorate$P = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
301
336
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
302
337
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
303
338
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -307,7 +342,7 @@ var __decorate$L = (this && this.__decorate) || function (decorators, target, ke
|
|
|
307
342
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
308
343
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
309
344
|
};
|
|
310
|
-
const inputs$
|
|
345
|
+
const inputs$K = ['backgroundColor', 'theme', 'width'];
|
|
311
346
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
312
347
|
let PContentWrapper = class PContentWrapper {
|
|
313
348
|
constructor(c, r, z) {
|
|
@@ -318,9 +353,9 @@ let PContentWrapper = class PContentWrapper {
|
|
|
318
353
|
};
|
|
319
354
|
PContentWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PContentWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
320
355
|
PContentWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
321
|
-
PContentWrapper = __decorate$
|
|
356
|
+
PContentWrapper = __decorate$P([
|
|
322
357
|
ProxyCmp({
|
|
323
|
-
inputs: inputs$
|
|
358
|
+
inputs: inputs$K
|
|
324
359
|
})
|
|
325
360
|
], PContentWrapper);
|
|
326
361
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PContentWrapper, decorators: [{
|
|
@@ -329,11 +364,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
329
364
|
selector: 'p-content-wrapper,[p-content-wrapper]',
|
|
330
365
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
331
366
|
template: '<ng-content></ng-content>',
|
|
332
|
-
inputs: inputs$
|
|
367
|
+
inputs: inputs$K
|
|
333
368
|
}]
|
|
334
369
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
335
370
|
|
|
336
|
-
var __decorate$
|
|
371
|
+
var __decorate$O = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
337
372
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
338
373
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
339
374
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -343,7 +378,42 @@ var __decorate$K = (this && this.__decorate) || function (decorators, target, ke
|
|
|
343
378
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
344
379
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
345
380
|
};
|
|
346
|
-
const inputs$
|
|
381
|
+
const inputs$J = ['aria', 'href', 'target'];
|
|
382
|
+
let PCrest = class PCrest {
|
|
383
|
+
constructor(c, r, z) {
|
|
384
|
+
this.z = z;
|
|
385
|
+
c.detach();
|
|
386
|
+
this.el = r.nativeElement;
|
|
387
|
+
}
|
|
388
|
+
};
|
|
389
|
+
PCrest.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCrest, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
390
|
+
PCrest.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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$O([
|
|
392
|
+
ProxyCmp({
|
|
393
|
+
inputs: inputs$J
|
|
394
|
+
})
|
|
395
|
+
], PCrest);
|
|
396
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCrest, decorators: [{
|
|
397
|
+
type: Component,
|
|
398
|
+
args: [{
|
|
399
|
+
selector: 'p-crest,[p-crest]',
|
|
400
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
401
|
+
template: '<ng-content></ng-content>',
|
|
402
|
+
inputs: inputs$J
|
|
403
|
+
}]
|
|
404
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
405
|
+
|
|
406
|
+
var __decorate$N = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
407
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
408
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
409
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
410
|
+
else
|
|
411
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
412
|
+
if (d = decorators[i])
|
|
413
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
414
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
415
|
+
};
|
|
416
|
+
const inputs$I = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'];
|
|
347
417
|
let PDisplay = class PDisplay {
|
|
348
418
|
constructor(c, r, z) {
|
|
349
419
|
this.z = z;
|
|
@@ -353,9 +423,9 @@ let PDisplay = class PDisplay {
|
|
|
353
423
|
};
|
|
354
424
|
PDisplay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDisplay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
355
425
|
PDisplay.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
356
|
-
PDisplay = __decorate$
|
|
426
|
+
PDisplay = __decorate$N([
|
|
357
427
|
ProxyCmp({
|
|
358
|
-
inputs: inputs$
|
|
428
|
+
inputs: inputs$I
|
|
359
429
|
})
|
|
360
430
|
], PDisplay);
|
|
361
431
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDisplay, decorators: [{
|
|
@@ -364,11 +434,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
364
434
|
selector: 'p-display,[p-display]',
|
|
365
435
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
366
436
|
template: '<ng-content></ng-content>',
|
|
367
|
-
inputs: inputs$
|
|
437
|
+
inputs: inputs$I
|
|
368
438
|
}]
|
|
369
439
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
370
440
|
|
|
371
|
-
var __decorate$
|
|
441
|
+
var __decorate$M = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
372
442
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
373
443
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
374
444
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -378,7 +448,7 @@ var __decorate$J = (this && this.__decorate) || function (decorators, target, ke
|
|
|
378
448
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
379
449
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
380
450
|
};
|
|
381
|
-
const inputs$
|
|
451
|
+
const inputs$H = ['color', 'direction', 'orientation', 'theme'];
|
|
382
452
|
let PDivider = class PDivider {
|
|
383
453
|
constructor(c, r, z) {
|
|
384
454
|
this.z = z;
|
|
@@ -388,9 +458,9 @@ let PDivider = class PDivider {
|
|
|
388
458
|
};
|
|
389
459
|
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
390
460
|
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
391
|
-
PDivider = __decorate$
|
|
461
|
+
PDivider = __decorate$M([
|
|
392
462
|
ProxyCmp({
|
|
393
|
-
inputs: inputs$
|
|
463
|
+
inputs: inputs$H
|
|
394
464
|
})
|
|
395
465
|
], PDivider);
|
|
396
466
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDivider, decorators: [{
|
|
@@ -399,11 +469,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
399
469
|
selector: 'p-divider,[p-divider]',
|
|
400
470
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
401
471
|
template: '<ng-content></ng-content>',
|
|
402
|
-
inputs: inputs$
|
|
472
|
+
inputs: inputs$H
|
|
403
473
|
}]
|
|
404
474
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
405
475
|
|
|
406
|
-
var __decorate$
|
|
476
|
+
var __decorate$L = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
407
477
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
408
478
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
409
479
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -413,7 +483,43 @@ var __decorate$I = (this && this.__decorate) || function (decorators, target, ke
|
|
|
413
483
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
414
484
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
415
485
|
};
|
|
416
|
-
const inputs$
|
|
486
|
+
const inputs$G = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
487
|
+
let PFieldset = class PFieldset {
|
|
488
|
+
constructor(c, r, z) {
|
|
489
|
+
this.z = z;
|
|
490
|
+
c.detach();
|
|
491
|
+
this.el = r.nativeElement;
|
|
492
|
+
}
|
|
493
|
+
};
|
|
494
|
+
PFieldset.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFieldset, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
495
|
+
PFieldset.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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$L([
|
|
497
|
+
ProxyCmp({
|
|
498
|
+
inputs: inputs$G
|
|
499
|
+
})
|
|
500
|
+
], PFieldset);
|
|
501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFieldset, decorators: [{
|
|
502
|
+
type: Component,
|
|
503
|
+
args: [{
|
|
504
|
+
selector: 'p-fieldset,[p-fieldset]',
|
|
505
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
506
|
+
template: '<ng-content></ng-content>',
|
|
507
|
+
inputs: inputs$G
|
|
508
|
+
}]
|
|
509
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
510
|
+
|
|
511
|
+
var __decorate$K = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
512
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
513
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
514
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
515
|
+
else
|
|
516
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
517
|
+
if (d = decorators[i])
|
|
518
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
519
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
520
|
+
};
|
|
521
|
+
const inputs$F = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
522
|
+
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-fieldset" instead. */
|
|
417
523
|
let PFieldsetWrapper = class PFieldsetWrapper {
|
|
418
524
|
constructor(c, r, z) {
|
|
419
525
|
this.z = z;
|
|
@@ -423,9 +529,9 @@ let PFieldsetWrapper = class PFieldsetWrapper {
|
|
|
423
529
|
};
|
|
424
530
|
PFieldsetWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFieldsetWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
425
531
|
PFieldsetWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
426
|
-
PFieldsetWrapper = __decorate$
|
|
532
|
+
PFieldsetWrapper = __decorate$K([
|
|
427
533
|
ProxyCmp({
|
|
428
|
-
inputs: inputs$
|
|
534
|
+
inputs: inputs$F
|
|
429
535
|
})
|
|
430
536
|
], PFieldsetWrapper);
|
|
431
537
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFieldsetWrapper, decorators: [{
|
|
@@ -434,11 +540,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
434
540
|
selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',
|
|
435
541
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
436
542
|
template: '<ng-content></ng-content>',
|
|
437
|
-
inputs: inputs$
|
|
543
|
+
inputs: inputs$F
|
|
438
544
|
}]
|
|
439
545
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
440
546
|
|
|
441
|
-
var __decorate$
|
|
547
|
+
var __decorate$J = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
442
548
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
443
549
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
444
550
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -448,7 +554,7 @@ var __decorate$H = (this && this.__decorate) || function (decorators, target, ke
|
|
|
448
554
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
449
555
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
450
556
|
};
|
|
451
|
-
const inputs$
|
|
557
|
+
const inputs$E = ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'];
|
|
452
558
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
453
559
|
let PFlex = class PFlex {
|
|
454
560
|
constructor(c, r, z) {
|
|
@@ -459,9 +565,9 @@ let PFlex = class PFlex {
|
|
|
459
565
|
};
|
|
460
566
|
PFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlex, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
461
567
|
PFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
462
|
-
PFlex = __decorate$
|
|
568
|
+
PFlex = __decorate$J([
|
|
463
569
|
ProxyCmp({
|
|
464
|
-
inputs: inputs$
|
|
570
|
+
inputs: inputs$E
|
|
465
571
|
})
|
|
466
572
|
], PFlex);
|
|
467
573
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlex, decorators: [{
|
|
@@ -470,11 +576,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
470
576
|
selector: 'p-flex,[p-flex]',
|
|
471
577
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
472
578
|
template: '<ng-content></ng-content>',
|
|
473
|
-
inputs: inputs$
|
|
579
|
+
inputs: inputs$E
|
|
474
580
|
}]
|
|
475
581
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
476
582
|
|
|
477
|
-
var __decorate$
|
|
583
|
+
var __decorate$I = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
478
584
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
479
585
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
480
586
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -484,7 +590,7 @@ var __decorate$G = (this && this.__decorate) || function (decorators, target, ke
|
|
|
484
590
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
485
591
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
486
592
|
};
|
|
487
|
-
const inputs$
|
|
593
|
+
const inputs$D = ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'];
|
|
488
594
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
489
595
|
let PFlexItem = class PFlexItem {
|
|
490
596
|
constructor(c, r, z) {
|
|
@@ -495,9 +601,9 @@ let PFlexItem = class PFlexItem {
|
|
|
495
601
|
};
|
|
496
602
|
PFlexItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlexItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
497
603
|
PFlexItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
498
|
-
PFlexItem = __decorate$
|
|
604
|
+
PFlexItem = __decorate$I([
|
|
499
605
|
ProxyCmp({
|
|
500
|
-
inputs: inputs$
|
|
606
|
+
inputs: inputs$D
|
|
501
607
|
})
|
|
502
608
|
], PFlexItem);
|
|
503
609
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlexItem, decorators: [{
|
|
@@ -506,11 +612,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
506
612
|
selector: 'p-flex-item,[p-flex-item]',
|
|
507
613
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
508
614
|
template: '<ng-content></ng-content>',
|
|
509
|
-
inputs: inputs$
|
|
615
|
+
inputs: inputs$D
|
|
510
616
|
}]
|
|
511
617
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
512
618
|
|
|
513
|
-
var __decorate$
|
|
619
|
+
var __decorate$H = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
514
620
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
515
621
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
516
622
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -520,7 +626,7 @@ var __decorate$F = (this && this.__decorate) || function (decorators, target, ke
|
|
|
520
626
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
521
627
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
522
628
|
};
|
|
523
|
-
const inputs$
|
|
629
|
+
const inputs$C = ['direction', 'gutter', 'wrap'];
|
|
524
630
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
525
631
|
let PGrid = class PGrid {
|
|
526
632
|
constructor(c, r, z) {
|
|
@@ -531,9 +637,9 @@ let PGrid = class PGrid {
|
|
|
531
637
|
};
|
|
532
638
|
PGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
533
639
|
PGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
534
|
-
PGrid = __decorate$
|
|
640
|
+
PGrid = __decorate$H([
|
|
535
641
|
ProxyCmp({
|
|
536
|
-
inputs: inputs$
|
|
642
|
+
inputs: inputs$C
|
|
537
643
|
})
|
|
538
644
|
], PGrid);
|
|
539
645
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGrid, decorators: [{
|
|
@@ -542,11 +648,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
542
648
|
selector: 'p-grid,[p-grid]',
|
|
543
649
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
544
650
|
template: '<ng-content></ng-content>',
|
|
545
|
-
inputs: inputs$
|
|
651
|
+
inputs: inputs$C
|
|
546
652
|
}]
|
|
547
653
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
548
654
|
|
|
549
|
-
var __decorate$
|
|
655
|
+
var __decorate$G = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
550
656
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
551
657
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
552
658
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -556,7 +662,7 @@ var __decorate$E = (this && this.__decorate) || function (decorators, target, ke
|
|
|
556
662
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
557
663
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
558
664
|
};
|
|
559
|
-
const inputs$
|
|
665
|
+
const inputs$B = ['offset', 'size'];
|
|
560
666
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
561
667
|
let PGridItem = class PGridItem {
|
|
562
668
|
constructor(c, r, z) {
|
|
@@ -567,9 +673,9 @@ let PGridItem = class PGridItem {
|
|
|
567
673
|
};
|
|
568
674
|
PGridItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGridItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
569
675
|
PGridItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
570
|
-
PGridItem = __decorate$
|
|
676
|
+
PGridItem = __decorate$G([
|
|
571
677
|
ProxyCmp({
|
|
572
|
-
inputs: inputs$
|
|
678
|
+
inputs: inputs$B
|
|
573
679
|
})
|
|
574
680
|
], PGridItem);
|
|
575
681
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGridItem, decorators: [{
|
|
@@ -578,11 +684,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
578
684
|
selector: 'p-grid-item,[p-grid-item]',
|
|
579
685
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
580
686
|
template: '<ng-content></ng-content>',
|
|
581
|
-
inputs: inputs$
|
|
687
|
+
inputs: inputs$B
|
|
582
688
|
}]
|
|
583
689
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
584
690
|
|
|
585
|
-
var __decorate$
|
|
691
|
+
var __decorate$F = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
586
692
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
587
693
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
588
694
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -592,7 +698,7 @@ var __decorate$D = (this && this.__decorate) || function (decorators, target, ke
|
|
|
592
698
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
593
699
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
594
700
|
};
|
|
595
|
-
const inputs$
|
|
701
|
+
const inputs$A = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'];
|
|
596
702
|
let PHeading = class PHeading {
|
|
597
703
|
constructor(c, r, z) {
|
|
598
704
|
this.z = z;
|
|
@@ -602,9 +708,9 @@ let PHeading = class PHeading {
|
|
|
602
708
|
};
|
|
603
709
|
PHeading.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
604
710
|
PHeading.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
605
|
-
PHeading = __decorate$
|
|
711
|
+
PHeading = __decorate$F([
|
|
606
712
|
ProxyCmp({
|
|
607
|
-
inputs: inputs$
|
|
713
|
+
inputs: inputs$A
|
|
608
714
|
})
|
|
609
715
|
], PHeading);
|
|
610
716
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeading, decorators: [{
|
|
@@ -613,11 +719,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
613
719
|
selector: 'p-heading,[p-heading]',
|
|
614
720
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
615
721
|
template: '<ng-content></ng-content>',
|
|
616
|
-
inputs: inputs$
|
|
722
|
+
inputs: inputs$A
|
|
617
723
|
}]
|
|
618
724
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
619
725
|
|
|
620
|
-
var __decorate$
|
|
726
|
+
var __decorate$E = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
621
727
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
622
728
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
623
729
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -627,7 +733,7 @@ var __decorate$C = (this && this.__decorate) || function (decorators, target, ke
|
|
|
627
733
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
628
734
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
629
735
|
};
|
|
630
|
-
const inputs$
|
|
736
|
+
const inputs$z = ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'];
|
|
631
737
|
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-heading" instead. */
|
|
632
738
|
let PHeadline = class PHeadline {
|
|
633
739
|
constructor(c, r, z) {
|
|
@@ -638,9 +744,9 @@ let PHeadline = class PHeadline {
|
|
|
638
744
|
};
|
|
639
745
|
PHeadline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeadline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
640
746
|
PHeadline.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
641
|
-
PHeadline = __decorate$
|
|
747
|
+
PHeadline = __decorate$E([
|
|
642
748
|
ProxyCmp({
|
|
643
|
-
inputs: inputs$
|
|
749
|
+
inputs: inputs$z
|
|
644
750
|
})
|
|
645
751
|
], PHeadline);
|
|
646
752
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeadline, decorators: [{
|
|
@@ -649,11 +755,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
649
755
|
selector: 'p-headline,[p-headline]',
|
|
650
756
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
651
757
|
template: '<ng-content></ng-content>',
|
|
652
|
-
inputs: inputs$
|
|
758
|
+
inputs: inputs$z
|
|
653
759
|
}]
|
|
654
760
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
655
761
|
|
|
656
|
-
var __decorate$
|
|
762
|
+
var __decorate$D = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
657
763
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
658
764
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
659
765
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -663,7 +769,7 @@ var __decorate$B = (this && this.__decorate) || function (decorators, target, ke
|
|
|
663
769
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
664
770
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
665
771
|
};
|
|
666
|
-
const inputs$
|
|
772
|
+
const inputs$y = ['aria', 'color', 'lazy', 'name', 'size', 'source', 'theme'];
|
|
667
773
|
let PIcon = class PIcon {
|
|
668
774
|
constructor(c, r, z) {
|
|
669
775
|
this.z = z;
|
|
@@ -673,9 +779,9 @@ let PIcon = class PIcon {
|
|
|
673
779
|
};
|
|
674
780
|
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
675
781
|
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
676
|
-
PIcon = __decorate$
|
|
782
|
+
PIcon = __decorate$D([
|
|
677
783
|
ProxyCmp({
|
|
678
|
-
inputs: inputs$
|
|
784
|
+
inputs: inputs$y
|
|
679
785
|
})
|
|
680
786
|
], PIcon);
|
|
681
787
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PIcon, decorators: [{
|
|
@@ -684,11 +790,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
684
790
|
selector: 'p-icon,[p-icon]',
|
|
685
791
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
686
792
|
template: '<ng-content></ng-content>',
|
|
687
|
-
inputs: inputs$
|
|
793
|
+
inputs: inputs$y
|
|
688
794
|
}]
|
|
689
795
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
690
796
|
|
|
691
|
-
var __decorate$
|
|
797
|
+
var __decorate$C = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
692
798
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
693
799
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
694
800
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -698,7 +804,7 @@ var __decorate$A = (this && this.__decorate) || function (decorators, target, ke
|
|
|
698
804
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
699
805
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
700
806
|
};
|
|
701
|
-
const inputs$
|
|
807
|
+
const inputs$x = ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'heading', 'persistent', 'state', 'theme'];
|
|
702
808
|
const outputs$9 = ['action', 'dismiss'];
|
|
703
809
|
let PInlineNotification = class PInlineNotification {
|
|
704
810
|
constructor(c, r, z) {
|
|
@@ -710,9 +816,9 @@ let PInlineNotification = class PInlineNotification {
|
|
|
710
816
|
};
|
|
711
817
|
PInlineNotification.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PInlineNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
712
818
|
PInlineNotification.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PInlineNotification, selector: "p-inline-notification,[p-inline-notification]", inputs: { actionIcon: "actionIcon", actionLabel: "actionLabel", actionLoading: "actionLoading", description: "description", heading: "heading", persistent: "persistent", state: "state", theme: "theme" }, outputs: { action: "action", dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
713
|
-
PInlineNotification = __decorate$
|
|
819
|
+
PInlineNotification = __decorate$C([
|
|
714
820
|
ProxyCmp({
|
|
715
|
-
inputs: inputs$
|
|
821
|
+
inputs: inputs$x
|
|
716
822
|
})
|
|
717
823
|
], PInlineNotification);
|
|
718
824
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PInlineNotification, decorators: [{
|
|
@@ -721,12 +827,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
721
827
|
selector: 'p-inline-notification,[p-inline-notification]',
|
|
722
828
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
723
829
|
template: '<ng-content></ng-content>',
|
|
724
|
-
inputs: inputs$
|
|
830
|
+
inputs: inputs$x,
|
|
725
831
|
outputs: outputs$9
|
|
726
832
|
}]
|
|
727
833
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
728
834
|
|
|
729
|
-
var __decorate$
|
|
835
|
+
var __decorate$B = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
730
836
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
731
837
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
732
838
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -736,7 +842,7 @@ var __decorate$z = (this && this.__decorate) || function (decorators, target, ke
|
|
|
736
842
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
737
843
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
738
844
|
};
|
|
739
|
-
const inputs$
|
|
845
|
+
const inputs$w = ['aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme', 'variant'];
|
|
740
846
|
let PLink = class PLink {
|
|
741
847
|
constructor(c, r, z) {
|
|
742
848
|
this.z = z;
|
|
@@ -746,9 +852,9 @@ let PLink = class PLink {
|
|
|
746
852
|
};
|
|
747
853
|
PLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
748
854
|
PLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
749
|
-
PLink = __decorate$
|
|
855
|
+
PLink = __decorate$B([
|
|
750
856
|
ProxyCmp({
|
|
751
|
-
inputs: inputs$
|
|
857
|
+
inputs: inputs$w
|
|
752
858
|
})
|
|
753
859
|
], PLink);
|
|
754
860
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLink, decorators: [{
|
|
@@ -757,11 +863,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
757
863
|
selector: 'p-link,[p-link]',
|
|
758
864
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
759
865
|
template: '<ng-content></ng-content>',
|
|
760
|
-
inputs: inputs$
|
|
866
|
+
inputs: inputs$w
|
|
761
867
|
}]
|
|
762
868
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
763
869
|
|
|
764
|
-
var __decorate$
|
|
870
|
+
var __decorate$A = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
765
871
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
766
872
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
767
873
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -771,7 +877,7 @@ var __decorate$y = (this && this.__decorate) || function (decorators, target, ke
|
|
|
771
877
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
772
878
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
773
879
|
};
|
|
774
|
-
const inputs$
|
|
880
|
+
const inputs$v = ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'theme', 'underline', 'weight'];
|
|
775
881
|
let PLinkPure = class PLinkPure {
|
|
776
882
|
constructor(c, r, z) {
|
|
777
883
|
this.z = z;
|
|
@@ -781,9 +887,9 @@ let PLinkPure = class PLinkPure {
|
|
|
781
887
|
};
|
|
782
888
|
PLinkPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkPure, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
783
889
|
PLinkPure.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
784
|
-
PLinkPure = __decorate$
|
|
890
|
+
PLinkPure = __decorate$A([
|
|
785
891
|
ProxyCmp({
|
|
786
|
-
inputs: inputs$
|
|
892
|
+
inputs: inputs$v
|
|
787
893
|
})
|
|
788
894
|
], PLinkPure);
|
|
789
895
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkPure, decorators: [{
|
|
@@ -792,11 +898,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
792
898
|
selector: 'p-link-pure,[p-link-pure]',
|
|
793
899
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
794
900
|
template: '<ng-content></ng-content>',
|
|
795
|
-
inputs: inputs$
|
|
901
|
+
inputs: inputs$v
|
|
796
902
|
}]
|
|
797
903
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
798
904
|
|
|
799
|
-
var __decorate$
|
|
905
|
+
var __decorate$z = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
800
906
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
801
907
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
802
908
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -806,7 +912,7 @@ var __decorate$x = (this && this.__decorate) || function (decorators, target, ke
|
|
|
806
912
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
807
913
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
808
914
|
};
|
|
809
|
-
const inputs$
|
|
915
|
+
const inputs$u = ['hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'];
|
|
810
916
|
/** @deprecated since v3.0.0, will be removed with next major release. Use `p-link` with corresponding social icon instead. */
|
|
811
917
|
let PLinkSocial = class PLinkSocial {
|
|
812
918
|
constructor(c, r, z) {
|
|
@@ -817,9 +923,9 @@ let PLinkSocial = class PLinkSocial {
|
|
|
817
923
|
};
|
|
818
924
|
PLinkSocial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkSocial, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
819
925
|
PLinkSocial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
820
|
-
PLinkSocial = __decorate$
|
|
926
|
+
PLinkSocial = __decorate$z([
|
|
821
927
|
ProxyCmp({
|
|
822
|
-
inputs: inputs$
|
|
928
|
+
inputs: inputs$u
|
|
823
929
|
})
|
|
824
930
|
], PLinkSocial);
|
|
825
931
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkSocial, decorators: [{
|
|
@@ -828,11 +934,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
828
934
|
selector: 'p-link-social,[p-link-social]',
|
|
829
935
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
830
936
|
template: '<ng-content></ng-content>',
|
|
831
|
-
inputs: inputs$
|
|
937
|
+
inputs: inputs$u
|
|
832
938
|
}]
|
|
833
939
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
834
940
|
|
|
835
|
-
var __decorate$
|
|
941
|
+
var __decorate$y = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
836
942
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
837
943
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
838
944
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -842,7 +948,7 @@ var __decorate$w = (this && this.__decorate) || function (decorators, target, ke
|
|
|
842
948
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
843
949
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
844
950
|
};
|
|
845
|
-
const inputs$
|
|
951
|
+
const inputs$t = ['align', 'aria', 'aspectRatio', 'compact', 'description', 'download', 'gradient', 'href', 'label', 'rel', 'size', 'target', 'weight'];
|
|
846
952
|
let PLinkTile = class PLinkTile {
|
|
847
953
|
constructor(c, r, z) {
|
|
848
954
|
this.z = z;
|
|
@@ -852,9 +958,9 @@ let PLinkTile = class PLinkTile {
|
|
|
852
958
|
};
|
|
853
959
|
PLinkTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
854
960
|
PLinkTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PLinkTile, selector: "p-link-tile,[p-link-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio", 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 });
|
|
855
|
-
PLinkTile = __decorate$
|
|
961
|
+
PLinkTile = __decorate$y([
|
|
856
962
|
ProxyCmp({
|
|
857
|
-
inputs: inputs$
|
|
963
|
+
inputs: inputs$t
|
|
858
964
|
})
|
|
859
965
|
], PLinkTile);
|
|
860
966
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkTile, decorators: [{
|
|
@@ -863,11 +969,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
863
969
|
selector: 'p-link-tile,[p-link-tile]',
|
|
864
970
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
865
971
|
template: '<ng-content></ng-content>',
|
|
866
|
-
inputs: inputs$
|
|
972
|
+
inputs: inputs$t
|
|
867
973
|
}]
|
|
868
974
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
869
975
|
|
|
870
|
-
var __decorate$
|
|
976
|
+
var __decorate$x = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
977
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
978
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
979
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
980
|
+
else
|
|
981
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
982
|
+
if (d = decorators[i])
|
|
983
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
984
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
985
|
+
};
|
|
986
|
+
const inputs$s = ['aspectRatio', 'description', 'heading', 'headingTag', 'linkDirection', 'model', 'weight'];
|
|
987
|
+
let PLinkTileModelSignature = class PLinkTileModelSignature {
|
|
988
|
+
constructor(c, r, z) {
|
|
989
|
+
this.z = z;
|
|
990
|
+
c.detach();
|
|
991
|
+
this.el = r.nativeElement;
|
|
992
|
+
}
|
|
993
|
+
};
|
|
994
|
+
PLinkTileModelSignature.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkTileModelSignature, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
995
|
+
PLinkTileModelSignature.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
996
|
+
PLinkTileModelSignature = __decorate$x([
|
|
997
|
+
ProxyCmp({
|
|
998
|
+
inputs: inputs$s
|
|
999
|
+
})
|
|
1000
|
+
], PLinkTileModelSignature);
|
|
1001
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkTileModelSignature, decorators: [{
|
|
1002
|
+
type: Component,
|
|
1003
|
+
args: [{
|
|
1004
|
+
selector: 'p-link-tile-model-signature,[p-link-tile-model-signature]',
|
|
1005
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1006
|
+
template: '<ng-content></ng-content>',
|
|
1007
|
+
inputs: inputs$s
|
|
1008
|
+
}]
|
|
1009
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1010
|
+
|
|
1011
|
+
var __decorate$w = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
871
1012
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
872
1013
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
873
1014
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -877,7 +1018,8 @@ var __decorate$v = (this && this.__decorate) || function (decorators, target, ke
|
|
|
877
1018
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
878
1019
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
879
1020
|
};
|
|
880
|
-
const inputs$
|
|
1021
|
+
const inputs$r = ['aria', 'href', 'size', 'target', 'trademark'];
|
|
1022
|
+
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-wordmark" instead. */
|
|
881
1023
|
let PMarque = class PMarque {
|
|
882
1024
|
constructor(c, r, z) {
|
|
883
1025
|
this.z = z;
|
|
@@ -887,9 +1029,9 @@ let PMarque = class PMarque {
|
|
|
887
1029
|
};
|
|
888
1030
|
PMarque.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PMarque, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
889
1031
|
PMarque.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PMarque, selector: "p-marque,[p-marque]", inputs: { aria: "aria", href: "href", size: "size", target: "target", trademark: "trademark" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
890
|
-
PMarque = __decorate$
|
|
1032
|
+
PMarque = __decorate$w([
|
|
891
1033
|
ProxyCmp({
|
|
892
|
-
inputs: inputs$
|
|
1034
|
+
inputs: inputs$r
|
|
893
1035
|
})
|
|
894
1036
|
], PMarque);
|
|
895
1037
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PMarque, decorators: [{
|
|
@@ -898,11 +1040,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
898
1040
|
selector: 'p-marque,[p-marque]',
|
|
899
1041
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
900
1042
|
template: '<ng-content></ng-content>',
|
|
901
|
-
inputs: inputs$
|
|
1043
|
+
inputs: inputs$r
|
|
902
1044
|
}]
|
|
903
1045
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
904
1046
|
|
|
905
|
-
var __decorate$
|
|
1047
|
+
var __decorate$v = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
906
1048
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
907
1049
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
908
1050
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -912,7 +1054,7 @@ var __decorate$u = (this && this.__decorate) || function (decorators, target, ke
|
|
|
912
1054
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
913
1055
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
914
1056
|
};
|
|
915
|
-
const inputs$
|
|
1057
|
+
const inputs$q = ['aria', 'disableBackdropClick', 'disableCloseButton', 'dismissButton', 'fullscreen', 'heading', 'open'];
|
|
916
1058
|
const outputs$8 = ['close', 'dismiss'];
|
|
917
1059
|
let PModal = class PModal {
|
|
918
1060
|
constructor(c, r, z) {
|
|
@@ -924,9 +1066,9 @@ let PModal = class PModal {
|
|
|
924
1066
|
};
|
|
925
1067
|
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
926
1068
|
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
927
|
-
PModal = __decorate$
|
|
1069
|
+
PModal = __decorate$v([
|
|
928
1070
|
ProxyCmp({
|
|
929
|
-
inputs: inputs$
|
|
1071
|
+
inputs: inputs$q
|
|
930
1072
|
})
|
|
931
1073
|
], PModal);
|
|
932
1074
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PModal, decorators: [{
|
|
@@ -935,12 +1077,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
935
1077
|
selector: 'p-modal,[p-modal]',
|
|
936
1078
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
937
1079
|
template: '<ng-content></ng-content>',
|
|
938
|
-
inputs: inputs$
|
|
1080
|
+
inputs: inputs$q,
|
|
939
1081
|
outputs: outputs$8
|
|
940
1082
|
}]
|
|
941
1083
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
942
1084
|
|
|
943
|
-
var __decorate$
|
|
1085
|
+
var __decorate$u = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
944
1086
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
945
1087
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
946
1088
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -950,7 +1092,7 @@ var __decorate$t = (this && this.__decorate) || function (decorators, target, ke
|
|
|
950
1092
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
951
1093
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
952
1094
|
};
|
|
953
|
-
const inputs$
|
|
1095
|
+
const inputs$p = ['color', 'model', 'size', 'theme'];
|
|
954
1096
|
let PModelSignature = class PModelSignature {
|
|
955
1097
|
constructor(c, r, z) {
|
|
956
1098
|
this.z = z;
|
|
@@ -960,9 +1102,9 @@ let PModelSignature = class PModelSignature {
|
|
|
960
1102
|
};
|
|
961
1103
|
PModelSignature.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PModelSignature, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
962
1104
|
PModelSignature.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
963
|
-
PModelSignature = __decorate$
|
|
1105
|
+
PModelSignature = __decorate$u([
|
|
964
1106
|
ProxyCmp({
|
|
965
|
-
inputs: inputs$
|
|
1107
|
+
inputs: inputs$p
|
|
966
1108
|
})
|
|
967
1109
|
], PModelSignature);
|
|
968
1110
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PModelSignature, decorators: [{
|
|
@@ -971,11 +1113,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
971
1113
|
selector: 'p-model-signature,[p-model-signature]',
|
|
972
1114
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
973
1115
|
template: '<ng-content></ng-content>',
|
|
974
|
-
inputs: inputs$
|
|
1116
|
+
inputs: inputs$p
|
|
975
1117
|
}]
|
|
976
1118
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
977
1119
|
|
|
978
|
-
var __decorate$
|
|
1120
|
+
var __decorate$t = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
979
1121
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
980
1122
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
981
1123
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -985,7 +1127,7 @@ var __decorate$s = (this && this.__decorate) || function (decorators, target, ke
|
|
|
985
1127
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
986
1128
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
987
1129
|
};
|
|
988
|
-
const inputs$
|
|
1130
|
+
const inputs$o = ['activePage', 'allyLabel', 'allyLabelNext', 'allyLabelPage', 'allyLabelPrev', 'intl', 'itemsPerPage', 'maxNumberOfPageLinks', 'theme', 'totalItemsCount'];
|
|
989
1131
|
const outputs$7 = ['change', 'pageChange'];
|
|
990
1132
|
let PPagination = class PPagination {
|
|
991
1133
|
constructor(c, r, z) {
|
|
@@ -997,9 +1139,9 @@ let PPagination = class PPagination {
|
|
|
997
1139
|
};
|
|
998
1140
|
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
999
1141
|
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PPagination, selector: "p-pagination,[p-pagination]", inputs: { activePage: "activePage", allyLabel: "allyLabel", allyLabelNext: "allyLabelNext", allyLabelPage: "allyLabelPage", allyLabelPrev: "allyLabelPrev", intl: "intl", itemsPerPage: "itemsPerPage", maxNumberOfPageLinks: "maxNumberOfPageLinks", theme: "theme", totalItemsCount: "totalItemsCount" }, outputs: { change: "change", pageChange: "pageChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1000
|
-
PPagination = __decorate$
|
|
1142
|
+
PPagination = __decorate$t([
|
|
1001
1143
|
ProxyCmp({
|
|
1002
|
-
inputs: inputs$
|
|
1144
|
+
inputs: inputs$o
|
|
1003
1145
|
})
|
|
1004
1146
|
], PPagination);
|
|
1005
1147
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PPagination, decorators: [{
|
|
@@ -1008,12 +1150,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1008
1150
|
selector: 'p-pagination,[p-pagination]',
|
|
1009
1151
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1010
1152
|
template: '<ng-content></ng-content>',
|
|
1011
|
-
inputs: inputs$
|
|
1153
|
+
inputs: inputs$o,
|
|
1012
1154
|
outputs: outputs$7
|
|
1013
1155
|
}]
|
|
1014
1156
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1015
1157
|
|
|
1016
|
-
var __decorate$
|
|
1158
|
+
var __decorate$s = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1017
1159
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1018
1160
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1019
1161
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1023,7 +1165,7 @@ var __decorate$r = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1023
1165
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1024
1166
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1025
1167
|
};
|
|
1026
|
-
const inputs$
|
|
1168
|
+
const inputs$n = ['aria', 'description', 'direction', 'theme'];
|
|
1027
1169
|
let PPopover = class PPopover {
|
|
1028
1170
|
constructor(c, r, z) {
|
|
1029
1171
|
this.z = z;
|
|
@@ -1033,9 +1175,9 @@ let PPopover = class PPopover {
|
|
|
1033
1175
|
};
|
|
1034
1176
|
PPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1035
1177
|
PPopover.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PPopover, selector: "p-popover,[p-popover]", inputs: { aria: "aria", description: "description", direction: "direction", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1036
|
-
PPopover = __decorate$
|
|
1178
|
+
PPopover = __decorate$s([
|
|
1037
1179
|
ProxyCmp({
|
|
1038
|
-
inputs: inputs$
|
|
1180
|
+
inputs: inputs$n
|
|
1039
1181
|
})
|
|
1040
1182
|
], PPopover);
|
|
1041
1183
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PPopover, decorators: [{
|
|
@@ -1044,11 +1186,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1044
1186
|
selector: 'p-popover,[p-popover]',
|
|
1045
1187
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1046
1188
|
template: '<ng-content></ng-content>',
|
|
1047
|
-
inputs: inputs$
|
|
1189
|
+
inputs: inputs$n
|
|
1048
1190
|
}]
|
|
1049
1191
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1050
1192
|
|
|
1051
|
-
var __decorate$
|
|
1193
|
+
var __decorate$r = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1052
1194
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1053
1195
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1054
1196
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1058,7 +1200,7 @@ var __decorate$q = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1058
1200
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1059
1201
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1060
1202
|
};
|
|
1061
|
-
const inputs$
|
|
1203
|
+
const inputs$m = ['hideLabel', 'label', 'message', 'state', 'theme'];
|
|
1062
1204
|
let PRadioButtonWrapper = class PRadioButtonWrapper {
|
|
1063
1205
|
constructor(c, r, z) {
|
|
1064
1206
|
this.z = z;
|
|
@@ -1068,9 +1210,9 @@ let PRadioButtonWrapper = class PRadioButtonWrapper {
|
|
|
1068
1210
|
};
|
|
1069
1211
|
PRadioButtonWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PRadioButtonWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1070
1212
|
PRadioButtonWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1071
|
-
PRadioButtonWrapper = __decorate$
|
|
1213
|
+
PRadioButtonWrapper = __decorate$r([
|
|
1072
1214
|
ProxyCmp({
|
|
1073
|
-
inputs: inputs$
|
|
1215
|
+
inputs: inputs$m
|
|
1074
1216
|
})
|
|
1075
1217
|
], PRadioButtonWrapper);
|
|
1076
1218
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PRadioButtonWrapper, decorators: [{
|
|
@@ -1079,11 +1221,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1079
1221
|
selector: 'p-radio-button-wrapper,[p-radio-button-wrapper]',
|
|
1080
1222
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1081
1223
|
template: '<ng-content></ng-content>',
|
|
1082
|
-
inputs: inputs$
|
|
1224
|
+
inputs: inputs$m
|
|
1083
1225
|
}]
|
|
1084
1226
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1085
1227
|
|
|
1086
|
-
var __decorate$
|
|
1228
|
+
var __decorate$q = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1087
1229
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1088
1230
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1089
1231
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1093,7 +1235,7 @@ var __decorate$p = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1093
1235
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1094
1236
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1095
1237
|
};
|
|
1096
|
-
const inputs$
|
|
1238
|
+
const inputs$l = ['alignScrollIndicator', 'gradientColor', 'gradientColorScheme', 'scrollIndicatorPosition', 'scrollToPosition', 'scrollbar', 'theme'];
|
|
1097
1239
|
let PScroller = class PScroller {
|
|
1098
1240
|
constructor(c, r, z) {
|
|
1099
1241
|
this.z = z;
|
|
@@ -1102,10 +1244,10 @@ let PScroller = class PScroller {
|
|
|
1102
1244
|
}
|
|
1103
1245
|
};
|
|
1104
1246
|
PScroller.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PScroller, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1105
|
-
PScroller.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PScroller, selector: "p-scroller,[p-scroller]", inputs: { alignScrollIndicator: "alignScrollIndicator", gradientColor: "gradientColor", gradientColorScheme: "gradientColorScheme", scrollIndicatorPosition: "scrollIndicatorPosition", scrollToPosition: "scrollToPosition", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1106
|
-
PScroller = __decorate$
|
|
1247
|
+
PScroller.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PScroller, selector: "p-scroller,[p-scroller]", inputs: { alignScrollIndicator: "alignScrollIndicator", gradientColor: "gradientColor", gradientColorScheme: "gradientColorScheme", scrollIndicatorPosition: "scrollIndicatorPosition", scrollToPosition: "scrollToPosition", scrollbar: "scrollbar", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1248
|
+
PScroller = __decorate$q([
|
|
1107
1249
|
ProxyCmp({
|
|
1108
|
-
inputs: inputs$
|
|
1250
|
+
inputs: inputs$l
|
|
1109
1251
|
})
|
|
1110
1252
|
], PScroller);
|
|
1111
1253
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PScroller, decorators: [{
|
|
@@ -1114,11 +1256,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1114
1256
|
selector: 'p-scroller,[p-scroller]',
|
|
1115
1257
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1116
1258
|
template: '<ng-content></ng-content>',
|
|
1117
|
-
inputs: inputs$
|
|
1259
|
+
inputs: inputs$l
|
|
1118
1260
|
}]
|
|
1119
1261
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1120
1262
|
|
|
1121
|
-
var __decorate$
|
|
1263
|
+
var __decorate$p = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1122
1264
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1123
1265
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1124
1266
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1128,7 +1270,7 @@ var __decorate$o = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1128
1270
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1129
1271
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1130
1272
|
};
|
|
1131
|
-
const inputs$
|
|
1273
|
+
const inputs$k = ['backgroundColor', 'theme', 'value'];
|
|
1132
1274
|
const outputs$6 = ['change', 'segmentedControlChange'];
|
|
1133
1275
|
let PSegmentedControl = class PSegmentedControl {
|
|
1134
1276
|
constructor(c, r, z) {
|
|
@@ -1140,9 +1282,9 @@ let PSegmentedControl = class PSegmentedControl {
|
|
|
1140
1282
|
};
|
|
1141
1283
|
PSegmentedControl.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSegmentedControl, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1142
1284
|
PSegmentedControl.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PSegmentedControl, selector: "p-segmented-control,[p-segmented-control]", inputs: { backgroundColor: "backgroundColor", theme: "theme", value: "value" }, outputs: { change: "change", segmentedControlChange: "segmentedControlChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1143
|
-
PSegmentedControl = __decorate$
|
|
1285
|
+
PSegmentedControl = __decorate$p([
|
|
1144
1286
|
ProxyCmp({
|
|
1145
|
-
inputs: inputs$
|
|
1287
|
+
inputs: inputs$k
|
|
1146
1288
|
})
|
|
1147
1289
|
], PSegmentedControl);
|
|
1148
1290
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSegmentedControl, decorators: [{
|
|
@@ -1151,12 +1293,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1151
1293
|
selector: 'p-segmented-control,[p-segmented-control]',
|
|
1152
1294
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1153
1295
|
template: '<ng-content></ng-content>',
|
|
1154
|
-
inputs: inputs$
|
|
1296
|
+
inputs: inputs$k,
|
|
1155
1297
|
outputs: outputs$6
|
|
1156
1298
|
}]
|
|
1157
1299
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1158
1300
|
|
|
1159
|
-
var __decorate$
|
|
1301
|
+
var __decorate$o = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1160
1302
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1161
1303
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1162
1304
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1166,7 +1308,7 @@ var __decorate$n = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1166
1308
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1167
1309
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1168
1310
|
};
|
|
1169
|
-
const inputs$
|
|
1311
|
+
const inputs$j = ['disabled', 'icon', 'iconSource', 'label', 'value'];
|
|
1170
1312
|
let PSegmentedControlItem = class PSegmentedControlItem {
|
|
1171
1313
|
constructor(c, r, z) {
|
|
1172
1314
|
this.z = z;
|
|
@@ -1176,9 +1318,9 @@ let PSegmentedControlItem = class PSegmentedControlItem {
|
|
|
1176
1318
|
};
|
|
1177
1319
|
PSegmentedControlItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSegmentedControlItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1178
1320
|
PSegmentedControlItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PSegmentedControlItem, selector: "p-segmented-control-item,[p-segmented-control-item]", inputs: { disabled: "disabled", icon: "icon", iconSource: "iconSource", label: "label", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1179
|
-
PSegmentedControlItem = __decorate$
|
|
1321
|
+
PSegmentedControlItem = __decorate$o([
|
|
1180
1322
|
ProxyCmp({
|
|
1181
|
-
inputs: inputs$
|
|
1323
|
+
inputs: inputs$j
|
|
1182
1324
|
})
|
|
1183
1325
|
], PSegmentedControlItem);
|
|
1184
1326
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSegmentedControlItem, decorators: [{
|
|
@@ -1187,11 +1329,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1187
1329
|
selector: 'p-segmented-control-item,[p-segmented-control-item]',
|
|
1188
1330
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1189
1331
|
template: '<ng-content></ng-content>',
|
|
1190
|
-
inputs: inputs$
|
|
1332
|
+
inputs: inputs$j
|
|
1191
1333
|
}]
|
|
1192
1334
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1193
1335
|
|
|
1194
|
-
var __decorate$
|
|
1336
|
+
var __decorate$n = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1195
1337
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1196
1338
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1197
1339
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1201,7 +1343,7 @@ var __decorate$m = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1201
1343
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1202
1344
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1203
1345
|
};
|
|
1204
|
-
const inputs$
|
|
1346
|
+
const inputs$i = ['description', 'dropdownDirection', 'filter', 'hideLabel', 'label', 'message', 'native', 'state', 'theme'];
|
|
1205
1347
|
let PSelectWrapper = class PSelectWrapper {
|
|
1206
1348
|
constructor(c, r, z) {
|
|
1207
1349
|
this.z = z;
|
|
@@ -1211,9 +1353,9 @@ let PSelectWrapper = class PSelectWrapper {
|
|
|
1211
1353
|
};
|
|
1212
1354
|
PSelectWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSelectWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1213
1355
|
PSelectWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PSelectWrapper, selector: "p-select-wrapper,[p-select-wrapper]", inputs: { description: "description", dropdownDirection: "dropdownDirection", filter: "filter", hideLabel: "hideLabel", label: "label", message: "message", native: "native", state: "state", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1214
|
-
PSelectWrapper = __decorate$
|
|
1356
|
+
PSelectWrapper = __decorate$n([
|
|
1215
1357
|
ProxyCmp({
|
|
1216
|
-
inputs: inputs$
|
|
1358
|
+
inputs: inputs$i
|
|
1217
1359
|
})
|
|
1218
1360
|
], PSelectWrapper);
|
|
1219
1361
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSelectWrapper, decorators: [{
|
|
@@ -1222,11 +1364,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1222
1364
|
selector: 'p-select-wrapper,[p-select-wrapper]',
|
|
1223
1365
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1224
1366
|
template: '<ng-content></ng-content>',
|
|
1225
|
-
inputs: inputs$
|
|
1367
|
+
inputs: inputs$i
|
|
1226
1368
|
}]
|
|
1227
1369
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1228
1370
|
|
|
1229
|
-
var __decorate$
|
|
1371
|
+
var __decorate$m = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1230
1372
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1231
1373
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1232
1374
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1236,7 +1378,7 @@ var __decorate$l = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1236
1378
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1237
1379
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1238
1380
|
};
|
|
1239
|
-
const inputs$
|
|
1381
|
+
const inputs$h = ['aria', 'size', 'theme'];
|
|
1240
1382
|
let PSpinner = class PSpinner {
|
|
1241
1383
|
constructor(c, r, z) {
|
|
1242
1384
|
this.z = z;
|
|
@@ -1246,9 +1388,9 @@ let PSpinner = class PSpinner {
|
|
|
1246
1388
|
};
|
|
1247
1389
|
PSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1248
1390
|
PSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PSpinner, selector: "p-spinner,[p-spinner]", inputs: { aria: "aria", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1249
|
-
PSpinner = __decorate$
|
|
1391
|
+
PSpinner = __decorate$m([
|
|
1250
1392
|
ProxyCmp({
|
|
1251
|
-
inputs: inputs$
|
|
1393
|
+
inputs: inputs$h
|
|
1252
1394
|
})
|
|
1253
1395
|
], PSpinner);
|
|
1254
1396
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSpinner, decorators: [{
|
|
@@ -1257,11 +1399,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1257
1399
|
selector: 'p-spinner,[p-spinner]',
|
|
1258
1400
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1259
1401
|
template: '<ng-content></ng-content>',
|
|
1260
|
-
inputs: inputs$
|
|
1402
|
+
inputs: inputs$h
|
|
1261
1403
|
}]
|
|
1262
1404
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1263
1405
|
|
|
1264
|
-
var __decorate$
|
|
1406
|
+
var __decorate$l = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1265
1407
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1266
1408
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1267
1409
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1271,7 +1413,7 @@ var __decorate$k = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1271
1413
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1272
1414
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1273
1415
|
};
|
|
1274
|
-
const inputs$
|
|
1416
|
+
const inputs$g = ['size', 'theme'];
|
|
1275
1417
|
const outputs$5 = ['change', 'stepChange'];
|
|
1276
1418
|
let PStepperHorizontal = class PStepperHorizontal {
|
|
1277
1419
|
constructor(c, r, z) {
|
|
@@ -1283,9 +1425,9 @@ let PStepperHorizontal = class PStepperHorizontal {
|
|
|
1283
1425
|
};
|
|
1284
1426
|
PStepperHorizontal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PStepperHorizontal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1285
1427
|
PStepperHorizontal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PStepperHorizontal, selector: "p-stepper-horizontal,[p-stepper-horizontal]", inputs: { size: "size", theme: "theme" }, outputs: { change: "change", stepChange: "stepChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1286
|
-
PStepperHorizontal = __decorate$
|
|
1428
|
+
PStepperHorizontal = __decorate$l([
|
|
1287
1429
|
ProxyCmp({
|
|
1288
|
-
inputs: inputs$
|
|
1430
|
+
inputs: inputs$g
|
|
1289
1431
|
})
|
|
1290
1432
|
], PStepperHorizontal);
|
|
1291
1433
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PStepperHorizontal, decorators: [{
|
|
@@ -1294,12 +1436,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1294
1436
|
selector: 'p-stepper-horizontal,[p-stepper-horizontal]',
|
|
1295
1437
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1296
1438
|
template: '<ng-content></ng-content>',
|
|
1297
|
-
inputs: inputs$
|
|
1439
|
+
inputs: inputs$g,
|
|
1298
1440
|
outputs: outputs$5
|
|
1299
1441
|
}]
|
|
1300
1442
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1301
1443
|
|
|
1302
|
-
var __decorate$
|
|
1444
|
+
var __decorate$k = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1303
1445
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1304
1446
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1305
1447
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1309,7 +1451,7 @@ var __decorate$j = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1309
1451
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1310
1452
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1311
1453
|
};
|
|
1312
|
-
const inputs$
|
|
1454
|
+
const inputs$f = ['disabled', 'state'];
|
|
1313
1455
|
let PStepperHorizontalItem = class PStepperHorizontalItem {
|
|
1314
1456
|
constructor(c, r, z) {
|
|
1315
1457
|
this.z = z;
|
|
@@ -1319,9 +1461,9 @@ let PStepperHorizontalItem = class PStepperHorizontalItem {
|
|
|
1319
1461
|
};
|
|
1320
1462
|
PStepperHorizontalItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PStepperHorizontalItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1321
1463
|
PStepperHorizontalItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PStepperHorizontalItem, selector: "p-stepper-horizontal-item,[p-stepper-horizontal-item]", inputs: { disabled: "disabled", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1322
|
-
PStepperHorizontalItem = __decorate$
|
|
1464
|
+
PStepperHorizontalItem = __decorate$k([
|
|
1323
1465
|
ProxyCmp({
|
|
1324
|
-
inputs: inputs$
|
|
1466
|
+
inputs: inputs$f
|
|
1325
1467
|
})
|
|
1326
1468
|
], PStepperHorizontalItem);
|
|
1327
1469
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PStepperHorizontalItem, decorators: [{
|
|
@@ -1330,11 +1472,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1330
1472
|
selector: 'p-stepper-horizontal-item,[p-stepper-horizontal-item]',
|
|
1331
1473
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1332
1474
|
template: '<ng-content></ng-content>',
|
|
1333
|
-
inputs: inputs$
|
|
1475
|
+
inputs: inputs$f
|
|
1334
1476
|
}]
|
|
1335
1477
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1336
1478
|
|
|
1337
|
-
var __decorate$
|
|
1479
|
+
var __decorate$j = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1338
1480
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1339
1481
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1340
1482
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1344,7 +1486,7 @@ var __decorate$i = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1344
1486
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1345
1487
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1346
1488
|
};
|
|
1347
|
-
const inputs$
|
|
1489
|
+
const inputs$e = ['alignLabel', 'checked', 'disabled', 'hideLabel', 'loading', 'stretch', 'theme'];
|
|
1348
1490
|
const outputs$4 = ['change', 'switchChange'];
|
|
1349
1491
|
let PSwitch = class PSwitch {
|
|
1350
1492
|
constructor(c, r, z) {
|
|
@@ -1356,9 +1498,9 @@ let PSwitch = class PSwitch {
|
|
|
1356
1498
|
};
|
|
1357
1499
|
PSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1358
1500
|
PSwitch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PSwitch, selector: "p-switch,[p-switch]", inputs: { alignLabel: "alignLabel", checked: "checked", disabled: "disabled", hideLabel: "hideLabel", loading: "loading", stretch: "stretch", theme: "theme" }, outputs: { change: "change", switchChange: "switchChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1359
|
-
PSwitch = __decorate$
|
|
1501
|
+
PSwitch = __decorate$j([
|
|
1360
1502
|
ProxyCmp({
|
|
1361
|
-
inputs: inputs$
|
|
1503
|
+
inputs: inputs$e
|
|
1362
1504
|
})
|
|
1363
1505
|
], PSwitch);
|
|
1364
1506
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PSwitch, decorators: [{
|
|
@@ -1367,12 +1509,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1367
1509
|
selector: 'p-switch,[p-switch]',
|
|
1368
1510
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1369
1511
|
template: '<ng-content></ng-content>',
|
|
1370
|
-
inputs: inputs$
|
|
1512
|
+
inputs: inputs$e,
|
|
1371
1513
|
outputs: outputs$4
|
|
1372
1514
|
}]
|
|
1373
1515
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1374
1516
|
|
|
1375
|
-
var __decorate$
|
|
1517
|
+
var __decorate$i = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1376
1518
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1377
1519
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1378
1520
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1382,7 +1524,7 @@ var __decorate$h = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1382
1524
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1383
1525
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1384
1526
|
};
|
|
1385
|
-
const inputs$
|
|
1527
|
+
const inputs$d = ['caption', 'theme'];
|
|
1386
1528
|
const outputs$3 = ['change', 'sortingChange'];
|
|
1387
1529
|
let PTable = class PTable {
|
|
1388
1530
|
constructor(c, r, z) {
|
|
@@ -1393,10 +1535,10 @@ let PTable = class PTable {
|
|
|
1393
1535
|
}
|
|
1394
1536
|
};
|
|
1395
1537
|
PTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1396
|
-
PTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTable, selector: "p-table,[p-table]", inputs: { caption: "caption" }, outputs: { change: "change", sortingChange: "sortingChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1397
|
-
PTable = __decorate$
|
|
1538
|
+
PTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTable, selector: "p-table,[p-table]", inputs: { caption: "caption", theme: "theme" }, outputs: { change: "change", sortingChange: "sortingChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1539
|
+
PTable = __decorate$i([
|
|
1398
1540
|
ProxyCmp({
|
|
1399
|
-
inputs: inputs$
|
|
1541
|
+
inputs: inputs$d
|
|
1400
1542
|
})
|
|
1401
1543
|
], PTable);
|
|
1402
1544
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTable, decorators: [{
|
|
@@ -1405,12 +1547,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1405
1547
|
selector: 'p-table,[p-table]',
|
|
1406
1548
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1407
1549
|
template: '<ng-content></ng-content>',
|
|
1408
|
-
inputs: inputs$
|
|
1550
|
+
inputs: inputs$d,
|
|
1409
1551
|
outputs: outputs$3
|
|
1410
1552
|
}]
|
|
1411
1553
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1412
1554
|
|
|
1413
|
-
var __decorate$
|
|
1555
|
+
var __decorate$h = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1414
1556
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1415
1557
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1416
1558
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1429,7 +1571,7 @@ let PTableBody = class PTableBody {
|
|
|
1429
1571
|
};
|
|
1430
1572
|
PTableBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1431
1573
|
PTableBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTableBody, selector: "p-table-body,[p-table-body]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1432
|
-
PTableBody = __decorate$
|
|
1574
|
+
PTableBody = __decorate$h([
|
|
1433
1575
|
ProxyCmp({})
|
|
1434
1576
|
], PTableBody);
|
|
1435
1577
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableBody, decorators: [{
|
|
@@ -1441,7 +1583,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1441
1583
|
}]
|
|
1442
1584
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1443
1585
|
|
|
1444
|
-
var __decorate$
|
|
1586
|
+
var __decorate$g = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1445
1587
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1446
1588
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1447
1589
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1451,7 +1593,7 @@ var __decorate$f = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1451
1593
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1452
1594
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1453
1595
|
};
|
|
1454
|
-
const inputs$
|
|
1596
|
+
const inputs$c = ['multiline'];
|
|
1455
1597
|
let PTableCell = class PTableCell {
|
|
1456
1598
|
constructor(c, r, z) {
|
|
1457
1599
|
this.z = z;
|
|
@@ -1461,9 +1603,9 @@ let PTableCell = class PTableCell {
|
|
|
1461
1603
|
};
|
|
1462
1604
|
PTableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1463
1605
|
PTableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTableCell, selector: "p-table-cell,[p-table-cell]", inputs: { multiline: "multiline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1464
|
-
PTableCell = __decorate$
|
|
1606
|
+
PTableCell = __decorate$g([
|
|
1465
1607
|
ProxyCmp({
|
|
1466
|
-
inputs: inputs$
|
|
1608
|
+
inputs: inputs$c
|
|
1467
1609
|
})
|
|
1468
1610
|
], PTableCell);
|
|
1469
1611
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableCell, decorators: [{
|
|
@@ -1472,11 +1614,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1472
1614
|
selector: 'p-table-cell,[p-table-cell]',
|
|
1473
1615
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1474
1616
|
template: '<ng-content></ng-content>',
|
|
1475
|
-
inputs: inputs$
|
|
1617
|
+
inputs: inputs$c
|
|
1476
1618
|
}]
|
|
1477
1619
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1478
1620
|
|
|
1479
|
-
var __decorate$
|
|
1621
|
+
var __decorate$f = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1480
1622
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1481
1623
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1482
1624
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1495,7 +1637,7 @@ let PTableHead = class PTableHead {
|
|
|
1495
1637
|
};
|
|
1496
1638
|
PTableHead.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableHead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1497
1639
|
PTableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTableHead, selector: "p-table-head,[p-table-head]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1498
|
-
PTableHead = __decorate$
|
|
1640
|
+
PTableHead = __decorate$f([
|
|
1499
1641
|
ProxyCmp({})
|
|
1500
1642
|
], PTableHead);
|
|
1501
1643
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableHead, decorators: [{
|
|
@@ -1507,7 +1649,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1507
1649
|
}]
|
|
1508
1650
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1509
1651
|
|
|
1510
|
-
var __decorate$
|
|
1652
|
+
var __decorate$e = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1511
1653
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1512
1654
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1513
1655
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1517,7 +1659,7 @@ var __decorate$d = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1517
1659
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1518
1660
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1519
1661
|
};
|
|
1520
|
-
const inputs$
|
|
1662
|
+
const inputs$b = ['hideLabel', 'multiline', 'sort'];
|
|
1521
1663
|
let PTableHeadCell = class PTableHeadCell {
|
|
1522
1664
|
constructor(c, r, z) {
|
|
1523
1665
|
this.z = z;
|
|
@@ -1527,9 +1669,9 @@ let PTableHeadCell = class PTableHeadCell {
|
|
|
1527
1669
|
};
|
|
1528
1670
|
PTableHeadCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableHeadCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1529
1671
|
PTableHeadCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTableHeadCell, selector: "p-table-head-cell,[p-table-head-cell]", inputs: { hideLabel: "hideLabel", multiline: "multiline", sort: "sort" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1530
|
-
PTableHeadCell = __decorate$
|
|
1672
|
+
PTableHeadCell = __decorate$e([
|
|
1531
1673
|
ProxyCmp({
|
|
1532
|
-
inputs: inputs$
|
|
1674
|
+
inputs: inputs$b
|
|
1533
1675
|
})
|
|
1534
1676
|
], PTableHeadCell);
|
|
1535
1677
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableHeadCell, decorators: [{
|
|
@@ -1538,11 +1680,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1538
1680
|
selector: 'p-table-head-cell,[p-table-head-cell]',
|
|
1539
1681
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1540
1682
|
template: '<ng-content></ng-content>',
|
|
1541
|
-
inputs: inputs$
|
|
1683
|
+
inputs: inputs$b
|
|
1542
1684
|
}]
|
|
1543
1685
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1544
1686
|
|
|
1545
|
-
var __decorate$
|
|
1687
|
+
var __decorate$d = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1546
1688
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1547
1689
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1548
1690
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1561,7 +1703,7 @@ let PTableHeadRow = class PTableHeadRow {
|
|
|
1561
1703
|
};
|
|
1562
1704
|
PTableHeadRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableHeadRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1563
1705
|
PTableHeadRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTableHeadRow, selector: "p-table-head-row,[p-table-head-row]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1564
|
-
PTableHeadRow = __decorate$
|
|
1706
|
+
PTableHeadRow = __decorate$d([
|
|
1565
1707
|
ProxyCmp({})
|
|
1566
1708
|
], PTableHeadRow);
|
|
1567
1709
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableHeadRow, decorators: [{
|
|
@@ -1573,7 +1715,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1573
1715
|
}]
|
|
1574
1716
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1575
1717
|
|
|
1576
|
-
var __decorate$
|
|
1718
|
+
var __decorate$c = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1577
1719
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1578
1720
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1579
1721
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1592,7 +1734,7 @@ let PTableRow = class PTableRow {
|
|
|
1592
1734
|
};
|
|
1593
1735
|
PTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1594
1736
|
PTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTableRow, selector: "p-table-row,[p-table-row]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1595
|
-
PTableRow = __decorate$
|
|
1737
|
+
PTableRow = __decorate$c([
|
|
1596
1738
|
ProxyCmp({})
|
|
1597
1739
|
], PTableRow);
|
|
1598
1740
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTableRow, decorators: [{
|
|
@@ -1604,7 +1746,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1604
1746
|
}]
|
|
1605
1747
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1606
1748
|
|
|
1607
|
-
var __decorate$
|
|
1749
|
+
var __decorate$b = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1608
1750
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1609
1751
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1610
1752
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1614,7 +1756,7 @@ var __decorate$a = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1614
1756
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1615
1757
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1616
1758
|
};
|
|
1617
|
-
const inputs$
|
|
1759
|
+
const inputs$a = ['activeTabIndex', 'gradientColor', 'gradientColorScheme', 'size', 'theme', 'weight'];
|
|
1618
1760
|
const outputs$2 = ['change', 'tabChange'];
|
|
1619
1761
|
let PTabs = class PTabs {
|
|
1620
1762
|
constructor(c, r, z) {
|
|
@@ -1626,9 +1768,9 @@ let PTabs = class PTabs {
|
|
|
1626
1768
|
};
|
|
1627
1769
|
PTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1628
1770
|
PTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTabs, selector: "p-tabs,[p-tabs]", inputs: { activeTabIndex: "activeTabIndex", gradientColor: "gradientColor", gradientColorScheme: "gradientColorScheme", size: "size", theme: "theme", weight: "weight" }, outputs: { change: "change", tabChange: "tabChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1629
|
-
PTabs = __decorate$
|
|
1771
|
+
PTabs = __decorate$b([
|
|
1630
1772
|
ProxyCmp({
|
|
1631
|
-
inputs: inputs$
|
|
1773
|
+
inputs: inputs$a
|
|
1632
1774
|
})
|
|
1633
1775
|
], PTabs);
|
|
1634
1776
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTabs, decorators: [{
|
|
@@ -1637,12 +1779,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1637
1779
|
selector: 'p-tabs,[p-tabs]',
|
|
1638
1780
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1639
1781
|
template: '<ng-content></ng-content>',
|
|
1640
|
-
inputs: inputs$
|
|
1782
|
+
inputs: inputs$a,
|
|
1641
1783
|
outputs: outputs$2
|
|
1642
1784
|
}]
|
|
1643
1785
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1644
1786
|
|
|
1645
|
-
var __decorate$
|
|
1787
|
+
var __decorate$a = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1646
1788
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1647
1789
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1648
1790
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1652,7 +1794,7 @@ var __decorate$9 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1652
1794
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1653
1795
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1654
1796
|
};
|
|
1655
|
-
const inputs$
|
|
1797
|
+
const inputs$9 = ['activeTabIndex', 'gradientColor', 'gradientColorScheme', 'size', 'theme', 'weight'];
|
|
1656
1798
|
const outputs$1 = ['change', 'tabChange'];
|
|
1657
1799
|
let PTabsBar = class PTabsBar {
|
|
1658
1800
|
constructor(c, r, z) {
|
|
@@ -1664,9 +1806,9 @@ let PTabsBar = class PTabsBar {
|
|
|
1664
1806
|
};
|
|
1665
1807
|
PTabsBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTabsBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1666
1808
|
PTabsBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTabsBar, selector: "p-tabs-bar,[p-tabs-bar]", inputs: { activeTabIndex: "activeTabIndex", gradientColor: "gradientColor", gradientColorScheme: "gradientColorScheme", size: "size", theme: "theme", weight: "weight" }, outputs: { change: "change", tabChange: "tabChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1667
|
-
PTabsBar = __decorate$
|
|
1809
|
+
PTabsBar = __decorate$a([
|
|
1668
1810
|
ProxyCmp({
|
|
1669
|
-
inputs: inputs$
|
|
1811
|
+
inputs: inputs$9
|
|
1670
1812
|
})
|
|
1671
1813
|
], PTabsBar);
|
|
1672
1814
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTabsBar, decorators: [{
|
|
@@ -1675,12 +1817,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1675
1817
|
selector: 'p-tabs-bar,[p-tabs-bar]',
|
|
1676
1818
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1677
1819
|
template: '<ng-content></ng-content>',
|
|
1678
|
-
inputs: inputs$
|
|
1820
|
+
inputs: inputs$9,
|
|
1679
1821
|
outputs: outputs$1
|
|
1680
1822
|
}]
|
|
1681
1823
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1682
1824
|
|
|
1683
|
-
var __decorate$
|
|
1825
|
+
var __decorate$9 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1684
1826
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1685
1827
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1686
1828
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1690,7 +1832,7 @@ var __decorate$8 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1690
1832
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1691
1833
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1692
1834
|
};
|
|
1693
|
-
const inputs$
|
|
1835
|
+
const inputs$8 = ['label'];
|
|
1694
1836
|
let PTabsItem = class PTabsItem {
|
|
1695
1837
|
constructor(c, r, z) {
|
|
1696
1838
|
this.z = z;
|
|
@@ -1700,9 +1842,9 @@ let PTabsItem = class PTabsItem {
|
|
|
1700
1842
|
};
|
|
1701
1843
|
PTabsItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTabsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1702
1844
|
PTabsItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTabsItem, selector: "p-tabs-item,[p-tabs-item]", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1703
|
-
PTabsItem = __decorate$
|
|
1845
|
+
PTabsItem = __decorate$9([
|
|
1704
1846
|
ProxyCmp({
|
|
1705
|
-
inputs: inputs$
|
|
1847
|
+
inputs: inputs$8
|
|
1706
1848
|
})
|
|
1707
1849
|
], PTabsItem);
|
|
1708
1850
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTabsItem, decorators: [{
|
|
@@ -1711,11 +1853,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1711
1853
|
selector: 'p-tabs-item,[p-tabs-item]',
|
|
1712
1854
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1713
1855
|
template: '<ng-content></ng-content>',
|
|
1714
|
-
inputs: inputs$
|
|
1856
|
+
inputs: inputs$8
|
|
1715
1857
|
}]
|
|
1716
1858
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1717
1859
|
|
|
1718
|
-
var __decorate$
|
|
1860
|
+
var __decorate$8 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1719
1861
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1720
1862
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1721
1863
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1725,7 +1867,7 @@ var __decorate$7 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1725
1867
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1726
1868
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1727
1869
|
};
|
|
1728
|
-
const inputs$
|
|
1870
|
+
const inputs$7 = ['color', 'icon', 'iconSource', 'theme'];
|
|
1729
1871
|
let PTag = class PTag {
|
|
1730
1872
|
constructor(c, r, z) {
|
|
1731
1873
|
this.z = z;
|
|
@@ -1735,9 +1877,9 @@ let PTag = class PTag {
|
|
|
1735
1877
|
};
|
|
1736
1878
|
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1737
1879
|
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTag, selector: "p-tag,[p-tag]", inputs: { color: "color", icon: "icon", iconSource: "iconSource", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1738
|
-
PTag = __decorate$
|
|
1880
|
+
PTag = __decorate$8([
|
|
1739
1881
|
ProxyCmp({
|
|
1740
|
-
inputs: inputs$
|
|
1882
|
+
inputs: inputs$7
|
|
1741
1883
|
})
|
|
1742
1884
|
], PTag);
|
|
1743
1885
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTag, decorators: [{
|
|
@@ -1746,11 +1888,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1746
1888
|
selector: 'p-tag,[p-tag]',
|
|
1747
1889
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1748
1890
|
template: '<ng-content></ng-content>',
|
|
1749
|
-
inputs: inputs$
|
|
1891
|
+
inputs: inputs$7
|
|
1750
1892
|
}]
|
|
1751
1893
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1752
1894
|
|
|
1753
|
-
var __decorate$
|
|
1895
|
+
var __decorate$7 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1754
1896
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1755
1897
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1756
1898
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1760,7 +1902,7 @@ var __decorate$6 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1760
1902
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1761
1903
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1762
1904
|
};
|
|
1763
|
-
const inputs$
|
|
1905
|
+
const inputs$6 = ['aria', 'color', 'label', 'theme'];
|
|
1764
1906
|
let PTagDismissible = class PTagDismissible {
|
|
1765
1907
|
constructor(c, r, z) {
|
|
1766
1908
|
this.z = z;
|
|
@@ -1770,9 +1912,9 @@ let PTagDismissible = class PTagDismissible {
|
|
|
1770
1912
|
};
|
|
1771
1913
|
PTagDismissible.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTagDismissible, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1772
1914
|
PTagDismissible.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTagDismissible, selector: "p-tag-dismissible,[p-tag-dismissible]", inputs: { aria: "aria", color: "color", label: "label", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1773
|
-
PTagDismissible = __decorate$
|
|
1915
|
+
PTagDismissible = __decorate$7([
|
|
1774
1916
|
ProxyCmp({
|
|
1775
|
-
inputs: inputs$
|
|
1917
|
+
inputs: inputs$6
|
|
1776
1918
|
})
|
|
1777
1919
|
], PTagDismissible);
|
|
1778
1920
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTagDismissible, decorators: [{
|
|
@@ -1781,11 +1923,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1781
1923
|
selector: 'p-tag-dismissible,[p-tag-dismissible]',
|
|
1782
1924
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1783
1925
|
template: '<ng-content></ng-content>',
|
|
1784
|
-
inputs: inputs$
|
|
1926
|
+
inputs: inputs$6
|
|
1785
1927
|
}]
|
|
1786
1928
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1787
1929
|
|
|
1788
|
-
var __decorate$
|
|
1930
|
+
var __decorate$6 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1789
1931
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1790
1932
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1791
1933
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1795,7 +1937,7 @@ var __decorate$5 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1795
1937
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1796
1938
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1797
1939
|
};
|
|
1798
|
-
const inputs$
|
|
1940
|
+
const inputs$5 = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme', 'weight'];
|
|
1799
1941
|
let PText = class PText {
|
|
1800
1942
|
constructor(c, r, z) {
|
|
1801
1943
|
this.z = z;
|
|
@@ -1805,9 +1947,9 @@ let PText = class PText {
|
|
|
1805
1947
|
};
|
|
1806
1948
|
PText.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1807
1949
|
PText.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PText, selector: "p-text,[p-text]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag", theme: "theme", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1808
|
-
PText = __decorate$
|
|
1950
|
+
PText = __decorate$6([
|
|
1809
1951
|
ProxyCmp({
|
|
1810
|
-
inputs: inputs$
|
|
1952
|
+
inputs: inputs$5
|
|
1811
1953
|
})
|
|
1812
1954
|
], PText);
|
|
1813
1955
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PText, decorators: [{
|
|
@@ -1816,11 +1958,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1816
1958
|
selector: 'p-text,[p-text]',
|
|
1817
1959
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1818
1960
|
template: '<ng-content></ng-content>',
|
|
1819
|
-
inputs: inputs$
|
|
1961
|
+
inputs: inputs$5
|
|
1820
1962
|
}]
|
|
1821
1963
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1822
1964
|
|
|
1823
|
-
var __decorate$
|
|
1965
|
+
var __decorate$5 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1824
1966
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1825
1967
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1826
1968
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1830,7 +1972,7 @@ var __decorate$4 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1830
1972
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1831
1973
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1832
1974
|
};
|
|
1833
|
-
const inputs$
|
|
1975
|
+
const inputs$4 = ['actionIcon', 'actionLoading', 'description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'showCounter', 'state', 'theme', 'unit', 'unitPosition'];
|
|
1834
1976
|
const outputs = ['action'];
|
|
1835
1977
|
let PTextFieldWrapper = class PTextFieldWrapper {
|
|
1836
1978
|
constructor(c, r, z) {
|
|
@@ -1842,9 +1984,9 @@ let PTextFieldWrapper = class PTextFieldWrapper {
|
|
|
1842
1984
|
};
|
|
1843
1985
|
PTextFieldWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTextFieldWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1844
1986
|
PTextFieldWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTextFieldWrapper, selector: "p-text-field-wrapper,[p-text-field-wrapper]", inputs: { actionIcon: "actionIcon", actionLoading: "actionLoading", description: "description", hideLabel: "hideLabel", label: "label", message: "message", showCharacterCount: "showCharacterCount", showCounter: "showCounter", state: "state", theme: "theme", unit: "unit", unitPosition: "unitPosition" }, outputs: { action: "action" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1845
|
-
PTextFieldWrapper = __decorate$
|
|
1987
|
+
PTextFieldWrapper = __decorate$5([
|
|
1846
1988
|
ProxyCmp({
|
|
1847
|
-
inputs: inputs$
|
|
1989
|
+
inputs: inputs$4
|
|
1848
1990
|
})
|
|
1849
1991
|
], PTextFieldWrapper);
|
|
1850
1992
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTextFieldWrapper, decorators: [{
|
|
@@ -1853,12 +1995,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1853
1995
|
selector: 'p-text-field-wrapper,[p-text-field-wrapper]',
|
|
1854
1996
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1855
1997
|
template: '<ng-content></ng-content>',
|
|
1856
|
-
inputs: inputs$
|
|
1998
|
+
inputs: inputs$4,
|
|
1857
1999
|
outputs
|
|
1858
2000
|
}]
|
|
1859
2001
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1860
2002
|
|
|
1861
|
-
var __decorate$
|
|
2003
|
+
var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1862
2004
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1863
2005
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1864
2006
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1868,7 +2010,7 @@ var __decorate$3 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1868
2010
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1869
2011
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1870
2012
|
};
|
|
1871
|
-
const inputs$
|
|
2013
|
+
const inputs$3 = ['listType', 'orderType', 'theme', 'type'];
|
|
1872
2014
|
let PTextList = class PTextList {
|
|
1873
2015
|
constructor(c, r, z) {
|
|
1874
2016
|
this.z = z;
|
|
@@ -1878,9 +2020,9 @@ let PTextList = class PTextList {
|
|
|
1878
2020
|
};
|
|
1879
2021
|
PTextList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTextList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1880
2022
|
PTextList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTextList, selector: "p-text-list,[p-text-list]", inputs: { listType: "listType", orderType: "orderType", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1881
|
-
PTextList = __decorate$
|
|
2023
|
+
PTextList = __decorate$4([
|
|
1882
2024
|
ProxyCmp({
|
|
1883
|
-
inputs: inputs$
|
|
2025
|
+
inputs: inputs$3
|
|
1884
2026
|
})
|
|
1885
2027
|
], PTextList);
|
|
1886
2028
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTextList, decorators: [{
|
|
@@ -1889,11 +2031,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1889
2031
|
selector: 'p-text-list,[p-text-list]',
|
|
1890
2032
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1891
2033
|
template: '<ng-content></ng-content>',
|
|
1892
|
-
inputs: inputs$
|
|
2034
|
+
inputs: inputs$3
|
|
1893
2035
|
}]
|
|
1894
2036
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1895
2037
|
|
|
1896
|
-
var __decorate$
|
|
2038
|
+
var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1897
2039
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1898
2040
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1899
2041
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1912,7 +2054,7 @@ let PTextListItem = class PTextListItem {
|
|
|
1912
2054
|
};
|
|
1913
2055
|
PTextListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTextListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1914
2056
|
PTextListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTextListItem, selector: "p-text-list-item,[p-text-list-item]", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1915
|
-
PTextListItem = __decorate$
|
|
2057
|
+
PTextListItem = __decorate$3([
|
|
1916
2058
|
ProxyCmp({})
|
|
1917
2059
|
], PTextListItem);
|
|
1918
2060
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTextListItem, decorators: [{
|
|
@@ -1924,7 +2066,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1924
2066
|
}]
|
|
1925
2067
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1926
2068
|
|
|
1927
|
-
var __decorate$
|
|
2069
|
+
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1928
2070
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1929
2071
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1930
2072
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1934,7 +2076,7 @@ var __decorate$1 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1934
2076
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1935
2077
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1936
2078
|
};
|
|
1937
|
-
const inputs$
|
|
2079
|
+
const inputs$2 = ['description', 'hideLabel', 'label', 'message', 'showCharacterCount', 'showCounter', 'state', 'theme'];
|
|
1938
2080
|
let PTextareaWrapper = class PTextareaWrapper {
|
|
1939
2081
|
constructor(c, r, z) {
|
|
1940
2082
|
this.z = z;
|
|
@@ -1944,9 +2086,9 @@ let PTextareaWrapper = class PTextareaWrapper {
|
|
|
1944
2086
|
};
|
|
1945
2087
|
PTextareaWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTextareaWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1946
2088
|
PTextareaWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTextareaWrapper, selector: "p-textarea-wrapper,[p-textarea-wrapper]", inputs: { description: "description", hideLabel: "hideLabel", label: "label", message: "message", showCharacterCount: "showCharacterCount", showCounter: "showCounter", state: "state", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1947
|
-
PTextareaWrapper = __decorate$
|
|
2089
|
+
PTextareaWrapper = __decorate$2([
|
|
1948
2090
|
ProxyCmp({
|
|
1949
|
-
inputs: inputs$
|
|
2091
|
+
inputs: inputs$2
|
|
1950
2092
|
})
|
|
1951
2093
|
], PTextareaWrapper);
|
|
1952
2094
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTextareaWrapper, decorators: [{
|
|
@@ -1955,11 +2097,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1955
2097
|
selector: 'p-textarea-wrapper,[p-textarea-wrapper]',
|
|
1956
2098
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1957
2099
|
template: '<ng-content></ng-content>',
|
|
1958
|
-
inputs: inputs$
|
|
2100
|
+
inputs: inputs$2
|
|
1959
2101
|
}]
|
|
1960
2102
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1961
2103
|
|
|
1962
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2104
|
+
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1963
2105
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1964
2106
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1965
2107
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1969,7 +2111,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
1969
2111
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1970
2112
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1971
2113
|
};
|
|
1972
|
-
const inputs = ['theme'];
|
|
2114
|
+
const inputs$1 = ['theme'];
|
|
1973
2115
|
let PToast = class PToast {
|
|
1974
2116
|
constructor(c, r, z) {
|
|
1975
2117
|
this.z = z;
|
|
@@ -1979,9 +2121,9 @@ let PToast = class PToast {
|
|
|
1979
2121
|
};
|
|
1980
2122
|
PToast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1981
2123
|
PToast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PToast, selector: "p-toast,[p-toast]", inputs: { theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1982
|
-
PToast = __decorate([
|
|
2124
|
+
PToast = __decorate$1([
|
|
1983
2125
|
ProxyCmp({
|
|
1984
|
-
inputs
|
|
2126
|
+
inputs: inputs$1
|
|
1985
2127
|
})
|
|
1986
2128
|
], PToast);
|
|
1987
2129
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PToast, decorators: [{
|
|
@@ -1990,6 +2132,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1990
2132
|
selector: 'p-toast,[p-toast]',
|
|
1991
2133
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1992
2134
|
template: '<ng-content></ng-content>',
|
|
2135
|
+
inputs: inputs$1
|
|
2136
|
+
}]
|
|
2137
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2138
|
+
|
|
2139
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2140
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
2141
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
2142
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
2143
|
+
else
|
|
2144
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
2145
|
+
if (d = decorators[i])
|
|
2146
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
2147
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
2148
|
+
};
|
|
2149
|
+
const inputs = ['aria', 'href', 'size', 'target', 'theme'];
|
|
2150
|
+
let PWordmark = class PWordmark {
|
|
2151
|
+
constructor(c, r, z) {
|
|
2152
|
+
this.z = z;
|
|
2153
|
+
c.detach();
|
|
2154
|
+
this.el = r.nativeElement;
|
|
2155
|
+
}
|
|
2156
|
+
};
|
|
2157
|
+
PWordmark.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PWordmark, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2158
|
+
PWordmark.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PWordmark, selector: "p-wordmark,[p-wordmark]", inputs: { aria: "aria", href: "href", size: "size", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2159
|
+
PWordmark = __decorate([
|
|
2160
|
+
ProxyCmp({
|
|
2161
|
+
inputs
|
|
2162
|
+
})
|
|
2163
|
+
], PWordmark);
|
|
2164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PWordmark, decorators: [{
|
|
2165
|
+
type: Component,
|
|
2166
|
+
args: [{
|
|
2167
|
+
selector: 'p-wordmark,[p-wordmark]',
|
|
2168
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2169
|
+
template: '<ng-content></ng-content>',
|
|
1993
2170
|
inputs
|
|
1994
2171
|
}]
|
|
1995
2172
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2000,11 +2177,14 @@ const DECLARATIONS = [
|
|
|
2000
2177
|
PButton,
|
|
2001
2178
|
PButtonGroup,
|
|
2002
2179
|
PButtonPure,
|
|
2180
|
+
PButtonTile,
|
|
2003
2181
|
PCarousel,
|
|
2004
2182
|
PCheckboxWrapper,
|
|
2005
2183
|
PContentWrapper,
|
|
2184
|
+
PCrest,
|
|
2006
2185
|
PDisplay,
|
|
2007
2186
|
PDivider,
|
|
2187
|
+
PFieldset,
|
|
2008
2188
|
PFieldsetWrapper,
|
|
2009
2189
|
PFlex,
|
|
2010
2190
|
PFlexItem,
|
|
@@ -2018,6 +2198,7 @@ const DECLARATIONS = [
|
|
|
2018
2198
|
PLinkPure,
|
|
2019
2199
|
PLinkSocial,
|
|
2020
2200
|
PLinkTile,
|
|
2201
|
+
PLinkTileModelSignature,
|
|
2021
2202
|
PMarque,
|
|
2022
2203
|
PModal,
|
|
2023
2204
|
PModelSignature,
|
|
@@ -2049,7 +2230,8 @@ const DECLARATIONS = [
|
|
|
2049
2230
|
PTextList,
|
|
2050
2231
|
PTextListItem,
|
|
2051
2232
|
PTextareaWrapper,
|
|
2052
|
-
PToast
|
|
2233
|
+
PToast,
|
|
2234
|
+
PWordmark
|
|
2053
2235
|
];
|
|
2054
2236
|
|
|
2055
2237
|
class DefaultConfig {
|
|
@@ -2076,7 +2258,7 @@ class PorscheDesignSystemModule {
|
|
|
2076
2258
|
}
|
|
2077
2259
|
}
|
|
2078
2260
|
PorscheDesignSystemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2079
|
-
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDisplay, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDisplay, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast] });
|
|
2261
|
+
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark] });
|
|
2080
2262
|
PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule });
|
|
2081
2263
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
|
|
2082
2264
|
type: NgModule,
|
|
@@ -2109,5 +2291,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2109
2291
|
* Generated bundle index. Do not edit.
|
|
2110
2292
|
*/
|
|
2111
2293
|
|
|
2112
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDisplay, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PorscheDesignSystemModule, ToastManager };
|
|
2294
|
+
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, ToastManager };
|
|
2113
2295
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|