@porsche-design-system/components-angular 3.1.0-rc.1 → 3.1.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 +30 -2
- package/esm2020/lib/components/barrel.mjs +4 -1
- package/esm2020/lib/components/flyout.wrapper.mjs +38 -0
- package/esm2020/lib/types.mjs +1 -1
- package/esm2020/porsche-design-system.module.mjs +47 -46
- package/fesm2015/porsche-design-system-components-angular.mjs +130 -91
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +126 -91
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/barrel.d.ts +3 -1
- package/lib/components/flyout.wrapper.d.ts +15 -0
- package/lib/types.d.ts +9 -0
- package/package.json +2 -2
- package/porsche-design-system.module.d.ts +46 -45
|
@@ -43,27 +43,27 @@ function ProxyCmp({ inputs /*, methods*/ }) {
|
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
var __decorate$
|
|
46
|
+
var __decorate$Y = (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$
|
|
53
|
-
const outputs$
|
|
52
|
+
const inputs$T = ['compact', 'heading', 'open', 'size', 'tag', 'theme'];
|
|
53
|
+
const outputs$d = ['accordionChange', 'update'];
|
|
54
54
|
let PAccordion = class PAccordion {
|
|
55
55
|
constructor(c, r, z) {
|
|
56
56
|
this.z = z;
|
|
57
57
|
c.detach();
|
|
58
58
|
this.el = r.nativeElement;
|
|
59
|
-
proxyOutputs(this, outputs$
|
|
59
|
+
proxyOutputs(this, outputs$d);
|
|
60
60
|
}
|
|
61
61
|
};
|
|
62
62
|
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", 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: "14.0.0", version: "15.2.9", type: PAccordion, selector: "p-accordion,[p-accordion]", inputs: { compact: "compact", heading: "heading", open: "open", size: "size", tag: "tag", theme: "theme" }, outputs: { accordionChange: "accordionChange", update: "update" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
64
|
-
PAccordion = __decorate$
|
|
64
|
+
PAccordion = __decorate$Y([
|
|
65
65
|
ProxyCmp({
|
|
66
|
-
inputs: inputs$
|
|
66
|
+
inputs: inputs$T
|
|
67
67
|
})
|
|
68
68
|
], PAccordion);
|
|
69
69
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PAccordion, decorators: [{
|
|
@@ -72,32 +72,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
72
72
|
selector: 'p-accordion,[p-accordion]',
|
|
73
73
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
74
74
|
template: '<ng-content></ng-content>',
|
|
75
|
-
inputs: inputs$
|
|
76
|
-
outputs: outputs$
|
|
75
|
+
inputs: inputs$T,
|
|
76
|
+
outputs: outputs$d
|
|
77
77
|
}]
|
|
78
78
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
79
79
|
|
|
80
|
-
var __decorate$
|
|
80
|
+
var __decorate$X = (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$
|
|
87
|
-
const outputs$
|
|
86
|
+
const inputs$S = ['description', 'dismissButton', 'heading', 'open', 'persistent', 'state', 'theme', 'width'];
|
|
87
|
+
const outputs$c = ['dismiss'];
|
|
88
88
|
let PBanner = class PBanner {
|
|
89
89
|
constructor(c, r, z) {
|
|
90
90
|
this.z = z;
|
|
91
91
|
c.detach();
|
|
92
92
|
this.el = r.nativeElement;
|
|
93
|
-
proxyOutputs(this, outputs$
|
|
93
|
+
proxyOutputs(this, outputs$c);
|
|
94
94
|
}
|
|
95
95
|
};
|
|
96
96
|
PBanner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", 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: "14.0.0", version: "15.2.9", type: PBanner, selector: "p-banner,[p-banner]", inputs: { description: "description", dismissButton: "dismissButton", heading: "heading", open: "open", persistent: "persistent", state: "state", theme: "theme", width: "width" }, outputs: { dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
98
|
-
PBanner = __decorate$
|
|
98
|
+
PBanner = __decorate$X([
|
|
99
99
|
ProxyCmp({
|
|
100
|
-
inputs: inputs$
|
|
100
|
+
inputs: inputs$S
|
|
101
101
|
})
|
|
102
102
|
], PBanner);
|
|
103
103
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PBanner, decorators: [{
|
|
@@ -106,18 +106,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
106
106
|
selector: 'p-banner,[p-banner]',
|
|
107
107
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
108
108
|
template: '<ng-content></ng-content>',
|
|
109
|
-
inputs: inputs$
|
|
110
|
-
outputs: outputs$
|
|
109
|
+
inputs: inputs$S,
|
|
110
|
+
outputs: outputs$c
|
|
111
111
|
}]
|
|
112
112
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
113
113
|
|
|
114
|
-
var __decorate$
|
|
114
|
+
var __decorate$W = (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$R = ['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: "15.2.9", 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: "14.0.0", version: "15.2.9", 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$W([
|
|
131
131
|
ProxyCmp({
|
|
132
|
-
inputs: inputs$
|
|
132
|
+
inputs: inputs$R
|
|
133
133
|
})
|
|
134
134
|
], PButton);
|
|
135
135
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButton, decorators: [{
|
|
@@ -138,17 +138,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
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$R
|
|
142
142
|
}]
|
|
143
143
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
144
144
|
|
|
145
|
-
var __decorate$
|
|
145
|
+
var __decorate$V = (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$Q = ['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: "15.2.9", 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: "14.0.0", version: "15.2.9", 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$V([
|
|
162
162
|
ProxyCmp({
|
|
163
|
-
inputs: inputs$
|
|
163
|
+
inputs: inputs$Q
|
|
164
164
|
})
|
|
165
165
|
], PButtonGroup);
|
|
166
166
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonGroup, decorators: [{
|
|
@@ -169,17 +169,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
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$Q
|
|
173
173
|
}]
|
|
174
174
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
175
175
|
|
|
176
|
-
var __decorate$
|
|
176
|
+
var __decorate$U = (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$P = ['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: "15.2.9", 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: "14.0.0", version: "15.2.9", 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$U([
|
|
193
193
|
ProxyCmp({
|
|
194
|
-
inputs: inputs$
|
|
194
|
+
inputs: inputs$P
|
|
195
195
|
})
|
|
196
196
|
], PButtonPure);
|
|
197
197
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonPure, decorators: [{
|
|
@@ -200,17 +200,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
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$P
|
|
204
204
|
}]
|
|
205
205
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
206
206
|
|
|
207
|
-
var __decorate$
|
|
207
|
+
var __decorate$T = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
208
208
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
209
209
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
210
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
211
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
212
212
|
};
|
|
213
|
-
const inputs$
|
|
213
|
+
const inputs$O = ['align', 'aria', 'aspectRatio', 'compact', 'description', 'disabled', 'gradient', 'icon', 'iconSource', 'label', 'loading', 'size', 'type', 'weight'];
|
|
214
214
|
let PButtonTile = class PButtonTile {
|
|
215
215
|
constructor(c, r, z) {
|
|
216
216
|
this.z = z;
|
|
@@ -220,9 +220,9 @@ let PButtonTile = class PButtonTile {
|
|
|
220
220
|
};
|
|
221
221
|
PButtonTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
222
222
|
PButtonTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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$
|
|
223
|
+
PButtonTile = __decorate$T([
|
|
224
224
|
ProxyCmp({
|
|
225
|
-
inputs: inputs$
|
|
225
|
+
inputs: inputs$O
|
|
226
226
|
})
|
|
227
227
|
], PButtonTile);
|
|
228
228
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PButtonTile, decorators: [{
|
|
@@ -231,31 +231,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
231
231
|
selector: 'p-button-tile,[p-button-tile]',
|
|
232
232
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
233
233
|
template: '<ng-content></ng-content>',
|
|
234
|
-
inputs: inputs$
|
|
234
|
+
inputs: inputs$O
|
|
235
235
|
}]
|
|
236
236
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
237
237
|
|
|
238
|
-
var __decorate$
|
|
238
|
+
var __decorate$S = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
239
239
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
240
240
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
241
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;
|
|
242
242
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
243
243
|
};
|
|
244
|
-
const inputs$
|
|
245
|
-
const outputs$
|
|
244
|
+
const inputs$N = ['activeSlideIndex', 'alignHeader', 'description', 'disablePagination', 'heading', 'intl', 'pagination', 'rewind', 'slidesPerPage', 'theme', 'width', 'wrapContent'];
|
|
245
|
+
const outputs$b = ['carouselChange', 'update'];
|
|
246
246
|
let PCarousel = class PCarousel {
|
|
247
247
|
constructor(c, r, z) {
|
|
248
248
|
this.z = z;
|
|
249
249
|
c.detach();
|
|
250
250
|
this.el = r.nativeElement;
|
|
251
|
-
proxyOutputs(this, outputs$
|
|
251
|
+
proxyOutputs(this, outputs$b);
|
|
252
252
|
}
|
|
253
253
|
};
|
|
254
254
|
PCarousel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
255
255
|
PCarousel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PCarousel, selector: "p-carousel,[p-carousel]", inputs: { activeSlideIndex: "activeSlideIndex", alignHeader: "alignHeader", description: "description", disablePagination: "disablePagination", heading: "heading", intl: "intl", pagination: "pagination", rewind: "rewind", slidesPerPage: "slidesPerPage", theme: "theme", width: "width", wrapContent: "wrapContent" }, outputs: { carouselChange: "carouselChange", update: "update" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
256
|
-
PCarousel = __decorate$
|
|
256
|
+
PCarousel = __decorate$S([
|
|
257
257
|
ProxyCmp({
|
|
258
|
-
inputs: inputs$
|
|
258
|
+
inputs: inputs$N
|
|
259
259
|
})
|
|
260
260
|
], PCarousel);
|
|
261
261
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCarousel, decorators: [{
|
|
@@ -264,18 +264,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
264
264
|
selector: 'p-carousel,[p-carousel]',
|
|
265
265
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
266
266
|
template: '<ng-content></ng-content>',
|
|
267
|
-
inputs: inputs$
|
|
268
|
-
outputs: outputs$
|
|
267
|
+
inputs: inputs$N,
|
|
268
|
+
outputs: outputs$b
|
|
269
269
|
}]
|
|
270
270
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
271
271
|
|
|
272
|
-
var __decorate$
|
|
272
|
+
var __decorate$R = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
273
273
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
274
274
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
275
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;
|
|
276
276
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
277
277
|
};
|
|
278
|
-
const inputs$
|
|
278
|
+
const inputs$M = ['hideLabel', 'label', 'loading', 'message', 'state', 'theme'];
|
|
279
279
|
let PCheckboxWrapper = class PCheckboxWrapper {
|
|
280
280
|
constructor(c, r, z) {
|
|
281
281
|
this.z = z;
|
|
@@ -285,9 +285,9 @@ let PCheckboxWrapper = class PCheckboxWrapper {
|
|
|
285
285
|
};
|
|
286
286
|
PCheckboxWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCheckboxWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
287
287
|
PCheckboxWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PCheckboxWrapper, selector: "p-checkbox-wrapper,[p-checkbox-wrapper]", inputs: { hideLabel: "hideLabel", label: "label", loading: "loading", message: "message", state: "state", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
288
|
-
PCheckboxWrapper = __decorate$
|
|
288
|
+
PCheckboxWrapper = __decorate$R([
|
|
289
289
|
ProxyCmp({
|
|
290
|
-
inputs: inputs$
|
|
290
|
+
inputs: inputs$M
|
|
291
291
|
})
|
|
292
292
|
], PCheckboxWrapper);
|
|
293
293
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCheckboxWrapper, decorators: [{
|
|
@@ -296,17 +296,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
296
296
|
selector: 'p-checkbox-wrapper,[p-checkbox-wrapper]',
|
|
297
297
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
298
298
|
template: '<ng-content></ng-content>',
|
|
299
|
-
inputs: inputs$
|
|
299
|
+
inputs: inputs$M
|
|
300
300
|
}]
|
|
301
301
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
302
302
|
|
|
303
|
-
var __decorate$
|
|
303
|
+
var __decorate$Q = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
304
304
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
305
305
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
306
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;
|
|
307
307
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
308
308
|
};
|
|
309
|
-
const inputs$
|
|
309
|
+
const inputs$L = ['backgroundColor', 'theme', 'width'];
|
|
310
310
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Grid instead. */
|
|
311
311
|
let PContentWrapper = class PContentWrapper {
|
|
312
312
|
constructor(c, r, z) {
|
|
@@ -317,9 +317,9 @@ let PContentWrapper = class PContentWrapper {
|
|
|
317
317
|
};
|
|
318
318
|
PContentWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", 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: "14.0.0", version: "15.2.9", 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$Q([
|
|
321
321
|
ProxyCmp({
|
|
322
|
-
inputs: inputs$
|
|
322
|
+
inputs: inputs$L
|
|
323
323
|
})
|
|
324
324
|
], PContentWrapper);
|
|
325
325
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PContentWrapper, decorators: [{
|
|
@@ -328,17 +328,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
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$L
|
|
332
332
|
}]
|
|
333
333
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
334
334
|
|
|
335
|
-
var __decorate$
|
|
335
|
+
var __decorate$P = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
336
336
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
337
337
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
338
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;
|
|
339
339
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
340
340
|
};
|
|
341
|
-
const inputs$
|
|
341
|
+
const inputs$K = ['aria', 'href', 'target'];
|
|
342
342
|
let PCrest = class PCrest {
|
|
343
343
|
constructor(c, r, z) {
|
|
344
344
|
this.z = z;
|
|
@@ -348,9 +348,9 @@ let PCrest = class PCrest {
|
|
|
348
348
|
};
|
|
349
349
|
PCrest.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCrest, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
350
350
|
PCrest.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PCrest, selector: "p-crest,[p-crest]", inputs: { aria: "aria", href: "href", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
351
|
-
PCrest = __decorate$
|
|
351
|
+
PCrest = __decorate$P([
|
|
352
352
|
ProxyCmp({
|
|
353
|
-
inputs: inputs$
|
|
353
|
+
inputs: inputs$K
|
|
354
354
|
})
|
|
355
355
|
], PCrest);
|
|
356
356
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PCrest, decorators: [{
|
|
@@ -359,17 +359,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
359
359
|
selector: 'p-crest,[p-crest]',
|
|
360
360
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
361
361
|
template: '<ng-content></ng-content>',
|
|
362
|
-
inputs: inputs$
|
|
362
|
+
inputs: inputs$K
|
|
363
363
|
}]
|
|
364
364
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
365
365
|
|
|
366
|
-
var __decorate$
|
|
366
|
+
var __decorate$O = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
367
367
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
368
368
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
369
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;
|
|
370
370
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
371
371
|
};
|
|
372
|
-
const inputs$
|
|
372
|
+
const inputs$J = ['align', 'color', 'ellipsis', 'size', 'tag', 'theme'];
|
|
373
373
|
let PDisplay = class PDisplay {
|
|
374
374
|
constructor(c, r, z) {
|
|
375
375
|
this.z = z;
|
|
@@ -379,9 +379,9 @@ let PDisplay = class PDisplay {
|
|
|
379
379
|
};
|
|
380
380
|
PDisplay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PDisplay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
381
381
|
PDisplay.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
382
|
-
PDisplay = __decorate$
|
|
382
|
+
PDisplay = __decorate$O([
|
|
383
383
|
ProxyCmp({
|
|
384
|
-
inputs: inputs$
|
|
384
|
+
inputs: inputs$J
|
|
385
385
|
})
|
|
386
386
|
], PDisplay);
|
|
387
387
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PDisplay, decorators: [{
|
|
@@ -390,17 +390,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
390
390
|
selector: 'p-display,[p-display]',
|
|
391
391
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
392
392
|
template: '<ng-content></ng-content>',
|
|
393
|
-
inputs: inputs$
|
|
393
|
+
inputs: inputs$J
|
|
394
394
|
}]
|
|
395
395
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
396
396
|
|
|
397
|
-
var __decorate$
|
|
397
|
+
var __decorate$N = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
398
398
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
399
399
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
400
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
401
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
402
402
|
};
|
|
403
|
-
const inputs$
|
|
403
|
+
const inputs$I = ['color', 'direction', 'orientation', 'theme'];
|
|
404
404
|
let PDivider = class PDivider {
|
|
405
405
|
constructor(c, r, z) {
|
|
406
406
|
this.z = z;
|
|
@@ -410,9 +410,9 @@ let PDivider = class PDivider {
|
|
|
410
410
|
};
|
|
411
411
|
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
412
412
|
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
413
|
-
PDivider = __decorate$
|
|
413
|
+
PDivider = __decorate$N([
|
|
414
414
|
ProxyCmp({
|
|
415
|
-
inputs: inputs$
|
|
415
|
+
inputs: inputs$I
|
|
416
416
|
})
|
|
417
417
|
], PDivider);
|
|
418
418
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PDivider, decorators: [{
|
|
@@ -421,17 +421,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
421
421
|
selector: 'p-divider,[p-divider]',
|
|
422
422
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
423
423
|
template: '<ng-content></ng-content>',
|
|
424
|
-
inputs: inputs$
|
|
424
|
+
inputs: inputs$I
|
|
425
425
|
}]
|
|
426
426
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
427
427
|
|
|
428
|
-
var __decorate$
|
|
428
|
+
var __decorate$M = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
429
429
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
430
430
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
431
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;
|
|
432
432
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
433
433
|
};
|
|
434
|
-
const inputs$
|
|
434
|
+
const inputs$H = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
435
435
|
let PFieldset = class PFieldset {
|
|
436
436
|
constructor(c, r, z) {
|
|
437
437
|
this.z = z;
|
|
@@ -441,9 +441,9 @@ let PFieldset = class PFieldset {
|
|
|
441
441
|
};
|
|
442
442
|
PFieldset.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFieldset, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
443
443
|
PFieldset.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
444
|
-
PFieldset = __decorate$
|
|
444
|
+
PFieldset = __decorate$M([
|
|
445
445
|
ProxyCmp({
|
|
446
|
-
inputs: inputs$
|
|
446
|
+
inputs: inputs$H
|
|
447
447
|
})
|
|
448
448
|
], PFieldset);
|
|
449
449
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFieldset, decorators: [{
|
|
@@ -452,17 +452,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
452
452
|
selector: 'p-fieldset,[p-fieldset]',
|
|
453
453
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
454
454
|
template: '<ng-content></ng-content>',
|
|
455
|
-
inputs: inputs$
|
|
455
|
+
inputs: inputs$H
|
|
456
456
|
}]
|
|
457
457
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
458
458
|
|
|
459
|
-
var __decorate$
|
|
459
|
+
var __decorate$L = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
460
460
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
461
461
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
462
462
|
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;
|
|
463
463
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
464
464
|
};
|
|
465
|
-
const inputs$
|
|
465
|
+
const inputs$G = ['label', 'labelSize', 'message', 'required', 'state', 'theme'];
|
|
466
466
|
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-fieldset" instead. */
|
|
467
467
|
let PFieldsetWrapper = class PFieldsetWrapper {
|
|
468
468
|
constructor(c, r, z) {
|
|
@@ -473,9 +473,9 @@ let PFieldsetWrapper = class PFieldsetWrapper {
|
|
|
473
473
|
};
|
|
474
474
|
PFieldsetWrapper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFieldsetWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
475
475
|
PFieldsetWrapper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
476
|
-
PFieldsetWrapper = __decorate$
|
|
476
|
+
PFieldsetWrapper = __decorate$L([
|
|
477
477
|
ProxyCmp({
|
|
478
|
-
inputs: inputs$
|
|
478
|
+
inputs: inputs$G
|
|
479
479
|
})
|
|
480
480
|
], PFieldsetWrapper);
|
|
481
481
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFieldsetWrapper, decorators: [{
|
|
@@ -484,17 +484,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
484
484
|
selector: 'p-fieldset-wrapper,[p-fieldset-wrapper]',
|
|
485
485
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
486
486
|
template: '<ng-content></ng-content>',
|
|
487
|
-
inputs: inputs$
|
|
487
|
+
inputs: inputs$G
|
|
488
488
|
}]
|
|
489
489
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
490
490
|
|
|
491
|
-
var __decorate$
|
|
491
|
+
var __decorate$K = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
492
492
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
493
493
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
494
494
|
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;
|
|
495
495
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
496
496
|
};
|
|
497
|
-
const inputs$
|
|
497
|
+
const inputs$F = ['alignContent', 'alignItems', 'direction', 'inline', 'justifyContent', 'wrap'];
|
|
498
498
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
499
499
|
let PFlex = class PFlex {
|
|
500
500
|
constructor(c, r, z) {
|
|
@@ -505,9 +505,9 @@ let PFlex = class PFlex {
|
|
|
505
505
|
};
|
|
506
506
|
PFlex.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlex, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
507
507
|
PFlex.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
508
|
-
PFlex = __decorate$
|
|
508
|
+
PFlex = __decorate$K([
|
|
509
509
|
ProxyCmp({
|
|
510
|
-
inputs: inputs$
|
|
510
|
+
inputs: inputs$F
|
|
511
511
|
})
|
|
512
512
|
], PFlex);
|
|
513
513
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlex, decorators: [{
|
|
@@ -516,17 +516,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
516
516
|
selector: 'p-flex,[p-flex]',
|
|
517
517
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
518
518
|
template: '<ng-content></ng-content>',
|
|
519
|
-
inputs: inputs$
|
|
519
|
+
inputs: inputs$F
|
|
520
520
|
}]
|
|
521
521
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
522
522
|
|
|
523
|
-
var __decorate$
|
|
523
|
+
var __decorate$J = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
524
524
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
525
525
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
526
526
|
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;
|
|
527
527
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
528
528
|
};
|
|
529
|
-
const inputs$
|
|
529
|
+
const inputs$E = ['alignSelf', 'flex', 'grow', 'offset', 'shrink', 'width'];
|
|
530
530
|
/** @deprecated since v3.0.0, will be removed with next major release. Use native CSS Flex instead. */
|
|
531
531
|
let PFlexItem = class PFlexItem {
|
|
532
532
|
constructor(c, r, z) {
|
|
@@ -537,9 +537,9 @@ let PFlexItem = class PFlexItem {
|
|
|
537
537
|
};
|
|
538
538
|
PFlexItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlexItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
539
539
|
PFlexItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", 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 });
|
|
540
|
-
PFlexItem = __decorate$
|
|
540
|
+
PFlexItem = __decorate$J([
|
|
541
541
|
ProxyCmp({
|
|
542
|
-
inputs: inputs$
|
|
542
|
+
inputs: inputs$E
|
|
543
543
|
})
|
|
544
544
|
], PFlexItem);
|
|
545
545
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlexItem, decorators: [{
|
|
@@ -548,7 +548,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
548
548
|
selector: 'p-flex-item,[p-flex-item]',
|
|
549
549
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
550
550
|
template: '<ng-content></ng-content>',
|
|
551
|
-
inputs: inputs$
|
|
551
|
+
inputs: inputs$E
|
|
552
|
+
}]
|
|
553
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
554
|
+
|
|
555
|
+
var __decorate$I = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
556
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
557
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
558
|
+
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;
|
|
559
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
560
|
+
};
|
|
561
|
+
const inputs$D = ['aria', 'open', 'position', 'theme'];
|
|
562
|
+
const outputs$a = ['dismiss'];
|
|
563
|
+
let PFlyout = class PFlyout {
|
|
564
|
+
constructor(c, r, z) {
|
|
565
|
+
this.z = z;
|
|
566
|
+
c.detach();
|
|
567
|
+
this.el = r.nativeElement;
|
|
568
|
+
proxyOutputs(this, outputs$a);
|
|
569
|
+
}
|
|
570
|
+
};
|
|
571
|
+
PFlyout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlyout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
572
|
+
PFlyout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PFlyout, selector: "p-flyout,[p-flyout]", inputs: { aria: "aria", open: "open", position: "position", theme: "theme" }, outputs: { dismiss: "dismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
573
|
+
PFlyout = __decorate$I([
|
|
574
|
+
ProxyCmp({
|
|
575
|
+
inputs: inputs$D
|
|
576
|
+
})
|
|
577
|
+
], PFlyout);
|
|
578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PFlyout, decorators: [{
|
|
579
|
+
type: Component,
|
|
580
|
+
args: [{
|
|
581
|
+
selector: 'p-flyout,[p-flyout]',
|
|
582
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
583
|
+
template: '<ng-content></ng-content>',
|
|
584
|
+
inputs: inputs$D,
|
|
585
|
+
outputs: outputs$a
|
|
552
586
|
}]
|
|
553
587
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
554
588
|
|
|
@@ -1948,6 +1982,7 @@ const DECLARATIONS = [
|
|
|
1948
1982
|
PFieldsetWrapper,
|
|
1949
1983
|
PFlex,
|
|
1950
1984
|
PFlexItem,
|
|
1985
|
+
PFlyout,
|
|
1951
1986
|
PGrid,
|
|
1952
1987
|
PGridItem,
|
|
1953
1988
|
PHeading,
|
|
@@ -2018,7 +2053,7 @@ class PorscheDesignSystemModule {
|
|
|
2018
2053
|
}
|
|
2019
2054
|
}
|
|
2020
2055
|
PorscheDesignSystemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule, deps: [{ token: DefaultConfig, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2021
|
-
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark] });
|
|
2056
|
+
PorscheDesignSystemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule, declarations: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark], exports: [PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark] });
|
|
2022
2057
|
PorscheDesignSystemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule });
|
|
2023
2058
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PorscheDesignSystemModule, decorators: [{
|
|
2024
2059
|
type: NgModule,
|
|
@@ -2049,5 +2084,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2049
2084
|
* Generated bundle index. Do not edit.
|
|
2050
2085
|
*/
|
|
2051
2086
|
|
|
2052
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, ToastManager };
|
|
2087
|
+
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCarousel, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PFieldset, PFieldsetWrapper, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PMarque, PModal, PModelSignature, PPagination, PPopover, PRadioButtonWrapper, PScroller, PSegmentedControl, PSegmentedControlItem, PSelectWrapper, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, ToastManager };
|
|
2053
2088
|
//# sourceMappingURL=porsche-design-system-components-angular.mjs.map
|