@porsche-design-system/components-angular 2.16.3 → 2.17.0
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 +16 -0
- package/LICENSE +3 -3
- package/components-wrapper.module.d.ts +33 -32
- package/esm2020/components-wrapper.module.mjs +35 -36
- package/esm2020/lib/components/barrel.mjs +4 -1
- package/esm2020/lib/components/link-tile.wrapper.mjs +35 -0
- package/esm2020/lib/types.mjs +1 -1
- package/fesm2015/porsche-design-system-components-angular.mjs +139 -107
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +135 -107
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/barrel.d.ts +3 -1
- package/lib/components/link-tile.wrapper.d.ts +23 -0
- package/lib/types.d.ts +23 -0
- package/package.json +2 -2
- package/esm2020/skeleton-helper.mjs +0 -4
- package/skeleton-helper.d.ts +0 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { load } from '@porsche-design-system/components-js';
|
|
2
2
|
export { componentsReady } from '@porsche-design-system/components-js';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import { EventEmitter, Component, ChangeDetectionStrategy,
|
|
4
|
+
import { EventEmitter, Component, ChangeDetectionStrategy, NgModule, Optional, Injectable } from '@angular/core';
|
|
5
5
|
|
|
6
6
|
const proxyInputs = (component, inputs) => {
|
|
7
7
|
const callback = (item) => {
|
|
@@ -43,7 +43,7 @@ function ProxyCmp({ inputs /*, methods*/ }) {
|
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
var __decorate$
|
|
46
|
+
var __decorate$P = (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$O = (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$K = ['compact', 'heading', 'open', 'size', 'tag', 'theme'];
|
|
57
57
|
const outputs$c = ['accordionChange'];
|
|
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.11", 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.11", type: PAccordion, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", open: "open", size: "size", tag: "tag", theme: "theme" }, outputs: { accordionChange: "accordionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
68
|
-
PAccordion = __decorate$
|
|
68
|
+
PAccordion = __decorate$P([
|
|
69
69
|
ProxyCmp({
|
|
70
|
-
inputs: inputs$
|
|
70
|
+
inputs: inputs$K
|
|
71
71
|
})
|
|
72
72
|
], PAccordion);
|
|
73
73
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PAccordion, decorators: [{
|
|
@@ -76,12 +76,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", 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$K,
|
|
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$O = (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$N = (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$J = ['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.11", 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.11", type: PBanner, selector: "p-banner,[p-banner]", inputs: { persistent: "persistent", state: "state", theme: "theme", width: "width" }, outputs: { dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
106
|
-
PBanner = __decorate$
|
|
106
|
+
PBanner = __decorate$O([
|
|
107
107
|
ProxyCmp({
|
|
108
|
-
inputs: inputs$
|
|
108
|
+
inputs: inputs$J
|
|
109
109
|
})
|
|
110
110
|
], PBanner);
|
|
111
111
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PBanner, decorators: [{
|
|
@@ -114,12 +114,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", 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$J,
|
|
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$N = (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$M = (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$I = ['aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'tabbable', '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.11", 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.11", type: PButton, selector: "p-button,[p-button]", inputs: { aria: "aria", disabled: "disabled", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", tabbable: "tabbable", theme: "theme", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
142
|
-
PButton = __decorate$
|
|
142
|
+
PButton = __decorate$N([
|
|
143
143
|
ProxyCmp({
|
|
144
|
-
inputs: inputs$
|
|
144
|
+
inputs: inputs$I
|
|
145
145
|
})
|
|
146
146
|
], PButton);
|
|
147
147
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButton, decorators: [{
|
|
@@ -150,11 +150,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", 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$I
|
|
154
154
|
}]
|
|
155
155
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
156
156
|
|
|
157
|
-
var __decorate$
|
|
157
|
+
var __decorate$M = (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$L = (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$H = ['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.11", 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.11", type: PButtonGroup, selector: "p-button-group,[p-button-group]", inputs: { direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
177
|
-
PButtonGroup = __decorate$
|
|
177
|
+
PButtonGroup = __decorate$M([
|
|
178
178
|
ProxyCmp({
|
|
179
|
-
inputs: inputs$
|
|
179
|
+
inputs: inputs$H
|
|
180
180
|
})
|
|
181
181
|
], PButtonGroup);
|
|
182
182
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButtonGroup, decorators: [{
|
|
@@ -185,11 +185,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", 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$H
|
|
189
189
|
}]
|
|
190
190
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
191
191
|
|
|
192
|
-
var __decorate$
|
|
192
|
+
var __decorate$L = (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$K = (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$G = ['active', 'alignLabel', 'aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'size', 'stretch', 'tabbable', '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.11", 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.11", type: PButtonPure, selector: "p-button-pure,[p-button-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", disabled: "disabled", hideLabel: "hideLabel", icon: "icon", iconSource: "iconSource", loading: "loading", size: "size", stretch: "stretch", tabbable: "tabbable", theme: "theme", type: "type", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
212
|
-
PButtonPure = __decorate$
|
|
212
|
+
PButtonPure = __decorate$L([
|
|
213
213
|
ProxyCmp({
|
|
214
|
-
inputs: inputs$
|
|
214
|
+
inputs: inputs$G
|
|
215
215
|
})
|
|
216
216
|
], PButtonPure);
|
|
217
217
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButtonPure, decorators: [{
|
|
@@ -220,11 +220,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", 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$G
|
|
224
224
|
}]
|
|
225
225
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
226
226
|
|
|
227
|
-
var __decorate$
|
|
227
|
+
var __decorate$K = (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$J = (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$F = ['description', 'disablePagination', 'heading', 'intl', 'slidesPerPage', 'theme', 'wrapContent'];
|
|
238
238
|
const outputs$a = ['carouselChange'];
|
|
239
239
|
let PCarousel = class PCarousel {
|
|
240
240
|
constructor(c, r, z) {
|
|
@@ -246,9 +246,9 @@ let PCarousel = class PCarousel {
|
|
|
246
246
|
};
|
|
247
247
|
PCarousel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
248
248
|
PCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCarousel, selector: "p-carousel,[p-carousel]", inputs: { description: "description", disablePagination: "disablePagination", heading: "heading", intl: "intl", slidesPerPage: "slidesPerPage", theme: "theme", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
249
|
-
PCarousel = __decorate$
|
|
249
|
+
PCarousel = __decorate$K([
|
|
250
250
|
ProxyCmp({
|
|
251
|
-
inputs: inputs$
|
|
251
|
+
inputs: inputs$F
|
|
252
252
|
})
|
|
253
253
|
], PCarousel);
|
|
254
254
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCarousel, decorators: [{
|
|
@@ -257,12 +257,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
257
257
|
selector: 'p-carousel,[p-carousel]',
|
|
258
258
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
259
259
|
template: '<ng-content></ng-content>',
|
|
260
|
-
inputs: inputs$
|
|
260
|
+
inputs: inputs$F,
|
|
261
261
|
outputs: outputs$a
|
|
262
262
|
}]
|
|
263
263
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
264
264
|
|
|
265
|
-
var __decorate$
|
|
265
|
+
var __decorate$J = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
266
266
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
267
267
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
268
268
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -272,7 +272,7 @@ var __decorate$I = (this && this.__decorate) || function (decorators, target, ke
|
|
|
272
272
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
273
273
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
274
274
|
};
|
|
275
|
-
const inputs$
|
|
275
|
+
const inputs$E = ['hideLabel', 'label', 'message', 'state'];
|
|
276
276
|
let PCheckboxWrapper = class PCheckboxWrapper {
|
|
277
277
|
constructor(c, r, z) {
|
|
278
278
|
this.z = z;
|
|
@@ -282,9 +282,9 @@ let PCheckboxWrapper = class PCheckboxWrapper {
|
|
|
282
282
|
};
|
|
283
283
|
PCheckboxWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCheckboxWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
284
284
|
PCheckboxWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCheckboxWrapper, selector: "p-checkbox-wrapper,[p-checkbox-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", message: "message", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
285
|
-
PCheckboxWrapper = __decorate$
|
|
285
|
+
PCheckboxWrapper = __decorate$J([
|
|
286
286
|
ProxyCmp({
|
|
287
|
-
inputs: inputs$
|
|
287
|
+
inputs: inputs$E
|
|
288
288
|
})
|
|
289
289
|
], PCheckboxWrapper);
|
|
290
290
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCheckboxWrapper, decorators: [{
|
|
@@ -293,11 +293,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
293
293
|
selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',
|
|
294
294
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
295
295
|
template: '<ng-content></ng-content>',
|
|
296
|
-
inputs: inputs$
|
|
296
|
+
inputs: inputs$E
|
|
297
297
|
}]
|
|
298
298
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
299
299
|
|
|
300
|
-
var __decorate$
|
|
300
|
+
var __decorate$I = (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$H = (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$D = ['backgroundColor', 'theme', 'width'];
|
|
311
311
|
let PContentWrapper = class PContentWrapper {
|
|
312
312
|
constructor(c, r, z) {
|
|
313
313
|
this.z = z;
|
|
@@ -317,9 +317,9 @@ let PContentWrapper = class PContentWrapper {
|
|
|
317
317
|
};
|
|
318
318
|
PContentWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PContentWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
319
319
|
PContentWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PContentWrapper, selector: "p-content-wrapper,[p-content-wrapper]", inputs: { backgroundColor: "backgroundColor", theme: "theme", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
320
|
-
PContentWrapper = __decorate$
|
|
320
|
+
PContentWrapper = __decorate$I([
|
|
321
321
|
ProxyCmp({
|
|
322
|
-
inputs: inputs$
|
|
322
|
+
inputs: inputs$D
|
|
323
323
|
})
|
|
324
324
|
], PContentWrapper);
|
|
325
325
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PContentWrapper, decorators: [{
|
|
@@ -328,11 +328,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
328
328
|
selector: 'p-content-wrapper,[p-content-wrapper]',
|
|
329
329
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
330
330
|
template: '<ng-content></ng-content>',
|
|
331
|
-
inputs: inputs$
|
|
331
|
+
inputs: inputs$D
|
|
332
332
|
}]
|
|
333
333
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
334
334
|
|
|
335
|
-
var __decorate$
|
|
335
|
+
var __decorate$H = (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$G = (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$C = ['color', 'orientation', 'theme'];
|
|
346
346
|
let PDivider = class PDivider {
|
|
347
347
|
constructor(c, r, z) {
|
|
348
348
|
this.z = z;
|
|
@@ -352,9 +352,9 @@ let PDivider = class PDivider {
|
|
|
352
352
|
};
|
|
353
353
|
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
354
354
|
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PDivider, selector: "p-divider,[p-divider]", inputs: { color: "color", orientation: "orientation", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
355
|
-
PDivider = __decorate$
|
|
355
|
+
PDivider = __decorate$H([
|
|
356
356
|
ProxyCmp({
|
|
357
|
-
inputs: inputs$
|
|
357
|
+
inputs: inputs$C
|
|
358
358
|
})
|
|
359
359
|
], PDivider);
|
|
360
360
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, decorators: [{
|
|
@@ -363,11 +363,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
363
363
|
selector: 'p-divider,[p-divider]',
|
|
364
364
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
365
365
|
template: '<ng-content></ng-content>',
|
|
366
|
-
inputs: inputs$
|
|
366
|
+
inputs: inputs$C
|
|
367
367
|
}]
|
|
368
368
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
369
369
|
|
|
370
|
-
var __decorate$
|
|
370
|
+
var __decorate$G = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
371
371
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
372
372
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
373
373
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -377,7 +377,7 @@ var __decorate$F = (this && this.__decorate) || function (decorators, target, ke
|
|
|
377
377
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
378
378
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
379
379
|
};
|
|
380
|
-
const inputs$
|
|
380
|
+
const inputs$B = ['label', 'labelSize', 'message', 'required', 'state'];
|
|
381
381
|
let PFieldsetWrapper = class PFieldsetWrapper {
|
|
382
382
|
constructor(c, r, z) {
|
|
383
383
|
this.z = z;
|
|
@@ -387,9 +387,9 @@ let PFieldsetWrapper = class PFieldsetWrapper {
|
|
|
387
387
|
};
|
|
388
388
|
PFieldsetWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFieldsetWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
389
389
|
PFieldsetWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PFieldsetWrapper, selector: "p-fieldset-wrapper,[p-fieldset-wrapper]", inputs: { label: "label", labelSize: "labelSize", message: "message", required: "required", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
390
|
-
PFieldsetWrapper = __decorate$
|
|
390
|
+
PFieldsetWrapper = __decorate$G([
|
|
391
391
|
ProxyCmp({
|
|
392
|
-
inputs: inputs$
|
|
392
|
+
inputs: inputs$B
|
|
393
393
|
})
|
|
394
394
|
], PFieldsetWrapper);
|
|
395
395
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFieldsetWrapper, decorators: [{
|
|
@@ -398,11 +398,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
398
398
|
selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',
|
|
399
399
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
400
400
|
template: '<ng-content></ng-content>',
|
|
401
|
-
inputs: inputs$
|
|
401
|
+
inputs: inputs$B
|
|
402
402
|
}]
|
|
403
403
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
404
404
|
|
|
405
|
-
var __decorate$
|
|
405
|
+
var __decorate$F = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
406
406
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
407
407
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
408
408
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -412,7 +412,7 @@ var __decorate$E = (this && this.__decorate) || function (decorators, target, ke
|
|
|
412
412
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
413
413
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
414
414
|
};
|
|
415
|
-
const inputs$
|
|
415
|
+
const inputs$A = ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'];
|
|
416
416
|
let PFlex = class PFlex {
|
|
417
417
|
constructor(c, r, z) {
|
|
418
418
|
this.z = z;
|
|
@@ -422,9 +422,9 @@ let PFlex = class PFlex {
|
|
|
422
422
|
};
|
|
423
423
|
PFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlex, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
424
424
|
PFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PFlex, selector: "p-flex,[p-flex]", inputs: { alignContent: "alignContent", alignItems: "alignItems", direction: "direction", inline: "inline", justifyContent: "justifyContent", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
425
|
-
PFlex = __decorate$
|
|
425
|
+
PFlex = __decorate$F([
|
|
426
426
|
ProxyCmp({
|
|
427
|
-
inputs: inputs$
|
|
427
|
+
inputs: inputs$A
|
|
428
428
|
})
|
|
429
429
|
], PFlex);
|
|
430
430
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlex, decorators: [{
|
|
@@ -433,11 +433,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
433
433
|
selector: 'p-flex,[p-flex]',
|
|
434
434
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
435
435
|
template: '<ng-content></ng-content>',
|
|
436
|
-
inputs: inputs$
|
|
436
|
+
inputs: inputs$A
|
|
437
437
|
}]
|
|
438
438
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
439
439
|
|
|
440
|
-
var __decorate$
|
|
440
|
+
var __decorate$E = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
441
441
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
442
442
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
443
443
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -447,7 +447,7 @@ var __decorate$D = (this && this.__decorate) || function (decorators, target, ke
|
|
|
447
447
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
448
448
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
449
449
|
};
|
|
450
|
-
const inputs$
|
|
450
|
+
const inputs$z = ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'];
|
|
451
451
|
let PFlexItem = class PFlexItem {
|
|
452
452
|
constructor(c, r, z) {
|
|
453
453
|
this.z = z;
|
|
@@ -457,9 +457,9 @@ let PFlexItem = class PFlexItem {
|
|
|
457
457
|
};
|
|
458
458
|
PFlexItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlexItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
459
459
|
PFlexItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PFlexItem, selector: "p-flex-item,[p-flex-item]", inputs: { alignSelf: "alignSelf", flex: "flex", grow: "grow", offset: "offset", shrink: "shrink", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
460
|
-
PFlexItem = __decorate$
|
|
460
|
+
PFlexItem = __decorate$E([
|
|
461
461
|
ProxyCmp({
|
|
462
|
-
inputs: inputs$
|
|
462
|
+
inputs: inputs$z
|
|
463
463
|
})
|
|
464
464
|
], PFlexItem);
|
|
465
465
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PFlexItem, decorators: [{
|
|
@@ -468,11 +468,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
468
468
|
selector: 'p-flex-item,[p-flex-item]',
|
|
469
469
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
470
470
|
template: '<ng-content></ng-content>',
|
|
471
|
-
inputs: inputs$
|
|
471
|
+
inputs: inputs$z
|
|
472
472
|
}]
|
|
473
473
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
474
474
|
|
|
475
|
-
var __decorate$
|
|
475
|
+
var __decorate$D = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
476
476
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
477
477
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
478
478
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -482,7 +482,7 @@ var __decorate$C = (this && this.__decorate) || function (decorators, target, ke
|
|
|
482
482
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
483
483
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
484
484
|
};
|
|
485
|
-
const inputs$
|
|
485
|
+
const inputs$y = ['direction', 'gutter', 'wrap'];
|
|
486
486
|
let PGrid = class PGrid {
|
|
487
487
|
constructor(c, r, z) {
|
|
488
488
|
this.z = z;
|
|
@@ -492,9 +492,9 @@ let PGrid = class PGrid {
|
|
|
492
492
|
};
|
|
493
493
|
PGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
494
494
|
PGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PGrid, selector: "p-grid,[p-grid]", inputs: { direction: "direction", gutter: "gutter", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
495
|
-
PGrid = __decorate$
|
|
495
|
+
PGrid = __decorate$D([
|
|
496
496
|
ProxyCmp({
|
|
497
|
-
inputs: inputs$
|
|
497
|
+
inputs: inputs$y
|
|
498
498
|
})
|
|
499
499
|
], PGrid);
|
|
500
500
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGrid, decorators: [{
|
|
@@ -503,11 +503,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
503
503
|
selector: 'p-grid,[p-grid]',
|
|
504
504
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
505
505
|
template: '<ng-content></ng-content>',
|
|
506
|
-
inputs: inputs$
|
|
506
|
+
inputs: inputs$y
|
|
507
507
|
}]
|
|
508
508
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
509
509
|
|
|
510
|
-
var __decorate$
|
|
510
|
+
var __decorate$C = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
511
511
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
512
512
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
513
513
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -517,7 +517,7 @@ var __decorate$B = (this && this.__decorate) || function (decorators, target, ke
|
|
|
517
517
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
518
518
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
519
519
|
};
|
|
520
|
-
const inputs$
|
|
520
|
+
const inputs$x = ['offset', 'size'];
|
|
521
521
|
let PGridItem = class PGridItem {
|
|
522
522
|
constructor(c, r, z) {
|
|
523
523
|
this.z = z;
|
|
@@ -527,9 +527,9 @@ let PGridItem = class PGridItem {
|
|
|
527
527
|
};
|
|
528
528
|
PGridItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGridItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
529
529
|
PGridItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PGridItem, selector: "p-grid-item,[p-grid-item]", inputs: { offset: "offset", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
530
|
-
PGridItem = __decorate$
|
|
530
|
+
PGridItem = __decorate$C([
|
|
531
531
|
ProxyCmp({
|
|
532
|
-
inputs: inputs$
|
|
532
|
+
inputs: inputs$x
|
|
533
533
|
})
|
|
534
534
|
], PGridItem);
|
|
535
535
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PGridItem, decorators: [{
|
|
@@ -538,11 +538,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
538
538
|
selector: 'p-grid-item,[p-grid-item]',
|
|
539
539
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
540
540
|
template: '<ng-content></ng-content>',
|
|
541
|
-
inputs: inputs$
|
|
541
|
+
inputs: inputs$x
|
|
542
542
|
}]
|
|
543
543
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
544
544
|
|
|
545
|
-
var __decorate$
|
|
545
|
+
var __decorate$B = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
546
546
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
547
547
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
548
548
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -552,7 +552,7 @@ var __decorate$A = (this && this.__decorate) || function (decorators, target, ke
|
|
|
552
552
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
553
553
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
554
554
|
};
|
|
555
|
-
const inputs$
|
|
555
|
+
const inputs$w = ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'];
|
|
556
556
|
let PHeadline = class PHeadline {
|
|
557
557
|
constructor(c, r, z) {
|
|
558
558
|
this.z = z;
|
|
@@ -562,9 +562,9 @@ let PHeadline = class PHeadline {
|
|
|
562
562
|
};
|
|
563
563
|
PHeadline.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PHeadline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
564
564
|
PHeadline.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PHeadline, selector: "p-headline,[p-headline]", inputs: { align: "align", color: "color", ellipsis: "ellipsis", tag: "tag", theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
565
|
-
PHeadline = __decorate$
|
|
565
|
+
PHeadline = __decorate$B([
|
|
566
566
|
ProxyCmp({
|
|
567
|
-
inputs: inputs$
|
|
567
|
+
inputs: inputs$w
|
|
568
568
|
})
|
|
569
569
|
], PHeadline);
|
|
570
570
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PHeadline, decorators: [{
|
|
@@ -573,11 +573,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
573
573
|
selector: 'p-headline,[p-headline]',
|
|
574
574
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
575
575
|
template: '<ng-content></ng-content>',
|
|
576
|
-
inputs: inputs$
|
|
576
|
+
inputs: inputs$w
|
|
577
577
|
}]
|
|
578
578
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
579
579
|
|
|
580
|
-
var __decorate$
|
|
580
|
+
var __decorate$A = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
581
581
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
582
582
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
583
583
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -587,7 +587,7 @@ var __decorate$z = (this && this.__decorate) || function (decorators, target, ke
|
|
|
587
587
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
588
588
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
589
589
|
};
|
|
590
|
-
const inputs$
|
|
590
|
+
const inputs$v = ['aria', 'color', 'lazy', 'name', 'size', 'source', 'theme'];
|
|
591
591
|
let PIcon = class PIcon {
|
|
592
592
|
constructor(c, r, z) {
|
|
593
593
|
this.z = z;
|
|
@@ -597,9 +597,9 @@ let PIcon = class PIcon {
|
|
|
597
597
|
};
|
|
598
598
|
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
599
599
|
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PIcon, selector: "p-icon,[p-icon]", inputs: { aria: "aria", color: "color", lazy: "lazy", name: "name", size: "size", source: "source", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
600
|
-
PIcon = __decorate$
|
|
600
|
+
PIcon = __decorate$A([
|
|
601
601
|
ProxyCmp({
|
|
602
|
-
inputs: inputs$
|
|
602
|
+
inputs: inputs$v
|
|
603
603
|
})
|
|
604
604
|
], PIcon);
|
|
605
605
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PIcon, decorators: [{
|
|
@@ -608,11 +608,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
608
608
|
selector: 'p-icon,[p-icon]',
|
|
609
609
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
610
610
|
template: '<ng-content></ng-content>',
|
|
611
|
-
inputs: inputs$
|
|
611
|
+
inputs: inputs$v
|
|
612
612
|
}]
|
|
613
613
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
614
614
|
|
|
615
|
-
var __decorate$
|
|
615
|
+
var __decorate$z = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
616
616
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
617
617
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
618
618
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -622,7 +622,7 @@ var __decorate$y = (this && this.__decorate) || function (decorators, target, ke
|
|
|
622
622
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
623
623
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
624
624
|
};
|
|
625
|
-
const inputs$
|
|
625
|
+
const inputs$u = ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'heading', 'persistent', 'state', 'theme'];
|
|
626
626
|
const outputs$9 = ['action', 'dismiss'];
|
|
627
627
|
let PInlineNotification = class PInlineNotification {
|
|
628
628
|
constructor(c, r, z) {
|
|
@@ -634,9 +634,9 @@ let PInlineNotification = class PInlineNotification {
|
|
|
634
634
|
};
|
|
635
635
|
PInlineNotification.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PInlineNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
636
636
|
PInlineNotification.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PInlineNotification, selector: "p-inline-notification,[p-inline-notification]", inputs: { actionIcon: "actionIcon", actionLabel: "actionLabel", actionLoading: "actionLoading", description: "description", heading: "heading", persistent: "persistent", state: "state", theme: "theme" }, outputs: { action: "action", dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
637
|
-
PInlineNotification = __decorate$
|
|
637
|
+
PInlineNotification = __decorate$z([
|
|
638
638
|
ProxyCmp({
|
|
639
|
-
inputs: inputs$
|
|
639
|
+
inputs: inputs$u
|
|
640
640
|
})
|
|
641
641
|
], PInlineNotification);
|
|
642
642
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PInlineNotification, decorators: [{
|
|
@@ -645,12 +645,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
645
645
|
selector: 'p-inline-notification,[p-inline-notification]',
|
|
646
646
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
647
647
|
template: '<ng-content></ng-content>',
|
|
648
|
-
inputs: inputs$
|
|
648
|
+
inputs: inputs$u,
|
|
649
649
|
outputs: outputs$9
|
|
650
650
|
}]
|
|
651
651
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
652
652
|
|
|
653
|
-
var __decorate$
|
|
653
|
+
var __decorate$y = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
654
654
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
655
655
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
656
656
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -660,7 +660,7 @@ var __decorate$x = (this && this.__decorate) || function (decorators, target, ke
|
|
|
660
660
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
661
661
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
662
662
|
};
|
|
663
|
-
const inputs$
|
|
663
|
+
const inputs$t = ['aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme', 'variant'];
|
|
664
664
|
let PLink = class PLink {
|
|
665
665
|
constructor(c, r, z) {
|
|
666
666
|
this.z = z;
|
|
@@ -670,9 +670,9 @@ let PLink = class PLink {
|
|
|
670
670
|
};
|
|
671
671
|
PLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
672
672
|
PLink.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PLink, selector: "p-link,[p-link]", inputs: { aria: "aria", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
673
|
-
PLink = __decorate$
|
|
673
|
+
PLink = __decorate$y([
|
|
674
674
|
ProxyCmp({
|
|
675
|
-
inputs: inputs$
|
|
675
|
+
inputs: inputs$t
|
|
676
676
|
})
|
|
677
677
|
], PLink);
|
|
678
678
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLink, decorators: [{
|
|
@@ -681,11 +681,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
681
681
|
selector: 'p-link,[p-link]',
|
|
682
682
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
683
683
|
template: '<ng-content></ng-content>',
|
|
684
|
-
inputs: inputs$
|
|
684
|
+
inputs: inputs$t
|
|
685
685
|
}]
|
|
686
686
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
687
687
|
|
|
688
|
-
var __decorate$
|
|
688
|
+
var __decorate$x = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
689
689
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
690
690
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
691
691
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -695,7 +695,7 @@ var __decorate$w = (this && this.__decorate) || function (decorators, target, ke
|
|
|
695
695
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
696
696
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
697
697
|
};
|
|
698
|
-
const inputs$
|
|
698
|
+
const inputs$s = ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'theme', 'weight'];
|
|
699
699
|
let PLinkPure = class PLinkPure {
|
|
700
700
|
constructor(c, r, z) {
|
|
701
701
|
this.z = z;
|
|
@@ -705,9 +705,9 @@ let PLinkPure = class PLinkPure {
|
|
|
705
705
|
};
|
|
706
706
|
PLinkPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkPure, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
707
707
|
PLinkPure.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PLinkPure, selector: "p-link-pure,[p-link-pure]", inputs: { active: "active", alignLabel: "alignLabel", aria: "aria", download: "download", hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", size: "size", stretch: "stretch", target: "target", theme: "theme", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
708
|
-
PLinkPure = __decorate$
|
|
708
|
+
PLinkPure = __decorate$x([
|
|
709
709
|
ProxyCmp({
|
|
710
|
-
inputs: inputs$
|
|
710
|
+
inputs: inputs$s
|
|
711
711
|
})
|
|
712
712
|
], PLinkPure);
|
|
713
713
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkPure, decorators: [{
|
|
@@ -716,11 +716,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
716
716
|
selector: 'p-link-pure,[p-link-pure]',
|
|
717
717
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
718
718
|
template: '<ng-content></ng-content>',
|
|
719
|
-
inputs: inputs$
|
|
719
|
+
inputs: inputs$s
|
|
720
720
|
}]
|
|
721
721
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
722
722
|
|
|
723
|
-
var __decorate$
|
|
723
|
+
var __decorate$w = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
724
724
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
725
725
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
726
726
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -730,7 +730,7 @@ var __decorate$v = (this && this.__decorate) || function (decorators, target, ke
|
|
|
730
730
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
731
731
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
732
732
|
};
|
|
733
|
-
const inputs$
|
|
733
|
+
const inputs$r = ['hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'];
|
|
734
734
|
let PLinkSocial = class PLinkSocial {
|
|
735
735
|
constructor(c, r, z) {
|
|
736
736
|
this.z = z;
|
|
@@ -740,9 +740,9 @@ let PLinkSocial = class PLinkSocial {
|
|
|
740
740
|
};
|
|
741
741
|
PLinkSocial.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkSocial, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
742
742
|
PLinkSocial.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PLinkSocial, selector: "p-link-social,[p-link-social]", inputs: { hideLabel: "hideLabel", href: "href", icon: "icon", iconSource: "iconSource", rel: "rel", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
743
|
-
PLinkSocial = __decorate$
|
|
743
|
+
PLinkSocial = __decorate$w([
|
|
744
744
|
ProxyCmp({
|
|
745
|
-
inputs: inputs$
|
|
745
|
+
inputs: inputs$r
|
|
746
746
|
})
|
|
747
747
|
], PLinkSocial);
|
|
748
748
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkSocial, decorators: [{
|
|
@@ -751,6 +751,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
751
751
|
selector: 'p-link-social,[p-link-social]',
|
|
752
752
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
753
753
|
template: '<ng-content></ng-content>',
|
|
754
|
+
inputs: inputs$r
|
|
755
|
+
}]
|
|
756
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
757
|
+
|
|
758
|
+
var __decorate$v = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
759
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
760
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
761
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
762
|
+
else
|
|
763
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
764
|
+
if (d = decorators[i])
|
|
765
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
766
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
767
|
+
};
|
|
768
|
+
const inputs$q = ['align', 'aria', 'aspectRatio', 'compact', 'description', 'download', 'gradient', 'href', 'label', 'rel', 'size', 'target', 'weight'];
|
|
769
|
+
let PLinkTile = class PLinkTile {
|
|
770
|
+
constructor(c, r, z) {
|
|
771
|
+
this.z = z;
|
|
772
|
+
c.detach();
|
|
773
|
+
this.el = r.nativeElement;
|
|
774
|
+
}
|
|
775
|
+
};
|
|
776
|
+
PLinkTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
777
|
+
PLinkTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
|
|
778
|
+
PLinkTile = __decorate$v([
|
|
779
|
+
ProxyCmp({
|
|
780
|
+
inputs: inputs$q
|
|
781
|
+
})
|
|
782
|
+
], PLinkTile);
|
|
783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLinkTile, decorators: [{
|
|
784
|
+
type: Component,
|
|
785
|
+
args: [{
|
|
786
|
+
selector: 'p-link-tile,[p-link-tile]',
|
|
787
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
788
|
+
template: '<ng-content></ng-content>',
|
|
754
789
|
inputs: inputs$q
|
|
755
790
|
}]
|
|
756
791
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1868,6 +1903,7 @@ const DECLARATIONS = [
|
|
|
1868
1903
|
PLink,
|
|
1869
1904
|
PLinkPure,
|
|
1870
1905
|
PLinkSocial,
|
|
1906
|
+
PLinkTile,
|
|
1871
1907
|
PMarque,
|
|
1872
1908
|
PModal,
|
|
1873
1909
|
PPagination,
|
|
@@ -1901,9 +1937,6 @@ const DECLARATIONS = [
|
|
|
1901
1937
|
PToast
|
|
1902
1938
|
];
|
|
1903
1939
|
|
|
1904
|
-
const usesSkeletons = () => typeof window !== 'undefined' && !!document.querySelector('style[uses-skeleton]');
|
|
1905
|
-
const USES_SKELETONS = new InjectionToken('usesSkeletons');
|
|
1906
|
-
|
|
1907
1940
|
class DefaultConfig {
|
|
1908
1941
|
constructor() {
|
|
1909
1942
|
this.prefix = '';
|
|
@@ -1928,14 +1961,13 @@ class PorscheDesignSystemModule {
|
|
|
1928
1961
|
}
|
|
1929
1962
|
}
|
|
1930
1963
|
PorscheDesignSystemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1931
|
-
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast] });
|
|
1932
|
-
PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule
|
|
1964
|
+
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast] });
|
|
1965
|
+
PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule });
|
|
1933
1966
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
|
|
1934
1967
|
type: NgModule,
|
|
1935
1968
|
args: [{
|
|
1936
1969
|
declarations: DECLARATIONS,
|
|
1937
1970
|
exports: DECLARATIONS,
|
|
1938
|
-
providers: [{ provide: USES_SKELETONS, useValue: usesSkeletons() }],
|
|
1939
1971
|
}]
|
|
1940
1972
|
}], ctorParameters: function () {
|
|
1941
1973
|
return [{ type: DefaultConfig, decorators: [{
|
|
@@ -1962,5 +1994,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1962
1994
|
* Generated bundle index. Do not edit.
|
|
1963
1995
|
*/
|
|
1964
1996
|
|
|
1965
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PorscheDesignSystemModule, ToastManager };
|
|
1997
|
+
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PCarousel, PCheckboxWrapper, PContentWrapper, PDivider, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PMarque, PModal, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PorscheDesignSystemModule, ToastManager };
|
|
1966
1998
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|