@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,13 +43,13 @@ 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") r = Reflect.decorate(decorators, target, key, desc);
|
|
49
49
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
50
50
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
51
51
|
};
|
|
52
|
-
const inputs$
|
|
52
|
+
const inputs$Q = ['compact', 'heading', 'open', 'size', 'tag', 'theme'];
|
|
53
53
|
const outputs$c = ['accordionChange', 'change'];
|
|
54
54
|
let PAccordion = class PAccordion {
|
|
55
55
|
constructor(c, r, z) {
|
|
@@ -61,9 +61,9 @@ let PAccordion = class PAccordion {
|
|
|
61
61
|
};
|
|
62
62
|
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 });
|
|
63
63
|
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 });
|
|
64
|
-
PAccordion = __decorate$
|
|
64
|
+
PAccordion = __decorate$V([
|
|
65
65
|
ProxyCmp({
|
|
66
|
-
inputs: inputs$
|
|
66
|
+
inputs: inputs$Q
|
|
67
67
|
})
|
|
68
68
|
], PAccordion);
|
|
69
69
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PAccordion, decorators: [{
|
|
@@ -72,18 +72,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
72
72
|
selector: 'p-accordion,[p-accordion]',
|
|
73
73
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
74
74
|
template: '<ng-content></ng-content>',
|
|
75
|
-
inputs: inputs$
|
|
75
|
+
inputs: inputs$Q,
|
|
76
76
|
outputs: outputs$c
|
|
77
77
|
}]
|
|
78
78
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
79
79
|
|
|
80
|
-
var __decorate$
|
|
80
|
+
var __decorate$U = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
81
81
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
82
82
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
83
83
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
84
84
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
85
85
|
};
|
|
86
|
-
const inputs$
|
|
86
|
+
const inputs$P = ['description', 'heading', 'persistent', 'state', 'theme', 'width'];
|
|
87
87
|
const outputs$b = ['dismiss'];
|
|
88
88
|
let PBanner = class PBanner {
|
|
89
89
|
constructor(c, r, z) {
|
|
@@ -95,9 +95,9 @@ let PBanner = class PBanner {
|
|
|
95
95
|
};
|
|
96
96
|
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 });
|
|
97
97
|
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 });
|
|
98
|
-
PBanner = __decorate$
|
|
98
|
+
PBanner = __decorate$U([
|
|
99
99
|
ProxyCmp({
|
|
100
|
-
inputs: inputs$
|
|
100
|
+
inputs: inputs$P
|
|
101
101
|
})
|
|
102
102
|
], PBanner);
|
|
103
103
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PBanner, decorators: [{
|
|
@@ -106,18 +106,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
106
106
|
selector: 'p-banner,[p-banner]',
|
|
107
107
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
108
108
|
template: '<ng-content></ng-content>',
|
|
109
|
-
inputs: inputs$
|
|
109
|
+
inputs: inputs$P,
|
|
110
110
|
outputs: outputs$b
|
|
111
111
|
}]
|
|
112
112
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
113
113
|
|
|
114
|
-
var __decorate$
|
|
114
|
+
var __decorate$T = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
115
115
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
116
116
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
117
117
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
118
118
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
119
119
|
};
|
|
120
|
-
const inputs$
|
|
120
|
+
const inputs$O = ['aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'theme', 'type', 'variant'];
|
|
121
121
|
let PButton = class PButton {
|
|
122
122
|
constructor(c, r, z) {
|
|
123
123
|
this.z = z;
|
|
@@ -127,9 +127,9 @@ let PButton = class PButton {
|
|
|
127
127
|
};
|
|
128
128
|
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 });
|
|
129
129
|
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 });
|
|
130
|
-
PButton = __decorate$
|
|
130
|
+
PButton = __decorate$T([
|
|
131
131
|
ProxyCmp({
|
|
132
|
-
inputs: inputs$
|
|
132
|
+
inputs: inputs$O
|
|
133
133
|
})
|
|
134
134
|
], PButton);
|
|
135
135
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButton, decorators: [{
|
|
@@ -138,17 +138,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
138
138
|
selector: 'p-button,[p-button]',
|
|
139
139
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
140
140
|
template: '<ng-content></ng-content>',
|
|
141
|
-
inputs: inputs$
|
|
141
|
+
inputs: inputs$O
|
|
142
142
|
}]
|
|
143
143
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
144
144
|
|
|
145
|
-
var __decorate$
|
|
145
|
+
var __decorate$S = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
146
146
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
147
147
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
148
148
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
149
149
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
150
150
|
};
|
|
151
|
-
const inputs$
|
|
151
|
+
const inputs$N = ['direction'];
|
|
152
152
|
let PButtonGroup = class PButtonGroup {
|
|
153
153
|
constructor(c, r, z) {
|
|
154
154
|
this.z = z;
|
|
@@ -158,9 +158,9 @@ let PButtonGroup = class PButtonGroup {
|
|
|
158
158
|
};
|
|
159
159
|
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 });
|
|
160
160
|
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 });
|
|
161
|
-
PButtonGroup = __decorate$
|
|
161
|
+
PButtonGroup = __decorate$S([
|
|
162
162
|
ProxyCmp({
|
|
163
|
-
inputs: inputs$
|
|
163
|
+
inputs: inputs$N
|
|
164
164
|
})
|
|
165
165
|
], PButtonGroup);
|
|
166
166
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButtonGroup, decorators: [{
|
|
@@ -169,17 +169,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
169
169
|
selector: 'p-button-group,[p-button-group]',
|
|
170
170
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
171
171
|
template: '<ng-content></ng-content>',
|
|
172
|
-
inputs: inputs$
|
|
172
|
+
inputs: inputs$N
|
|
173
173
|
}]
|
|
174
174
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
175
175
|
|
|
176
|
-
var __decorate$
|
|
176
|
+
var __decorate$R = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
177
177
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
178
178
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
179
179
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
180
180
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
181
181
|
};
|
|
182
|
-
const inputs$
|
|
182
|
+
const inputs$M = ['active', 'alignLabel', 'aria', 'disabled', 'hideLabel', 'icon', 'iconSource', 'loading', 'size', 'stretch', 'theme', 'type', 'weight'];
|
|
183
183
|
let PButtonPure = class PButtonPure {
|
|
184
184
|
constructor(c, r, z) {
|
|
185
185
|
this.z = z;
|
|
@@ -189,9 +189,9 @@ let PButtonPure = class PButtonPure {
|
|
|
189
189
|
};
|
|
190
190
|
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 });
|
|
191
191
|
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 });
|
|
192
|
-
PButtonPure = __decorate$
|
|
192
|
+
PButtonPure = __decorate$R([
|
|
193
193
|
ProxyCmp({
|
|
194
|
-
inputs: inputs$
|
|
194
|
+
inputs: inputs$M
|
|
195
195
|
})
|
|
196
196
|
], PButtonPure);
|
|
197
197
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButtonPure, decorators: [{
|
|
@@ -200,17 +200,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
200
200
|
selector: 'p-button-pure,[p-button-pure]',
|
|
201
201
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
202
202
|
template: '<ng-content></ng-content>',
|
|
203
|
-
inputs: inputs$
|
|
203
|
+
inputs: inputs$M
|
|
204
204
|
}]
|
|
205
205
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
206
206
|
|
|
207
|
-
var __decorate$
|
|
207
|
+
var __decorate$Q = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
208
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
209
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
210
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
211
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
212
|
+
};
|
|
213
|
+
const inputs$L = ['align', 'aria', 'aspectRatio', 'compact', 'description', 'disabled', 'gradient', 'icon', 'iconSource', 'label', 'loading', 'size', 'type', 'weight'];
|
|
214
|
+
let PButtonTile = class PButtonTile {
|
|
215
|
+
constructor(c, r, z) {
|
|
216
|
+
this.z = z;
|
|
217
|
+
c.detach();
|
|
218
|
+
this.el = r.nativeElement;
|
|
219
|
+
}
|
|
220
|
+
};
|
|
221
|
+
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 });
|
|
222
|
+
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 });
|
|
223
|
+
PButtonTile = __decorate$Q([
|
|
224
|
+
ProxyCmp({
|
|
225
|
+
inputs: inputs$L
|
|
226
|
+
})
|
|
227
|
+
], PButtonTile);
|
|
228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PButtonTile, decorators: [{
|
|
229
|
+
type: Component,
|
|
230
|
+
args: [{
|
|
231
|
+
selector: 'p-button-tile,[p-button-tile]',
|
|
232
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
233
|
+
template: '<ng-content></ng-content>',
|
|
234
|
+
inputs: inputs$L
|
|
235
|
+
}]
|
|
236
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
237
|
+
|
|
238
|
+
var __decorate$P = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
208
239
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
209
240
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
210
241
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
211
242
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
212
243
|
};
|
|
213
|
-
const inputs$
|
|
244
|
+
const inputs$K = ['activeSlideIndex', 'alignHeader', 'description', 'disablePagination', 'heading', 'intl', 'pagination', 'rewind', 'slidesPerPage', 'theme', 'width', 'wrapContent'];
|
|
214
245
|
const outputs$a = ['carouselChange', 'change'];
|
|
215
246
|
let PCarousel = class PCarousel {
|
|
216
247
|
constructor(c, r, z) {
|
|
@@ -221,10 +252,10 @@ let PCarousel = class PCarousel {
|
|
|
221
252
|
}
|
|
222
253
|
};
|
|
223
254
|
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 });
|
|
224
|
-
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 });
|
|
225
|
-
PCarousel = __decorate$
|
|
255
|
+
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 });
|
|
256
|
+
PCarousel = __decorate$P([
|
|
226
257
|
ProxyCmp({
|
|
227
|
-
inputs: inputs$
|
|
258
|
+
inputs: inputs$K
|
|
228
259
|
})
|
|
229
260
|
], PCarousel);
|
|
230
261
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCarousel, decorators: [{
|
|
@@ -233,18 +264,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
233
264
|
selector: 'p-carousel,[p-carousel]',
|
|
234
265
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
235
266
|
template: '<ng-content></ng-content>',
|
|
236
|
-
inputs: inputs$
|
|
267
|
+
inputs: inputs$K,
|
|
237
268
|
outputs: outputs$a
|
|
238
269
|
}]
|
|
239
270
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
240
271
|
|
|
241
|
-
var __decorate$
|
|
272
|
+
var __decorate$O = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
242
273
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
243
274
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
244
275
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
245
276
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
246
277
|
};
|
|
247
|
-
const inputs$
|
|
278
|
+
const inputs$J = ['hideLabel', 'label', 'message', 'state', 'theme'];
|
|
248
279
|
let PCheckboxWrapper = class PCheckboxWrapper {
|
|
249
280
|
constructor(c, r, z) {
|
|
250
281
|
this.z = z;
|
|
@@ -254,9 +285,9 @@ let PCheckboxWrapper = class PCheckboxWrapper {
|
|
|
254
285
|
};
|
|
255
286
|
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 });
|
|
256
287
|
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 });
|
|
257
|
-
PCheckboxWrapper = __decorate$
|
|
288
|
+
PCheckboxWrapper = __decorate$O([
|
|
258
289
|
ProxyCmp({
|
|
259
|
-
inputs: inputs$
|
|
290
|
+
inputs: inputs$J
|
|
260
291
|
})
|
|
261
292
|
], PCheckboxWrapper);
|
|
262
293
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PCheckboxWrapper, decorators: [{
|
|
@@ -265,17 +296,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
265
296
|
selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',
|
|
266
297
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
267
298
|
template: '<ng-content></ng-content>',
|
|
268
|
-
inputs: inputs$
|
|
299
|
+
inputs: inputs$J
|
|
269
300
|
}]
|
|
270
301
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
271
302
|
|
|
272
|
-
var __decorate$
|
|
303
|
+
var __decorate$N = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
273
304
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
274
305
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
275
306
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
276
307
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
277
308
|
};
|
|
278
|
-
const inputs$
|
|
309
|
+
const inputs$I = ['backgroundColor', 'theme', 'width'];
|
|
279
310
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
280
311
|
let PContentWrapper = class PContentWrapper {
|
|
281
312
|
constructor(c, r, z) {
|
|
@@ -286,9 +317,9 @@ let PContentWrapper = class PContentWrapper {
|
|
|
286
317
|
};
|
|
287
318
|
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 });
|
|
288
319
|
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 });
|
|
289
|
-
PContentWrapper = __decorate$
|
|
320
|
+
PContentWrapper = __decorate$N([
|
|
290
321
|
ProxyCmp({
|
|
291
|
-
inputs: inputs$
|
|
322
|
+
inputs: inputs$I
|
|
292
323
|
})
|
|
293
324
|
], PContentWrapper);
|
|
294
325
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PContentWrapper, decorators: [{
|
|
@@ -297,17 +328,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
297
328
|
selector: 'p-content-wrapper,[p-content-wrapper]',
|
|
298
329
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
299
330
|
template: '<ng-content></ng-content>',
|
|
300
|
-
inputs: inputs$
|
|
331
|
+
inputs: inputs$I
|
|
301
332
|
}]
|
|
302
333
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
303
334
|
|
|
304
|
-
var __decorate$
|
|
335
|
+
var __decorate$M = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
305
336
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
306
337
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
307
338
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
308
339
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
309
340
|
};
|
|
310
|
-
const inputs$
|
|
341
|
+
const inputs$H = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'];
|
|
311
342
|
let PDisplay = class PDisplay {
|
|
312
343
|
constructor(c, r, z) {
|
|
313
344
|
this.z = z;
|
|
@@ -317,9 +348,9 @@ let PDisplay = class PDisplay {
|
|
|
317
348
|
};
|
|
318
349
|
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 });
|
|
319
350
|
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 });
|
|
320
|
-
PDisplay = __decorate$
|
|
351
|
+
PDisplay = __decorate$M([
|
|
321
352
|
ProxyCmp({
|
|
322
|
-
inputs: inputs$
|
|
353
|
+
inputs: inputs$H
|
|
323
354
|
})
|
|
324
355
|
], PDisplay);
|
|
325
356
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDisplay, decorators: [{
|
|
@@ -328,17 +359,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
328
359
|
selector: 'p-display,[p-display]',
|
|
329
360
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
330
361
|
template: '<ng-content></ng-content>',
|
|
331
|
-
inputs: inputs$
|
|
362
|
+
inputs: inputs$H
|
|
332
363
|
}]
|
|
333
364
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
334
365
|
|
|
335
|
-
var __decorate$
|
|
366
|
+
var __decorate$L = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
336
367
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
337
368
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
338
369
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
339
370
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
340
371
|
};
|
|
341
|
-
const inputs$
|
|
372
|
+
const inputs$G = ['color', 'direction', 'orientation', 'theme'];
|
|
342
373
|
let PDivider = class PDivider {
|
|
343
374
|
constructor(c, r, z) {
|
|
344
375
|
this.z = z;
|
|
@@ -348,9 +379,9 @@ let PDivider = class PDivider {
|
|
|
348
379
|
};
|
|
349
380
|
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 });
|
|
350
381
|
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 });
|
|
351
|
-
PDivider = __decorate$
|
|
382
|
+
PDivider = __decorate$L([
|
|
352
383
|
ProxyCmp({
|
|
353
|
-
inputs: inputs$
|
|
384
|
+
inputs: inputs$G
|
|
354
385
|
})
|
|
355
386
|
], PDivider);
|
|
356
387
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDivider, decorators: [{
|
|
@@ -359,17 +390,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
359
390
|
selector: 'p-divider,[p-divider]',
|
|
360
391
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
361
392
|
template: '<ng-content></ng-content>',
|
|
362
|
-
inputs: inputs$
|
|
393
|
+
inputs: inputs$G
|
|
363
394
|
}]
|
|
364
395
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
365
396
|
|
|
366
|
-
var __decorate$
|
|
397
|
+
var __decorate$K = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
398
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
399
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
400
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
401
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
402
|
+
};
|
|
403
|
+
const inputs$F = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
404
|
+
let PFieldset = class PFieldset {
|
|
405
|
+
constructor(c, r, z) {
|
|
406
|
+
this.z = z;
|
|
407
|
+
c.detach();
|
|
408
|
+
this.el = r.nativeElement;
|
|
409
|
+
}
|
|
410
|
+
};
|
|
411
|
+
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 });
|
|
412
|
+
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 });
|
|
413
|
+
PFieldset = __decorate$K([
|
|
414
|
+
ProxyCmp({
|
|
415
|
+
inputs: inputs$F
|
|
416
|
+
})
|
|
417
|
+
], PFieldset);
|
|
418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFieldset, decorators: [{
|
|
419
|
+
type: Component,
|
|
420
|
+
args: [{
|
|
421
|
+
selector: 'p-fieldset,[p-fieldset]',
|
|
422
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
423
|
+
template: '<ng-content></ng-content>',
|
|
424
|
+
inputs: inputs$F
|
|
425
|
+
}]
|
|
426
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
427
|
+
|
|
428
|
+
var __decorate$J = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
367
429
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
368
430
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
369
431
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
370
432
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
371
433
|
};
|
|
372
|
-
const inputs$
|
|
434
|
+
const inputs$E = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
435
|
+
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-fieldset" instead. */
|
|
373
436
|
let PFieldsetWrapper = class PFieldsetWrapper {
|
|
374
437
|
constructor(c, r, z) {
|
|
375
438
|
this.z = z;
|
|
@@ -379,9 +442,9 @@ let PFieldsetWrapper = class PFieldsetWrapper {
|
|
|
379
442
|
};
|
|
380
443
|
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 });
|
|
381
444
|
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 });
|
|
382
|
-
PFieldsetWrapper = __decorate$
|
|
445
|
+
PFieldsetWrapper = __decorate$J([
|
|
383
446
|
ProxyCmp({
|
|
384
|
-
inputs: inputs$
|
|
447
|
+
inputs: inputs$E
|
|
385
448
|
})
|
|
386
449
|
], PFieldsetWrapper);
|
|
387
450
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFieldsetWrapper, decorators: [{
|
|
@@ -390,17 +453,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
390
453
|
selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',
|
|
391
454
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
392
455
|
template: '<ng-content></ng-content>',
|
|
393
|
-
inputs: inputs$
|
|
456
|
+
inputs: inputs$E
|
|
394
457
|
}]
|
|
395
458
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
396
459
|
|
|
397
|
-
var __decorate$
|
|
460
|
+
var __decorate$I = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
398
461
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
399
462
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
400
463
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
401
464
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
402
465
|
};
|
|
403
|
-
const inputs$
|
|
466
|
+
const inputs$D = ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'];
|
|
404
467
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
405
468
|
let PFlex = class PFlex {
|
|
406
469
|
constructor(c, r, z) {
|
|
@@ -411,9 +474,9 @@ let PFlex = class PFlex {
|
|
|
411
474
|
};
|
|
412
475
|
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 });
|
|
413
476
|
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 });
|
|
414
|
-
PFlex = __decorate$
|
|
477
|
+
PFlex = __decorate$I([
|
|
415
478
|
ProxyCmp({
|
|
416
|
-
inputs: inputs$
|
|
479
|
+
inputs: inputs$D
|
|
417
480
|
})
|
|
418
481
|
], PFlex);
|
|
419
482
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlex, decorators: [{
|
|
@@ -422,17 +485,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
422
485
|
selector: 'p-flex,[p-flex]',
|
|
423
486
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
424
487
|
template: '<ng-content></ng-content>',
|
|
425
|
-
inputs: inputs$
|
|
488
|
+
inputs: inputs$D
|
|
426
489
|
}]
|
|
427
490
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
428
491
|
|
|
429
|
-
var __decorate$
|
|
492
|
+
var __decorate$H = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
430
493
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
431
494
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
432
495
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
433
496
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
434
497
|
};
|
|
435
|
-
const inputs$
|
|
498
|
+
const inputs$C = ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'];
|
|
436
499
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
437
500
|
let PFlexItem = class PFlexItem {
|
|
438
501
|
constructor(c, r, z) {
|
|
@@ -443,9 +506,9 @@ let PFlexItem = class PFlexItem {
|
|
|
443
506
|
};
|
|
444
507
|
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 });
|
|
445
508
|
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 });
|
|
446
|
-
PFlexItem = __decorate$
|
|
509
|
+
PFlexItem = __decorate$H([
|
|
447
510
|
ProxyCmp({
|
|
448
|
-
inputs: inputs$
|
|
511
|
+
inputs: inputs$C
|
|
449
512
|
})
|
|
450
513
|
], PFlexItem);
|
|
451
514
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PFlexItem, decorators: [{
|
|
@@ -454,17 +517,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
454
517
|
selector: 'p-flex-item,[p-flex-item]',
|
|
455
518
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
456
519
|
template: '<ng-content></ng-content>',
|
|
457
|
-
inputs: inputs$
|
|
520
|
+
inputs: inputs$C
|
|
458
521
|
}]
|
|
459
522
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
460
523
|
|
|
461
|
-
var __decorate$
|
|
524
|
+
var __decorate$G = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
462
525
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
463
526
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
464
527
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
465
528
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
466
529
|
};
|
|
467
|
-
const inputs$
|
|
530
|
+
const inputs$B = ['direction', 'gutter', 'wrap'];
|
|
468
531
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
469
532
|
let PGrid = class PGrid {
|
|
470
533
|
constructor(c, r, z) {
|
|
@@ -475,9 +538,9 @@ let PGrid = class PGrid {
|
|
|
475
538
|
};
|
|
476
539
|
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 });
|
|
477
540
|
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 });
|
|
478
|
-
PGrid = __decorate$
|
|
541
|
+
PGrid = __decorate$G([
|
|
479
542
|
ProxyCmp({
|
|
480
|
-
inputs: inputs$
|
|
543
|
+
inputs: inputs$B
|
|
481
544
|
})
|
|
482
545
|
], PGrid);
|
|
483
546
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGrid, decorators: [{
|
|
@@ -486,17 +549,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
486
549
|
selector: 'p-grid,[p-grid]',
|
|
487
550
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
488
551
|
template: '<ng-content></ng-content>',
|
|
489
|
-
inputs: inputs$
|
|
552
|
+
inputs: inputs$B
|
|
490
553
|
}]
|
|
491
554
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
492
555
|
|
|
493
|
-
var __decorate$
|
|
556
|
+
var __decorate$F = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
494
557
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
495
558
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
496
559
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
497
560
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
498
561
|
};
|
|
499
|
-
const inputs$
|
|
562
|
+
const inputs$A = ['offset', 'size'];
|
|
500
563
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
501
564
|
let PGridItem = class PGridItem {
|
|
502
565
|
constructor(c, r, z) {
|
|
@@ -507,9 +570,9 @@ let PGridItem = class PGridItem {
|
|
|
507
570
|
};
|
|
508
571
|
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 });
|
|
509
572
|
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 });
|
|
510
|
-
PGridItem = __decorate$
|
|
573
|
+
PGridItem = __decorate$F([
|
|
511
574
|
ProxyCmp({
|
|
512
|
-
inputs: inputs$
|
|
575
|
+
inputs: inputs$A
|
|
513
576
|
})
|
|
514
577
|
], PGridItem);
|
|
515
578
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PGridItem, decorators: [{
|
|
@@ -518,17 +581,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
518
581
|
selector: 'p-grid-item,[p-grid-item]',
|
|
519
582
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
520
583
|
template: '<ng-content></ng-content>',
|
|
521
|
-
inputs: inputs$
|
|
584
|
+
inputs: inputs$A
|
|
522
585
|
}]
|
|
523
586
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
524
587
|
|
|
525
|
-
var __decorate$
|
|
588
|
+
var __decorate$E = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
526
589
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
527
590
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
528
591
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
529
592
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
530
593
|
};
|
|
531
|
-
const inputs$
|
|
594
|
+
const inputs$z = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'];
|
|
532
595
|
let PHeading = class PHeading {
|
|
533
596
|
constructor(c, r, z) {
|
|
534
597
|
this.z = z;
|
|
@@ -538,9 +601,9 @@ let PHeading = class PHeading {
|
|
|
538
601
|
};
|
|
539
602
|
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 });
|
|
540
603
|
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 });
|
|
541
|
-
PHeading = __decorate$
|
|
604
|
+
PHeading = __decorate$E([
|
|
542
605
|
ProxyCmp({
|
|
543
|
-
inputs: inputs$
|
|
606
|
+
inputs: inputs$z
|
|
544
607
|
})
|
|
545
608
|
], PHeading);
|
|
546
609
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeading, decorators: [{
|
|
@@ -549,17 +612,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
549
612
|
selector: 'p-heading,[p-heading]',
|
|
550
613
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
551
614
|
template: '<ng-content></ng-content>',
|
|
552
|
-
inputs: inputs$
|
|
615
|
+
inputs: inputs$z
|
|
553
616
|
}]
|
|
554
617
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
555
618
|
|
|
556
|
-
var __decorate$
|
|
619
|
+
var __decorate$D = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
557
620
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
558
621
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
559
622
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
560
623
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
561
624
|
};
|
|
562
|
-
const inputs$
|
|
625
|
+
const inputs$y = ['align', 'color', 'ellipsis', 'tag', 'theme', 'variant'];
|
|
563
626
|
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-heading" instead. */
|
|
564
627
|
let PHeadline = class PHeadline {
|
|
565
628
|
constructor(c, r, z) {
|
|
@@ -570,9 +633,9 @@ let PHeadline = class PHeadline {
|
|
|
570
633
|
};
|
|
571
634
|
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 });
|
|
572
635
|
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 });
|
|
573
|
-
PHeadline = __decorate$
|
|
636
|
+
PHeadline = __decorate$D([
|
|
574
637
|
ProxyCmp({
|
|
575
|
-
inputs: inputs$
|
|
638
|
+
inputs: inputs$y
|
|
576
639
|
})
|
|
577
640
|
], PHeadline);
|
|
578
641
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PHeadline, decorators: [{
|
|
@@ -581,17 +644,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
581
644
|
selector: 'p-headline,[p-headline]',
|
|
582
645
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
583
646
|
template: '<ng-content></ng-content>',
|
|
584
|
-
inputs: inputs$
|
|
647
|
+
inputs: inputs$y
|
|
585
648
|
}]
|
|
586
649
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
587
650
|
|
|
588
|
-
var __decorate$
|
|
651
|
+
var __decorate$C = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
589
652
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
590
653
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
591
654
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
592
655
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
593
656
|
};
|
|
594
|
-
const inputs$
|
|
657
|
+
const inputs$x = ['aria', 'color', 'lazy', 'name', 'size', 'source', 'theme'];
|
|
595
658
|
let PIcon = class PIcon {
|
|
596
659
|
constructor(c, r, z) {
|
|
597
660
|
this.z = z;
|
|
@@ -601,9 +664,9 @@ let PIcon = class PIcon {
|
|
|
601
664
|
};
|
|
602
665
|
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 });
|
|
603
666
|
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 });
|
|
604
|
-
PIcon = __decorate$
|
|
667
|
+
PIcon = __decorate$C([
|
|
605
668
|
ProxyCmp({
|
|
606
|
-
inputs: inputs$
|
|
669
|
+
inputs: inputs$x
|
|
607
670
|
})
|
|
608
671
|
], PIcon);
|
|
609
672
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PIcon, decorators: [{
|
|
@@ -612,17 +675,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
612
675
|
selector: 'p-icon,[p-icon]',
|
|
613
676
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
614
677
|
template: '<ng-content></ng-content>',
|
|
615
|
-
inputs: inputs$
|
|
678
|
+
inputs: inputs$x
|
|
616
679
|
}]
|
|
617
680
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
618
681
|
|
|
619
|
-
var __decorate$
|
|
682
|
+
var __decorate$B = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
620
683
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
621
684
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
622
685
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
623
686
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
624
687
|
};
|
|
625
|
-
const inputs$
|
|
688
|
+
const inputs$w = ['actionIcon', 'actionLabel', 'actionLoading', 'description', 'heading', 'persistent', 'state', 'theme'];
|
|
626
689
|
const outputs$9 = ['action', 'dismiss'];
|
|
627
690
|
let PInlineNotification = class PInlineNotification {
|
|
628
691
|
constructor(c, r, z) {
|
|
@@ -634,9 +697,9 @@ let PInlineNotification = class PInlineNotification {
|
|
|
634
697
|
};
|
|
635
698
|
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 });
|
|
636
699
|
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 });
|
|
637
|
-
PInlineNotification = __decorate$
|
|
700
|
+
PInlineNotification = __decorate$B([
|
|
638
701
|
ProxyCmp({
|
|
639
|
-
inputs: inputs$
|
|
702
|
+
inputs: inputs$w
|
|
640
703
|
})
|
|
641
704
|
], PInlineNotification);
|
|
642
705
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PInlineNotification, decorators: [{
|
|
@@ -645,18 +708,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
645
708
|
selector: 'p-inline-notification,[p-inline-notification]',
|
|
646
709
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
647
710
|
template: '<ng-content></ng-content>',
|
|
648
|
-
inputs: inputs$
|
|
711
|
+
inputs: inputs$w,
|
|
649
712
|
outputs: outputs$9
|
|
650
713
|
}]
|
|
651
714
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
652
715
|
|
|
653
|
-
var __decorate$
|
|
716
|
+
var __decorate$A = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
654
717
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
655
718
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
656
719
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
657
720
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
658
721
|
};
|
|
659
|
-
const inputs$
|
|
722
|
+
const inputs$v = ['aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme', 'variant'];
|
|
660
723
|
let PLink = class PLink {
|
|
661
724
|
constructor(c, r, z) {
|
|
662
725
|
this.z = z;
|
|
@@ -666,9 +729,9 @@ let PLink = class PLink {
|
|
|
666
729
|
};
|
|
667
730
|
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 });
|
|
668
731
|
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 });
|
|
669
|
-
PLink = __decorate$
|
|
732
|
+
PLink = __decorate$A([
|
|
670
733
|
ProxyCmp({
|
|
671
|
-
inputs: inputs$
|
|
734
|
+
inputs: inputs$v
|
|
672
735
|
})
|
|
673
736
|
], PLink);
|
|
674
737
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLink, decorators: [{
|
|
@@ -677,17 +740,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
677
740
|
selector: 'p-link,[p-link]',
|
|
678
741
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
679
742
|
template: '<ng-content></ng-content>',
|
|
680
|
-
inputs: inputs$
|
|
743
|
+
inputs: inputs$v
|
|
681
744
|
}]
|
|
682
745
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
683
746
|
|
|
684
|
-
var __decorate$
|
|
747
|
+
var __decorate$z = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
685
748
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
686
749
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
687
750
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
688
751
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
689
752
|
};
|
|
690
|
-
const inputs$
|
|
753
|
+
const inputs$u = ['active', 'alignLabel', 'aria', 'download', 'hideLabel', 'href', 'icon', 'iconSource', 'rel', 'size', 'stretch', 'target', 'theme', 'underline', 'weight'];
|
|
691
754
|
let PLinkPure = class PLinkPure {
|
|
692
755
|
constructor(c, r, z) {
|
|
693
756
|
this.z = z;
|
|
@@ -697,9 +760,9 @@ let PLinkPure = class PLinkPure {
|
|
|
697
760
|
};
|
|
698
761
|
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 });
|
|
699
762
|
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 });
|
|
700
|
-
PLinkPure = __decorate$
|
|
763
|
+
PLinkPure = __decorate$z([
|
|
701
764
|
ProxyCmp({
|
|
702
|
-
inputs: inputs$
|
|
765
|
+
inputs: inputs$u
|
|
703
766
|
})
|
|
704
767
|
], PLinkPure);
|
|
705
768
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkPure, decorators: [{
|
|
@@ -708,17 +771,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
708
771
|
selector: 'p-link-pure,[p-link-pure]',
|
|
709
772
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
710
773
|
template: '<ng-content></ng-content>',
|
|
711
|
-
inputs: inputs$
|
|
774
|
+
inputs: inputs$u
|
|
712
775
|
}]
|
|
713
776
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
714
777
|
|
|
715
|
-
var __decorate$
|
|
778
|
+
var __decorate$y = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
716
779
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
717
780
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
718
781
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
719
782
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
720
783
|
};
|
|
721
|
-
const inputs$
|
|
784
|
+
const inputs$t = ['hideLabel', 'href', 'icon', 'iconSource', 'rel', 'target', 'theme'];
|
|
722
785
|
/** @deprecated since v3.0.0, will be removed with next major release. Use `p-link` with corresponding social icon instead. */
|
|
723
786
|
let PLinkSocial = class PLinkSocial {
|
|
724
787
|
constructor(c, r, z) {
|
|
@@ -729,9 +792,9 @@ let PLinkSocial = class PLinkSocial {
|
|
|
729
792
|
};
|
|
730
793
|
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 });
|
|
731
794
|
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 });
|
|
732
|
-
PLinkSocial = __decorate$
|
|
795
|
+
PLinkSocial = __decorate$y([
|
|
733
796
|
ProxyCmp({
|
|
734
|
-
inputs: inputs$
|
|
797
|
+
inputs: inputs$t
|
|
735
798
|
})
|
|
736
799
|
], PLinkSocial);
|
|
737
800
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkSocial, decorators: [{
|
|
@@ -740,17 +803,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
740
803
|
selector: 'p-link-social,[p-link-social]',
|
|
741
804
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
742
805
|
template: '<ng-content></ng-content>',
|
|
743
|
-
inputs: inputs$
|
|
806
|
+
inputs: inputs$t
|
|
744
807
|
}]
|
|
745
808
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
746
809
|
|
|
747
|
-
var __decorate$
|
|
810
|
+
var __decorate$x = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
748
811
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
749
812
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
750
813
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
751
814
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
752
815
|
};
|
|
753
|
-
const inputs$
|
|
816
|
+
const inputs$s = ['align', 'aria', 'aspectRatio', 'compact', 'description', 'download', 'gradient', 'href', 'label', 'rel', 'size', 'target', 'weight'];
|
|
754
817
|
let PLinkTile = class PLinkTile {
|
|
755
818
|
constructor(c, r, z) {
|
|
756
819
|
this.z = z;
|
|
@@ -760,9 +823,9 @@ let PLinkTile = class PLinkTile {
|
|
|
760
823
|
};
|
|
761
824
|
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 });
|
|
762
825
|
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 });
|
|
763
|
-
PLinkTile = __decorate$
|
|
826
|
+
PLinkTile = __decorate$x([
|
|
764
827
|
ProxyCmp({
|
|
765
|
-
inputs: inputs$
|
|
828
|
+
inputs: inputs$s
|
|
766
829
|
})
|
|
767
830
|
], PLinkTile);
|
|
768
831
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkTile, decorators: [{
|
|
@@ -771,6 +834,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
771
834
|
selector: 'p-link-tile,[p-link-tile]',
|
|
772
835
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
773
836
|
template: '<ng-content></ng-content>',
|
|
837
|
+
inputs: inputs$s
|
|
838
|
+
}]
|
|
839
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
840
|
+
|
|
841
|
+
var __decorate$w = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
842
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
843
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
844
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
845
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
846
|
+
};
|
|
847
|
+
const inputs$r = ['aspectRatio', 'description', 'heading', 'headingTag', 'linkDirection', 'model', 'weight'];
|
|
848
|
+
let PLinkTileModelSignature = class PLinkTileModelSignature {
|
|
849
|
+
constructor(c, r, z) {
|
|
850
|
+
this.z = z;
|
|
851
|
+
c.detach();
|
|
852
|
+
this.el = r.nativeElement;
|
|
853
|
+
}
|
|
854
|
+
};
|
|
855
|
+
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 });
|
|
856
|
+
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 });
|
|
857
|
+
PLinkTileModelSignature = __decorate$w([
|
|
858
|
+
ProxyCmp({
|
|
859
|
+
inputs: inputs$r
|
|
860
|
+
})
|
|
861
|
+
], PLinkTileModelSignature);
|
|
862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PLinkTileModelSignature, decorators: [{
|
|
863
|
+
type: Component,
|
|
864
|
+
args: [{
|
|
865
|
+
selector: 'p-link-tile-model-signature,[p-link-tile-model-signature]',
|
|
866
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
867
|
+
template: '<ng-content></ng-content>',
|
|
774
868
|
inputs: inputs$r
|
|
775
869
|
}]
|
|
776
870
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -973,7 +1067,7 @@ var __decorate$p = (this && this.__decorate) || function (decorators, target, ke
|
|
|
973
1067
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
974
1068
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
975
1069
|
};
|
|
976
|
-
const inputs$k = ['alignScrollIndicator', 'gradientColor', 'gradientColorScheme', 'scrollIndicatorPosition', 'scrollToPosition', 'theme'];
|
|
1070
|
+
const inputs$k = ['alignScrollIndicator', 'gradientColor', 'gradientColorScheme', 'scrollIndicatorPosition', 'scrollToPosition', 'scrollbar', 'theme'];
|
|
977
1071
|
let PScroller = class PScroller {
|
|
978
1072
|
constructor(c, r, z) {
|
|
979
1073
|
this.z = z;
|
|
@@ -982,7 +1076,7 @@ let PScroller = class PScroller {
|
|
|
982
1076
|
}
|
|
983
1077
|
};
|
|
984
1078
|
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 });
|
|
985
|
-
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 });
|
|
1079
|
+
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 });
|
|
986
1080
|
PScroller = __decorate$p([
|
|
987
1081
|
ProxyCmp({
|
|
988
1082
|
inputs: inputs$k
|
|
@@ -1230,7 +1324,7 @@ var __decorate$h = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1230
1324
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1231
1325
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1232
1326
|
};
|
|
1233
|
-
const inputs$c = ['caption'];
|
|
1327
|
+
const inputs$c = ['caption', 'theme'];
|
|
1234
1328
|
const outputs$3 = ['change', 'sortingChange'];
|
|
1235
1329
|
let PTable = class PTable {
|
|
1236
1330
|
constructor(c, r, z) {
|
|
@@ -1241,7 +1335,7 @@ let PTable = class PTable {
|
|
|
1241
1335
|
}
|
|
1242
1336
|
};
|
|
1243
1337
|
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 });
|
|
1244
|
-
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 });
|
|
1338
|
+
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 });
|
|
1245
1339
|
PTable = __decorate$h([
|
|
1246
1340
|
ProxyCmp({
|
|
1247
1341
|
inputs: inputs$c
|
|
@@ -1780,11 +1874,13 @@ const DECLARATIONS = [
|
|
|
1780
1874
|
PButton,
|
|
1781
1875
|
PButtonGroup,
|
|
1782
1876
|
PButtonPure,
|
|
1877
|
+
PButtonTile,
|
|
1783
1878
|
PCarousel,
|
|
1784
1879
|
PCheckboxWrapper,
|
|
1785
1880
|
PContentWrapper,
|
|
1786
1881
|
PDisplay,
|
|
1787
1882
|
PDivider,
|
|
1883
|
+
PFieldset,
|
|
1788
1884
|
PFieldsetWrapper,
|
|
1789
1885
|
PFlex,
|
|
1790
1886
|
PFlexItem,
|
|
@@ -1798,6 +1894,7 @@ const DECLARATIONS = [
|
|
|
1798
1894
|
PLinkPure,
|
|
1799
1895
|
PLinkSocial,
|
|
1800
1896
|
PLinkTile,
|
|
1897
|
+
PLinkTileModelSignature,
|
|
1801
1898
|
PMarque,
|
|
1802
1899
|
PModal,
|
|
1803
1900
|
PModelSignature,
|
|
@@ -1856,7 +1953,7 @@ class PorscheDesignSystemModule {
|
|
|
1856
1953
|
}
|
|
1857
1954
|
}
|
|
1858
1955
|
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 });
|
|
1859
|
-
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] });
|
|
1956
|
+
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] });
|
|
1860
1957
|
PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule });
|
|
1861
1958
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
|
|
1862
1959
|
type: NgModule,
|
|
@@ -1887,5 +1984,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1887
1984
|
* Generated bundle index. Do not edit.
|
|
1888
1985
|
*/
|
|
1889
1986
|
|
|
1890
|
-
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 };
|
|
1987
|
+
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 };
|
|
1891
1988
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|