@paperless/angular 0.1.0-alpha.60 → 0.1.0-alpha.64
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 +137 -112
- package/esm2020/lib/stencil/index.mjs +2 -1
- package/fesm2015/paperless-angular.mjs +147 -122
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +147 -122
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/paperless.module.d.ts +1 -1
- package/lib/stencil/components.d.ts +9 -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.
|
|
38
|
-
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.
|
|
39
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
37
|
+
ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
38
|
+
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", 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.
|
|
60
|
-
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.
|
|
59
|
+
PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
+
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", 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.
|
|
67
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", 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.
|
|
147
|
-
PAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
146
|
+
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", 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.0", 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.
|
|
154
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", 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.
|
|
171
|
-
PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
170
|
+
PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", 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.0", 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.
|
|
178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", 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.
|
|
195
|
-
PAvatarGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
194
|
+
PAvatarGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", 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.0", 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.
|
|
202
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", 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.
|
|
220
|
-
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
219
|
+
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", 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.0", 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" }, 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']
|
|
225
225
|
})
|
|
226
226
|
], PButton);
|
|
227
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", 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.
|
|
244
|
-
PCardBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
243
|
+
PCardBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", 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.0", 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.
|
|
251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", 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.
|
|
268
|
-
PCardContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
267
|
+
PCardContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", 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.0", 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.
|
|
275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", 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.
|
|
292
|
-
PCardHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
291
|
+
PCardHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", 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.0", 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.
|
|
299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCardHeader, decorators: [{
|
|
300
300
|
type: Component,
|
|
301
301
|
args: [{
|
|
302
302
|
selector: 'p-card-header',
|
|
@@ -312,14 +312,14 @@ let PCounter = class PCounter {
|
|
|
312
312
|
this.el = r.nativeElement;
|
|
313
313
|
}
|
|
314
314
|
};
|
|
315
|
-
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
316
|
-
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
315
|
+
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
316
|
+
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PCounter, selector: "p-counter", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
317
317
|
PCounter = __decorate([
|
|
318
318
|
ProxyCmp({
|
|
319
319
|
defineCustomElementFn: undefined
|
|
320
320
|
})
|
|
321
321
|
], PCounter);
|
|
322
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCounter, decorators: [{
|
|
323
323
|
type: Component,
|
|
324
324
|
args: [{
|
|
325
325
|
selector: 'p-counter',
|
|
@@ -334,14 +334,14 @@ let PDivider = class PDivider {
|
|
|
334
334
|
this.el = r.nativeElement;
|
|
335
335
|
}
|
|
336
336
|
};
|
|
337
|
-
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
338
|
-
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
337
|
+
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
338
|
+
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PDivider, selector: "p-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
339
339
|
PDivider = __decorate([
|
|
340
340
|
ProxyCmp({
|
|
341
341
|
defineCustomElementFn: undefined
|
|
342
342
|
})
|
|
343
343
|
], PDivider);
|
|
344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDivider, decorators: [{
|
|
345
345
|
type: Component,
|
|
346
346
|
args: [{
|
|
347
347
|
selector: 'p-divider',
|
|
@@ -357,15 +357,15 @@ let PDropdown = class PDropdown {
|
|
|
357
357
|
proxyOutputs(this, this.el, ['isOpen']);
|
|
358
358
|
}
|
|
359
359
|
};
|
|
360
|
-
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
361
|
-
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
360
|
+
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
361
|
+
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PDropdown, selector: "p-dropdown", inputs: { disableTriggerClick: "disableTriggerClick", insideClick: "insideClick", placement: "placement", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
362
362
|
PDropdown = __decorate([
|
|
363
363
|
ProxyCmp({
|
|
364
364
|
defineCustomElementFn: undefined,
|
|
365
365
|
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show']
|
|
366
366
|
})
|
|
367
367
|
], PDropdown);
|
|
368
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdown, decorators: [{
|
|
369
369
|
type: Component,
|
|
370
370
|
args: [{
|
|
371
371
|
selector: 'p-dropdown',
|
|
@@ -381,14 +381,14 @@ let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
|
381
381
|
this.el = r.nativeElement;
|
|
382
382
|
}
|
|
383
383
|
};
|
|
384
|
-
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
385
|
-
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
384
|
+
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdownMenuContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
385
|
+
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
386
386
|
PDropdownMenuContainer = __decorate([
|
|
387
387
|
ProxyCmp({
|
|
388
388
|
defineCustomElementFn: undefined
|
|
389
389
|
})
|
|
390
390
|
], PDropdownMenuContainer);
|
|
391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
|
|
392
392
|
type: Component,
|
|
393
393
|
args: [{
|
|
394
394
|
selector: 'p-dropdown-menu-container',
|
|
@@ -403,15 +403,15 @@ let PDropdownMenuItem = class PDropdownMenuItem {
|
|
|
403
403
|
this.el = r.nativeElement;
|
|
404
404
|
}
|
|
405
405
|
};
|
|
406
|
-
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
407
|
-
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
406
|
+
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdownMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
407
|
+
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PDropdownMenuItem, selector: "p-dropdown-menu-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
408
408
|
PDropdownMenuItem = __decorate([
|
|
409
409
|
ProxyCmp({
|
|
410
410
|
defineCustomElementFn: undefined,
|
|
411
411
|
inputs: ['active']
|
|
412
412
|
})
|
|
413
413
|
], PDropdownMenuItem);
|
|
414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdownMenuItem, decorators: [{
|
|
415
415
|
type: Component,
|
|
416
416
|
args: [{
|
|
417
417
|
selector: 'p-dropdown-menu-item',
|
|
@@ -427,14 +427,14 @@ let PHelper = class PHelper {
|
|
|
427
427
|
this.el = r.nativeElement;
|
|
428
428
|
}
|
|
429
429
|
};
|
|
430
|
-
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
431
|
-
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
430
|
+
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PHelper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
431
|
+
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PHelper, selector: "p-helper", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
432
432
|
PHelper = __decorate([
|
|
433
433
|
ProxyCmp({
|
|
434
434
|
defineCustomElementFn: undefined
|
|
435
435
|
})
|
|
436
436
|
], PHelper);
|
|
437
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
437
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PHelper, decorators: [{
|
|
438
438
|
type: Component,
|
|
439
439
|
args: [{
|
|
440
440
|
selector: 'p-helper',
|
|
@@ -449,15 +449,15 @@ let PIcon = class PIcon {
|
|
|
449
449
|
this.el = r.nativeElement;
|
|
450
450
|
}
|
|
451
451
|
};
|
|
452
|
-
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
453
|
-
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
452
|
+
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
453
|
+
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
454
454
|
PIcon = __decorate([
|
|
455
455
|
ProxyCmp({
|
|
456
456
|
defineCustomElementFn: undefined,
|
|
457
457
|
inputs: ['flip', 'rotate', 'size', 'variant']
|
|
458
458
|
})
|
|
459
459
|
], PIcon);
|
|
460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PIcon, decorators: [{
|
|
461
461
|
type: Component,
|
|
462
462
|
args: [{
|
|
463
463
|
selector: 'p-icon',
|
|
@@ -473,15 +473,15 @@ let PIllustration = class PIllustration {
|
|
|
473
473
|
this.el = r.nativeElement;
|
|
474
474
|
}
|
|
475
475
|
};
|
|
476
|
-
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
477
|
-
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
476
|
+
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PIllustration, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
477
|
+
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PIllustration, selector: "p-illustration", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
478
478
|
PIllustration = __decorate([
|
|
479
479
|
ProxyCmp({
|
|
480
480
|
defineCustomElementFn: undefined,
|
|
481
481
|
inputs: ['variant']
|
|
482
482
|
})
|
|
483
483
|
], PIllustration);
|
|
484
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PIllustration, decorators: [{
|
|
485
485
|
type: Component,
|
|
486
486
|
args: [{
|
|
487
487
|
selector: 'p-illustration',
|
|
@@ -497,15 +497,15 @@ let PInfoPanel = class PInfoPanel {
|
|
|
497
497
|
this.el = r.nativeElement;
|
|
498
498
|
}
|
|
499
499
|
};
|
|
500
|
-
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
501
|
-
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
500
|
+
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PInfoPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
501
|
+
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
502
502
|
PInfoPanel = __decorate([
|
|
503
503
|
ProxyCmp({
|
|
504
504
|
defineCustomElementFn: undefined,
|
|
505
505
|
inputs: ['closeable', 'content', 'header', 'variant']
|
|
506
506
|
})
|
|
507
507
|
], PInfoPanel);
|
|
508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
508
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PInfoPanel, decorators: [{
|
|
509
509
|
type: Component,
|
|
510
510
|
args: [{
|
|
511
511
|
selector: 'p-info-panel',
|
|
@@ -514,6 +514,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImpor
|
|
|
514
514
|
inputs: ['closeable', 'content', 'header', 'variant']
|
|
515
515
|
}]
|
|
516
516
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
517
|
+
let PInputGroup = class PInputGroup {
|
|
518
|
+
constructor(c, r, z) {
|
|
519
|
+
this.z = z;
|
|
520
|
+
c.detach();
|
|
521
|
+
this.el = r.nativeElement;
|
|
522
|
+
}
|
|
523
|
+
};
|
|
524
|
+
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
525
|
+
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PInputGroup, selector: "p-input-group", inputs: { error: "error", 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 });
|
|
526
|
+
PInputGroup = __decorate([
|
|
527
|
+
ProxyCmp({
|
|
528
|
+
defineCustomElementFn: undefined,
|
|
529
|
+
inputs: ['error', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'suffix']
|
|
530
|
+
})
|
|
531
|
+
], PInputGroup);
|
|
532
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PInputGroup, decorators: [{
|
|
533
|
+
type: Component,
|
|
534
|
+
args: [{
|
|
535
|
+
selector: 'p-input-group',
|
|
536
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
537
|
+
template: '<ng-content></ng-content>',
|
|
538
|
+
inputs: ['error', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'suffix']
|
|
539
|
+
}]
|
|
540
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
517
541
|
let PLoader = class PLoader {
|
|
518
542
|
constructor(c, r, z) {
|
|
519
543
|
this.z = z;
|
|
@@ -521,15 +545,15 @@ let PLoader = class PLoader {
|
|
|
521
545
|
this.el = r.nativeElement;
|
|
522
546
|
}
|
|
523
547
|
};
|
|
524
|
-
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
525
|
-
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
548
|
+
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
549
|
+
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
526
550
|
PLoader = __decorate([
|
|
527
551
|
ProxyCmp({
|
|
528
552
|
defineCustomElementFn: undefined,
|
|
529
553
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
530
554
|
})
|
|
531
555
|
], PLoader);
|
|
532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PLoader, decorators: [{
|
|
533
557
|
type: Component,
|
|
534
558
|
args: [{
|
|
535
559
|
selector: 'p-loader',
|
|
@@ -545,15 +569,15 @@ let PModal = class PModal {
|
|
|
545
569
|
this.el = r.nativeElement;
|
|
546
570
|
}
|
|
547
571
|
};
|
|
548
|
-
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
549
|
-
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
572
|
+
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
573
|
+
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModal, selector: "p-modal", inputs: { header: "header", show: "show", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
550
574
|
PModal = __decorate([
|
|
551
575
|
ProxyCmp({
|
|
552
576
|
defineCustomElementFn: undefined,
|
|
553
577
|
inputs: ['header', 'show', 'size', 'variant']
|
|
554
578
|
})
|
|
555
579
|
], PModal);
|
|
556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModal, decorators: [{
|
|
557
581
|
type: Component,
|
|
558
582
|
args: [{
|
|
559
583
|
selector: 'p-modal',
|
|
@@ -569,14 +593,14 @@ let PModalBackdrop = class PModalBackdrop {
|
|
|
569
593
|
this.el = r.nativeElement;
|
|
570
594
|
}
|
|
571
595
|
};
|
|
572
|
-
PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
573
|
-
PModalBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
596
|
+
PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
597
|
+
PModalBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalBackdrop, selector: "p-modal-backdrop", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
574
598
|
PModalBackdrop = __decorate([
|
|
575
599
|
ProxyCmp({
|
|
576
600
|
defineCustomElementFn: undefined
|
|
577
601
|
})
|
|
578
602
|
], PModalBackdrop);
|
|
579
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalBackdrop, decorators: [{
|
|
580
604
|
type: Component,
|
|
581
605
|
args: [{
|
|
582
606
|
selector: 'p-modal-backdrop',
|
|
@@ -591,15 +615,15 @@ let PModalBody = class PModalBody {
|
|
|
591
615
|
this.el = r.nativeElement;
|
|
592
616
|
}
|
|
593
617
|
};
|
|
594
|
-
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
595
|
-
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
618
|
+
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
619
|
+
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalBody, selector: "p-modal-body", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
596
620
|
PModalBody = __decorate([
|
|
597
621
|
ProxyCmp({
|
|
598
622
|
defineCustomElementFn: undefined,
|
|
599
623
|
inputs: ['variant']
|
|
600
624
|
})
|
|
601
625
|
], PModalBody);
|
|
602
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalBody, decorators: [{
|
|
603
627
|
type: Component,
|
|
604
628
|
args: [{
|
|
605
629
|
selector: 'p-modal-body',
|
|
@@ -615,15 +639,15 @@ let PModalContainer = class PModalContainer {
|
|
|
615
639
|
this.el = r.nativeElement;
|
|
616
640
|
}
|
|
617
641
|
};
|
|
618
|
-
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
619
|
-
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
642
|
+
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
643
|
+
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalContainer, selector: "p-modal-container", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
620
644
|
PModalContainer = __decorate([
|
|
621
645
|
ProxyCmp({
|
|
622
646
|
defineCustomElementFn: undefined,
|
|
623
647
|
inputs: ['size']
|
|
624
648
|
})
|
|
625
649
|
], PModalContainer);
|
|
626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
650
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalContainer, decorators: [{
|
|
627
651
|
type: Component,
|
|
628
652
|
args: [{
|
|
629
653
|
selector: 'p-modal-container',
|
|
@@ -639,14 +663,14 @@ let PModalFooter = class PModalFooter {
|
|
|
639
663
|
this.el = r.nativeElement;
|
|
640
664
|
}
|
|
641
665
|
};
|
|
642
|
-
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
643
|
-
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
666
|
+
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
667
|
+
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalFooter, selector: "p-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
644
668
|
PModalFooter = __decorate([
|
|
645
669
|
ProxyCmp({
|
|
646
670
|
defineCustomElementFn: undefined
|
|
647
671
|
})
|
|
648
672
|
], PModalFooter);
|
|
649
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalFooter, decorators: [{
|
|
650
674
|
type: Component,
|
|
651
675
|
args: [{
|
|
652
676
|
selector: 'p-modal-footer',
|
|
@@ -661,14 +685,14 @@ let PModalHeader = class PModalHeader {
|
|
|
661
685
|
this.el = r.nativeElement;
|
|
662
686
|
}
|
|
663
687
|
};
|
|
664
|
-
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
665
|
-
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
688
|
+
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
689
|
+
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalHeader, selector: "p-modal-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
666
690
|
PModalHeader = __decorate([
|
|
667
691
|
ProxyCmp({
|
|
668
692
|
defineCustomElementFn: undefined
|
|
669
693
|
})
|
|
670
694
|
], PModalHeader);
|
|
671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
695
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalHeader, decorators: [{
|
|
672
696
|
type: Component,
|
|
673
697
|
args: [{
|
|
674
698
|
selector: 'p-modal-header',
|
|
@@ -683,15 +707,15 @@ let PNavigationItem = class PNavigationItem {
|
|
|
683
707
|
this.el = r.nativeElement;
|
|
684
708
|
}
|
|
685
709
|
};
|
|
686
|
-
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
687
|
-
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
710
|
+
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
711
|
+
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
688
712
|
PNavigationItem = __decorate([
|
|
689
713
|
ProxyCmp({
|
|
690
714
|
defineCustomElementFn: undefined,
|
|
691
715
|
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
692
716
|
})
|
|
693
717
|
], PNavigationItem);
|
|
694
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
718
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PNavigationItem, decorators: [{
|
|
695
719
|
type: Component,
|
|
696
720
|
args: [{
|
|
697
721
|
selector: 'p-navigation-item',
|
|
@@ -708,15 +732,15 @@ let PPagination = class PPagination {
|
|
|
708
732
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
709
733
|
}
|
|
710
734
|
};
|
|
711
|
-
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
712
|
-
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
735
|
+
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
736
|
+
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
713
737
|
PPagination = __decorate([
|
|
714
738
|
ProxyCmp({
|
|
715
739
|
defineCustomElementFn: undefined,
|
|
716
740
|
inputs: ['page', 'pageSize', 'total']
|
|
717
741
|
})
|
|
718
742
|
], PPagination);
|
|
719
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PPagination, decorators: [{
|
|
720
744
|
type: Component,
|
|
721
745
|
args: [{
|
|
722
746
|
selector: 'p-pagination',
|
|
@@ -732,15 +756,15 @@ let PPaginationItem = class PPaginationItem {
|
|
|
732
756
|
this.el = r.nativeElement;
|
|
733
757
|
}
|
|
734
758
|
};
|
|
735
|
-
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
736
|
-
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
759
|
+
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PPaginationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
760
|
+
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PPaginationItem, selector: "p-pagination-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
737
761
|
PPaginationItem = __decorate([
|
|
738
762
|
ProxyCmp({
|
|
739
763
|
defineCustomElementFn: undefined,
|
|
740
764
|
inputs: ['active']
|
|
741
765
|
})
|
|
742
766
|
], PPaginationItem);
|
|
743
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PPaginationItem, decorators: [{
|
|
744
768
|
type: Component,
|
|
745
769
|
args: [{
|
|
746
770
|
selector: 'p-pagination-item',
|
|
@@ -756,14 +780,14 @@ let PProfile = class PProfile {
|
|
|
756
780
|
this.el = r.nativeElement;
|
|
757
781
|
}
|
|
758
782
|
};
|
|
759
|
-
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
760
|
-
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
783
|
+
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PProfile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
784
|
+
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PProfile, selector: "p-profile", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
761
785
|
PProfile = __decorate([
|
|
762
786
|
ProxyCmp({
|
|
763
787
|
defineCustomElementFn: undefined
|
|
764
788
|
})
|
|
765
789
|
], PProfile);
|
|
766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
790
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PProfile, decorators: [{
|
|
767
791
|
type: Component,
|
|
768
792
|
args: [{
|
|
769
793
|
selector: 'p-profile',
|
|
@@ -778,14 +802,14 @@ let PSegmentContainer = class PSegmentContainer {
|
|
|
778
802
|
this.el = r.nativeElement;
|
|
779
803
|
}
|
|
780
804
|
};
|
|
781
|
-
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
782
|
-
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
805
|
+
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PSegmentContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
806
|
+
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PSegmentContainer, selector: "p-segment-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
783
807
|
PSegmentContainer = __decorate([
|
|
784
808
|
ProxyCmp({
|
|
785
809
|
defineCustomElementFn: undefined
|
|
786
810
|
})
|
|
787
811
|
], PSegmentContainer);
|
|
788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
812
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PSegmentContainer, decorators: [{
|
|
789
813
|
type: Component,
|
|
790
814
|
args: [{
|
|
791
815
|
selector: 'p-segment-container',
|
|
@@ -800,15 +824,15 @@ let PSegmentItem = class PSegmentItem {
|
|
|
800
824
|
this.el = r.nativeElement;
|
|
801
825
|
}
|
|
802
826
|
};
|
|
803
|
-
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
804
|
-
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
827
|
+
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PSegmentItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
828
|
+
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
805
829
|
PSegmentItem = __decorate([
|
|
806
830
|
ProxyCmp({
|
|
807
831
|
defineCustomElementFn: undefined,
|
|
808
832
|
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
809
833
|
})
|
|
810
834
|
], PSegmentItem);
|
|
811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
835
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PSegmentItem, decorators: [{
|
|
812
836
|
type: Component,
|
|
813
837
|
args: [{
|
|
814
838
|
selector: 'p-segment-item',
|
|
@@ -824,15 +848,15 @@ let PStatus = class PStatus {
|
|
|
824
848
|
this.el = r.nativeElement;
|
|
825
849
|
}
|
|
826
850
|
};
|
|
827
|
-
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
828
|
-
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
851
|
+
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
852
|
+
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
829
853
|
PStatus = __decorate([
|
|
830
854
|
ProxyCmp({
|
|
831
855
|
defineCustomElementFn: undefined,
|
|
832
856
|
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
833
857
|
})
|
|
834
858
|
], PStatus);
|
|
835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStatus, decorators: [{
|
|
836
860
|
type: Component,
|
|
837
861
|
args: [{
|
|
838
862
|
selector: 'p-status',
|
|
@@ -848,15 +872,15 @@ let PStepper = class PStepper {
|
|
|
848
872
|
this.el = r.nativeElement;
|
|
849
873
|
}
|
|
850
874
|
};
|
|
851
|
-
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
852
|
-
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
875
|
+
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
876
|
+
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PStepper, selector: "p-stepper", inputs: { activeStep: "activeStep", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
853
877
|
PStepper = __decorate([
|
|
854
878
|
ProxyCmp({
|
|
855
879
|
defineCustomElementFn: undefined,
|
|
856
880
|
inputs: ['activeStep', 'direction']
|
|
857
881
|
})
|
|
858
882
|
], PStepper);
|
|
859
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepper, decorators: [{
|
|
860
884
|
type: Component,
|
|
861
885
|
args: [{
|
|
862
886
|
selector: 'p-stepper',
|
|
@@ -872,15 +896,15 @@ let PStepperItem = class PStepperItem {
|
|
|
872
896
|
this.el = r.nativeElement;
|
|
873
897
|
}
|
|
874
898
|
};
|
|
875
|
-
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
876
|
-
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
899
|
+
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepperItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
900
|
+
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
877
901
|
PStepperItem = __decorate([
|
|
878
902
|
ProxyCmp({
|
|
879
903
|
defineCustomElementFn: undefined,
|
|
880
904
|
inputs: ['active', 'align', 'direction', 'finished']
|
|
881
905
|
})
|
|
882
906
|
], PStepperItem);
|
|
883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
907
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepperItem, decorators: [{
|
|
884
908
|
type: Component,
|
|
885
909
|
args: [{
|
|
886
910
|
selector: 'p-stepper-item',
|
|
@@ -896,15 +920,15 @@ let PStepperLine = class PStepperLine {
|
|
|
896
920
|
this.el = r.nativeElement;
|
|
897
921
|
}
|
|
898
922
|
};
|
|
899
|
-
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
900
|
-
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
923
|
+
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepperLine, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
924
|
+
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PStepperLine, selector: "p-stepper-line", inputs: { active: "active", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
901
925
|
PStepperLine = __decorate([
|
|
902
926
|
ProxyCmp({
|
|
903
927
|
defineCustomElementFn: undefined,
|
|
904
928
|
inputs: ['active', 'direction']
|
|
905
929
|
})
|
|
906
930
|
], PStepperLine);
|
|
907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
931
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepperLine, decorators: [{
|
|
908
932
|
type: Component,
|
|
909
933
|
args: [{
|
|
910
934
|
selector: 'p-stepper-line',
|
|
@@ -920,14 +944,14 @@ let PTabGroup = class PTabGroup {
|
|
|
920
944
|
this.el = r.nativeElement;
|
|
921
945
|
}
|
|
922
946
|
};
|
|
923
|
-
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
924
|
-
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
947
|
+
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
948
|
+
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PTabGroup, selector: "p-tab-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
925
949
|
PTabGroup = __decorate([
|
|
926
950
|
ProxyCmp({
|
|
927
951
|
defineCustomElementFn: undefined
|
|
928
952
|
})
|
|
929
953
|
], PTabGroup);
|
|
930
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
954
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTabGroup, decorators: [{
|
|
931
955
|
type: Component,
|
|
932
956
|
args: [{
|
|
933
957
|
selector: 'p-tab-group',
|
|
@@ -942,15 +966,15 @@ let PTabItem = class PTabItem {
|
|
|
942
966
|
this.el = r.nativeElement;
|
|
943
967
|
}
|
|
944
968
|
};
|
|
945
|
-
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
946
|
-
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
969
|
+
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
970
|
+
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PTabItem, selector: "p-tab-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
947
971
|
PTabItem = __decorate([
|
|
948
972
|
ProxyCmp({
|
|
949
973
|
defineCustomElementFn: undefined,
|
|
950
974
|
inputs: ['active']
|
|
951
975
|
})
|
|
952
976
|
], PTabItem);
|
|
953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
977
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTabItem, decorators: [{
|
|
954
978
|
type: Component,
|
|
955
979
|
args: [{
|
|
956
980
|
selector: 'p-tab-item',
|
|
@@ -966,15 +990,15 @@ let PTag = class PTag {
|
|
|
966
990
|
this.el = r.nativeElement;
|
|
967
991
|
}
|
|
968
992
|
};
|
|
969
|
-
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
970
|
-
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
993
|
+
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
994
|
+
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PTag, selector: "p-tag", inputs: { circle: "circle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
971
995
|
PTag = __decorate([
|
|
972
996
|
ProxyCmp({
|
|
973
997
|
defineCustomElementFn: undefined,
|
|
974
998
|
inputs: ['circle', 'variant']
|
|
975
999
|
})
|
|
976
1000
|
], PTag);
|
|
977
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
1001
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTag, decorators: [{
|
|
978
1002
|
type: Component,
|
|
979
1003
|
args: [{
|
|
980
1004
|
selector: 'p-tag',
|
|
@@ -990,15 +1014,15 @@ let PTooltip = class PTooltip {
|
|
|
990
1014
|
this.el = r.nativeElement;
|
|
991
1015
|
}
|
|
992
1016
|
};
|
|
993
|
-
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
994
|
-
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.
|
|
1017
|
+
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1018
|
+
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PTooltip, selector: "p-tooltip", inputs: { canManuallyClose: "canManuallyClose", placement: "placement", popover: "popover", show: "show", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
995
1019
|
PTooltip = __decorate([
|
|
996
1020
|
ProxyCmp({
|
|
997
1021
|
defineCustomElementFn: undefined,
|
|
998
1022
|
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
999
1023
|
})
|
|
1000
1024
|
], PTooltip);
|
|
1001
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
1025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTooltip, decorators: [{
|
|
1002
1026
|
type: Component,
|
|
1003
1027
|
args: [{
|
|
1004
1028
|
selector: 'p-tooltip',
|
|
@@ -1025,6 +1049,7 @@ const DIRECTIVES = [
|
|
|
1025
1049
|
PIcon,
|
|
1026
1050
|
PIllustration,
|
|
1027
1051
|
PInfoPanel,
|
|
1052
|
+
PInputGroup,
|
|
1028
1053
|
PLoader,
|
|
1029
1054
|
PModal,
|
|
1030
1055
|
PModalBackdrop,
|
|
@@ -1050,10 +1075,10 @@ const DIRECTIVES = [
|
|
|
1050
1075
|
|
|
1051
1076
|
class PaperlessModule {
|
|
1052
1077
|
}
|
|
1053
|
-
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.
|
|
1054
|
-
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.
|
|
1055
|
-
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.
|
|
1056
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.
|
|
1078
|
+
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1079
|
+
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: PaperlessModule, declarations: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective], exports: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective] });
|
|
1080
|
+
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PaperlessModule });
|
|
1081
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
1057
1082
|
type: NgModule,
|
|
1058
1083
|
args: [{
|
|
1059
1084
|
declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
@@ -1069,5 +1094,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImpor
|
|
|
1069
1094
|
* Generated bundle index. Do not edit.
|
|
1070
1095
|
*/
|
|
1071
1096
|
|
|
1072
|
-
export { CUSTOM_DIRECTIVES, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective, PaperlessModule };
|
|
1097
|
+
export { CUSTOM_DIRECTIVES, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective, PaperlessModule };
|
|
1073
1098
|
//# sourceMappingURL=paperless-angular.mjs.map
|