@paperless/angular 0.1.0-alpha.91 → 0.1.0-alpha.94
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/esm2020/lib/base/value-accessor.mjs +3 -3
- package/esm2020/lib/directives/pagination.directive.mjs +3 -3
- package/esm2020/lib/paperless.module.mjs +4 -4
- package/esm2020/lib/stencil/components.mjs +171 -121
- package/esm2020/lib/stencil/index.mjs +3 -1
- package/fesm2015/paperless-angular.mjs +181 -131
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +181 -131
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/paperless.module.d.ts +1 -1
- package/lib/stencil/components.d.ts +18 -0
- package/lib/stencil/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -34,9 +34,9 @@ class ValueAccessor {
|
|
|
34
34
|
this.onTouched = fn;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
|
-
ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
38
|
-
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
39
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
37
|
+
ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
38
|
+
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
40
40
|
type: Directive,
|
|
41
41
|
args: [{}]
|
|
42
42
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
@@ -56,15 +56,15 @@ class PaginationDirective extends ValueAccessor {
|
|
|
56
56
|
super.registerOnChange((value) => fn(value === '' ? null : parseInt(value, 10)));
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
-
PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
60
|
-
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
59
|
+
PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
+
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", type: PaginationDirective, selector: "p-pagination", host: { listeners: { "pageChange": "handleChangeEvent($event.target.page)" } }, providers: [
|
|
61
61
|
{
|
|
62
62
|
provide: NG_VALUE_ACCESSOR,
|
|
63
63
|
useExisting: PaginationDirective,
|
|
64
64
|
multi: true,
|
|
65
65
|
},
|
|
66
66
|
], usesInheritance: true, ngImport: i0 });
|
|
67
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
67
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaginationDirective, decorators: [{
|
|
68
68
|
type: Directive,
|
|
69
69
|
args: [{
|
|
70
70
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -143,15 +143,15 @@ let PAccordion = class PAccordion {
|
|
|
143
143
|
proxyOutputs(this, this.el, ['isOpen']);
|
|
144
144
|
}
|
|
145
145
|
};
|
|
146
|
-
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
147
|
-
PAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
146
|
+
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
147
|
+
PAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PAccordion, selector: "p-accordion", inputs: { closeable: "closeable", header: "header", open: "open", openable: "openable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
148
148
|
PAccordion = __decorate([
|
|
149
149
|
ProxyCmp({
|
|
150
150
|
defineCustomElementFn: undefined,
|
|
151
151
|
inputs: ['closeable', 'header', 'open', 'openable']
|
|
152
152
|
})
|
|
153
153
|
], PAccordion);
|
|
154
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
154
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PAccordion, decorators: [{
|
|
155
155
|
type: Component,
|
|
156
156
|
args: [{
|
|
157
157
|
selector: 'p-accordion',
|
|
@@ -167,15 +167,15 @@ let PAvatar = class PAvatar {
|
|
|
167
167
|
this.el = r.nativeElement;
|
|
168
168
|
}
|
|
169
169
|
};
|
|
170
|
-
PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
171
|
-
PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
170
|
+
PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
171
|
+
PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PAvatar, selector: "p-avatar", inputs: { defaultImage: "defaultImage", size: "size", src: "src", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
172
172
|
PAvatar = __decorate([
|
|
173
173
|
ProxyCmp({
|
|
174
174
|
defineCustomElementFn: undefined,
|
|
175
175
|
inputs: ['defaultImage', 'size', 'src', 'variant']
|
|
176
176
|
})
|
|
177
177
|
], PAvatar);
|
|
178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PAvatar, decorators: [{
|
|
179
179
|
type: Component,
|
|
180
180
|
args: [{
|
|
181
181
|
selector: 'p-avatar',
|
|
@@ -191,15 +191,15 @@ let PAvatarGroup = class PAvatarGroup {
|
|
|
191
191
|
this.el = r.nativeElement;
|
|
192
192
|
}
|
|
193
193
|
};
|
|
194
|
-
PAvatarGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
195
|
-
PAvatarGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
194
|
+
PAvatarGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PAvatarGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
195
|
+
PAvatarGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PAvatarGroup, selector: "p-avatar-group", inputs: { extra: "extra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
196
196
|
PAvatarGroup = __decorate([
|
|
197
197
|
ProxyCmp({
|
|
198
198
|
defineCustomElementFn: undefined,
|
|
199
199
|
inputs: ['extra']
|
|
200
200
|
})
|
|
201
201
|
], PAvatarGroup);
|
|
202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
202
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PAvatarGroup, decorators: [{
|
|
203
203
|
type: Component,
|
|
204
204
|
args: [{
|
|
205
205
|
selector: 'p-avatar-group',
|
|
@@ -216,15 +216,15 @@ let PButton = class PButton {
|
|
|
216
216
|
proxyOutputs(this, this.el, ['onClick']);
|
|
217
217
|
}
|
|
218
218
|
};
|
|
219
|
-
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
220
|
-
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
219
|
+
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
220
|
+
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PButton, selector: "p-button", inputs: { chevron: "chevron", disabled: "disabled", href: "href", icon: "icon", iconFlip: "iconFlip", iconOnly: "iconOnly", iconPosition: "iconPosition", iconRotate: "iconRotate", inheritText: "inheritText", loading: "loading", size: "size", target: "target", variant: "variant", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
221
221
|
PButton = __decorate([
|
|
222
222
|
ProxyCmp({
|
|
223
223
|
defineCustomElementFn: undefined,
|
|
224
224
|
inputs: ['chevron', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant', 'width']
|
|
225
225
|
})
|
|
226
226
|
], PButton);
|
|
227
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PButton, decorators: [{
|
|
228
228
|
type: Component,
|
|
229
229
|
args: [{
|
|
230
230
|
selector: 'p-button',
|
|
@@ -240,15 +240,15 @@ let PCardBody = class PCardBody {
|
|
|
240
240
|
this.el = r.nativeElement;
|
|
241
241
|
}
|
|
242
242
|
};
|
|
243
|
-
PCardBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
244
|
-
PCardBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
243
|
+
PCardBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCardBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
244
|
+
PCardBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PCardBody, selector: "p-card-body", inputs: { inheritText: "inheritText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
245
245
|
PCardBody = __decorate([
|
|
246
246
|
ProxyCmp({
|
|
247
247
|
defineCustomElementFn: undefined,
|
|
248
248
|
inputs: ['inheritText']
|
|
249
249
|
})
|
|
250
250
|
], PCardBody);
|
|
251
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCardBody, decorators: [{
|
|
252
252
|
type: Component,
|
|
253
253
|
args: [{
|
|
254
254
|
selector: 'p-card-body',
|
|
@@ -264,15 +264,15 @@ let PCardContainer = class PCardContainer {
|
|
|
264
264
|
this.el = r.nativeElement;
|
|
265
265
|
}
|
|
266
266
|
};
|
|
267
|
-
PCardContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
268
|
-
PCardContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
267
|
+
PCardContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCardContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
268
|
+
PCardContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PCardContainer, selector: "p-card-container", inputs: { hoverable: "hoverable", shadow: "shadow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
269
269
|
PCardContainer = __decorate([
|
|
270
270
|
ProxyCmp({
|
|
271
271
|
defineCustomElementFn: undefined,
|
|
272
272
|
inputs: ['hoverable', 'shadow']
|
|
273
273
|
})
|
|
274
274
|
], PCardContainer);
|
|
275
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCardContainer, decorators: [{
|
|
276
276
|
type: Component,
|
|
277
277
|
args: [{
|
|
278
278
|
selector: 'p-card-container',
|
|
@@ -288,15 +288,15 @@ let PCardHeader = class PCardHeader {
|
|
|
288
288
|
this.el = r.nativeElement;
|
|
289
289
|
}
|
|
290
290
|
};
|
|
291
|
-
PCardHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
292
|
-
PCardHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
291
|
+
PCardHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
292
|
+
PCardHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PCardHeader, selector: "p-card-header", inputs: { arrow: "arrow", header: "header" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
293
293
|
PCardHeader = __decorate([
|
|
294
294
|
ProxyCmp({
|
|
295
295
|
defineCustomElementFn: undefined,
|
|
296
296
|
inputs: ['arrow', 'header']
|
|
297
297
|
})
|
|
298
298
|
], PCardHeader);
|
|
299
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCardHeader, decorators: [{
|
|
300
300
|
type: Component,
|
|
301
301
|
args: [{
|
|
302
302
|
selector: 'p-card-header',
|
|
@@ -305,6 +305,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
305
305
|
inputs: ['arrow', 'header']
|
|
306
306
|
}]
|
|
307
307
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
308
|
+
let PContentSlider = class PContentSlider {
|
|
309
|
+
constructor(c, r, z) {
|
|
310
|
+
this.z = z;
|
|
311
|
+
c.detach();
|
|
312
|
+
this.el = r.nativeElement;
|
|
313
|
+
}
|
|
314
|
+
};
|
|
315
|
+
PContentSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PContentSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
316
|
+
PContentSlider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PContentSlider, selector: "p-content-slider", inputs: { disableDrag: "disableDrag", disableIndicatorClick: "disableIndicatorClick", hideMobileIndicator: "hideMobileIndicator" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
317
|
+
PContentSlider = __decorate([
|
|
318
|
+
ProxyCmp({
|
|
319
|
+
defineCustomElementFn: undefined,
|
|
320
|
+
inputs: ['disableDrag', 'disableIndicatorClick', 'hideMobileIndicator']
|
|
321
|
+
})
|
|
322
|
+
], PContentSlider);
|
|
323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PContentSlider, decorators: [{
|
|
324
|
+
type: Component,
|
|
325
|
+
args: [{
|
|
326
|
+
selector: 'p-content-slider',
|
|
327
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
328
|
+
template: '<ng-content></ng-content>',
|
|
329
|
+
inputs: ['disableDrag', 'disableIndicatorClick', 'hideMobileIndicator']
|
|
330
|
+
}]
|
|
331
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
308
332
|
let PCounter = class PCounter {
|
|
309
333
|
constructor(c, r, z) {
|
|
310
334
|
this.z = z;
|
|
@@ -312,15 +336,15 @@ let PCounter = class PCounter {
|
|
|
312
336
|
this.el = r.nativeElement;
|
|
313
337
|
}
|
|
314
338
|
};
|
|
315
|
-
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
316
|
-
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
339
|
+
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
340
|
+
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PCounter, selector: "p-counter", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
317
341
|
PCounter = __decorate([
|
|
318
342
|
ProxyCmp({
|
|
319
343
|
defineCustomElementFn: undefined,
|
|
320
344
|
inputs: ['size', 'variant']
|
|
321
345
|
})
|
|
322
346
|
], PCounter);
|
|
323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
347
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCounter, decorators: [{
|
|
324
348
|
type: Component,
|
|
325
349
|
args: [{
|
|
326
350
|
selector: 'p-counter',
|
|
@@ -336,14 +360,14 @@ let PDivider = class PDivider {
|
|
|
336
360
|
this.el = r.nativeElement;
|
|
337
361
|
}
|
|
338
362
|
};
|
|
339
|
-
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
340
|
-
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
363
|
+
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
364
|
+
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PDivider, selector: "p-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
341
365
|
PDivider = __decorate([
|
|
342
366
|
ProxyCmp({
|
|
343
367
|
defineCustomElementFn: undefined
|
|
344
368
|
})
|
|
345
369
|
], PDivider);
|
|
346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDivider, decorators: [{
|
|
347
371
|
type: Component,
|
|
348
372
|
args: [{
|
|
349
373
|
selector: 'p-divider',
|
|
@@ -359,15 +383,15 @@ let PDropdown = class PDropdown {
|
|
|
359
383
|
proxyOutputs(this, this.el, ['isOpen']);
|
|
360
384
|
}
|
|
361
385
|
};
|
|
362
|
-
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
363
|
-
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
386
|
+
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
387
|
+
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PDropdown, selector: "p-dropdown", inputs: { disableTriggerClick: "disableTriggerClick", insideClick: "insideClick", placement: "placement", show: "show", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
364
388
|
PDropdown = __decorate([
|
|
365
389
|
ProxyCmp({
|
|
366
390
|
defineCustomElementFn: undefined,
|
|
367
391
|
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
368
392
|
})
|
|
369
393
|
], PDropdown);
|
|
370
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
394
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdown, decorators: [{
|
|
371
395
|
type: Component,
|
|
372
396
|
args: [{
|
|
373
397
|
selector: 'p-dropdown',
|
|
@@ -383,14 +407,14 @@ let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
|
383
407
|
this.el = r.nativeElement;
|
|
384
408
|
}
|
|
385
409
|
};
|
|
386
|
-
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
387
|
-
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
410
|
+
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdownMenuContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
411
|
+
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
388
412
|
PDropdownMenuContainer = __decorate([
|
|
389
413
|
ProxyCmp({
|
|
390
414
|
defineCustomElementFn: undefined
|
|
391
415
|
})
|
|
392
416
|
], PDropdownMenuContainer);
|
|
393
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
|
|
394
418
|
type: Component,
|
|
395
419
|
args: [{
|
|
396
420
|
selector: 'p-dropdown-menu-container',
|
|
@@ -405,15 +429,15 @@ let PDropdownMenuItem = class PDropdownMenuItem {
|
|
|
405
429
|
this.el = r.nativeElement;
|
|
406
430
|
}
|
|
407
431
|
};
|
|
408
|
-
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
409
|
-
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
432
|
+
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdownMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
433
|
+
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PDropdownMenuItem, selector: "p-dropdown-menu-item", inputs: { active: "active", icon: "icon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
410
434
|
PDropdownMenuItem = __decorate([
|
|
411
435
|
ProxyCmp({
|
|
412
436
|
defineCustomElementFn: undefined,
|
|
413
437
|
inputs: ['active', 'icon']
|
|
414
438
|
})
|
|
415
439
|
], PDropdownMenuItem);
|
|
416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
440
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdownMenuItem, decorators: [{
|
|
417
441
|
type: Component,
|
|
418
442
|
args: [{
|
|
419
443
|
selector: 'p-dropdown-menu-item',
|
|
@@ -429,15 +453,15 @@ let PHelper = class PHelper {
|
|
|
429
453
|
this.el = r.nativeElement;
|
|
430
454
|
}
|
|
431
455
|
};
|
|
432
|
-
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
433
|
-
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
456
|
+
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PHelper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
457
|
+
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PHelper, selector: "p-helper", inputs: { placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
434
458
|
PHelper = __decorate([
|
|
435
459
|
ProxyCmp({
|
|
436
460
|
defineCustomElementFn: undefined,
|
|
437
461
|
inputs: ['placement']
|
|
438
462
|
})
|
|
439
463
|
], PHelper);
|
|
440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PHelper, decorators: [{
|
|
441
465
|
type: Component,
|
|
442
466
|
args: [{
|
|
443
467
|
selector: 'p-helper',
|
|
@@ -453,15 +477,15 @@ let PIcon = class PIcon {
|
|
|
453
477
|
this.el = r.nativeElement;
|
|
454
478
|
}
|
|
455
479
|
};
|
|
456
|
-
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
457
|
-
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
480
|
+
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
481
|
+
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PIcon, selector: "p-icon", inputs: { flip: "flip", rotate: "rotate", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
458
482
|
PIcon = __decorate([
|
|
459
483
|
ProxyCmp({
|
|
460
484
|
defineCustomElementFn: undefined,
|
|
461
485
|
inputs: ['flip', 'rotate', 'size', 'variant']
|
|
462
486
|
})
|
|
463
487
|
], PIcon);
|
|
464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIcon, decorators: [{
|
|
465
489
|
type: Component,
|
|
466
490
|
args: [{
|
|
467
491
|
selector: 'p-icon',
|
|
@@ -477,15 +501,15 @@ let PIllustration = class PIllustration {
|
|
|
477
501
|
this.el = r.nativeElement;
|
|
478
502
|
}
|
|
479
503
|
};
|
|
480
|
-
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
481
|
-
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
504
|
+
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIllustration, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
505
|
+
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PIllustration, selector: "p-illustration", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
482
506
|
PIllustration = __decorate([
|
|
483
507
|
ProxyCmp({
|
|
484
508
|
defineCustomElementFn: undefined,
|
|
485
509
|
inputs: ['variant']
|
|
486
510
|
})
|
|
487
511
|
], PIllustration);
|
|
488
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIllustration, decorators: [{
|
|
489
513
|
type: Component,
|
|
490
514
|
args: [{
|
|
491
515
|
selector: 'p-illustration',
|
|
@@ -501,15 +525,15 @@ let PInfoPanel = class PInfoPanel {
|
|
|
501
525
|
this.el = r.nativeElement;
|
|
502
526
|
}
|
|
503
527
|
};
|
|
504
|
-
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
505
|
-
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
528
|
+
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PInfoPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
529
|
+
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PInfoPanel, selector: "p-info-panel", inputs: { closeable: "closeable", content: "content", header: "header", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
506
530
|
PInfoPanel = __decorate([
|
|
507
531
|
ProxyCmp({
|
|
508
532
|
defineCustomElementFn: undefined,
|
|
509
533
|
inputs: ['closeable', 'content', 'header', 'variant']
|
|
510
534
|
})
|
|
511
535
|
], PInfoPanel);
|
|
512
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PInfoPanel, decorators: [{
|
|
513
537
|
type: Component,
|
|
514
538
|
args: [{
|
|
515
539
|
selector: 'p-info-panel',
|
|
@@ -525,15 +549,15 @@ let PInputGroup = class PInputGroup {
|
|
|
525
549
|
this.el = r.nativeElement;
|
|
526
550
|
}
|
|
527
551
|
};
|
|
528
|
-
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
529
|
-
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
552
|
+
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
553
|
+
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PInputGroup, selector: "p-input-group", inputs: { disabled: "disabled", error: "error", focused: "focused", helper: "helper", icon: "icon", iconFlip: "iconFlip", iconRotate: "iconRotate", label: "label", prefix: "prefix", suffix: "suffix" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
530
554
|
PInputGroup = __decorate([
|
|
531
555
|
ProxyCmp({
|
|
532
556
|
defineCustomElementFn: undefined,
|
|
533
557
|
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'suffix']
|
|
534
558
|
})
|
|
535
559
|
], PInputGroup);
|
|
536
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PInputGroup, decorators: [{
|
|
537
561
|
type: Component,
|
|
538
562
|
args: [{
|
|
539
563
|
selector: 'p-input-group',
|
|
@@ -549,15 +573,15 @@ let PLayout = class PLayout {
|
|
|
549
573
|
this.el = r.nativeElement;
|
|
550
574
|
}
|
|
551
575
|
};
|
|
552
|
-
PLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
553
|
-
PLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
576
|
+
PLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
577
|
+
PLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PLayout, selector: "p-layout", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
554
578
|
PLayout = __decorate([
|
|
555
579
|
ProxyCmp({
|
|
556
580
|
defineCustomElementFn: undefined,
|
|
557
581
|
inputs: ['variant']
|
|
558
582
|
})
|
|
559
583
|
], PLayout);
|
|
560
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PLayout, decorators: [{
|
|
561
585
|
type: Component,
|
|
562
586
|
args: [{
|
|
563
587
|
selector: 'p-layout',
|
|
@@ -573,15 +597,15 @@ let PLoader = class PLoader {
|
|
|
573
597
|
this.el = r.nativeElement;
|
|
574
598
|
}
|
|
575
599
|
};
|
|
576
|
-
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
577
|
-
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
600
|
+
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
601
|
+
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PLoader, selector: "p-loader", inputs: { color: "color", modalDescription: "modalDescription", modalTitle: "modalTitle", show: "show", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
578
602
|
PLoader = __decorate([
|
|
579
603
|
ProxyCmp({
|
|
580
604
|
defineCustomElementFn: undefined,
|
|
581
605
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
582
606
|
})
|
|
583
607
|
], PLoader);
|
|
584
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PLoader, decorators: [{
|
|
585
609
|
type: Component,
|
|
586
610
|
args: [{
|
|
587
611
|
selector: 'p-loader',
|
|
@@ -598,15 +622,15 @@ let PModal = class PModal {
|
|
|
598
622
|
proxyOutputs(this, this.el, ['close']);
|
|
599
623
|
}
|
|
600
624
|
};
|
|
601
|
-
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
602
|
-
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
625
|
+
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
626
|
+
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModal, selector: "p-modal", inputs: { header: "header", show: "show", showMobileClose: "showMobileClose", showMobileFooter: "showMobileFooter", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
603
627
|
PModal = __decorate([
|
|
604
628
|
ProxyCmp({
|
|
605
629
|
defineCustomElementFn: undefined,
|
|
606
630
|
inputs: ['header', 'show', 'showMobileClose', 'showMobileFooter', 'size', 'variant']
|
|
607
631
|
})
|
|
608
632
|
], PModal);
|
|
609
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModal, decorators: [{
|
|
610
634
|
type: Component,
|
|
611
635
|
args: [{
|
|
612
636
|
selector: 'p-modal',
|
|
@@ -622,14 +646,14 @@ let PModalBackdrop = class PModalBackdrop {
|
|
|
622
646
|
this.el = r.nativeElement;
|
|
623
647
|
}
|
|
624
648
|
};
|
|
625
|
-
PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
626
|
-
PModalBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
649
|
+
PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
650
|
+
PModalBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalBackdrop, selector: "p-modal-backdrop", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
627
651
|
PModalBackdrop = __decorate([
|
|
628
652
|
ProxyCmp({
|
|
629
653
|
defineCustomElementFn: undefined
|
|
630
654
|
})
|
|
631
655
|
], PModalBackdrop);
|
|
632
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalBackdrop, decorators: [{
|
|
633
657
|
type: Component,
|
|
634
658
|
args: [{
|
|
635
659
|
selector: 'p-modal-backdrop',
|
|
@@ -644,15 +668,15 @@ let PModalBody = class PModalBody {
|
|
|
644
668
|
this.el = r.nativeElement;
|
|
645
669
|
}
|
|
646
670
|
};
|
|
647
|
-
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
648
|
-
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
671
|
+
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
672
|
+
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalBody, selector: "p-modal-body", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
649
673
|
PModalBody = __decorate([
|
|
650
674
|
ProxyCmp({
|
|
651
675
|
defineCustomElementFn: undefined,
|
|
652
676
|
inputs: ['variant']
|
|
653
677
|
})
|
|
654
678
|
], PModalBody);
|
|
655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
679
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalBody, decorators: [{
|
|
656
680
|
type: Component,
|
|
657
681
|
args: [{
|
|
658
682
|
selector: 'p-modal-body',
|
|
@@ -668,15 +692,15 @@ let PModalContainer = class PModalContainer {
|
|
|
668
692
|
this.el = r.nativeElement;
|
|
669
693
|
}
|
|
670
694
|
};
|
|
671
|
-
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
672
|
-
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
695
|
+
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
696
|
+
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalContainer, selector: "p-modal-container", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
673
697
|
PModalContainer = __decorate([
|
|
674
698
|
ProxyCmp({
|
|
675
699
|
defineCustomElementFn: undefined,
|
|
676
700
|
inputs: ['size']
|
|
677
701
|
})
|
|
678
702
|
], PModalContainer);
|
|
679
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalContainer, decorators: [{
|
|
680
704
|
type: Component,
|
|
681
705
|
args: [{
|
|
682
706
|
selector: 'p-modal-container',
|
|
@@ -692,15 +716,15 @@ let PModalFooter = class PModalFooter {
|
|
|
692
716
|
this.el = r.nativeElement;
|
|
693
717
|
}
|
|
694
718
|
};
|
|
695
|
-
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
696
|
-
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
719
|
+
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
720
|
+
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalFooter, selector: "p-modal-footer", inputs: { hideOnMobile: "hideOnMobile" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
697
721
|
PModalFooter = __decorate([
|
|
698
722
|
ProxyCmp({
|
|
699
723
|
defineCustomElementFn: undefined,
|
|
700
724
|
inputs: ['hideOnMobile']
|
|
701
725
|
})
|
|
702
726
|
], PModalFooter);
|
|
703
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
727
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalFooter, decorators: [{
|
|
704
728
|
type: Component,
|
|
705
729
|
args: [{
|
|
706
730
|
selector: 'p-modal-footer',
|
|
@@ -717,15 +741,15 @@ let PModalHeader = class PModalHeader {
|
|
|
717
741
|
proxyOutputs(this, this.el, ['close']);
|
|
718
742
|
}
|
|
719
743
|
};
|
|
720
|
-
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
721
|
-
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
744
|
+
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
745
|
+
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalHeader, selector: "p-modal-header", inputs: { showMobileClose: "showMobileClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
722
746
|
PModalHeader = __decorate([
|
|
723
747
|
ProxyCmp({
|
|
724
748
|
defineCustomElementFn: undefined,
|
|
725
749
|
inputs: ['showMobileClose']
|
|
726
750
|
})
|
|
727
751
|
], PModalHeader);
|
|
728
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalHeader, decorators: [{
|
|
729
753
|
type: Component,
|
|
730
754
|
args: [{
|
|
731
755
|
selector: 'p-modal-header',
|
|
@@ -741,15 +765,15 @@ let PNavbar = class PNavbar {
|
|
|
741
765
|
this.el = r.nativeElement;
|
|
742
766
|
}
|
|
743
767
|
};
|
|
744
|
-
PNavbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
745
|
-
PNavbar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
768
|
+
PNavbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
769
|
+
PNavbar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PNavbar, selector: "p-navbar", inputs: { closeText: "closeText", menuText: "menuText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
746
770
|
PNavbar = __decorate([
|
|
747
771
|
ProxyCmp({
|
|
748
772
|
defineCustomElementFn: undefined,
|
|
749
773
|
inputs: ['closeText', 'menuText']
|
|
750
774
|
})
|
|
751
775
|
], PNavbar);
|
|
752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
776
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PNavbar, decorators: [{
|
|
753
777
|
type: Component,
|
|
754
778
|
args: [{
|
|
755
779
|
selector: 'p-navbar',
|
|
@@ -765,15 +789,15 @@ let PNavigationItem = class PNavigationItem {
|
|
|
765
789
|
this.el = r.nativeElement;
|
|
766
790
|
}
|
|
767
791
|
};
|
|
768
|
-
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
769
|
-
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
792
|
+
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
793
|
+
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PNavigationItem, selector: "p-navigation-item", inputs: { active: "active", counter: "counter", href: "href", icon: "icon", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
770
794
|
PNavigationItem = __decorate([
|
|
771
795
|
ProxyCmp({
|
|
772
796
|
defineCustomElementFn: undefined,
|
|
773
797
|
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
774
798
|
})
|
|
775
799
|
], PNavigationItem);
|
|
776
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PNavigationItem, decorators: [{
|
|
777
801
|
type: Component,
|
|
778
802
|
args: [{
|
|
779
803
|
selector: 'p-navigation-item',
|
|
@@ -790,15 +814,15 @@ let PPagination = class PPagination {
|
|
|
790
814
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
791
815
|
}
|
|
792
816
|
};
|
|
793
|
-
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
794
|
-
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
817
|
+
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
818
|
+
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PPagination, selector: "p-pagination", inputs: { page: "page", pageSize: "pageSize", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
795
819
|
PPagination = __decorate([
|
|
796
820
|
ProxyCmp({
|
|
797
821
|
defineCustomElementFn: undefined,
|
|
798
822
|
inputs: ['page', 'pageSize', 'total']
|
|
799
823
|
})
|
|
800
824
|
], PPagination);
|
|
801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPagination, decorators: [{
|
|
802
826
|
type: Component,
|
|
803
827
|
args: [{
|
|
804
828
|
selector: 'p-pagination',
|
|
@@ -814,15 +838,15 @@ let PPaginationItem = class PPaginationItem {
|
|
|
814
838
|
this.el = r.nativeElement;
|
|
815
839
|
}
|
|
816
840
|
};
|
|
817
|
-
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
818
|
-
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
841
|
+
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPaginationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
842
|
+
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PPaginationItem, selector: "p-pagination-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
819
843
|
PPaginationItem = __decorate([
|
|
820
844
|
ProxyCmp({
|
|
821
845
|
defineCustomElementFn: undefined,
|
|
822
846
|
inputs: ['active']
|
|
823
847
|
})
|
|
824
848
|
], PPaginationItem);
|
|
825
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPaginationItem, decorators: [{
|
|
826
850
|
type: Component,
|
|
827
851
|
args: [{
|
|
828
852
|
selector: 'p-pagination-item',
|
|
@@ -838,15 +862,15 @@ let PProfile = class PProfile {
|
|
|
838
862
|
this.el = r.nativeElement;
|
|
839
863
|
}
|
|
840
864
|
};
|
|
841
|
-
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
842
|
-
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
865
|
+
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PProfile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
866
|
+
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PProfile, selector: "p-profile", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
843
867
|
PProfile = __decorate([
|
|
844
868
|
ProxyCmp({
|
|
845
869
|
defineCustomElementFn: undefined,
|
|
846
870
|
inputs: ['size', 'variant']
|
|
847
871
|
})
|
|
848
872
|
], PProfile);
|
|
849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PProfile, decorators: [{
|
|
850
874
|
type: Component,
|
|
851
875
|
args: [{
|
|
852
876
|
selector: 'p-profile',
|
|
@@ -862,14 +886,14 @@ let PSegmentContainer = class PSegmentContainer {
|
|
|
862
886
|
this.el = r.nativeElement;
|
|
863
887
|
}
|
|
864
888
|
};
|
|
865
|
-
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
866
|
-
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
889
|
+
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSegmentContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
890
|
+
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PSegmentContainer, selector: "p-segment-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
867
891
|
PSegmentContainer = __decorate([
|
|
868
892
|
ProxyCmp({
|
|
869
893
|
defineCustomElementFn: undefined
|
|
870
894
|
})
|
|
871
895
|
], PSegmentContainer);
|
|
872
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
896
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSegmentContainer, decorators: [{
|
|
873
897
|
type: Component,
|
|
874
898
|
args: [{
|
|
875
899
|
selector: 'p-segment-container',
|
|
@@ -884,15 +908,15 @@ let PSegmentItem = class PSegmentItem {
|
|
|
884
908
|
this.el = r.nativeElement;
|
|
885
909
|
}
|
|
886
910
|
};
|
|
887
|
-
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
888
|
-
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
911
|
+
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSegmentItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
912
|
+
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PSegmentItem, selector: "p-segment-item", inputs: { active: "active", icon: "icon", iconFlip: "iconFlip", iconRotate: "iconRotate" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
889
913
|
PSegmentItem = __decorate([
|
|
890
914
|
ProxyCmp({
|
|
891
915
|
defineCustomElementFn: undefined,
|
|
892
916
|
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
893
917
|
})
|
|
894
918
|
], PSegmentItem);
|
|
895
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSegmentItem, decorators: [{
|
|
896
920
|
type: Component,
|
|
897
921
|
args: [{
|
|
898
922
|
selector: 'p-segment-item',
|
|
@@ -901,6 +925,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
901
925
|
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
902
926
|
}]
|
|
903
927
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
928
|
+
let PSliderIndicator = class PSliderIndicator {
|
|
929
|
+
constructor(c, r, z) {
|
|
930
|
+
this.z = z;
|
|
931
|
+
c.detach();
|
|
932
|
+
this.el = r.nativeElement;
|
|
933
|
+
}
|
|
934
|
+
};
|
|
935
|
+
PSliderIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSliderIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
936
|
+
PSliderIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PSliderIndicator, selector: "p-slider-indicator", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
937
|
+
PSliderIndicator = __decorate([
|
|
938
|
+
ProxyCmp({
|
|
939
|
+
defineCustomElementFn: undefined,
|
|
940
|
+
inputs: ['active']
|
|
941
|
+
})
|
|
942
|
+
], PSliderIndicator);
|
|
943
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSliderIndicator, decorators: [{
|
|
944
|
+
type: Component,
|
|
945
|
+
args: [{
|
|
946
|
+
selector: 'p-slider-indicator',
|
|
947
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
948
|
+
template: '<ng-content></ng-content>',
|
|
949
|
+
inputs: ['active']
|
|
950
|
+
}]
|
|
951
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
904
952
|
let PStatus = class PStatus {
|
|
905
953
|
constructor(c, r, z) {
|
|
906
954
|
this.z = z;
|
|
@@ -908,15 +956,15 @@ let PStatus = class PStatus {
|
|
|
908
956
|
this.el = r.nativeElement;
|
|
909
957
|
}
|
|
910
958
|
};
|
|
911
|
-
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
912
|
-
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
959
|
+
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
960
|
+
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PStatus, selector: "p-status", inputs: { icon: "icon", iconFlip: "iconFlip", iconRotate: "iconRotate", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
913
961
|
PStatus = __decorate([
|
|
914
962
|
ProxyCmp({
|
|
915
963
|
defineCustomElementFn: undefined,
|
|
916
964
|
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
917
965
|
})
|
|
918
966
|
], PStatus);
|
|
919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
967
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStatus, decorators: [{
|
|
920
968
|
type: Component,
|
|
921
969
|
args: [{
|
|
922
970
|
selector: 'p-status',
|
|
@@ -932,15 +980,15 @@ let PStepper = class PStepper {
|
|
|
932
980
|
this.el = r.nativeElement;
|
|
933
981
|
}
|
|
934
982
|
};
|
|
935
|
-
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
936
|
-
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
983
|
+
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
984
|
+
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PStepper, selector: "p-stepper", inputs: { activeStep: "activeStep", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
937
985
|
PStepper = __decorate([
|
|
938
986
|
ProxyCmp({
|
|
939
987
|
defineCustomElementFn: undefined,
|
|
940
988
|
inputs: ['activeStep', 'direction']
|
|
941
989
|
})
|
|
942
990
|
], PStepper);
|
|
943
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepper, decorators: [{
|
|
944
992
|
type: Component,
|
|
945
993
|
args: [{
|
|
946
994
|
selector: 'p-stepper',
|
|
@@ -956,15 +1004,15 @@ let PStepperItem = class PStepperItem {
|
|
|
956
1004
|
this.el = r.nativeElement;
|
|
957
1005
|
}
|
|
958
1006
|
};
|
|
959
|
-
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
960
|
-
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1007
|
+
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepperItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1008
|
+
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PStepperItem, selector: "p-stepper-item", inputs: { active: "active", align: "align", direction: "direction", finished: "finished" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
961
1009
|
PStepperItem = __decorate([
|
|
962
1010
|
ProxyCmp({
|
|
963
1011
|
defineCustomElementFn: undefined,
|
|
964
1012
|
inputs: ['active', 'align', 'direction', 'finished']
|
|
965
1013
|
})
|
|
966
1014
|
], PStepperItem);
|
|
967
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1015
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepperItem, decorators: [{
|
|
968
1016
|
type: Component,
|
|
969
1017
|
args: [{
|
|
970
1018
|
selector: 'p-stepper-item',
|
|
@@ -980,15 +1028,15 @@ let PStepperLine = class PStepperLine {
|
|
|
980
1028
|
this.el = r.nativeElement;
|
|
981
1029
|
}
|
|
982
1030
|
};
|
|
983
|
-
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
984
|
-
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1031
|
+
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepperLine, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1032
|
+
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PStepperLine, selector: "p-stepper-line", inputs: { active: "active", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
985
1033
|
PStepperLine = __decorate([
|
|
986
1034
|
ProxyCmp({
|
|
987
1035
|
defineCustomElementFn: undefined,
|
|
988
1036
|
inputs: ['active', 'direction']
|
|
989
1037
|
})
|
|
990
1038
|
], PStepperLine);
|
|
991
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1039
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepperLine, decorators: [{
|
|
992
1040
|
type: Component,
|
|
993
1041
|
args: [{
|
|
994
1042
|
selector: 'p-stepper-line',
|
|
@@ -1004,14 +1052,14 @@ let PTabGroup = class PTabGroup {
|
|
|
1004
1052
|
this.el = r.nativeElement;
|
|
1005
1053
|
}
|
|
1006
1054
|
};
|
|
1007
|
-
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1008
|
-
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1055
|
+
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1056
|
+
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PTabGroup, selector: "p-tab-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1009
1057
|
PTabGroup = __decorate([
|
|
1010
1058
|
ProxyCmp({
|
|
1011
1059
|
defineCustomElementFn: undefined
|
|
1012
1060
|
})
|
|
1013
1061
|
], PTabGroup);
|
|
1014
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTabGroup, decorators: [{
|
|
1015
1063
|
type: Component,
|
|
1016
1064
|
args: [{
|
|
1017
1065
|
selector: 'p-tab-group',
|
|
@@ -1026,15 +1074,15 @@ let PTabItem = class PTabItem {
|
|
|
1026
1074
|
this.el = r.nativeElement;
|
|
1027
1075
|
}
|
|
1028
1076
|
};
|
|
1029
|
-
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1030
|
-
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1077
|
+
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1078
|
+
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PTabItem, selector: "p-tab-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1031
1079
|
PTabItem = __decorate([
|
|
1032
1080
|
ProxyCmp({
|
|
1033
1081
|
defineCustomElementFn: undefined,
|
|
1034
1082
|
inputs: ['active']
|
|
1035
1083
|
})
|
|
1036
1084
|
], PTabItem);
|
|
1037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTabItem, decorators: [{
|
|
1038
1086
|
type: Component,
|
|
1039
1087
|
args: [{
|
|
1040
1088
|
selector: 'p-tab-item',
|
|
@@ -1050,15 +1098,15 @@ let PTag = class PTag {
|
|
|
1050
1098
|
this.el = r.nativeElement;
|
|
1051
1099
|
}
|
|
1052
1100
|
};
|
|
1053
|
-
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1054
|
-
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1101
|
+
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1102
|
+
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PTag, selector: "p-tag", inputs: { circle: "circle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1055
1103
|
PTag = __decorate([
|
|
1056
1104
|
ProxyCmp({
|
|
1057
1105
|
defineCustomElementFn: undefined,
|
|
1058
1106
|
inputs: ['circle', 'variant']
|
|
1059
1107
|
})
|
|
1060
1108
|
], PTag);
|
|
1061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTag, decorators: [{
|
|
1062
1110
|
type: Component,
|
|
1063
1111
|
args: [{
|
|
1064
1112
|
selector: 'p-tag',
|
|
@@ -1075,15 +1123,15 @@ let PTooltip = class PTooltip {
|
|
|
1075
1123
|
proxyOutputs(this, this.el, ['isOpen']);
|
|
1076
1124
|
}
|
|
1077
1125
|
};
|
|
1078
|
-
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1079
|
-
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1126
|
+
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1127
|
+
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PTooltip, selector: "p-tooltip", inputs: { canManuallyClose: "canManuallyClose", placement: "placement", popover: "popover", show: "show", strategy: "strategy", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1080
1128
|
PTooltip = __decorate([
|
|
1081
1129
|
ProxyCmp({
|
|
1082
1130
|
defineCustomElementFn: undefined,
|
|
1083
1131
|
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
|
|
1084
1132
|
})
|
|
1085
1133
|
], PTooltip);
|
|
1086
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTooltip, decorators: [{
|
|
1087
1135
|
type: Component,
|
|
1088
1136
|
args: [{
|
|
1089
1137
|
selector: 'p-tooltip',
|
|
@@ -1101,6 +1149,7 @@ const DIRECTIVES = [
|
|
|
1101
1149
|
PCardBody,
|
|
1102
1150
|
PCardContainer,
|
|
1103
1151
|
PCardHeader,
|
|
1152
|
+
PContentSlider,
|
|
1104
1153
|
PCounter,
|
|
1105
1154
|
PDivider,
|
|
1106
1155
|
PDropdown,
|
|
@@ -1126,6 +1175,7 @@ const DIRECTIVES = [
|
|
|
1126
1175
|
PProfile,
|
|
1127
1176
|
PSegmentContainer,
|
|
1128
1177
|
PSegmentItem,
|
|
1178
|
+
PSliderIndicator,
|
|
1129
1179
|
PStatus,
|
|
1130
1180
|
PStepper,
|
|
1131
1181
|
PStepperItem,
|
|
@@ -1138,10 +1188,10 @@ const DIRECTIVES = [
|
|
|
1138
1188
|
|
|
1139
1189
|
class PaperlessModule {
|
|
1140
1190
|
}
|
|
1141
|
-
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1142
|
-
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
1143
|
-
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
1144
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1191
|
+
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1192
|
+
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.1", ngImport: i0, type: PaperlessModule, declarations: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective], exports: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective] });
|
|
1193
|
+
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaperlessModule });
|
|
1194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
1145
1195
|
type: NgModule,
|
|
1146
1196
|
args: [{
|
|
1147
1197
|
declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
@@ -1157,5 +1207,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
1157
1207
|
* Generated bundle index. Do not edit.
|
|
1158
1208
|
*/
|
|
1159
1209
|
|
|
1160
|
-
export { CUSTOM_DIRECTIVES, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective, PaperlessModule };
|
|
1210
|
+
export { CUSTOM_DIRECTIVES, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective, PaperlessModule };
|
|
1161
1211
|
//# sourceMappingURL=paperless-angular.mjs.map
|