@paperless/angular 0.1.0-alpha.127 → 0.1.0-alpha.129
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 +336 -135
- package/esm2020/lib/stencil/index.mjs +9 -1
- package/fesm2015/paperless-angular.mjs +346 -145
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +346 -145
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/paperless.module.d.ts +1 -1
- package/lib/stencil/components.d.ts +159 -5
- 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.6", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
38
|
+
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.6", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", 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.6", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
+
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.6", 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.6", 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.6", 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.6", 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.6", 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.6", 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.6", 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.6", 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.6", 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.6", 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.6", ngImport: i0, type: PAvatarGroup, decorators: [{
|
|
203
203
|
type: Component,
|
|
204
204
|
args: [{
|
|
205
205
|
selector: 'p-avatar-group',
|
|
@@ -216,21 +216,21 @@ 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.6", 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.6", type: PButton, selector: "p-button", inputs: { chevron: "chevron", chevronPosition: "chevronPosition", 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
|
-
inputs: ['chevron', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant', 'width']
|
|
224
|
+
inputs: ['chevron', 'chevronPosition', '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.6", ngImport: i0, type: PButton, decorators: [{
|
|
228
228
|
type: Component,
|
|
229
229
|
args: [{
|
|
230
230
|
selector: 'p-button',
|
|
231
231
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
232
232
|
template: '<ng-content></ng-content>',
|
|
233
|
-
inputs: ['chevron', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant', 'width']
|
|
233
|
+
inputs: ['chevron', 'chevronPosition', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant', 'width']
|
|
234
234
|
}]
|
|
235
235
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
236
236
|
let PCardBody = class PCardBody {
|
|
@@ -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.6", 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.6", 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.6", 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.6", 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.6", 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.6", 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.6", 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.6", 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.6", ngImport: i0, type: PCardHeader, decorators: [{
|
|
300
300
|
type: Component,
|
|
301
301
|
args: [{
|
|
302
302
|
selector: 'p-card-header',
|
|
@@ -312,15 +312,15 @@ let PContentSlider = class PContentSlider {
|
|
|
312
312
|
this.el = r.nativeElement;
|
|
313
313
|
}
|
|
314
314
|
};
|
|
315
|
-
PContentSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
316
|
-
PContentSlider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
315
|
+
PContentSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PContentSlider, selector: "p-content-slider", inputs: { disableAutoCenter: "disableAutoCenter", disableDrag: "disableDrag", disableIndicatorClick: "disableIndicatorClick", hideMobileIndicator: "hideMobileIndicator" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
317
317
|
PContentSlider = __decorate([
|
|
318
318
|
ProxyCmp({
|
|
319
319
|
defineCustomElementFn: undefined,
|
|
320
320
|
inputs: ['disableAutoCenter', 'disableDrag', 'disableIndicatorClick', 'hideMobileIndicator']
|
|
321
321
|
})
|
|
322
322
|
], PContentSlider);
|
|
323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PContentSlider, decorators: [{
|
|
324
324
|
type: Component,
|
|
325
325
|
args: [{
|
|
326
326
|
selector: 'p-content-slider',
|
|
@@ -336,15 +336,15 @@ let PCounter = class PCounter {
|
|
|
336
336
|
this.el = r.nativeElement;
|
|
337
337
|
}
|
|
338
338
|
};
|
|
339
|
-
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
340
|
-
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
339
|
+
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PCounter, selector: "p-counter", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
341
341
|
PCounter = __decorate([
|
|
342
342
|
ProxyCmp({
|
|
343
343
|
defineCustomElementFn: undefined,
|
|
344
344
|
inputs: ['size', 'variant']
|
|
345
345
|
})
|
|
346
346
|
], PCounter);
|
|
347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
347
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PCounter, decorators: [{
|
|
348
348
|
type: Component,
|
|
349
349
|
args: [{
|
|
350
350
|
selector: 'p-counter',
|
|
@@ -360,14 +360,14 @@ let PDivider = class PDivider {
|
|
|
360
360
|
this.el = r.nativeElement;
|
|
361
361
|
}
|
|
362
362
|
};
|
|
363
|
-
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
364
|
-
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
363
|
+
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PDivider, selector: "p-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
365
365
|
PDivider = __decorate([
|
|
366
366
|
ProxyCmp({
|
|
367
367
|
defineCustomElementFn: undefined
|
|
368
368
|
})
|
|
369
369
|
], PDivider);
|
|
370
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PDivider, decorators: [{
|
|
371
371
|
type: Component,
|
|
372
372
|
args: [{
|
|
373
373
|
selector: 'p-divider',
|
|
@@ -383,21 +383,21 @@ let PDropdown = class PDropdown {
|
|
|
383
383
|
proxyOutputs(this, this.el, ['isOpen']);
|
|
384
384
|
}
|
|
385
385
|
};
|
|
386
|
-
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
387
|
-
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
386
|
+
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PDropdown, selector: "p-dropdown", inputs: { chevronDirection: "chevronDirection", chevronPosition: "chevronPosition", disableTriggerClick: "disableTriggerClick", insideClick: "insideClick", placement: "placement", show: "show", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
388
388
|
PDropdown = __decorate([
|
|
389
389
|
ProxyCmp({
|
|
390
390
|
defineCustomElementFn: undefined,
|
|
391
|
-
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
391
|
+
inputs: ['chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
392
392
|
})
|
|
393
393
|
], PDropdown);
|
|
394
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
394
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PDropdown, decorators: [{
|
|
395
395
|
type: Component,
|
|
396
396
|
args: [{
|
|
397
397
|
selector: 'p-dropdown',
|
|
398
398
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
399
399
|
template: '<ng-content></ng-content>',
|
|
400
|
-
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
400
|
+
inputs: ['chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
401
401
|
}]
|
|
402
402
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
403
403
|
let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
@@ -407,14 +407,14 @@ let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
|
407
407
|
this.el = r.nativeElement;
|
|
408
408
|
}
|
|
409
409
|
};
|
|
410
|
-
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
411
|
-
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
410
|
+
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
412
412
|
PDropdownMenuContainer = __decorate([
|
|
413
413
|
ProxyCmp({
|
|
414
414
|
defineCustomElementFn: undefined
|
|
415
415
|
})
|
|
416
416
|
], PDropdownMenuContainer);
|
|
417
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
|
|
418
418
|
type: Component,
|
|
419
419
|
args: [{
|
|
420
420
|
selector: 'p-dropdown-menu-container',
|
|
@@ -429,15 +429,15 @@ let PDropdownMenuItem = class PDropdownMenuItem {
|
|
|
429
429
|
this.el = r.nativeElement;
|
|
430
430
|
}
|
|
431
431
|
};
|
|
432
|
-
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
433
|
-
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
432
|
+
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", 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 });
|
|
434
434
|
PDropdownMenuItem = __decorate([
|
|
435
435
|
ProxyCmp({
|
|
436
436
|
defineCustomElementFn: undefined,
|
|
437
437
|
inputs: ['active', 'icon']
|
|
438
438
|
})
|
|
439
439
|
], PDropdownMenuItem);
|
|
440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
440
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PDropdownMenuItem, decorators: [{
|
|
441
441
|
type: Component,
|
|
442
442
|
args: [{
|
|
443
443
|
selector: 'p-dropdown-menu-item',
|
|
@@ -453,15 +453,15 @@ let PHelper = class PHelper {
|
|
|
453
453
|
this.el = r.nativeElement;
|
|
454
454
|
}
|
|
455
455
|
};
|
|
456
|
-
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
457
|
-
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
456
|
+
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PHelper, selector: "p-helper", inputs: { placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
458
458
|
PHelper = __decorate([
|
|
459
459
|
ProxyCmp({
|
|
460
460
|
defineCustomElementFn: undefined,
|
|
461
461
|
inputs: ['placement']
|
|
462
462
|
})
|
|
463
463
|
], PHelper);
|
|
464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PHelper, decorators: [{
|
|
465
465
|
type: Component,
|
|
466
466
|
args: [{
|
|
467
467
|
selector: 'p-helper',
|
|
@@ -477,15 +477,15 @@ let PIcon = class PIcon {
|
|
|
477
477
|
this.el = r.nativeElement;
|
|
478
478
|
}
|
|
479
479
|
};
|
|
480
|
-
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
481
|
-
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
480
|
+
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", 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 });
|
|
482
482
|
PIcon = __decorate([
|
|
483
483
|
ProxyCmp({
|
|
484
484
|
defineCustomElementFn: undefined,
|
|
485
485
|
inputs: ['flip', 'rotate', 'size', 'variant']
|
|
486
486
|
})
|
|
487
487
|
], PIcon);
|
|
488
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PIcon, decorators: [{
|
|
489
489
|
type: Component,
|
|
490
490
|
args: [{
|
|
491
491
|
selector: 'p-icon',
|
|
@@ -501,15 +501,15 @@ let PIllustration = class PIllustration {
|
|
|
501
501
|
this.el = r.nativeElement;
|
|
502
502
|
}
|
|
503
503
|
};
|
|
504
|
-
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
505
|
-
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
504
|
+
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PIllustration, selector: "p-illustration", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
506
506
|
PIllustration = __decorate([
|
|
507
507
|
ProxyCmp({
|
|
508
508
|
defineCustomElementFn: undefined,
|
|
509
509
|
inputs: ['variant']
|
|
510
510
|
})
|
|
511
511
|
], PIllustration);
|
|
512
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PIllustration, decorators: [{
|
|
513
513
|
type: Component,
|
|
514
514
|
args: [{
|
|
515
515
|
selector: 'p-illustration',
|
|
@@ -525,15 +525,15 @@ let PInfoPanel = class PInfoPanel {
|
|
|
525
525
|
this.el = r.nativeElement;
|
|
526
526
|
}
|
|
527
527
|
};
|
|
528
|
-
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
529
|
-
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
528
|
+
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", 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 });
|
|
530
530
|
PInfoPanel = __decorate([
|
|
531
531
|
ProxyCmp({
|
|
532
532
|
defineCustomElementFn: undefined,
|
|
533
533
|
inputs: ['closeable', 'content', 'header', 'variant']
|
|
534
534
|
})
|
|
535
535
|
], PInfoPanel);
|
|
536
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PInfoPanel, decorators: [{
|
|
537
537
|
type: Component,
|
|
538
538
|
args: [{
|
|
539
539
|
selector: 'p-info-panel',
|
|
@@ -549,21 +549,21 @@ let PInputGroup = class PInputGroup {
|
|
|
549
549
|
this.el = r.nativeElement;
|
|
550
550
|
}
|
|
551
551
|
};
|
|
552
|
-
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
553
|
-
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
552
|
+
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", 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", size: "size", suffix: "suffix" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
554
554
|
PInputGroup = __decorate([
|
|
555
555
|
ProxyCmp({
|
|
556
556
|
defineCustomElementFn: undefined,
|
|
557
|
-
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'suffix']
|
|
557
|
+
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
|
|
558
558
|
})
|
|
559
559
|
], PInputGroup);
|
|
560
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PInputGroup, decorators: [{
|
|
561
561
|
type: Component,
|
|
562
562
|
args: [{
|
|
563
563
|
selector: 'p-input-group',
|
|
564
564
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
565
565
|
template: '<ng-content></ng-content>',
|
|
566
|
-
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'suffix']
|
|
566
|
+
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
|
|
567
567
|
}]
|
|
568
568
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
569
569
|
let PLayout = class PLayout {
|
|
@@ -573,15 +573,15 @@ let PLayout = class PLayout {
|
|
|
573
573
|
this.el = r.nativeElement;
|
|
574
574
|
}
|
|
575
575
|
};
|
|
576
|
-
PLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
577
|
-
PLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
576
|
+
PLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PLayout, selector: "p-layout", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
578
578
|
PLayout = __decorate([
|
|
579
579
|
ProxyCmp({
|
|
580
580
|
defineCustomElementFn: undefined,
|
|
581
581
|
inputs: ['variant']
|
|
582
582
|
})
|
|
583
583
|
], PLayout);
|
|
584
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PLayout, decorators: [{
|
|
585
585
|
type: Component,
|
|
586
586
|
args: [{
|
|
587
587
|
selector: 'p-layout',
|
|
@@ -597,15 +597,15 @@ let PLoader = class PLoader {
|
|
|
597
597
|
this.el = r.nativeElement;
|
|
598
598
|
}
|
|
599
599
|
};
|
|
600
|
-
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
601
|
-
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
600
|
+
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", 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 });
|
|
602
602
|
PLoader = __decorate([
|
|
603
603
|
ProxyCmp({
|
|
604
604
|
defineCustomElementFn: undefined,
|
|
605
605
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
606
606
|
})
|
|
607
607
|
], PLoader);
|
|
608
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PLoader, decorators: [{
|
|
609
609
|
type: Component,
|
|
610
610
|
args: [{
|
|
611
611
|
selector: 'p-loader',
|
|
@@ -622,15 +622,15 @@ let PModal = class PModal {
|
|
|
622
622
|
proxyOutputs(this, this.el, ['close']);
|
|
623
623
|
}
|
|
624
624
|
};
|
|
625
|
-
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
626
|
-
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
625
|
+
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", 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 });
|
|
627
627
|
PModal = __decorate([
|
|
628
628
|
ProxyCmp({
|
|
629
629
|
defineCustomElementFn: undefined,
|
|
630
630
|
inputs: ['header', 'show', 'showMobileClose', 'showMobileFooter', 'size', 'variant']
|
|
631
631
|
})
|
|
632
632
|
], PModal);
|
|
633
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModal, decorators: [{
|
|
634
634
|
type: Component,
|
|
635
635
|
args: [{
|
|
636
636
|
selector: 'p-modal',
|
|
@@ -646,14 +646,14 @@ let PModalBackdrop = class PModalBackdrop {
|
|
|
646
646
|
this.el = r.nativeElement;
|
|
647
647
|
}
|
|
648
648
|
};
|
|
649
|
-
PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
650
|
-
PModalBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
649
|
+
PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PModalBackdrop, selector: "p-modal-backdrop", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
651
651
|
PModalBackdrop = __decorate([
|
|
652
652
|
ProxyCmp({
|
|
653
653
|
defineCustomElementFn: undefined
|
|
654
654
|
})
|
|
655
655
|
], PModalBackdrop);
|
|
656
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalBackdrop, decorators: [{
|
|
657
657
|
type: Component,
|
|
658
658
|
args: [{
|
|
659
659
|
selector: 'p-modal-backdrop',
|
|
@@ -668,15 +668,15 @@ let PModalBody = class PModalBody {
|
|
|
668
668
|
this.el = r.nativeElement;
|
|
669
669
|
}
|
|
670
670
|
};
|
|
671
|
-
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
672
|
-
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
671
|
+
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PModalBody, selector: "p-modal-body", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
673
673
|
PModalBody = __decorate([
|
|
674
674
|
ProxyCmp({
|
|
675
675
|
defineCustomElementFn: undefined,
|
|
676
676
|
inputs: ['variant']
|
|
677
677
|
})
|
|
678
678
|
], PModalBody);
|
|
679
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
679
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalBody, decorators: [{
|
|
680
680
|
type: Component,
|
|
681
681
|
args: [{
|
|
682
682
|
selector: 'p-modal-body',
|
|
@@ -692,15 +692,15 @@ let PModalContainer = class PModalContainer {
|
|
|
692
692
|
this.el = r.nativeElement;
|
|
693
693
|
}
|
|
694
694
|
};
|
|
695
|
-
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
696
|
-
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
695
|
+
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PModalContainer, selector: "p-modal-container", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
697
697
|
PModalContainer = __decorate([
|
|
698
698
|
ProxyCmp({
|
|
699
699
|
defineCustomElementFn: undefined,
|
|
700
700
|
inputs: ['size']
|
|
701
701
|
})
|
|
702
702
|
], PModalContainer);
|
|
703
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalContainer, decorators: [{
|
|
704
704
|
type: Component,
|
|
705
705
|
args: [{
|
|
706
706
|
selector: 'p-modal-container',
|
|
@@ -716,15 +716,15 @@ let PModalFooter = class PModalFooter {
|
|
|
716
716
|
this.el = r.nativeElement;
|
|
717
717
|
}
|
|
718
718
|
};
|
|
719
|
-
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
720
|
-
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
719
|
+
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PModalFooter, selector: "p-modal-footer", inputs: { hideOnMobile: "hideOnMobile" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
721
721
|
PModalFooter = __decorate([
|
|
722
722
|
ProxyCmp({
|
|
723
723
|
defineCustomElementFn: undefined,
|
|
724
724
|
inputs: ['hideOnMobile']
|
|
725
725
|
})
|
|
726
726
|
], PModalFooter);
|
|
727
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
727
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalFooter, decorators: [{
|
|
728
728
|
type: Component,
|
|
729
729
|
args: [{
|
|
730
730
|
selector: 'p-modal-footer',
|
|
@@ -741,15 +741,15 @@ let PModalHeader = class PModalHeader {
|
|
|
741
741
|
proxyOutputs(this, this.el, ['close']);
|
|
742
742
|
}
|
|
743
743
|
};
|
|
744
|
-
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
745
|
-
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
744
|
+
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PModalHeader, selector: "p-modal-header", inputs: { showMobileClose: "showMobileClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
746
746
|
PModalHeader = __decorate([
|
|
747
747
|
ProxyCmp({
|
|
748
748
|
defineCustomElementFn: undefined,
|
|
749
749
|
inputs: ['showMobileClose']
|
|
750
750
|
})
|
|
751
751
|
], PModalHeader);
|
|
752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalHeader, decorators: [{
|
|
753
753
|
type: Component,
|
|
754
754
|
args: [{
|
|
755
755
|
selector: 'p-modal-header',
|
|
@@ -765,15 +765,15 @@ let PNavbar = class PNavbar {
|
|
|
765
765
|
this.el = r.nativeElement;
|
|
766
766
|
}
|
|
767
767
|
};
|
|
768
|
-
PNavbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
769
|
-
PNavbar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
768
|
+
PNavbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", type: PNavbar, selector: "p-navbar", inputs: { closeText: "closeText", menuText: "menuText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
770
770
|
PNavbar = __decorate([
|
|
771
771
|
ProxyCmp({
|
|
772
772
|
defineCustomElementFn: undefined,
|
|
773
773
|
inputs: ['closeText', 'menuText']
|
|
774
774
|
})
|
|
775
775
|
], PNavbar);
|
|
776
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
776
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PNavbar, decorators: [{
|
|
777
777
|
type: Component,
|
|
778
778
|
args: [{
|
|
779
779
|
selector: 'p-navbar',
|
|
@@ -789,15 +789,15 @@ let PNavigationItem = class PNavigationItem {
|
|
|
789
789
|
this.el = r.nativeElement;
|
|
790
790
|
}
|
|
791
791
|
};
|
|
792
|
-
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
793
|
-
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
792
|
+
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", 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.6", 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 });
|
|
794
794
|
PNavigationItem = __decorate([
|
|
795
795
|
ProxyCmp({
|
|
796
796
|
defineCustomElementFn: undefined,
|
|
797
797
|
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
798
798
|
})
|
|
799
799
|
], PNavigationItem);
|
|
800
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PNavigationItem, decorators: [{
|
|
801
801
|
type: Component,
|
|
802
802
|
args: [{
|
|
803
803
|
selector: 'p-navigation-item',
|
|
@@ -806,6 +806,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.3", ngImpor
|
|
|
806
806
|
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
807
807
|
}]
|
|
808
808
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
809
|
+
let PPageSizeSelect = class PPageSizeSelect {
|
|
810
|
+
constructor(c, r, z) {
|
|
811
|
+
this.z = z;
|
|
812
|
+
c.detach();
|
|
813
|
+
this.el = r.nativeElement;
|
|
814
|
+
proxyOutputs(this, this.el, ['sizeChange']);
|
|
815
|
+
}
|
|
816
|
+
};
|
|
817
|
+
PPageSizeSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PPageSizeSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
818
|
+
PPageSizeSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PPageSizeSelect, selector: "p-page-size-select", inputs: { buttonSize: "buttonSize", buttonTemplate: "buttonTemplate", chevronPosition: "chevronPosition", itemTemplate: "itemTemplate", size: "size", sizeOptions: "sizeOptions" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
819
|
+
PPageSizeSelect = __decorate([
|
|
820
|
+
ProxyCmp({
|
|
821
|
+
defineCustomElementFn: undefined,
|
|
822
|
+
inputs: ['buttonSize', 'buttonTemplate', 'chevronPosition', 'itemTemplate', 'size', 'sizeOptions']
|
|
823
|
+
})
|
|
824
|
+
], PPageSizeSelect);
|
|
825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PPageSizeSelect, decorators: [{
|
|
826
|
+
type: Component,
|
|
827
|
+
args: [{
|
|
828
|
+
selector: 'p-page-size-select',
|
|
829
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
830
|
+
template: '<ng-content></ng-content>',
|
|
831
|
+
inputs: ['buttonSize', 'buttonTemplate', 'chevronPosition', 'itemTemplate', 'size', 'sizeOptions']
|
|
832
|
+
}]
|
|
833
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
809
834
|
let PPagination = class PPagination {
|
|
810
835
|
constructor(c, r, z) {
|
|
811
836
|
this.z = z;
|
|
@@ -814,21 +839,21 @@ let PPagination = class PPagination {
|
|
|
814
839
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
815
840
|
}
|
|
816
841
|
};
|
|
817
|
-
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
818
|
-
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
842
|
+
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
843
|
+
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PPagination, selector: "p-pagination", inputs: { hideOnSinglePage: "hideOnSinglePage", page: "page", pageSize: "pageSize", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
819
844
|
PPagination = __decorate([
|
|
820
845
|
ProxyCmp({
|
|
821
846
|
defineCustomElementFn: undefined,
|
|
822
|
-
inputs: ['page', 'pageSize', 'total']
|
|
847
|
+
inputs: ['hideOnSinglePage', 'page', 'pageSize', 'total']
|
|
823
848
|
})
|
|
824
849
|
], PPagination);
|
|
825
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
850
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PPagination, decorators: [{
|
|
826
851
|
type: Component,
|
|
827
852
|
args: [{
|
|
828
853
|
selector: 'p-pagination',
|
|
829
854
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
830
855
|
template: '<ng-content></ng-content>',
|
|
831
|
-
inputs: ['page', 'pageSize', 'total']
|
|
856
|
+
inputs: ['hideOnSinglePage', 'page', 'pageSize', 'total']
|
|
832
857
|
}]
|
|
833
858
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
834
859
|
let PPaginationItem = class PPaginationItem {
|
|
@@ -838,15 +863,15 @@ let PPaginationItem = class PPaginationItem {
|
|
|
838
863
|
this.el = r.nativeElement;
|
|
839
864
|
}
|
|
840
865
|
};
|
|
841
|
-
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
842
|
-
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
866
|
+
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PPaginationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
867
|
+
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PPaginationItem, selector: "p-pagination-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
843
868
|
PPaginationItem = __decorate([
|
|
844
869
|
ProxyCmp({
|
|
845
870
|
defineCustomElementFn: undefined,
|
|
846
871
|
inputs: ['active']
|
|
847
872
|
})
|
|
848
873
|
], PPaginationItem);
|
|
849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
874
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PPaginationItem, decorators: [{
|
|
850
875
|
type: Component,
|
|
851
876
|
args: [{
|
|
852
877
|
selector: 'p-pagination-item',
|
|
@@ -862,15 +887,15 @@ let PProfile = class PProfile {
|
|
|
862
887
|
this.el = r.nativeElement;
|
|
863
888
|
}
|
|
864
889
|
};
|
|
865
|
-
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
866
|
-
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
890
|
+
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PProfile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
891
|
+
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PProfile, selector: "p-profile", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
867
892
|
PProfile = __decorate([
|
|
868
893
|
ProxyCmp({
|
|
869
894
|
defineCustomElementFn: undefined,
|
|
870
895
|
inputs: ['size', 'variant']
|
|
871
896
|
})
|
|
872
897
|
], PProfile);
|
|
873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
898
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PProfile, decorators: [{
|
|
874
899
|
type: Component,
|
|
875
900
|
args: [{
|
|
876
901
|
selector: 'p-profile',
|
|
@@ -886,14 +911,14 @@ let PSegmentContainer = class PSegmentContainer {
|
|
|
886
911
|
this.el = r.nativeElement;
|
|
887
912
|
}
|
|
888
913
|
};
|
|
889
|
-
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
890
|
-
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
914
|
+
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PSegmentContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
915
|
+
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PSegmentContainer, selector: "p-segment-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
891
916
|
PSegmentContainer = __decorate([
|
|
892
917
|
ProxyCmp({
|
|
893
918
|
defineCustomElementFn: undefined
|
|
894
919
|
})
|
|
895
920
|
], PSegmentContainer);
|
|
896
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PSegmentContainer, decorators: [{
|
|
897
922
|
type: Component,
|
|
898
923
|
args: [{
|
|
899
924
|
selector: 'p-segment-container',
|
|
@@ -908,15 +933,15 @@ let PSegmentItem = class PSegmentItem {
|
|
|
908
933
|
this.el = r.nativeElement;
|
|
909
934
|
}
|
|
910
935
|
};
|
|
911
|
-
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
912
|
-
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
936
|
+
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PSegmentItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
937
|
+
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", 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 });
|
|
913
938
|
PSegmentItem = __decorate([
|
|
914
939
|
ProxyCmp({
|
|
915
940
|
defineCustomElementFn: undefined,
|
|
916
941
|
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
917
942
|
})
|
|
918
943
|
], PSegmentItem);
|
|
919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
944
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PSegmentItem, decorators: [{
|
|
920
945
|
type: Component,
|
|
921
946
|
args: [{
|
|
922
947
|
selector: 'p-segment-item',
|
|
@@ -932,15 +957,15 @@ let PSliderIndicator = class PSliderIndicator {
|
|
|
932
957
|
this.el = r.nativeElement;
|
|
933
958
|
}
|
|
934
959
|
};
|
|
935
|
-
PSliderIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
936
|
-
PSliderIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
960
|
+
PSliderIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PSliderIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
961
|
+
PSliderIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PSliderIndicator, selector: "p-slider-indicator", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
937
962
|
PSliderIndicator = __decorate([
|
|
938
963
|
ProxyCmp({
|
|
939
964
|
defineCustomElementFn: undefined,
|
|
940
965
|
inputs: ['active']
|
|
941
966
|
})
|
|
942
967
|
], PSliderIndicator);
|
|
943
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
968
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PSliderIndicator, decorators: [{
|
|
944
969
|
type: Component,
|
|
945
970
|
args: [{
|
|
946
971
|
selector: 'p-slider-indicator',
|
|
@@ -956,15 +981,15 @@ let PStatus = class PStatus {
|
|
|
956
981
|
this.el = r.nativeElement;
|
|
957
982
|
}
|
|
958
983
|
};
|
|
959
|
-
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
960
|
-
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
984
|
+
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
985
|
+
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", 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 });
|
|
961
986
|
PStatus = __decorate([
|
|
962
987
|
ProxyCmp({
|
|
963
988
|
defineCustomElementFn: undefined,
|
|
964
989
|
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
965
990
|
})
|
|
966
991
|
], PStatus);
|
|
967
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStatus, decorators: [{
|
|
968
993
|
type: Component,
|
|
969
994
|
args: [{
|
|
970
995
|
selector: 'p-status',
|
|
@@ -980,15 +1005,15 @@ let PStepper = class PStepper {
|
|
|
980
1005
|
this.el = r.nativeElement;
|
|
981
1006
|
}
|
|
982
1007
|
};
|
|
983
|
-
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
984
|
-
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1008
|
+
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1009
|
+
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PStepper, selector: "p-stepper", inputs: { activeStep: "activeStep", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
985
1010
|
PStepper = __decorate([
|
|
986
1011
|
ProxyCmp({
|
|
987
1012
|
defineCustomElementFn: undefined,
|
|
988
1013
|
inputs: ['activeStep', 'direction']
|
|
989
1014
|
})
|
|
990
1015
|
], PStepper);
|
|
991
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStepper, decorators: [{
|
|
992
1017
|
type: Component,
|
|
993
1018
|
args: [{
|
|
994
1019
|
selector: 'p-stepper',
|
|
@@ -1004,15 +1029,15 @@ let PStepperItem = class PStepperItem {
|
|
|
1004
1029
|
this.el = r.nativeElement;
|
|
1005
1030
|
}
|
|
1006
1031
|
};
|
|
1007
|
-
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1008
|
-
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1032
|
+
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStepperItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1033
|
+
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", 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 });
|
|
1009
1034
|
PStepperItem = __decorate([
|
|
1010
1035
|
ProxyCmp({
|
|
1011
1036
|
defineCustomElementFn: undefined,
|
|
1012
1037
|
inputs: ['active', 'align', 'direction', 'finished']
|
|
1013
1038
|
})
|
|
1014
1039
|
], PStepperItem);
|
|
1015
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1040
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStepperItem, decorators: [{
|
|
1016
1041
|
type: Component,
|
|
1017
1042
|
args: [{
|
|
1018
1043
|
selector: 'p-stepper-item',
|
|
@@ -1028,15 +1053,15 @@ let PStepperLine = class PStepperLine {
|
|
|
1028
1053
|
this.el = r.nativeElement;
|
|
1029
1054
|
}
|
|
1030
1055
|
};
|
|
1031
|
-
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1032
|
-
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1056
|
+
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStepperLine, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1057
|
+
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PStepperLine, selector: "p-stepper-line", inputs: { active: "active", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1033
1058
|
PStepperLine = __decorate([
|
|
1034
1059
|
ProxyCmp({
|
|
1035
1060
|
defineCustomElementFn: undefined,
|
|
1036
1061
|
inputs: ['active', 'direction']
|
|
1037
1062
|
})
|
|
1038
1063
|
], PStepperLine);
|
|
1039
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1064
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStepperLine, decorators: [{
|
|
1040
1065
|
type: Component,
|
|
1041
1066
|
args: [{
|
|
1042
1067
|
selector: 'p-stepper-line',
|
|
@@ -1052,14 +1077,14 @@ let PTabGroup = class PTabGroup {
|
|
|
1052
1077
|
this.el = r.nativeElement;
|
|
1053
1078
|
}
|
|
1054
1079
|
};
|
|
1055
|
-
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1056
|
-
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1080
|
+
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1081
|
+
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTabGroup, selector: "p-tab-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1057
1082
|
PTabGroup = __decorate([
|
|
1058
1083
|
ProxyCmp({
|
|
1059
1084
|
defineCustomElementFn: undefined
|
|
1060
1085
|
})
|
|
1061
1086
|
], PTabGroup);
|
|
1062
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTabGroup, decorators: [{
|
|
1063
1088
|
type: Component,
|
|
1064
1089
|
args: [{
|
|
1065
1090
|
selector: 'p-tab-group',
|
|
@@ -1074,15 +1099,15 @@ let PTabItem = class PTabItem {
|
|
|
1074
1099
|
this.el = r.nativeElement;
|
|
1075
1100
|
}
|
|
1076
1101
|
};
|
|
1077
|
-
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1078
|
-
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1102
|
+
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1103
|
+
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTabItem, selector: "p-tab-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1079
1104
|
PTabItem = __decorate([
|
|
1080
1105
|
ProxyCmp({
|
|
1081
1106
|
defineCustomElementFn: undefined,
|
|
1082
1107
|
inputs: ['active']
|
|
1083
1108
|
})
|
|
1084
1109
|
], PTabItem);
|
|
1085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTabItem, decorators: [{
|
|
1086
1111
|
type: Component,
|
|
1087
1112
|
args: [{
|
|
1088
1113
|
selector: 'p-tab-item',
|
|
@@ -1091,6 +1116,174 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.3", ngImpor
|
|
|
1091
1116
|
inputs: ['active']
|
|
1092
1117
|
}]
|
|
1093
1118
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1119
|
+
let PTable = class PTable {
|
|
1120
|
+
constructor(c, r, z) {
|
|
1121
|
+
this.z = z;
|
|
1122
|
+
c.detach();
|
|
1123
|
+
this.el = r.nativeElement;
|
|
1124
|
+
proxyOutputs(this, this.el, ['selectedRowsChange', 'rowClick', 'rowSelected', 'rowDeselected', 'quickFilter', 'queryChange', 'filter', 'edit', 'pageChange', 'pageSizeChange', 'export']);
|
|
1125
|
+
}
|
|
1126
|
+
};
|
|
1127
|
+
PTable.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1128
|
+
PTable.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTable, selector: "p-table", inputs: { activeQuickFilterIdentifier: "activeQuickFilterIdentifier", canSelectKey: "canSelectKey", editButtonTemplate: "editButtonTemplate", enableEdit: "enableEdit", enableExport: "enableExport", enableFilter: "enableFilter", enablePageSize: "enablePageSize", enablePagination: "enablePagination", enableRowSelection: "enableRowSelection", enableSearch: "enableSearch", filterButtonTemplate: "filterButtonTemplate", items: "items", page: "page", pageSize: "pageSize", pageSizeOptions: "pageSizeOptions", query: "query", quickFilters: "quickFilters", selectedFiltersAmount: "selectedFiltersAmount", selectedRows: "selectedRows", selectionKey: "selectionKey", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1129
|
+
PTable = __decorate([
|
|
1130
|
+
ProxyCmp({
|
|
1131
|
+
defineCustomElementFn: undefined,
|
|
1132
|
+
inputs: ['activeQuickFilterIdentifier', 'canSelectKey', 'editButtonTemplate', 'enableEdit', 'enableExport', 'enableFilter', 'enablePageSize', 'enablePagination', 'enableRowSelection', 'enableSearch', 'filterButtonTemplate', 'items', 'page', 'pageSize', 'pageSizeOptions', 'query', 'quickFilters', 'selectedFiltersAmount', 'selectedRows', 'selectionKey', 'total']
|
|
1133
|
+
})
|
|
1134
|
+
], PTable);
|
|
1135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTable, decorators: [{
|
|
1136
|
+
type: Component,
|
|
1137
|
+
args: [{
|
|
1138
|
+
selector: 'p-table',
|
|
1139
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1140
|
+
template: '<ng-content></ng-content>',
|
|
1141
|
+
inputs: ['activeQuickFilterIdentifier', 'canSelectKey', 'editButtonTemplate', 'enableEdit', 'enableExport', 'enableFilter', 'enablePageSize', 'enablePagination', 'enableRowSelection', 'enableSearch', 'filterButtonTemplate', 'items', 'page', 'pageSize', 'pageSizeOptions', 'query', 'quickFilters', 'selectedFiltersAmount', 'selectedRows', 'selectionKey', 'total']
|
|
1142
|
+
}]
|
|
1143
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1144
|
+
let PTableBody = class PTableBody {
|
|
1145
|
+
constructor(c, r, z) {
|
|
1146
|
+
this.z = z;
|
|
1147
|
+
c.detach();
|
|
1148
|
+
this.el = r.nativeElement;
|
|
1149
|
+
}
|
|
1150
|
+
};
|
|
1151
|
+
PTableBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1152
|
+
PTableBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTableBody, selector: "p-table-body", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1153
|
+
PTableBody = __decorate([
|
|
1154
|
+
ProxyCmp({
|
|
1155
|
+
defineCustomElementFn: undefined
|
|
1156
|
+
})
|
|
1157
|
+
], PTableBody);
|
|
1158
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableBody, decorators: [{
|
|
1159
|
+
type: Component,
|
|
1160
|
+
args: [{
|
|
1161
|
+
selector: 'p-table-body',
|
|
1162
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1163
|
+
template: '<ng-content></ng-content>'
|
|
1164
|
+
}]
|
|
1165
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1166
|
+
let PTableContainer = class PTableContainer {
|
|
1167
|
+
constructor(c, r, z) {
|
|
1168
|
+
this.z = z;
|
|
1169
|
+
c.detach();
|
|
1170
|
+
this.el = r.nativeElement;
|
|
1171
|
+
}
|
|
1172
|
+
};
|
|
1173
|
+
PTableContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1174
|
+
PTableContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTableContainer, selector: "p-table-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1175
|
+
PTableContainer = __decorate([
|
|
1176
|
+
ProxyCmp({
|
|
1177
|
+
defineCustomElementFn: undefined
|
|
1178
|
+
})
|
|
1179
|
+
], PTableContainer);
|
|
1180
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableContainer, decorators: [{
|
|
1181
|
+
type: Component,
|
|
1182
|
+
args: [{
|
|
1183
|
+
selector: 'p-table-container',
|
|
1184
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1185
|
+
template: '<ng-content></ng-content>'
|
|
1186
|
+
}]
|
|
1187
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1188
|
+
let PTableDefinition = class PTableDefinition {
|
|
1189
|
+
constructor(c, r, z) {
|
|
1190
|
+
this.z = z;
|
|
1191
|
+
c.detach();
|
|
1192
|
+
this.el = r.nativeElement;
|
|
1193
|
+
proxyOutputs(this, this.el, ['tableDefinitionChanged']);
|
|
1194
|
+
}
|
|
1195
|
+
};
|
|
1196
|
+
PTableDefinition.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableDefinition, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1197
|
+
PTableDefinition.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTableDefinition, selector: "p-table-definition", inputs: { align: "align", name: "name", path: "path", sizes: "sizes", template: "template", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1198
|
+
PTableDefinition = __decorate([
|
|
1199
|
+
ProxyCmp({
|
|
1200
|
+
defineCustomElementFn: undefined,
|
|
1201
|
+
inputs: ['align', 'name', 'path', 'sizes', 'template', 'type']
|
|
1202
|
+
})
|
|
1203
|
+
], PTableDefinition);
|
|
1204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableDefinition, decorators: [{
|
|
1205
|
+
type: Component,
|
|
1206
|
+
args: [{
|
|
1207
|
+
selector: 'p-table-definition',
|
|
1208
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1209
|
+
template: '<ng-content></ng-content>',
|
|
1210
|
+
inputs: ['align', 'name', 'path', 'sizes', 'template', 'type']
|
|
1211
|
+
}]
|
|
1212
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1213
|
+
let PTableFooter = class PTableFooter {
|
|
1214
|
+
constructor(c, r, z) {
|
|
1215
|
+
this.z = z;
|
|
1216
|
+
c.detach();
|
|
1217
|
+
this.el = r.nativeElement;
|
|
1218
|
+
proxyOutputs(this, this.el, ['pageChange', 'pageSizeChange', 'export']);
|
|
1219
|
+
}
|
|
1220
|
+
};
|
|
1221
|
+
PTableFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1222
|
+
PTableFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTableFooter, selector: "p-table-footer", inputs: { enableExport: "enableExport", enablePageSize: "enablePageSize", enablePagination: "enablePagination", page: "page", pageSize: "pageSize", pageSizeOptions: "pageSizeOptions", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1223
|
+
PTableFooter = __decorate([
|
|
1224
|
+
ProxyCmp({
|
|
1225
|
+
defineCustomElementFn: undefined,
|
|
1226
|
+
inputs: ['enableExport', 'enablePageSize', 'enablePagination', 'page', 'pageSize', 'pageSizeOptions', 'total']
|
|
1227
|
+
})
|
|
1228
|
+
], PTableFooter);
|
|
1229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableFooter, decorators: [{
|
|
1230
|
+
type: Component,
|
|
1231
|
+
args: [{
|
|
1232
|
+
selector: 'p-table-footer',
|
|
1233
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1234
|
+
template: '<ng-content></ng-content>',
|
|
1235
|
+
inputs: ['enableExport', 'enablePageSize', 'enablePagination', 'page', 'pageSize', 'pageSizeOptions', 'total']
|
|
1236
|
+
}]
|
|
1237
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1238
|
+
let PTableHeader = class PTableHeader {
|
|
1239
|
+
constructor(c, r, z) {
|
|
1240
|
+
this.z = z;
|
|
1241
|
+
c.detach();
|
|
1242
|
+
this.el = r.nativeElement;
|
|
1243
|
+
proxyOutputs(this, this.el, ['quickFilter', 'queryChange', 'filter', 'edit']);
|
|
1244
|
+
}
|
|
1245
|
+
};
|
|
1246
|
+
PTableHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1247
|
+
PTableHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTableHeader, selector: "p-table-header", inputs: { activeQuickFilterIdentifier: "activeQuickFilterIdentifier", canEdit: "canEdit", editButtonTemplate: "editButtonTemplate", enableEdit: "enableEdit", enableFilter: "enableFilter", enableSearch: "enableSearch", filterButtonTemplate: "filterButtonTemplate", itemsSelectedAmount: "itemsSelectedAmount", query: "query", quickFilters: "quickFilters", selectedFiltersAmount: "selectedFiltersAmount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1248
|
+
PTableHeader = __decorate([
|
|
1249
|
+
ProxyCmp({
|
|
1250
|
+
defineCustomElementFn: undefined,
|
|
1251
|
+
inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
|
|
1252
|
+
})
|
|
1253
|
+
], PTableHeader);
|
|
1254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableHeader, decorators: [{
|
|
1255
|
+
type: Component,
|
|
1256
|
+
args: [{
|
|
1257
|
+
selector: 'p-table-header',
|
|
1258
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1259
|
+
template: '<ng-content></ng-content>',
|
|
1260
|
+
inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
|
|
1261
|
+
}]
|
|
1262
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1263
|
+
let PTableRow = class PTableRow {
|
|
1264
|
+
constructor(c, r, z) {
|
|
1265
|
+
this.z = z;
|
|
1266
|
+
c.detach();
|
|
1267
|
+
this.el = r.nativeElement;
|
|
1268
|
+
}
|
|
1269
|
+
};
|
|
1270
|
+
PTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1271
|
+
PTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTableRow, selector: "p-table-row", inputs: { enableHover: "enableHover", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1272
|
+
PTableRow = __decorate([
|
|
1273
|
+
ProxyCmp({
|
|
1274
|
+
defineCustomElementFn: undefined,
|
|
1275
|
+
inputs: ['enableHover', 'variant']
|
|
1276
|
+
})
|
|
1277
|
+
], PTableRow);
|
|
1278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableRow, decorators: [{
|
|
1279
|
+
type: Component,
|
|
1280
|
+
args: [{
|
|
1281
|
+
selector: 'p-table-row',
|
|
1282
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1283
|
+
template: '<ng-content></ng-content>',
|
|
1284
|
+
inputs: ['enableHover', 'variant']
|
|
1285
|
+
}]
|
|
1286
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1094
1287
|
let PTag = class PTag {
|
|
1095
1288
|
constructor(c, r, z) {
|
|
1096
1289
|
this.z = z;
|
|
@@ -1098,15 +1291,15 @@ let PTag = class PTag {
|
|
|
1098
1291
|
this.el = r.nativeElement;
|
|
1099
1292
|
}
|
|
1100
1293
|
};
|
|
1101
|
-
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1102
|
-
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1294
|
+
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1295
|
+
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: PTag, selector: "p-tag", inputs: { circle: "circle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1103
1296
|
PTag = __decorate([
|
|
1104
1297
|
ProxyCmp({
|
|
1105
1298
|
defineCustomElementFn: undefined,
|
|
1106
1299
|
inputs: ['circle', 'variant']
|
|
1107
1300
|
})
|
|
1108
1301
|
], PTag);
|
|
1109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1302
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTag, decorators: [{
|
|
1110
1303
|
type: Component,
|
|
1111
1304
|
args: [{
|
|
1112
1305
|
selector: 'p-tag',
|
|
@@ -1123,15 +1316,15 @@ let PTooltip = class PTooltip {
|
|
|
1123
1316
|
proxyOutputs(this, this.el, ['isOpen']);
|
|
1124
1317
|
}
|
|
1125
1318
|
};
|
|
1126
|
-
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1127
|
-
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1319
|
+
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1320
|
+
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", 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 });
|
|
1128
1321
|
PTooltip = __decorate([
|
|
1129
1322
|
ProxyCmp({
|
|
1130
1323
|
defineCustomElementFn: undefined,
|
|
1131
1324
|
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
|
|
1132
1325
|
})
|
|
1133
1326
|
], PTooltip);
|
|
1134
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTooltip, decorators: [{
|
|
1135
1328
|
type: Component,
|
|
1136
1329
|
args: [{
|
|
1137
1330
|
selector: 'p-tooltip',
|
|
@@ -1170,6 +1363,7 @@ const DIRECTIVES = [
|
|
|
1170
1363
|
PModalHeader,
|
|
1171
1364
|
PNavbar,
|
|
1172
1365
|
PNavigationItem,
|
|
1366
|
+
PPageSizeSelect,
|
|
1173
1367
|
PPagination,
|
|
1174
1368
|
PPaginationItem,
|
|
1175
1369
|
PProfile,
|
|
@@ -1182,16 +1376,23 @@ const DIRECTIVES = [
|
|
|
1182
1376
|
PStepperLine,
|
|
1183
1377
|
PTabGroup,
|
|
1184
1378
|
PTabItem,
|
|
1379
|
+
PTable,
|
|
1380
|
+
PTableBody,
|
|
1381
|
+
PTableContainer,
|
|
1382
|
+
PTableDefinition,
|
|
1383
|
+
PTableFooter,
|
|
1384
|
+
PTableHeader,
|
|
1385
|
+
PTableRow,
|
|
1185
1386
|
PTag,
|
|
1186
1387
|
PTooltip
|
|
1187
1388
|
];
|
|
1188
1389
|
|
|
1189
1390
|
class PaperlessModule {
|
|
1190
1391
|
}
|
|
1191
|
-
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1192
|
-
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
1193
|
-
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
1194
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1392
|
+
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1393
|
+
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.6", 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, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTable, PTableBody, PTableContainer, PTableDefinition, PTableFooter, PTableHeader, PTableRow, 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, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTable, PTableBody, PTableContainer, PTableDefinition, PTableFooter, PTableHeader, PTableRow, PTag, PTooltip, PaginationDirective] });
|
|
1394
|
+
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PaperlessModule });
|
|
1395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
1195
1396
|
type: NgModule,
|
|
1196
1397
|
args: [{
|
|
1197
1398
|
declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
@@ -1207,5 +1408,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.3", ngImpor
|
|
|
1207
1408
|
* Generated bundle index. Do not edit.
|
|
1208
1409
|
*/
|
|
1209
1410
|
|
|
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 };
|
|
1411
|
+
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, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTable, PTableBody, PTableContainer, PTableDefinition, PTableFooter, PTableHeader, PTableRow, PTag, PTooltip, PaginationDirective, PaperlessModule };
|
|
1211
1412
|
//# sourceMappingURL=paperless-angular.mjs.map
|