@porsche-design-system/components-angular 3.0.0-alpha.3 → 3.0.0-alpha.4
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 +83 -0
- package/esm2020/lib/components/banner.wrapper.mjs +1 -1
- package/esm2020/lib/components/barrel.mjs +10 -1
- package/esm2020/lib/components/button-tile.wrapper.mjs +35 -0
- package/esm2020/lib/components/carousel.wrapper.mjs +3 -3
- package/esm2020/lib/components/fieldset-wrapper.wrapper.mjs +2 -1
- package/esm2020/lib/components/fieldset.wrapper.mjs +35 -0
- package/esm2020/lib/components/link-tile-model-signature.wrapper.mjs +35 -0
- package/esm2020/lib/components/scroller.wrapper.mjs +3 -3
- package/esm2020/lib/components/table.wrapper.mjs +3 -3
- package/esm2020/lib/types.mjs +1 -1
- package/esm2020/porsche-design-system.module.mjs +55 -52
- package/fesm2015/porsche-design-system-components-angular.mjs +230 -121
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +218 -121
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/banner.wrapper.d.ts +1 -0
- package/lib/components/barrel.d.ts +7 -1
- package/lib/components/button-tile.wrapper.d.ts +24 -0
- package/lib/components/carousel.wrapper.d.ts +3 -2
- package/lib/components/fieldset-wrapper.wrapper.d.ts +1 -0
- package/lib/components/fieldset.wrapper.d.ts +16 -0
- package/lib/components/link-tile-model-signature.wrapper.d.ts +17 -0
- package/lib/components/scroller.wrapper.d.ts +2 -1
- package/lib/components/table.wrapper.d.ts +3 -2
- package/lib/types.d.ts +74 -43
- package/package.json +2 -2
- package/porsche-design-system.module.d.ts +54 -51
- package/styles/_index.scss +1 -0
- package/styles/scss.scss +0 -1
|
@@ -43,7 +43,7 @@ function ProxyCmp({ inputs /*, methods*/ }) {
|
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
var __decorate$
|
|
46
|
+
var __decorate$V = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
47
47
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
48
48
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
49
49
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -53,7 +53,7 @@ var __decorate$S = (this && this.__decorate) || function (decorators, target, ke
|
|
|
53
53
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
54
54
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
55
55
|
};
|
|
56
|
-
const inputs$
|
|
56
|
+
const inputs$Q = ['compact', 'heading', 'open', 'size', 'tag', 'theme'];
|
|
57
57
|
const outputs$c = ['accordionChange', 'change'];
|
|
58
58
|
let PAccordion = class PAccordion {
|
|
59
59
|
constructor(c, r, z) {
|
|
@@ -65,9 +65,9 @@ let PAccordion = class PAccordion {
|
|
|
65
65
|
};
|
|
66
66
|
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
67
67
|
PAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PAccordion, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", open: "open", size: "size", tag: "tag", theme: "theme" }, outputs: { accordionChange: "accordionChange", change: "change" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
68
|
-
PAccordion = __decorate$
|
|
68
|
+
PAccordion = __decorate$V([
|
|
69
69
|
ProxyCmp({
|
|
70
|
-
inputs: inputs$
|
|
70
|
+
inputs: inputs$Q
|
|
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$Q,
|
|
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$U = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
85
85
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
86
86
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
87
87
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -91,7 +91,7 @@ var __decorate$R = (this && this.__decorate) || function (decorators, target, ke
|
|
|
91
91
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
92
92
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
93
93
|
};
|
|
94
|
-
const inputs$
|
|
94
|
+
const inputs$P = ['description', 'heading', 'persistent', 'state', 'theme', 'width'];
|
|
95
95
|
const outputs$b = ['dismiss'];
|
|
96
96
|
let PBanner = class PBanner {
|
|
97
97
|
constructor(c, r, z) {
|
|
@@ -103,9 +103,9 @@ let PBanner = class PBanner {
|
|
|
103
103
|
};
|
|
104
104
|
PBanner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
105
105
|
PBanner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PBanner, selector: "p-banner,[p-banner]", inputs: { description: "description", heading: "heading", persistent: "persistent", state: "state", theme: "theme", width: "width" }, outputs: { dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
106
|
-
PBanner = __decorate$
|
|
106
|
+
PBanner = __decorate$U([
|
|
107
107
|
ProxyCmp({
|
|
108
|
-
inputs: inputs$
|
|
108
|
+
inputs: inputs$P
|
|
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$P,
|
|
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$T = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
123
123
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
124
124
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
125
125
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -129,7 +129,7 @@ var __decorate$Q = (this && this.__decorate) || function (decorators, target, ke
|
|
|
129
129
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
130
130
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
131
131
|
};
|
|
132
|
-
const inputs$
|
|
132
|
+
const inputs$O = ['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$T([
|
|
143
143
|
ProxyCmp({
|
|
144
|
-
inputs: inputs$
|
|
144
|
+
inputs: inputs$O
|
|
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$O
|
|
154
154
|
}]
|
|
155
155
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
156
156
|
|
|
157
|
-
var __decorate$
|
|
157
|
+
var __decorate$S = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
158
158
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
159
159
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
160
160
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -164,7 +164,7 @@ var __decorate$P = (this && this.__decorate) || function (decorators, target, ke
|
|
|
164
164
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
165
165
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
166
166
|
};
|
|
167
|
-
const inputs$
|
|
167
|
+
const inputs$N = ['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$S([
|
|
178
178
|
ProxyCmp({
|
|
179
|
-
inputs: inputs$
|
|
179
|
+
inputs: inputs$N
|
|
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$N
|
|
189
189
|
}]
|
|
190
190
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
191
191
|
|
|
192
|
-
var __decorate$
|
|
192
|
+
var __decorate$R = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
193
193
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
194
194
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
195
195
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -199,7 +199,7 @@ var __decorate$O = (this && this.__decorate) || function (decorators, target, ke
|
|
|
199
199
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
200
200
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
201
201
|
};
|
|
202
|
-
const inputs$
|
|
202
|
+
const inputs$M = ['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$R([
|
|
213
213
|
ProxyCmp({
|
|
214
|
-
inputs: inputs$
|
|
214
|
+
inputs: inputs$M
|
|
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$M
|
|
224
224
|
}]
|
|
225
225
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
226
226
|
|
|
227
|
-
var __decorate$
|
|
227
|
+
var __decorate$Q = (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,42 @@ var __decorate$N = (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$L = ['align', 'aria', 'aspectRatio', 'compact', 'description', 'disabled', 'gradient', 'icon', 'iconSource', 'label', 'loading', 'size', 'type', 'weight'];
|
|
238
|
+
let PButtonTile = class PButtonTile {
|
|
239
|
+
constructor(c, r, z) {
|
|
240
|
+
this.z = z;
|
|
241
|
+
c.detach();
|
|
242
|
+
this.el = r.nativeElement;
|
|
243
|
+
}
|
|
244
|
+
};
|
|
245
|
+
PButtonTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButtonTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
246
|
+
PButtonTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PButtonTile, selector: "p-button-tile,[p-button-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio", compact: "compact", description: "description", disabled: "disabled", gradient: "gradient", icon: "icon", iconSource: "iconSource", label: "label", loading: "loading", size: "size", type: "type", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
247
|
+
PButtonTile = __decorate$Q([
|
|
248
|
+
ProxyCmp({
|
|
249
|
+
inputs: inputs$L
|
|
250
|
+
})
|
|
251
|
+
], PButtonTile);
|
|
252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButtonTile, decorators: [{
|
|
253
|
+
type: Component,
|
|
254
|
+
args: [{
|
|
255
|
+
selector: 'p-button-tile,[p-button-tile]',
|
|
256
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
257
|
+
template: '<ng-content></ng-content>',
|
|
258
|
+
inputs: inputs$L
|
|
259
|
+
}]
|
|
260
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
261
|
+
|
|
262
|
+
var __decorate$P = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
263
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
264
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
265
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
266
|
+
else
|
|
267
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
268
|
+
if (d = decorators[i])
|
|
269
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
270
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
271
|
+
};
|
|
272
|
+
const inputs$K = ['activeSlideIndex', 'alignHeader', 'description', 'disablePagination', 'heading', 'intl', 'pagination', 'rewind', 'slidesPerPage', 'theme', 'width', 'wrapContent'];
|
|
238
273
|
const outputs$a = ['carouselChange', 'change'];
|
|
239
274
|
let PCarousel = class PCarousel {
|
|
240
275
|
constructor(c, r, z) {
|
|
@@ -245,10 +280,10 @@ let PCarousel = class PCarousel {
|
|
|
245
280
|
}
|
|
246
281
|
};
|
|
247
282
|
PCarousel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
248
|
-
PCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PCarousel, selector: "p-carousel,[p-carousel]", inputs: { alignHeader: "alignHeader", description: "description", disablePagination: "disablePagination", heading: "heading", intl: "intl", pagination: "pagination", rewind: "rewind", slidesPerPage: "slidesPerPage", theme: "theme", width: "width", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange", change: "change" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
249
|
-
PCarousel = __decorate$
|
|
283
|
+
PCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PCarousel, selector: "p-carousel,[p-carousel]", inputs: { activeSlideIndex: "activeSlideIndex", alignHeader: "alignHeader", description: "description", disablePagination: "disablePagination", heading: "heading", intl: "intl", pagination: "pagination", rewind: "rewind", slidesPerPage: "slidesPerPage", theme: "theme", width: "width", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange", change: "change" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
284
|
+
PCarousel = __decorate$P([
|
|
250
285
|
ProxyCmp({
|
|
251
|
-
inputs: inputs$
|
|
286
|
+
inputs: inputs$K
|
|
252
287
|
})
|
|
253
288
|
], PCarousel);
|
|
254
289
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCarousel, decorators: [{
|
|
@@ -257,12 +292,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
257
292
|
selector: 'p-carousel,[p-carousel]',
|
|
258
293
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
259
294
|
template: '<ng-content></ng-content>',
|
|
260
|
-
inputs: inputs$
|
|
295
|
+
inputs: inputs$K,
|
|
261
296
|
outputs: outputs$a
|
|
262
297
|
}]
|
|
263
298
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
264
299
|
|
|
265
|
-
var __decorate$
|
|
300
|
+
var __decorate$O = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
266
301
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
267
302
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
268
303
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -272,7 +307,7 @@ var __decorate$M = (this && this.__decorate) || function (decorators, target, ke
|
|
|
272
307
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
273
308
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
274
309
|
};
|
|
275
|
-
const inputs$
|
|
310
|
+
const inputs$J = ['hideLabel', 'label', 'message', 'state', 'theme'];
|
|
276
311
|
let PCheckboxWrapper = class PCheckboxWrapper {
|
|
277
312
|
constructor(c, r, z) {
|
|
278
313
|
this.z = z;
|
|
@@ -282,9 +317,9 @@ let PCheckboxWrapper = class PCheckboxWrapper {
|
|
|
282
317
|
};
|
|
283
318
|
PCheckboxWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCheckboxWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
284
319
|
PCheckboxWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PCheckboxWrapper, selector: "p-checkbox-wrapper,[p-checkbox-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", message: "message", state: "state", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
285
|
-
PCheckboxWrapper = __decorate$
|
|
320
|
+
PCheckboxWrapper = __decorate$O([
|
|
286
321
|
ProxyCmp({
|
|
287
|
-
inputs: inputs$
|
|
322
|
+
inputs: inputs$J
|
|
288
323
|
})
|
|
289
324
|
], PCheckboxWrapper);
|
|
290
325
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCheckboxWrapper, decorators: [{
|
|
@@ -293,11 +328,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
293
328
|
selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',
|
|
294
329
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
295
330
|
template: '<ng-content></ng-content>',
|
|
296
|
-
inputs: inputs$
|
|
331
|
+
inputs: inputs$J
|
|
297
332
|
}]
|
|
298
333
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
299
334
|
|
|
300
|
-
var __decorate$
|
|
335
|
+
var __decorate$N = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
301
336
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
302
337
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
303
338
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -307,7 +342,7 @@ var __decorate$L = (this && this.__decorate) || function (decorators, target, ke
|
|
|
307
342
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
308
343
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
309
344
|
};
|
|
310
|
-
const inputs$
|
|
345
|
+
const inputs$I = ['backgroundColor', 'theme', 'width'];
|
|
311
346
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
312
347
|
let PContentWrapper = class PContentWrapper {
|
|
313
348
|
constructor(c, r, z) {
|
|
@@ -318,9 +353,9 @@ let PContentWrapper = class PContentWrapper {
|
|
|
318
353
|
};
|
|
319
354
|
PContentWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PContentWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
320
355
|
PContentWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PContentWrapper, selector: "p-content-wrapper,[p-content-wrapper]", inputs: { backgroundColor: "backgroundColor", theme: "theme", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
321
|
-
PContentWrapper = __decorate$
|
|
356
|
+
PContentWrapper = __decorate$N([
|
|
322
357
|
ProxyCmp({
|
|
323
|
-
inputs: inputs$
|
|
358
|
+
inputs: inputs$I
|
|
324
359
|
})
|
|
325
360
|
], PContentWrapper);
|
|
326
361
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PContentWrapper, decorators: [{
|
|
@@ -329,11 +364,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
329
364
|
selector: 'p-content-wrapper,[p-content-wrapper]',
|
|
330
365
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
331
366
|
template: '<ng-content></ng-content>',
|
|
332
|
-
inputs: inputs$
|
|
367
|
+
inputs: inputs$I
|
|
333
368
|
}]
|
|
334
369
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
335
370
|
|
|
336
|
-
var __decorate$
|
|
371
|
+
var __decorate$M = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
337
372
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
338
373
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
339
374
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -343,7 +378,7 @@ var __decorate$K = (this && this.__decorate) || function (decorators, target, ke
|
|
|
343
378
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
344
379
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
345
380
|
};
|
|
346
|
-
const inputs$
|
|
381
|
+
const inputs$H = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'];
|
|
347
382
|
let PDisplay = class PDisplay {
|
|
348
383
|
constructor(c, r, z) {
|
|
349
384
|
this.z = z;
|
|
@@ -353,9 +388,9 @@ let PDisplay = class PDisplay {
|
|
|
353
388
|
};
|
|
354
389
|
PDisplay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDisplay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
355
390
|
PDisplay.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PDisplay, selector: "p-display,[p-display]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
356
|
-
PDisplay = __decorate$
|
|
391
|
+
PDisplay = __decorate$M([
|
|
357
392
|
ProxyCmp({
|
|
358
|
-
inputs: inputs$
|
|
393
|
+
inputs: inputs$H
|
|
359
394
|
})
|
|
360
395
|
], PDisplay);
|
|
361
396
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDisplay, decorators: [{
|
|
@@ -364,11 +399,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
364
399
|
selector: 'p-display,[p-display]',
|
|
365
400
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
366
401
|
template: '<ng-content></ng-content>',
|
|
367
|
-
inputs: inputs$
|
|
402
|
+
inputs: inputs$H
|
|
368
403
|
}]
|
|
369
404
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
370
405
|
|
|
371
|
-
var __decorate$
|
|
406
|
+
var __decorate$L = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
372
407
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
373
408
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
374
409
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -378,7 +413,7 @@ var __decorate$J = (this && this.__decorate) || function (decorators, target, ke
|
|
|
378
413
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
379
414
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
380
415
|
};
|
|
381
|
-
const inputs$
|
|
416
|
+
const inputs$G = ['color', 'direction', 'orientation', 'theme'];
|
|
382
417
|
let PDivider = class PDivider {
|
|
383
418
|
constructor(c, r, z) {
|
|
384
419
|
this.z = z;
|
|
@@ -388,9 +423,9 @@ let PDivider = class PDivider {
|
|
|
388
423
|
};
|
|
389
424
|
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
390
425
|
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PDivider, selector: "p-divider,[p-divider]", inputs: { color: "color", direction: "direction", orientation: "orientation", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
391
|
-
PDivider = __decorate$
|
|
426
|
+
PDivider = __decorate$L([
|
|
392
427
|
ProxyCmp({
|
|
393
|
-
inputs: inputs$
|
|
428
|
+
inputs: inputs$G
|
|
394
429
|
})
|
|
395
430
|
], PDivider);
|
|
396
431
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDivider, decorators: [{
|
|
@@ -399,11 +434,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
399
434
|
selector: 'p-divider,[p-divider]',
|
|
400
435
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
401
436
|
template: '<ng-content></ng-content>',
|
|
402
|
-
inputs: inputs$
|
|
437
|
+
inputs: inputs$G
|
|
403
438
|
}]
|
|
404
439
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
405
440
|
|
|
406
|
-
var __decorate$
|
|
441
|
+
var __decorate$K = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
442
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
443
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
444
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
445
|
+
else
|
|
446
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
447
|
+
if (d = decorators[i])
|
|
448
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
449
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
450
|
+
};
|
|
451
|
+
const inputs$F = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
452
|
+
let PFieldset = class PFieldset {
|
|
453
|
+
constructor(c, r, z) {
|
|
454
|
+
this.z = z;
|
|
455
|
+
c.detach();
|
|
456
|
+
this.el = r.nativeElement;
|
|
457
|
+
}
|
|
458
|
+
};
|
|
459
|
+
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
|
+
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$K([
|
|
462
|
+
ProxyCmp({
|
|
463
|
+
inputs: inputs$F
|
|
464
|
+
})
|
|
465
|
+
], PFieldset);
|
|
466
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFieldset, decorators: [{
|
|
467
|
+
type: Component,
|
|
468
|
+
args: [{
|
|
469
|
+
selector: 'p-fieldset,[p-fieldset]',
|
|
470
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
471
|
+
template: '<ng-content></ng-content>',
|
|
472
|
+
inputs: inputs$F
|
|
473
|
+
}]
|
|
474
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
475
|
+
|
|
476
|
+
var __decorate$J = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
407
477
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
408
478
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
409
479
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -413,7 +483,8 @@ var __decorate$I = (this && this.__decorate) || function (decorators, target, ke
|
|
|
413
483
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
414
484
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
415
485
|
};
|
|
416
|
-
const inputs$
|
|
486
|
+
const inputs$E = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
487
|
+
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-fieldset" instead. */
|
|
417
488
|
let PFieldsetWrapper = class PFieldsetWrapper {
|
|
418
489
|
constructor(c, r, z) {
|
|
419
490
|
this.z = z;
|
|
@@ -423,9 +494,9 @@ let PFieldsetWrapper = class PFieldsetWrapper {
|
|
|
423
494
|
};
|
|
424
495
|
PFieldsetWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFieldsetWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
425
496
|
PFieldsetWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PFieldsetWrapper, selector: "p-fieldset-wrapper,[p-fieldset-wrapper]", inputs: { label: "label", labelSize: "labelSize", message: "message", required: "required", state: "state", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
426
|
-
PFieldsetWrapper = __decorate$
|
|
497
|
+
PFieldsetWrapper = __decorate$J([
|
|
427
498
|
ProxyCmp({
|
|
428
|
-
inputs: inputs$
|
|
499
|
+
inputs: inputs$E
|
|
429
500
|
})
|
|
430
501
|
], PFieldsetWrapper);
|
|
431
502
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFieldsetWrapper, decorators: [{
|
|
@@ -434,11 +505,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
434
505
|
selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',
|
|
435
506
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
436
507
|
template: '<ng-content></ng-content>',
|
|
437
|
-
inputs: inputs$
|
|
508
|
+
inputs: inputs$E
|
|
438
509
|
}]
|
|
439
510
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
440
511
|
|
|
441
|
-
var __decorate$
|
|
512
|
+
var __decorate$I = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
442
513
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
443
514
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
444
515
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -448,7 +519,7 @@ var __decorate$H = (this && this.__decorate) || function (decorators, target, ke
|
|
|
448
519
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
449
520
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
450
521
|
};
|
|
451
|
-
const inputs$
|
|
522
|
+
const inputs$D = ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'];
|
|
452
523
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
453
524
|
let PFlex = class PFlex {
|
|
454
525
|
constructor(c, r, z) {
|
|
@@ -459,9 +530,9 @@ let PFlex = class PFlex {
|
|
|
459
530
|
};
|
|
460
531
|
PFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlex, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
461
532
|
PFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PFlex, selector: "p-flex,[p-flex]", inputs: { alignContent: "alignContent", alignItems: "alignItems", direction: "direction", inline: "inline", justifyContent: "justifyContent", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
462
|
-
PFlex = __decorate$
|
|
533
|
+
PFlex = __decorate$I([
|
|
463
534
|
ProxyCmp({
|
|
464
|
-
inputs: inputs$
|
|
535
|
+
inputs: inputs$D
|
|
465
536
|
})
|
|
466
537
|
], PFlex);
|
|
467
538
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlex, decorators: [{
|
|
@@ -470,11 +541,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
470
541
|
selector: 'p-flex,[p-flex]',
|
|
471
542
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
472
543
|
template: '<ng-content></ng-content>',
|
|
473
|
-
inputs: inputs$
|
|
544
|
+
inputs: inputs$D
|
|
474
545
|
}]
|
|
475
546
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
476
547
|
|
|
477
|
-
var __decorate$
|
|
548
|
+
var __decorate$H = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
478
549
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
479
550
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
480
551
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -484,7 +555,7 @@ var __decorate$G = (this && this.__decorate) || function (decorators, target, ke
|
|
|
484
555
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
485
556
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
486
557
|
};
|
|
487
|
-
const inputs$
|
|
558
|
+
const inputs$C = ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'];
|
|
488
559
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
489
560
|
let PFlexItem = class PFlexItem {
|
|
490
561
|
constructor(c, r, z) {
|
|
@@ -495,9 +566,9 @@ let PFlexItem = class PFlexItem {
|
|
|
495
566
|
};
|
|
496
567
|
PFlexItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlexItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
497
568
|
PFlexItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PFlexItem, selector: "p-flex-item,[p-flex-item]", inputs: { alignSelf: "alignSelf", flex: "flex", grow: "grow", offset: "offset", shrink: "shrink", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
498
|
-
PFlexItem = __decorate$
|
|
569
|
+
PFlexItem = __decorate$H([
|
|
499
570
|
ProxyCmp({
|
|
500
|
-
inputs: inputs$
|
|
571
|
+
inputs: inputs$C
|
|
501
572
|
})
|
|
502
573
|
], PFlexItem);
|
|
503
574
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlexItem, decorators: [{
|
|
@@ -506,11 +577,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
506
577
|
selector: 'p-flex-item,[p-flex-item]',
|
|
507
578
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
508
579
|
template: '<ng-content></ng-content>',
|
|
509
|
-
inputs: inputs$
|
|
580
|
+
inputs: inputs$C
|
|
510
581
|
}]
|
|
511
582
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
512
583
|
|
|
513
|
-
var __decorate$
|
|
584
|
+
var __decorate$G = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
514
585
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
515
586
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
516
587
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -520,7 +591,7 @@ var __decorate$F = (this && this.__decorate) || function (decorators, target, ke
|
|
|
520
591
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
521
592
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
522
593
|
};
|
|
523
|
-
const inputs$
|
|
594
|
+
const inputs$B = ['direction', 'gutter', 'wrap'];
|
|
524
595
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
525
596
|
let PGrid = class PGrid {
|
|
526
597
|
constructor(c, r, z) {
|
|
@@ -531,9 +602,9 @@ let PGrid = class PGrid {
|
|
|
531
602
|
};
|
|
532
603
|
PGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
533
604
|
PGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PGrid, selector: "p-grid,[p-grid]", inputs: { direction: "direction", gutter: "gutter", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
534
|
-
PGrid = __decorate$
|
|
605
|
+
PGrid = __decorate$G([
|
|
535
606
|
ProxyCmp({
|
|
536
|
-
inputs: inputs$
|
|
607
|
+
inputs: inputs$B
|
|
537
608
|
})
|
|
538
609
|
], PGrid);
|
|
539
610
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGrid, decorators: [{
|
|
@@ -542,11 +613,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
542
613
|
selector: 'p-grid,[p-grid]',
|
|
543
614
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
544
615
|
template: '<ng-content></ng-content>',
|
|
545
|
-
inputs: inputs$
|
|
616
|
+
inputs: inputs$B
|
|
546
617
|
}]
|
|
547
618
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
548
619
|
|
|
549
|
-
var __decorate$
|
|
620
|
+
var __decorate$F = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
550
621
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
551
622
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
552
623
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -556,7 +627,7 @@ var __decorate$E = (this && this.__decorate) || function (decorators, target, ke
|
|
|
556
627
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
557
628
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
558
629
|
};
|
|
559
|
-
const inputs$
|
|
630
|
+
const inputs$A = ['offset', 'size'];
|
|
560
631
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
561
632
|
let PGridItem = class PGridItem {
|
|
562
633
|
constructor(c, r, z) {
|
|
@@ -567,9 +638,9 @@ let PGridItem = class PGridItem {
|
|
|
567
638
|
};
|
|
568
639
|
PGridItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGridItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
569
640
|
PGridItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PGridItem, selector: "p-grid-item,[p-grid-item]", inputs: { offset: "offset", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
570
|
-
PGridItem = __decorate$
|
|
641
|
+
PGridItem = __decorate$F([
|
|
571
642
|
ProxyCmp({
|
|
572
|
-
inputs: inputs$
|
|
643
|
+
inputs: inputs$A
|
|
573
644
|
})
|
|
574
645
|
], PGridItem);
|
|
575
646
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGridItem, decorators: [{
|
|
@@ -578,11 +649,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
578
649
|
selector: 'p-grid-item,[p-grid-item]',
|
|
579
650
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
580
651
|
template: '<ng-content></ng-content>',
|
|
581
|
-
inputs: inputs$
|
|
652
|
+
inputs: inputs$A
|
|
582
653
|
}]
|
|
583
654
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
584
655
|
|
|
585
|
-
var __decorate$
|
|
656
|
+
var __decorate$E = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
586
657
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
587
658
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
588
659
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -592,7 +663,7 @@ var __decorate$D = (this && this.__decorate) || function (decorators, target, ke
|
|
|
592
663
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
593
664
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
594
665
|
};
|
|
595
|
-
const inputs$
|
|
666
|
+
const inputs$z = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'];
|
|
596
667
|
let PHeading = class PHeading {
|
|
597
668
|
constructor(c, r, z) {
|
|
598
669
|
this.z = z;
|
|
@@ -602,9 +673,9 @@ let PHeading = class PHeading {
|
|
|
602
673
|
};
|
|
603
674
|
PHeading.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
604
675
|
PHeading.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PHeading, selector: "p-heading,[p-heading]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", size: "size", tag: "tag", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
605
|
-
PHeading = __decorate$
|
|
676
|
+
PHeading = __decorate$E([
|
|
606
677
|
ProxyCmp({
|
|
607
|
-
inputs: inputs$
|
|
678
|
+
inputs: inputs$z
|
|
608
679
|
})
|
|
609
680
|
], PHeading);
|
|
610
681
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeading, decorators: [{
|
|
@@ -613,11 +684,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
613
684
|
selector: 'p-heading,[p-heading]',
|
|
614
685
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
615
686
|
template: '<ng-content></ng-content>',
|
|
616
|
-
inputs: inputs$
|
|
687
|
+
inputs: inputs$z
|
|
617
688
|
}]
|
|
618
689
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
619
690
|
|
|
620
|
-
var __decorate$
|
|
691
|
+
var __decorate$D = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
621
692
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
622
693
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
623
694
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -627,7 +698,7 @@ var __decorate$C = (this && this.__decorate) || function (decorators, target, ke
|
|
|
627
698
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
628
699
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
629
700
|
};
|
|
630
|
-
const inputs$
|
|
701
|
+
const inputs$y = ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'];
|
|
631
702
|
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-heading" instead. */
|
|
632
703
|
let PHeadline = class PHeadline {
|
|
633
704
|
constructor(c, r, z) {
|
|
@@ -638,9 +709,9 @@ let PHeadline = class PHeadline {
|
|
|
638
709
|
};
|
|
639
710
|
PHeadline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeadline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
640
711
|
PHeadline.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PHeadline, selector: "p-headline,[p-headline]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", tag: "tag", theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
641
|
-
PHeadline = __decorate$
|
|
712
|
+
PHeadline = __decorate$D([
|
|
642
713
|
ProxyCmp({
|
|
643
|
-
inputs: inputs$
|
|
714
|
+
inputs: inputs$y
|
|
644
715
|
})
|
|
645
716
|
], PHeadline);
|
|
646
717
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeadline, decorators: [{
|
|
@@ -649,11 +720,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
649
720
|
selector: 'p-headline,[p-headline]',
|
|
650
721
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
651
722
|
template: '<ng-content></ng-content>',
|
|
652
|
-
inputs: inputs$
|
|
723
|
+
inputs: inputs$y
|
|
653
724
|
}]
|
|
654
725
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
655
726
|
|
|
656
|
-
var __decorate$
|
|
727
|
+
var __decorate$C = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
657
728
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
658
729
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
659
730
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -663,7 +734,7 @@ var __decorate$B = (this && this.__decorate) || function (decorators, target, ke
|
|
|
663
734
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
664
735
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
665
736
|
};
|
|
666
|
-
const inputs$
|
|
737
|
+
const inputs$x = ['aria', 'color', 'lazy', 'name', 'size', 'source', 'theme'];
|
|
667
738
|
let PIcon = class PIcon {
|
|
668
739
|
constructor(c, r, z) {
|
|
669
740
|
this.z = z;
|
|
@@ -673,9 +744,9 @@ let PIcon = class PIcon {
|
|
|
673
744
|
};
|
|
674
745
|
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
675
746
|
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PIcon, selector: "p-icon,[p-icon]", inputs: { aria: "aria", color: "color", lazy: "lazy", name: "name", size: "size", source: "source", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
676
|
-
PIcon = __decorate$
|
|
747
|
+
PIcon = __decorate$C([
|
|
677
748
|
ProxyCmp({
|
|
678
|
-
inputs: inputs$
|
|
749
|
+
inputs: inputs$x
|
|
679
750
|
})
|
|
680
751
|
], PIcon);
|
|
681
752
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PIcon, decorators: [{
|
|
@@ -684,11 +755,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
684
755
|
selector: 'p-icon,[p-icon]',
|
|
685
756
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
686
757
|
template: '<ng-content></ng-content>',
|
|
687
|
-
inputs: inputs$
|
|
758
|
+
inputs: inputs$x
|
|
688
759
|
}]
|
|
689
760
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
690
761
|
|
|
691
|
-
var __decorate$
|
|
762
|
+
var __decorate$B = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
692
763
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
693
764
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
694
765
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -698,7 +769,7 @@ var __decorate$A = (this && this.__decorate) || function (decorators, target, ke
|
|
|
698
769
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
699
770
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
700
771
|
};
|
|
701
|
-
const inputs$
|
|
772
|
+
const inputs$w = ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'heading', 'persistent', 'state', 'theme'];
|
|
702
773
|
const outputs$9 = ['action', 'dismiss'];
|
|
703
774
|
let PInlineNotification = class PInlineNotification {
|
|
704
775
|
constructor(c, r, z) {
|
|
@@ -710,9 +781,9 @@ let PInlineNotification = class PInlineNotification {
|
|
|
710
781
|
};
|
|
711
782
|
PInlineNotification.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PInlineNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
712
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 });
|
|
713
|
-
PInlineNotification = __decorate$
|
|
784
|
+
PInlineNotification = __decorate$B([
|
|
714
785
|
ProxyCmp({
|
|
715
|
-
inputs: inputs$
|
|
786
|
+
inputs: inputs$w
|
|
716
787
|
})
|
|
717
788
|
], PInlineNotification);
|
|
718
789
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PInlineNotification, decorators: [{
|
|
@@ -721,12 +792,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
721
792
|
selector: 'p-inline-notification,[p-inline-notification]',
|
|
722
793
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
723
794
|
template: '<ng-content></ng-content>',
|
|
724
|
-
inputs: inputs$
|
|
795
|
+
inputs: inputs$w,
|
|
725
796
|
outputs: outputs$9
|
|
726
797
|
}]
|
|
727
798
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
728
799
|
|
|
729
|
-
var __decorate$
|
|
800
|
+
var __decorate$A = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
730
801
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
731
802
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
732
803
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -736,7 +807,7 @@ var __decorate$z = (this && this.__decorate) || function (decorators, target, ke
|
|
|
736
807
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
737
808
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
738
809
|
};
|
|
739
|
-
const inputs$
|
|
810
|
+
const inputs$v = ['aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme', 'variant'];
|
|
740
811
|
let PLink = class PLink {
|
|
741
812
|
constructor(c, r, z) {
|
|
742
813
|
this.z = z;
|
|
@@ -746,9 +817,9 @@ let PLink = class PLink {
|
|
|
746
817
|
};
|
|
747
818
|
PLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
748
819
|
PLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PLink, selector: "p-link,[p-link]", inputs: { aria: "aria", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
749
|
-
PLink = __decorate$
|
|
820
|
+
PLink = __decorate$A([
|
|
750
821
|
ProxyCmp({
|
|
751
|
-
inputs: inputs$
|
|
822
|
+
inputs: inputs$v
|
|
752
823
|
})
|
|
753
824
|
], PLink);
|
|
754
825
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLink, decorators: [{
|
|
@@ -757,11 +828,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
757
828
|
selector: 'p-link,[p-link]',
|
|
758
829
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
759
830
|
template: '<ng-content></ng-content>',
|
|
760
|
-
inputs: inputs$
|
|
831
|
+
inputs: inputs$v
|
|
761
832
|
}]
|
|
762
833
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
763
834
|
|
|
764
|
-
var __decorate$
|
|
835
|
+
var __decorate$z = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
765
836
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
766
837
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
767
838
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -771,7 +842,7 @@ var __decorate$y = (this && this.__decorate) || function (decorators, target, ke
|
|
|
771
842
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
772
843
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
773
844
|
};
|
|
774
|
-
const inputs$
|
|
845
|
+
const inputs$u = ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'theme', 'underline', 'weight'];
|
|
775
846
|
let PLinkPure = class PLinkPure {
|
|
776
847
|
constructor(c, r, z) {
|
|
777
848
|
this.z = z;
|
|
@@ -781,9 +852,9 @@ let PLinkPure = class PLinkPure {
|
|
|
781
852
|
};
|
|
782
853
|
PLinkPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkPure, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
783
854
|
PLinkPure.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PLinkPure, selector: "p-link-pure,[p-link-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", size: "size", stretch: "stretch", target: "target", theme: "theme", underline: "underline", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
784
|
-
PLinkPure = __decorate$
|
|
855
|
+
PLinkPure = __decorate$z([
|
|
785
856
|
ProxyCmp({
|
|
786
|
-
inputs: inputs$
|
|
857
|
+
inputs: inputs$u
|
|
787
858
|
})
|
|
788
859
|
], PLinkPure);
|
|
789
860
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkPure, decorators: [{
|
|
@@ -792,11 +863,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
792
863
|
selector: 'p-link-pure,[p-link-pure]',
|
|
793
864
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
794
865
|
template: '<ng-content></ng-content>',
|
|
795
|
-
inputs: inputs$
|
|
866
|
+
inputs: inputs$u
|
|
796
867
|
}]
|
|
797
868
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
798
869
|
|
|
799
|
-
var __decorate$
|
|
870
|
+
var __decorate$y = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
800
871
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
801
872
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
802
873
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -806,7 +877,7 @@ var __decorate$x = (this && this.__decorate) || function (decorators, target, ke
|
|
|
806
877
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
807
878
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
808
879
|
};
|
|
809
|
-
const inputs$
|
|
880
|
+
const inputs$t = ['hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'];
|
|
810
881
|
/** @deprecated since v3.0.0, will be removed with next major release. Use `p-link` with corresponding social icon instead. */
|
|
811
882
|
let PLinkSocial = class PLinkSocial {
|
|
812
883
|
constructor(c, r, z) {
|
|
@@ -817,9 +888,9 @@ let PLinkSocial = class PLinkSocial {
|
|
|
817
888
|
};
|
|
818
889
|
PLinkSocial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkSocial, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
819
890
|
PLinkSocial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PLinkSocial, selector: "p-link-social,[p-link-social]", inputs: { hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
820
|
-
PLinkSocial = __decorate$
|
|
891
|
+
PLinkSocial = __decorate$y([
|
|
821
892
|
ProxyCmp({
|
|
822
|
-
inputs: inputs$
|
|
893
|
+
inputs: inputs$t
|
|
823
894
|
})
|
|
824
895
|
], PLinkSocial);
|
|
825
896
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkSocial, decorators: [{
|
|
@@ -828,11 +899,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
828
899
|
selector: 'p-link-social,[p-link-social]',
|
|
829
900
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
830
901
|
template: '<ng-content></ng-content>',
|
|
831
|
-
inputs: inputs$
|
|
902
|
+
inputs: inputs$t
|
|
832
903
|
}]
|
|
833
904
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
834
905
|
|
|
835
|
-
var __decorate$
|
|
906
|
+
var __decorate$x = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
836
907
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
837
908
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
838
909
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -842,7 +913,7 @@ var __decorate$w = (this && this.__decorate) || function (decorators, target, ke
|
|
|
842
913
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
843
914
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
844
915
|
};
|
|
845
|
-
const inputs$
|
|
916
|
+
const inputs$s = ['align', 'aria', 'aspectRatio', 'compact', 'description', 'download', 'gradient', 'href', 'label', 'rel', 'size', 'target', 'weight'];
|
|
846
917
|
let PLinkTile = class PLinkTile {
|
|
847
918
|
constructor(c, r, z) {
|
|
848
919
|
this.z = z;
|
|
@@ -852,9 +923,9 @@ let PLinkTile = class PLinkTile {
|
|
|
852
923
|
};
|
|
853
924
|
PLinkTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
854
925
|
PLinkTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PLinkTile, selector: "p-link-tile,[p-link-tile]", inputs: { align: "align", aria: "aria", aspectRatio: "aspectRatio", compact: "compact", description: "description", download: "download", gradient: "gradient", href: "href", label: "label", rel: "rel", size: "size", target: "target", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
855
|
-
PLinkTile = __decorate$
|
|
926
|
+
PLinkTile = __decorate$x([
|
|
856
927
|
ProxyCmp({
|
|
857
|
-
inputs: inputs$
|
|
928
|
+
inputs: inputs$s
|
|
858
929
|
})
|
|
859
930
|
], PLinkTile);
|
|
860
931
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkTile, decorators: [{
|
|
@@ -863,6 +934,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
863
934
|
selector: 'p-link-tile,[p-link-tile]',
|
|
864
935
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
865
936
|
template: '<ng-content></ng-content>',
|
|
937
|
+
inputs: inputs$s
|
|
938
|
+
}]
|
|
939
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
940
|
+
|
|
941
|
+
var __decorate$w = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
942
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
943
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
944
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
945
|
+
else
|
|
946
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
947
|
+
if (d = decorators[i])
|
|
948
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
949
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
950
|
+
};
|
|
951
|
+
const inputs$r = ['aspectRatio', 'description', 'heading', 'headingTag', 'linkDirection', 'model', 'weight'];
|
|
952
|
+
let PLinkTileModelSignature = class PLinkTileModelSignature {
|
|
953
|
+
constructor(c, r, z) {
|
|
954
|
+
this.z = z;
|
|
955
|
+
c.detach();
|
|
956
|
+
this.el = r.nativeElement;
|
|
957
|
+
}
|
|
958
|
+
};
|
|
959
|
+
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
|
+
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$w([
|
|
962
|
+
ProxyCmp({
|
|
963
|
+
inputs: inputs$r
|
|
964
|
+
})
|
|
965
|
+
], PLinkTileModelSignature);
|
|
966
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkTileModelSignature, decorators: [{
|
|
967
|
+
type: Component,
|
|
968
|
+
args: [{
|
|
969
|
+
selector: 'p-link-tile-model-signature,[p-link-tile-model-signature]',
|
|
970
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
971
|
+
template: '<ng-content></ng-content>',
|
|
866
972
|
inputs: inputs$r
|
|
867
973
|
}]
|
|
868
974
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1093,7 +1199,7 @@ var __decorate$p = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1093
1199
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1094
1200
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1095
1201
|
};
|
|
1096
|
-
const inputs$k = ['alignScrollIndicator', 'gradientColor', 'gradientColorScheme', 'scrollIndicatorPosition', 'scrollToPosition', 'theme'];
|
|
1202
|
+
const inputs$k = ['alignScrollIndicator', 'gradientColor', 'gradientColorScheme', 'scrollIndicatorPosition', 'scrollToPosition', 'scrollbar', 'theme'];
|
|
1097
1203
|
let PScroller = class PScroller {
|
|
1098
1204
|
constructor(c, r, z) {
|
|
1099
1205
|
this.z = z;
|
|
@@ -1102,7 +1208,7 @@ let PScroller = class PScroller {
|
|
|
1102
1208
|
}
|
|
1103
1209
|
};
|
|
1104
1210
|
PScroller.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PScroller, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1105
|
-
PScroller.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PScroller, selector: "p-scroller,[p-scroller]", inputs: { alignScrollIndicator: "alignScrollIndicator", gradientColor: "gradientColor", gradientColorScheme: "gradientColorScheme", scrollIndicatorPosition: "scrollIndicatorPosition", scrollToPosition: "scrollToPosition", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1211
|
+
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 });
|
|
1106
1212
|
PScroller = __decorate$p([
|
|
1107
1213
|
ProxyCmp({
|
|
1108
1214
|
inputs: inputs$k
|
|
@@ -1382,7 +1488,7 @@ var __decorate$h = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1382
1488
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1383
1489
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1384
1490
|
};
|
|
1385
|
-
const inputs$c = ['caption'];
|
|
1491
|
+
const inputs$c = ['caption', 'theme'];
|
|
1386
1492
|
const outputs$3 = ['change', 'sortingChange'];
|
|
1387
1493
|
let PTable = class PTable {
|
|
1388
1494
|
constructor(c, r, z) {
|
|
@@ -1393,7 +1499,7 @@ let PTable = class PTable {
|
|
|
1393
1499
|
}
|
|
1394
1500
|
};
|
|
1395
1501
|
PTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1396
|
-
PTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: PTable, selector: "p-table,[p-table]", inputs: { caption: "caption" }, outputs: { change: "change", sortingChange: "sortingChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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: { change: "change", sortingChange: "sortingChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1397
1503
|
PTable = __decorate$h([
|
|
1398
1504
|
ProxyCmp({
|
|
1399
1505
|
inputs: inputs$c
|
|
@@ -2000,11 +2106,13 @@ const DECLARATIONS = [
|
|
|
2000
2106
|
PButton,
|
|
2001
2107
|
PButtonGroup,
|
|
2002
2108
|
PButtonPure,
|
|
2109
|
+
PButtonTile,
|
|
2003
2110
|
PCarousel,
|
|
2004
2111
|
PCheckboxWrapper,
|
|
2005
2112
|
PContentWrapper,
|
|
2006
2113
|
PDisplay,
|
|
2007
2114
|
PDivider,
|
|
2115
|
+
PFieldset,
|
|
2008
2116
|
PFieldsetWrapper,
|
|
2009
2117
|
PFlex,
|
|
2010
2118
|
PFlexItem,
|
|
@@ -2018,6 +2126,7 @@ const DECLARATIONS = [
|
|
|
2018
2126
|
PLinkPure,
|
|
2019
2127
|
PLinkSocial,
|
|
2020
2128
|
PLinkTile,
|
|
2129
|
+
PLinkTileModelSignature,
|
|
2021
2130
|
PMarque,
|
|
2022
2131
|
PModal,
|
|
2023
2132
|
PModelSignature,
|
|
@@ -2076,7 +2185,7 @@ class PorscheDesignSystemModule {
|
|
|
2076
2185
|
}
|
|
2077
2186
|
}
|
|
2078
2187
|
PorscheDesignSystemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2079
|
-
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDisplay, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDisplay, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast] });
|
|
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] });
|
|
2080
2189
|
PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule });
|
|
2081
2190
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
|
|
2082
2191
|
type: NgModule,
|
|
@@ -2109,5 +2218,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2109
2218
|
* Generated bundle index. Do not edit.
|
|
2110
2219
|
*/
|
|
2111
2220
|
|
|
2112
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDisplay, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PorscheDesignSystemModule, ToastManager };
|
|
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 };
|
|
2113
2222
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|