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