@paperless/angular 0.1.0-alpha.13 → 0.1.0-alpha.131

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.
Files changed (35) hide show
  1. package/README.md +1 -1
  2. package/esm2020/lib/base/form.component.mjs +105 -0
  3. package/esm2020/lib/base/index.mjs +5 -0
  4. package/esm2020/lib/base/table.component.mjs +155 -0
  5. package/esm2020/lib/base/upload.component.mjs +57 -0
  6. package/esm2020/lib/base/value-accessor.mjs +42 -0
  7. package/esm2020/lib/directives/index.mjs +15 -0
  8. package/esm2020/lib/directives/p-page-size-select.directive.mjs +42 -0
  9. package/esm2020/lib/directives/p-pagination.directive.mjs +42 -0
  10. package/esm2020/lib/directives/p-table-footer.directive.mjs +53 -0
  11. package/esm2020/lib/directives/p-table-header.directive.mjs +60 -0
  12. package/esm2020/lib/paperless.module.mjs +12 -7
  13. package/esm2020/lib/stencil/components.mjs +1012 -59
  14. package/esm2020/lib/stencil/index.mjs +39 -1
  15. package/esm2020/public-api.mjs +3 -1
  16. package/fesm2015/paperless-angular.mjs +1594 -105
  17. package/fesm2015/paperless-angular.mjs.map +1 -1
  18. package/fesm2020/paperless-angular.mjs +1592 -105
  19. package/fesm2020/paperless-angular.mjs.map +1 -1
  20. package/{paperless-angular.d.ts → index.d.ts} +0 -0
  21. package/lib/base/form.component.d.ts +15 -0
  22. package/lib/base/index.d.ts +4 -0
  23. package/lib/base/table.component.d.ts +45 -0
  24. package/lib/base/upload.component.d.ts +16 -0
  25. package/lib/base/value-accessor.d.ts +17 -0
  26. package/lib/directives/index.d.ts +8 -0
  27. package/lib/directives/p-page-size-select.directive.d.ts +10 -0
  28. package/lib/directives/p-pagination.directive.d.ts +10 -0
  29. package/lib/directives/p-table-footer.directive.d.ts +11 -0
  30. package/lib/directives/p-table-header.directive.d.ts +17 -0
  31. package/lib/paperless.module.d.ts +5 -1
  32. package/lib/stencil/components.d.ts +460 -12
  33. package/lib/stencil/index.d.ts +1 -1
  34. package/package.json +7 -6
  35. package/public-api.d.ts +2 -0
@@ -1,7 +1,543 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
2
+ import { Component, EventEmitter, Input, Output, ViewChild, Directive, HostListener, ChangeDetectionStrategy, NgModule } from '@angular/core';
3
+ import { FormControl, FormGroup, FormArray, NG_VALUE_ACCESSOR } from '@angular/forms';
3
4
  import { __decorate } from 'tslib';
4
- import { fromEvent } from 'rxjs';
5
+ import { untilDestroyed, UntilDestroy } from '@ngneat/until-destroy';
6
+ import { timer, fromEvent } from 'rxjs';
7
+ import { startWith, pairwise, map, filter, debounce } from 'rxjs/operators';
8
+
9
+ class FormBaseComponent {
10
+ constructor() {
11
+ this.markedDirty = false;
12
+ }
13
+ scrollToFirstError() {
14
+ const invalidInputs = Array.from(document.getElementsByClassName('ng-invalid'))
15
+ .filter((e) => { var _a; return ((_a = e === null || e === void 0 ? void 0 : e.nodeName) === null || _a === void 0 ? void 0 : _a.toLowerCase()) !== 'form'; })
16
+ .sort((a, b) => a.scrollTop - b.scrollTop);
17
+ const first = invalidInputs[0];
18
+ if (first) {
19
+ first.scrollIntoView({
20
+ behavior: 'smooth',
21
+ block: 'center',
22
+ inline: 'center',
23
+ });
24
+ }
25
+ }
26
+ markControlDirty(control) {
27
+ if (control instanceof FormControl) {
28
+ control.markAsDirty({ onlySelf: true });
29
+ control.markAsTouched({ onlySelf: true });
30
+ }
31
+ else if (control instanceof FormGroup) {
32
+ control.markAsDirty();
33
+ control.markAsTouched();
34
+ this.markAllDirty(control);
35
+ }
36
+ else if (control instanceof FormArray) {
37
+ control.markAsDirty();
38
+ control.markAsTouched();
39
+ for (const child of control === null || control === void 0 ? void 0 : control.controls) {
40
+ this.markControlDirty(child);
41
+ }
42
+ }
43
+ control.updateValueAndValidity();
44
+ }
45
+ markAllDirty(formGroup) {
46
+ this.markedDirty = true;
47
+ for (const field of Object.keys(formGroup.controls)) {
48
+ const control = formGroup.get(field);
49
+ this.markControlDirty(control);
50
+ }
51
+ }
52
+ getControlError(control) {
53
+ if (!this.hasControlError(control)) {
54
+ return;
55
+ }
56
+ return this.firstControlError(control);
57
+ }
58
+ hasControlError(control, showChildErrors = true) {
59
+ return ((control === null || control === void 0 ? void 0 : control.dirty) && this.firstControlError(control, showChildErrors));
60
+ }
61
+ firstControlError(control, showChildErrors = true) {
62
+ if (control instanceof FormGroup && showChildErrors) {
63
+ const errors = Object.keys(control.controls)
64
+ .map((key) => this.firstControlError(control.controls[key]))
65
+ .filter((val) => !!val);
66
+ return errors[0];
67
+ }
68
+ if (!(control === null || control === void 0 ? void 0 : control.errors)) {
69
+ return;
70
+ }
71
+ const keys = Object.keys(control.errors);
72
+ let err;
73
+ for (const key of keys) {
74
+ if (control.errors[key]) {
75
+ err = key;
76
+ break;
77
+ }
78
+ }
79
+ return err;
80
+ }
81
+ resetControl(control) {
82
+ control.setErrors(null);
83
+ control.reset();
84
+ control.markAsPristine();
85
+ if (control instanceof FormGroup) {
86
+ this.resetForm(control);
87
+ }
88
+ else if (control instanceof FormArray) {
89
+ for (const child of control === null || control === void 0 ? void 0 : control.controls) {
90
+ this.resetControl(child);
91
+ }
92
+ }
93
+ }
94
+ resetForm(formGroup) {
95
+ for (const field of Object.keys(formGroup.controls)) {
96
+ const control = formGroup.get(field);
97
+ this.resetControl(control);
98
+ }
99
+ this.markedDirty = false;
100
+ }
101
+ }
102
+ FormBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: FormBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
103
+ FormBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: FormBaseComponent, selector: "ng-component", ngImport: i0, template: ``, isInline: true });
104
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: FormBaseComponent, decorators: [{
105
+ type: Component,
106
+ args: [{
107
+ template: ``,
108
+ }]
109
+ }] });
110
+
111
+ let BaseTableComponent = class BaseTableComponent extends FormBaseComponent {
112
+ constructor() {
113
+ super();
114
+ this.quickFilters = [];
115
+ this.pageSizeDefault = 12;
116
+ this._defaultTableValues = {
117
+ pageSize: this.pageSizeDefault,
118
+ page: 1,
119
+ quickFilter: null,
120
+ query: '',
121
+ selectedRows: [],
122
+ };
123
+ this.defaultTableValues = {};
124
+ }
125
+ get pageSize() {
126
+ var _a;
127
+ if (!this.tableOptions) {
128
+ return this._defaultTableValues.pageSize;
129
+ }
130
+ return (_a = this.tableOptions.get('pageSize')) === null || _a === void 0 ? void 0 : _a.value;
131
+ }
132
+ get page() {
133
+ var _a;
134
+ if (!this.tableOptions) {
135
+ return this._defaultTableValues.page;
136
+ }
137
+ return (_a = this.tableOptions.get('page')) === null || _a === void 0 ? void 0 : _a.value;
138
+ }
139
+ get quickFilter() {
140
+ var _a;
141
+ if (!this.tableOptions) {
142
+ return this._defaultTableValues.quickFilter;
143
+ }
144
+ return (_a = this.tableOptions.get('quickFilter')) === null || _a === void 0 ? void 0 : _a.value;
145
+ }
146
+ set quickFilter(quickFilter) {
147
+ this.tableValues = {
148
+ quickFilter,
149
+ };
150
+ }
151
+ get query() {
152
+ var _a;
153
+ if (!this.tableOptions) {
154
+ return this._defaultTableValues.query;
155
+ }
156
+ return (_a = this.tableOptions.get('query')) === null || _a === void 0 ? void 0 : _a.value;
157
+ }
158
+ set query(query) {
159
+ this.tableValues = {
160
+ query,
161
+ };
162
+ }
163
+ get selectedRows() {
164
+ var _a;
165
+ if (!this.tableOptions) {
166
+ return this._defaultTableValues.selectedRows;
167
+ }
168
+ return (_a = this.tableOptions.get('selectedRows')) === null || _a === void 0 ? void 0 : _a.value;
169
+ }
170
+ set selectedRows(selectedRows) {
171
+ this.tableValues = {
172
+ selectedRows,
173
+ };
174
+ }
175
+ // setter
176
+ get parsedDefaultTableValues() {
177
+ var _a;
178
+ return Object.assign(Object.assign(Object.assign({}, this._defaultTableValues), this.defaultTableValues), { pageSize: ((_a = this.defaultTableValues) === null || _a === void 0 ? void 0 : _a.pageSize) || this.pageSizeDefault });
179
+ }
180
+ get tableValues() {
181
+ var _a;
182
+ return (_a = this.tableOptions) === null || _a === void 0 ? void 0 : _a.value;
183
+ }
184
+ set tableValues(values) {
185
+ this._setTableValues(Object.assign(Object.assign({}, this.tableValues), values));
186
+ }
187
+ ngOnInit() {
188
+ this.tableOptions = new FormGroup({
189
+ pageSize: new FormControl(this.parsedDefaultTableValues.pageSize),
190
+ page: new FormControl(this.parsedDefaultTableValues.page),
191
+ quickFilter: new FormControl(this.parsedDefaultTableValues.quickFilter),
192
+ query: new FormControl(this.parsedDefaultTableValues.query),
193
+ selectedRows: new FormControl(this.parsedDefaultTableValues.selectedRows),
194
+ });
195
+ this.tableOptions.valueChanges
196
+ .pipe(untilDestroyed(this), startWith(this.tableOptions.value), pairwise(), map(([previous, next]) => this._getChanges(previous, next)), filter((changes) => !!changes), debounce((changes) => {
197
+ var _a;
198
+ if ((changes === null || changes === void 0 ? void 0 : changes.query) && ((_a = Object.keys(changes)) === null || _a === void 0 ? void 0 : _a.length) === 1) {
199
+ return timer(300);
200
+ }
201
+ return timer(0);
202
+ }), filter((changes) => {
203
+ var _a;
204
+ return !((changes === null || changes === void 0 ? void 0 : changes.selected) &&
205
+ ((_a = Object.keys(changes)) === null || _a === void 0 ? void 0 : _a.length) === 1);
206
+ }))
207
+ .subscribe((changes) => {
208
+ if (changes === null || changes === void 0 ? void 0 : changes.page) {
209
+ this._refresh();
210
+ return;
211
+ }
212
+ this._resetPageOrRefresh();
213
+ });
214
+ this._refresh();
215
+ }
216
+ resetTable(emitEvent = true, forceRefresh = null) {
217
+ this._setTableValues(this.parsedDefaultTableValues, emitEvent);
218
+ if (forceRefresh) {
219
+ this._refresh();
220
+ }
221
+ }
222
+ _refresh() {
223
+ console.warn('Not implemented');
224
+ }
225
+ _resetPageOrRefresh() {
226
+ var _a;
227
+ if (!this.tableOptions) {
228
+ return;
229
+ }
230
+ if (this.page !== 1) {
231
+ (_a = this.tableOptions.get('page')) === null || _a === void 0 ? void 0 : _a.setValue(1);
232
+ return;
233
+ }
234
+ this._refresh();
235
+ }
236
+ _setTableValues(data, emitEvent = true) {
237
+ var _a;
238
+ (_a = this.tableOptions) === null || _a === void 0 ? void 0 : _a.setValue(data, { emitEvent });
239
+ }
240
+ _getChanges(previous, next) {
241
+ const changes = {};
242
+ let key;
243
+ for (key in next) {
244
+ if (JSON.stringify(previous[key]) !== JSON.stringify(next[key])) {
245
+ changes[key] = next[key];
246
+ }
247
+ }
248
+ return Object.keys(changes).length ? changes : null;
249
+ }
250
+ };
251
+ BaseTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: BaseTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
252
+ BaseTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: BaseTableComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true });
253
+ BaseTableComponent = __decorate([
254
+ UntilDestroy({ checkProperties: true })
255
+ ], BaseTableComponent);
256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: BaseTableComponent, decorators: [{
257
+ type: Component,
258
+ args: [{
259
+ template: ``,
260
+ }]
261
+ }], ctorParameters: function () { return []; } });
262
+
263
+ class BaseUploadComponent {
264
+ constructor() {
265
+ this.uploaded = false;
266
+ this.fileChange = new EventEmitter();
267
+ this._loading = false;
268
+ }
269
+ set loading(value) {
270
+ this._loading = value;
271
+ }
272
+ get loading() {
273
+ return this._loading;
274
+ }
275
+ onChange($event) {
276
+ var _a;
277
+ const target = $event.target;
278
+ const file = (_a = target.files) === null || _a === void 0 ? void 0 : _a[0];
279
+ if (file) {
280
+ this._loading = true;
281
+ const reader = new FileReader();
282
+ reader.onload = (e) => { var _a; return this.onLoad(file, (_a = e === null || e === void 0 ? void 0 : e.currentTarget) === null || _a === void 0 ? void 0 : _a.result); };
283
+ reader.readAsDataURL(file);
284
+ }
285
+ }
286
+ onLoad(file, result) {
287
+ var _a;
288
+ this.fileChange.next({
289
+ fileId: this.fileId,
290
+ result,
291
+ file,
292
+ });
293
+ if ((_a = this.uploaderInput) === null || _a === void 0 ? void 0 : _a.nativeElement) {
294
+ this.uploaderInput.nativeElement.value = '';
295
+ }
296
+ this.file = file;
297
+ this._loading = false;
298
+ }
299
+ }
300
+ BaseUploadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: BaseUploadComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
301
+ BaseUploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.6", type: BaseUploadComponent, selector: "ng-component", inputs: { fileId: "fileId", uploaded: "uploaded", loading: "loading" }, outputs: { fileChange: "fileChange" }, viewQueries: [{ propertyName: "uploaderInput", first: true, predicate: ["uploaderInput"], descendants: true }], ngImport: i0, template: ``, isInline: true });
302
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: BaseUploadComponent, decorators: [{
303
+ type: Component,
304
+ args: [{
305
+ template: ``,
306
+ }]
307
+ }], propDecorators: { fileId: [{
308
+ type: Input
309
+ }], uploaded: [{
310
+ type: Input
311
+ }], loading: [{
312
+ type: Input
313
+ }], fileChange: [{
314
+ type: Output
315
+ }], uploaderInput: [{
316
+ type: ViewChild,
317
+ args: ['uploaderInput']
318
+ }] } });
319
+
320
+ class BaseValueAccessor {
321
+ constructor(el) {
322
+ this.el = el;
323
+ this.onChange = () => {
324
+ /**/
325
+ };
326
+ this.onTouched = () => {
327
+ /**/
328
+ };
329
+ }
330
+ writeValue(value) {
331
+ this.el.nativeElement.value = this.lastValue =
332
+ value == null ? '' : value;
333
+ }
334
+ handleChangeEvent(value) {
335
+ if (value !== this.lastValue) {
336
+ this.lastValue = value;
337
+ this.onChange(value);
338
+ }
339
+ }
340
+ _handleBlurEvent() {
341
+ this.onTouched();
342
+ }
343
+ registerOnChange(fn) {
344
+ this.onChange = fn;
345
+ }
346
+ registerOnTouched(fn) {
347
+ this.onTouched = fn;
348
+ }
349
+ }
350
+ BaseValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: BaseValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
351
+ BaseValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.6", type: BaseValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: BaseValueAccessor, decorators: [{
353
+ type: Directive,
354
+ args: [{}]
355
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
356
+ type: HostListener,
357
+ args: ['focusout']
358
+ }] } });
359
+
360
+ class PageSizeSelectDirective extends BaseValueAccessor {
361
+ constructor(el) {
362
+ super(el);
363
+ }
364
+ writeValue(value) {
365
+ this.el.nativeElement.page = this.lastValue =
366
+ value == null ? '' : value;
367
+ }
368
+ registerOnChange(fn) {
369
+ super.registerOnChange((value) => fn(value === '' ? null : parseInt(value, 10)));
370
+ }
371
+ }
372
+ PageSizeSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PageSizeSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
373
+ PageSizeSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.6", type: PageSizeSelectDirective, selector: "p-page-size-select", host: { listeners: { "sizeChange": "handleChangeEvent($event.detail)" } }, providers: [
374
+ {
375
+ provide: NG_VALUE_ACCESSOR,
376
+ useExisting: PageSizeSelectDirective,
377
+ multi: true,
378
+ },
379
+ ], usesInheritance: true, ngImport: i0 });
380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PageSizeSelectDirective, decorators: [{
381
+ type: Directive,
382
+ args: [{
383
+ /* tslint:disable-next-line:directive-selector */
384
+ selector: 'p-page-size-select',
385
+ host: {
386
+ '(sizeChange)': 'handleChangeEvent($event.detail)',
387
+ },
388
+ providers: [
389
+ {
390
+ provide: NG_VALUE_ACCESSOR,
391
+ useExisting: PageSizeSelectDirective,
392
+ multi: true,
393
+ },
394
+ ],
395
+ }]
396
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
397
+
398
+ class PaginationDirective extends BaseValueAccessor {
399
+ constructor(el) {
400
+ super(el);
401
+ }
402
+ writeValue(value) {
403
+ this.el.nativeElement.page = this.lastValue =
404
+ value == null ? '' : value;
405
+ }
406
+ registerOnChange(fn) {
407
+ super.registerOnChange((value) => fn(value === '' ? null : parseInt(value, 10)));
408
+ }
409
+ }
410
+ PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
411
+ PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.6", type: PaginationDirective, selector: "p-pagination", host: { listeners: { "pageChange": "handleChangeEvent($event.detail)" } }, providers: [
412
+ {
413
+ provide: NG_VALUE_ACCESSOR,
414
+ useExisting: PaginationDirective,
415
+ multi: true,
416
+ },
417
+ ], usesInheritance: true, ngImport: i0 });
418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PaginationDirective, decorators: [{
419
+ type: Directive,
420
+ args: [{
421
+ /* tslint:disable-next-line:directive-selector */
422
+ selector: 'p-pagination',
423
+ host: {
424
+ '(pageChange)': 'handleChangeEvent($event.detail)',
425
+ },
426
+ providers: [
427
+ {
428
+ provide: NG_VALUE_ACCESSOR,
429
+ useExisting: PaginationDirective,
430
+ multi: true,
431
+ },
432
+ ],
433
+ }]
434
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
435
+
436
+ class TableFooterDirective extends BaseValueAccessor {
437
+ constructor(el) {
438
+ super(el);
439
+ this.lastValue = {
440
+ page: 1,
441
+ pageSize: 12,
442
+ };
443
+ }
444
+ writeValue(value) {
445
+ console.log('??');
446
+ this.el.nativeElement.page = this.lastValue.page =
447
+ (value === null || value === void 0 ? void 0 : value.page) == null ? '' : value === null || value === void 0 ? void 0 : value.page;
448
+ this.el.nativeElement.pageSize = this.lastValue.pageSize =
449
+ (value === null || value === void 0 ? void 0 : value.pageSize) == null ? '' : value === null || value === void 0 ? void 0 : value.pageSize;
450
+ }
451
+ handleChange(value, type) {
452
+ this.handleChangeEvent(Object.assign(Object.assign({}, this.lastValue), { [type]: value }));
453
+ }
454
+ }
455
+ TableFooterDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: TableFooterDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
456
+ TableFooterDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.6", type: TableFooterDirective, selector: "p-table-footer", host: { listeners: { "pageChange": "handleChange($event.detail, \"page\")", "pageSizeChange": "handleChange($event.detail, \"pageSize\")" } }, providers: [
457
+ {
458
+ provide: NG_VALUE_ACCESSOR,
459
+ useExisting: TableFooterDirective,
460
+ multi: true,
461
+ },
462
+ ], usesInheritance: true, ngImport: i0 });
463
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: TableFooterDirective, decorators: [{
464
+ type: Directive,
465
+ args: [{
466
+ /* tslint:disable-next-line:directive-selector */
467
+ selector: 'p-table-footer',
468
+ host: {
469
+ '(pageChange)': 'handleChange($event.detail, "page")',
470
+ '(pageSizeChange)': 'handleChange($event.detail, "pageSize")',
471
+ },
472
+ providers: [
473
+ {
474
+ provide: NG_VALUE_ACCESSOR,
475
+ useExisting: TableFooterDirective,
476
+ multi: true,
477
+ },
478
+ ],
479
+ }]
480
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
481
+
482
+ class TableHeaderDirective extends BaseValueAccessor {
483
+ constructor(el) {
484
+ super(el);
485
+ this.lastValue = {
486
+ query: '',
487
+ quickFilter: undefined,
488
+ };
489
+ }
490
+ writeValue(value) {
491
+ this.el.nativeElement.query = this.lastValue.query = value === null || value === void 0 ? void 0 : value.query;
492
+ this.lastValue.quickFilter = value === null || value === void 0 ? void 0 : value.quickFilter;
493
+ if (value === null || value === void 0 ? void 0 : value.quickFilter) {
494
+ this._setActiveQuickFilter(value.quickFilter);
495
+ }
496
+ }
497
+ handleChange(value, type) {
498
+ this.handleChangeEvent(Object.assign(Object.assign({}, this.lastValue), { [type]: value }));
499
+ if (type === 'quickFilter' && typeof value !== 'string') {
500
+ this._setActiveQuickFilter(value);
501
+ }
502
+ }
503
+ _setActiveQuickFilter(quickFilter) {
504
+ this.el.nativeElement.activeQuickFilterIdentifier =
505
+ quickFilter === null || quickFilter === void 0 ? void 0 : quickFilter.identifier;
506
+ }
507
+ }
508
+ TableHeaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: TableHeaderDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
509
+ TableHeaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.6", type: TableHeaderDirective, selector: "p-table-header", host: { listeners: { "queryChange": "handleChange($event.detail, \"query\")", "quickFilter": "handleChange($event.detail, \"quickFilter\")" } }, providers: [
510
+ {
511
+ provide: NG_VALUE_ACCESSOR,
512
+ useExisting: TableHeaderDirective,
513
+ multi: true,
514
+ },
515
+ ], usesInheritance: true, ngImport: i0 });
516
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: TableHeaderDirective, decorators: [{
517
+ type: Directive,
518
+ args: [{
519
+ /* tslint:disable-next-line:directive-selector */
520
+ selector: 'p-table-header',
521
+ host: {
522
+ '(queryChange)': 'handleChange($event.detail, "query")',
523
+ '(quickFilter)': 'handleChange($event.detail, "quickFilter")',
524
+ },
525
+ providers: [
526
+ {
527
+ provide: NG_VALUE_ACCESSOR,
528
+ useExisting: TableHeaderDirective,
529
+ multi: true,
530
+ },
531
+ ],
532
+ }]
533
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
534
+
535
+ const CUSTOM_DIRECTIVES = [
536
+ PaginationDirective,
537
+ PageSizeSelectDirective,
538
+ TableFooterDirective,
539
+ TableHeaderDirective,
540
+ ];
5
541
 
6
542
  /* eslint-disable */
7
543
  const proxyInputs = (Cmp, inputs) => {
@@ -54,6 +590,31 @@ function ProxyCmp(opts) {
54
590
  return decorator;
55
591
  }
56
592
 
593
+ let PAccordion = class PAccordion {
594
+ constructor(c, r, z) {
595
+ this.z = z;
596
+ c.detach();
597
+ this.el = r.nativeElement;
598
+ proxyOutputs(this, this.el, ['isOpen']);
599
+ }
600
+ };
601
+ 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 });
602
+ 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 });
603
+ PAccordion = __decorate([
604
+ ProxyCmp({
605
+ defineCustomElementFn: undefined,
606
+ inputs: ['closeable', 'header', 'open', 'openable']
607
+ })
608
+ ], PAccordion);
609
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PAccordion, decorators: [{
610
+ type: Component,
611
+ args: [{
612
+ selector: 'p-accordion',
613
+ changeDetection: ChangeDetectionStrategy.OnPush,
614
+ template: '<ng-content></ng-content>',
615
+ inputs: ['closeable', 'header', 'open', 'openable']
616
+ }]
617
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
57
618
  let PAvatar = class PAvatar {
58
619
  constructor(c, r, z) {
59
620
  this.z = z;
@@ -61,15 +622,15 @@ let PAvatar = class PAvatar {
61
622
  this.el = r.nativeElement;
62
623
  }
63
624
  };
64
- PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
65
- PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
625
+ 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 });
626
+ 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 });
66
627
  PAvatar = __decorate([
67
628
  ProxyCmp({
68
629
  defineCustomElementFn: undefined,
69
630
  inputs: ['defaultImage', 'size', 'src', 'variant']
70
631
  })
71
632
  ], PAvatar);
72
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PAvatar, decorators: [{
633
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PAvatar, decorators: [{
73
634
  type: Component,
74
635
  args: [{
75
636
  selector: 'p-avatar',
@@ -78,6 +639,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
78
639
  inputs: ['defaultImage', 'size', 'src', 'variant']
79
640
  }]
80
641
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
642
+ let PAvatarGroup = class PAvatarGroup {
643
+ constructor(c, r, z) {
644
+ this.z = z;
645
+ c.detach();
646
+ this.el = r.nativeElement;
647
+ }
648
+ };
649
+ 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 });
650
+ 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 });
651
+ PAvatarGroup = __decorate([
652
+ ProxyCmp({
653
+ defineCustomElementFn: undefined,
654
+ inputs: ['extra']
655
+ })
656
+ ], PAvatarGroup);
657
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PAvatarGroup, decorators: [{
658
+ type: Component,
659
+ args: [{
660
+ selector: 'p-avatar-group',
661
+ changeDetection: ChangeDetectionStrategy.OnPush,
662
+ template: '<ng-content></ng-content>',
663
+ inputs: ['extra']
664
+ }]
665
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
81
666
  let PButton = class PButton {
82
667
  constructor(c, r, z) {
83
668
  this.z = z;
@@ -86,231 +671,1096 @@ let PButton = class PButton {
86
671
  proxyOutputs(this, this.el, ['onClick']);
87
672
  }
88
673
  };
89
- PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
90
- PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PButton, selector: "p-button", inputs: { disabled: "disabled", href: "href", icon: "icon", iconFlip: "iconFlip", iconPosition: "iconPosition", iconRotate: "iconRotate", loading: "loading", size: "size", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
674
+ 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 });
675
+ 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 });
91
676
  PButton = __decorate([
92
677
  ProxyCmp({
93
678
  defineCustomElementFn: undefined,
94
- inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
679
+ inputs: ['chevron', 'chevronPosition', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant', 'width']
95
680
  })
96
681
  ], PButton);
97
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButton, decorators: [{
682
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PButton, decorators: [{
98
683
  type: Component,
99
684
  args: [{
100
685
  selector: 'p-button',
101
686
  changeDetection: ChangeDetectionStrategy.OnPush,
102
687
  template: '<ng-content></ng-content>',
103
- inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
688
+ inputs: ['chevron', 'chevronPosition', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant', 'width']
104
689
  }]
105
690
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
106
- let PCounter = class PCounter {
691
+ let PCardBody = class PCardBody {
107
692
  constructor(c, r, z) {
108
693
  this.z = z;
109
694
  c.detach();
110
695
  this.el = r.nativeElement;
111
696
  }
112
697
  };
113
- PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
114
- PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCounter, selector: "p-counter", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
115
- PCounter = __decorate([
698
+ 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 });
699
+ 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 });
700
+ PCardBody = __decorate([
116
701
  ProxyCmp({
117
- defineCustomElementFn: undefined
702
+ defineCustomElementFn: undefined,
703
+ inputs: ['inheritText']
118
704
  })
119
- ], PCounter);
120
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCounter, decorators: [{
705
+ ], PCardBody);
706
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PCardBody, decorators: [{
121
707
  type: Component,
122
708
  args: [{
123
- selector: 'p-counter',
709
+ selector: 'p-card-body',
124
710
  changeDetection: ChangeDetectionStrategy.OnPush,
125
- template: '<ng-content></ng-content>'
711
+ template: '<ng-content></ng-content>',
712
+ inputs: ['inheritText']
126
713
  }]
127
714
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
128
- let PDivider = class PDivider {
715
+ let PCardContainer = class PCardContainer {
129
716
  constructor(c, r, z) {
130
717
  this.z = z;
131
718
  c.detach();
132
719
  this.el = r.nativeElement;
133
720
  }
134
721
  };
135
- PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
136
- PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PDivider, selector: "p-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
137
- PDivider = __decorate([
722
+ 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 });
723
+ 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 });
724
+ PCardContainer = __decorate([
138
725
  ProxyCmp({
139
- defineCustomElementFn: undefined
726
+ defineCustomElementFn: undefined,
727
+ inputs: ['hoverable', 'shadow']
140
728
  })
141
- ], PDivider);
142
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, decorators: [{
729
+ ], PCardContainer);
730
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PCardContainer, decorators: [{
143
731
  type: Component,
144
732
  args: [{
145
- selector: 'p-divider',
733
+ selector: 'p-card-container',
146
734
  changeDetection: ChangeDetectionStrategy.OnPush,
147
- template: '<ng-content></ng-content>'
735
+ template: '<ng-content></ng-content>',
736
+ inputs: ['hoverable', 'shadow']
148
737
  }]
149
738
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
150
- let PHelper = class PHelper {
739
+ let PCardHeader = class PCardHeader {
151
740
  constructor(c, r, z) {
152
741
  this.z = z;
153
742
  c.detach();
154
743
  this.el = r.nativeElement;
155
744
  }
156
745
  };
157
- PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PHelper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
158
- PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PHelper, selector: "p-helper", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
159
- PHelper = __decorate([
746
+ 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 });
747
+ 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 });
748
+ PCardHeader = __decorate([
160
749
  ProxyCmp({
161
- defineCustomElementFn: undefined
750
+ defineCustomElementFn: undefined,
751
+ inputs: ['arrow', 'header']
162
752
  })
163
- ], PHelper);
164
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PHelper, decorators: [{
753
+ ], PCardHeader);
754
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PCardHeader, decorators: [{
165
755
  type: Component,
166
756
  args: [{
167
- selector: 'p-helper',
757
+ selector: 'p-card-header',
168
758
  changeDetection: ChangeDetectionStrategy.OnPush,
169
- template: '<ng-content></ng-content>'
759
+ template: '<ng-content></ng-content>',
760
+ inputs: ['arrow', 'header']
170
761
  }]
171
762
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
172
- let PIcon = class PIcon {
763
+ let PContentSlider = class PContentSlider {
173
764
  constructor(c, r, z) {
174
765
  this.z = z;
175
766
  c.detach();
176
767
  this.el = r.nativeElement;
177
768
  }
178
769
  };
179
- PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
180
- PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
181
- PIcon = __decorate([
770
+ 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 });
771
+ 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 });
772
+ PContentSlider = __decorate([
182
773
  ProxyCmp({
183
774
  defineCustomElementFn: undefined,
184
- inputs: ['flip', 'rotate', 'size', 'variant']
775
+ inputs: ['disableAutoCenter', 'disableDrag', 'disableIndicatorClick', 'hideMobileIndicator']
185
776
  })
186
- ], PIcon);
187
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PIcon, decorators: [{
777
+ ], PContentSlider);
778
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PContentSlider, decorators: [{
188
779
  type: Component,
189
780
  args: [{
190
- selector: 'p-icon',
781
+ selector: 'p-content-slider',
191
782
  changeDetection: ChangeDetectionStrategy.OnPush,
192
783
  template: '<ng-content></ng-content>',
193
- inputs: ['flip', 'rotate', 'size', 'variant']
784
+ inputs: ['disableAutoCenter', 'disableDrag', 'disableIndicatorClick', 'hideMobileIndicator']
194
785
  }]
195
786
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
196
- let PIllustration = class PIllustration {
787
+ let PCounter = class PCounter {
197
788
  constructor(c, r, z) {
198
789
  this.z = z;
199
790
  c.detach();
200
791
  this.el = r.nativeElement;
201
792
  }
202
793
  };
203
- PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PIllustration, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
204
- PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PIllustration, selector: "p-illustration", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
205
- PIllustration = __decorate([
794
+ 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 });
795
+ 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 });
796
+ PCounter = __decorate([
206
797
  ProxyCmp({
207
798
  defineCustomElementFn: undefined,
208
- inputs: ['variant']
799
+ inputs: ['size', 'variant']
209
800
  })
210
- ], PIllustration);
211
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PIllustration, decorators: [{
801
+ ], PCounter);
802
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PCounter, decorators: [{
212
803
  type: Component,
213
804
  args: [{
214
- selector: 'p-illustration',
805
+ selector: 'p-counter',
215
806
  changeDetection: ChangeDetectionStrategy.OnPush,
216
807
  template: '<ng-content></ng-content>',
217
- inputs: ['variant']
808
+ inputs: ['size', 'variant']
218
809
  }]
219
810
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
220
- let PInfoPanel = class PInfoPanel {
811
+ let PDivider = class PDivider {
221
812
  constructor(c, r, z) {
222
813
  this.z = z;
223
814
  c.detach();
224
815
  this.el = r.nativeElement;
225
816
  }
226
817
  };
227
- PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PInfoPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
228
- PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
229
- PInfoPanel = __decorate([
818
+ 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 });
819
+ 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 });
820
+ PDivider = __decorate([
230
821
  ProxyCmp({
231
- defineCustomElementFn: undefined,
232
- inputs: ['closeable', 'content', 'header', 'variant']
822
+ defineCustomElementFn: undefined
233
823
  })
234
- ], PInfoPanel);
235
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PInfoPanel, decorators: [{
824
+ ], PDivider);
825
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PDivider, decorators: [{
236
826
  type: Component,
237
827
  args: [{
238
- selector: 'p-info-panel',
828
+ selector: 'p-divider',
239
829
  changeDetection: ChangeDetectionStrategy.OnPush,
240
- template: '<ng-content></ng-content>',
241
- inputs: ['closeable', 'content', 'header', 'variant']
830
+ template: '<ng-content></ng-content>'
242
831
  }]
243
832
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
244
- let PLoader = class PLoader {
833
+ let PDropdown = class PDropdown {
245
834
  constructor(c, r, z) {
246
835
  this.z = z;
247
836
  c.detach();
248
837
  this.el = r.nativeElement;
838
+ proxyOutputs(this, this.el, ['isOpen']);
249
839
  }
250
840
  };
251
- PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
252
- PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
253
- PLoader = __decorate([
841
+ 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 });
842
+ 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 });
843
+ PDropdown = __decorate([
254
844
  ProxyCmp({
255
845
  defineCustomElementFn: undefined,
256
- inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
846
+ inputs: ['chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
257
847
  })
258
- ], PLoader);
259
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PLoader, decorators: [{
848
+ ], PDropdown);
849
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PDropdown, decorators: [{
260
850
  type: Component,
261
851
  args: [{
262
- selector: 'p-loader',
852
+ selector: 'p-dropdown',
263
853
  changeDetection: ChangeDetectionStrategy.OnPush,
264
854
  template: '<ng-content></ng-content>',
265
- inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
855
+ inputs: ['chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
266
856
  }]
267
857
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
268
- let PPagination = class PPagination {
858
+ let PDropdownMenuContainer = class PDropdownMenuContainer {
269
859
  constructor(c, r, z) {
270
860
  this.z = z;
271
861
  c.detach();
272
862
  this.el = r.nativeElement;
273
863
  }
274
864
  };
275
- PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
276
- PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PPagination, selector: "p-pagination", inputs: { pageSize: "pageSize", total: "total", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
277
- PPagination = __decorate([
865
+ 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 });
866
+ 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 });
867
+ PDropdownMenuContainer = __decorate([
868
+ ProxyCmp({
869
+ defineCustomElementFn: undefined
870
+ })
871
+ ], PDropdownMenuContainer);
872
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
873
+ type: Component,
874
+ args: [{
875
+ selector: 'p-dropdown-menu-container',
876
+ changeDetection: ChangeDetectionStrategy.OnPush,
877
+ template: '<ng-content></ng-content>'
878
+ }]
879
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
880
+ let PDropdownMenuItem = class PDropdownMenuItem {
881
+ constructor(c, r, z) {
882
+ this.z = z;
883
+ c.detach();
884
+ this.el = r.nativeElement;
885
+ }
886
+ };
887
+ 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 });
888
+ 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 });
889
+ PDropdownMenuItem = __decorate([
278
890
  ProxyCmp({
279
891
  defineCustomElementFn: undefined,
280
- inputs: ['pageSize', 'total', 'value']
892
+ inputs: ['active', 'icon']
281
893
  })
282
- ], PPagination);
283
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPagination, decorators: [{
894
+ ], PDropdownMenuItem);
895
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PDropdownMenuItem, decorators: [{
284
896
  type: Component,
285
897
  args: [{
286
- selector: 'p-pagination',
898
+ selector: 'p-dropdown-menu-item',
287
899
  changeDetection: ChangeDetectionStrategy.OnPush,
288
900
  template: '<ng-content></ng-content>',
289
- inputs: ['pageSize', 'total', 'value']
901
+ inputs: ['active', 'icon']
290
902
  }]
291
903
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
292
- let PPaginationItem = class PPaginationItem {
904
+ let PHelper = class PHelper {
293
905
  constructor(c, r, z) {
294
906
  this.z = z;
295
907
  c.detach();
296
908
  this.el = r.nativeElement;
297
909
  }
298
910
  };
299
- PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPaginationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
300
- PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PPaginationItem, selector: "p-pagination-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
301
- PPaginationItem = __decorate([
911
+ 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 });
912
+ 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 });
913
+ PHelper = __decorate([
302
914
  ProxyCmp({
303
915
  defineCustomElementFn: undefined,
304
- inputs: ['active']
916
+ inputs: ['placement']
305
917
  })
306
- ], PPaginationItem);
307
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPaginationItem, decorators: [{
918
+ ], PHelper);
919
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PHelper, decorators: [{
308
920
  type: Component,
309
921
  args: [{
310
- selector: 'p-pagination-item',
922
+ selector: 'p-helper',
311
923
  changeDetection: ChangeDetectionStrategy.OnPush,
312
924
  template: '<ng-content></ng-content>',
313
- inputs: ['active']
925
+ inputs: ['placement']
926
+ }]
927
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
928
+ let PIcon = class PIcon {
929
+ constructor(c, r, z) {
930
+ this.z = z;
931
+ c.detach();
932
+ this.el = r.nativeElement;
933
+ }
934
+ };
935
+ 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 });
936
+ 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 });
937
+ PIcon = __decorate([
938
+ ProxyCmp({
939
+ defineCustomElementFn: undefined,
940
+ inputs: ['flip', 'rotate', 'size', 'variant']
941
+ })
942
+ ], PIcon);
943
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PIcon, decorators: [{
944
+ type: Component,
945
+ args: [{
946
+ selector: 'p-icon',
947
+ changeDetection: ChangeDetectionStrategy.OnPush,
948
+ template: '<ng-content></ng-content>',
949
+ inputs: ['flip', 'rotate', 'size', 'variant']
950
+ }]
951
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
952
+ let PIllustration = class PIllustration {
953
+ constructor(c, r, z) {
954
+ this.z = z;
955
+ c.detach();
956
+ this.el = r.nativeElement;
957
+ }
958
+ };
959
+ 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 });
960
+ 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 });
961
+ PIllustration = __decorate([
962
+ ProxyCmp({
963
+ defineCustomElementFn: undefined,
964
+ inputs: ['variant']
965
+ })
966
+ ], PIllustration);
967
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PIllustration, decorators: [{
968
+ type: Component,
969
+ args: [{
970
+ selector: 'p-illustration',
971
+ changeDetection: ChangeDetectionStrategy.OnPush,
972
+ template: '<ng-content></ng-content>',
973
+ inputs: ['variant']
974
+ }]
975
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
976
+ let PInfoPanel = class PInfoPanel {
977
+ constructor(c, r, z) {
978
+ this.z = z;
979
+ c.detach();
980
+ this.el = r.nativeElement;
981
+ }
982
+ };
983
+ 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 });
984
+ 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 });
985
+ PInfoPanel = __decorate([
986
+ ProxyCmp({
987
+ defineCustomElementFn: undefined,
988
+ inputs: ['closeable', 'content', 'header', 'variant']
989
+ })
990
+ ], PInfoPanel);
991
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PInfoPanel, decorators: [{
992
+ type: Component,
993
+ args: [{
994
+ selector: 'p-info-panel',
995
+ changeDetection: ChangeDetectionStrategy.OnPush,
996
+ template: '<ng-content></ng-content>',
997
+ inputs: ['closeable', 'content', 'header', 'variant']
998
+ }]
999
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1000
+ let PInputGroup = class PInputGroup {
1001
+ constructor(c, r, z) {
1002
+ this.z = z;
1003
+ c.detach();
1004
+ this.el = r.nativeElement;
1005
+ }
1006
+ };
1007
+ 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 });
1008
+ 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 });
1009
+ PInputGroup = __decorate([
1010
+ ProxyCmp({
1011
+ defineCustomElementFn: undefined,
1012
+ inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
1013
+ })
1014
+ ], PInputGroup);
1015
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PInputGroup, decorators: [{
1016
+ type: Component,
1017
+ args: [{
1018
+ selector: 'p-input-group',
1019
+ changeDetection: ChangeDetectionStrategy.OnPush,
1020
+ template: '<ng-content></ng-content>',
1021
+ inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'size', 'suffix']
1022
+ }]
1023
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1024
+ let PLayout = class PLayout {
1025
+ constructor(c, r, z) {
1026
+ this.z = z;
1027
+ c.detach();
1028
+ this.el = r.nativeElement;
1029
+ }
1030
+ };
1031
+ 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 });
1032
+ 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 });
1033
+ PLayout = __decorate([
1034
+ ProxyCmp({
1035
+ defineCustomElementFn: undefined,
1036
+ inputs: ['variant']
1037
+ })
1038
+ ], PLayout);
1039
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PLayout, decorators: [{
1040
+ type: Component,
1041
+ args: [{
1042
+ selector: 'p-layout',
1043
+ changeDetection: ChangeDetectionStrategy.OnPush,
1044
+ template: '<ng-content></ng-content>',
1045
+ inputs: ['variant']
1046
+ }]
1047
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1048
+ let PLoader = class PLoader {
1049
+ constructor(c, r, z) {
1050
+ this.z = z;
1051
+ c.detach();
1052
+ this.el = r.nativeElement;
1053
+ }
1054
+ };
1055
+ 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 });
1056
+ 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 });
1057
+ PLoader = __decorate([
1058
+ ProxyCmp({
1059
+ defineCustomElementFn: undefined,
1060
+ inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
1061
+ })
1062
+ ], PLoader);
1063
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PLoader, decorators: [{
1064
+ type: Component,
1065
+ args: [{
1066
+ selector: 'p-loader',
1067
+ changeDetection: ChangeDetectionStrategy.OnPush,
1068
+ template: '<ng-content></ng-content>',
1069
+ inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
1070
+ }]
1071
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1072
+ let PModal = class PModal {
1073
+ constructor(c, r, z) {
1074
+ this.z = z;
1075
+ c.detach();
1076
+ this.el = r.nativeElement;
1077
+ proxyOutputs(this, this.el, ['close']);
1078
+ }
1079
+ };
1080
+ 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 });
1081
+ 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 });
1082
+ PModal = __decorate([
1083
+ ProxyCmp({
1084
+ defineCustomElementFn: undefined,
1085
+ inputs: ['header', 'show', 'showMobileClose', 'showMobileFooter', 'size', 'variant']
1086
+ })
1087
+ ], PModal);
1088
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModal, decorators: [{
1089
+ type: Component,
1090
+ args: [{
1091
+ selector: 'p-modal',
1092
+ changeDetection: ChangeDetectionStrategy.OnPush,
1093
+ template: '<ng-content></ng-content>',
1094
+ inputs: ['header', 'show', 'showMobileClose', 'showMobileFooter', 'size', 'variant']
1095
+ }]
1096
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1097
+ let PModalBackdrop = class PModalBackdrop {
1098
+ constructor(c, r, z) {
1099
+ this.z = z;
1100
+ c.detach();
1101
+ this.el = r.nativeElement;
1102
+ }
1103
+ };
1104
+ 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 });
1105
+ 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 });
1106
+ PModalBackdrop = __decorate([
1107
+ ProxyCmp({
1108
+ defineCustomElementFn: undefined
1109
+ })
1110
+ ], PModalBackdrop);
1111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalBackdrop, decorators: [{
1112
+ type: Component,
1113
+ args: [{
1114
+ selector: 'p-modal-backdrop',
1115
+ changeDetection: ChangeDetectionStrategy.OnPush,
1116
+ template: '<ng-content></ng-content>'
1117
+ }]
1118
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1119
+ let PModalBody = class PModalBody {
1120
+ constructor(c, r, z) {
1121
+ this.z = z;
1122
+ c.detach();
1123
+ this.el = r.nativeElement;
1124
+ }
1125
+ };
1126
+ 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 });
1127
+ 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 });
1128
+ PModalBody = __decorate([
1129
+ ProxyCmp({
1130
+ defineCustomElementFn: undefined,
1131
+ inputs: ['variant']
1132
+ })
1133
+ ], PModalBody);
1134
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalBody, decorators: [{
1135
+ type: Component,
1136
+ args: [{
1137
+ selector: 'p-modal-body',
1138
+ changeDetection: ChangeDetectionStrategy.OnPush,
1139
+ template: '<ng-content></ng-content>',
1140
+ inputs: ['variant']
1141
+ }]
1142
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1143
+ let PModalContainer = class PModalContainer {
1144
+ constructor(c, r, z) {
1145
+ this.z = z;
1146
+ c.detach();
1147
+ this.el = r.nativeElement;
1148
+ }
1149
+ };
1150
+ 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 });
1151
+ 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 });
1152
+ PModalContainer = __decorate([
1153
+ ProxyCmp({
1154
+ defineCustomElementFn: undefined,
1155
+ inputs: ['size']
1156
+ })
1157
+ ], PModalContainer);
1158
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalContainer, decorators: [{
1159
+ type: Component,
1160
+ args: [{
1161
+ selector: 'p-modal-container',
1162
+ changeDetection: ChangeDetectionStrategy.OnPush,
1163
+ template: '<ng-content></ng-content>',
1164
+ inputs: ['size']
1165
+ }]
1166
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1167
+ let PModalFooter = class PModalFooter {
1168
+ constructor(c, r, z) {
1169
+ this.z = z;
1170
+ c.detach();
1171
+ this.el = r.nativeElement;
1172
+ }
1173
+ };
1174
+ 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 });
1175
+ 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 });
1176
+ PModalFooter = __decorate([
1177
+ ProxyCmp({
1178
+ defineCustomElementFn: undefined,
1179
+ inputs: ['hideOnMobile']
1180
+ })
1181
+ ], PModalFooter);
1182
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalFooter, decorators: [{
1183
+ type: Component,
1184
+ args: [{
1185
+ selector: 'p-modal-footer',
1186
+ changeDetection: ChangeDetectionStrategy.OnPush,
1187
+ template: '<ng-content></ng-content>',
1188
+ inputs: ['hideOnMobile']
1189
+ }]
1190
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1191
+ let PModalHeader = class PModalHeader {
1192
+ constructor(c, r, z) {
1193
+ this.z = z;
1194
+ c.detach();
1195
+ this.el = r.nativeElement;
1196
+ proxyOutputs(this, this.el, ['close']);
1197
+ }
1198
+ };
1199
+ 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 });
1200
+ 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 });
1201
+ PModalHeader = __decorate([
1202
+ ProxyCmp({
1203
+ defineCustomElementFn: undefined,
1204
+ inputs: ['showMobileClose']
1205
+ })
1206
+ ], PModalHeader);
1207
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PModalHeader, decorators: [{
1208
+ type: Component,
1209
+ args: [{
1210
+ selector: 'p-modal-header',
1211
+ changeDetection: ChangeDetectionStrategy.OnPush,
1212
+ template: '<ng-content></ng-content>',
1213
+ inputs: ['showMobileClose']
1214
+ }]
1215
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1216
+ let PNavbar = class PNavbar {
1217
+ constructor(c, r, z) {
1218
+ this.z = z;
1219
+ c.detach();
1220
+ this.el = r.nativeElement;
1221
+ }
1222
+ };
1223
+ 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 });
1224
+ 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 });
1225
+ PNavbar = __decorate([
1226
+ ProxyCmp({
1227
+ defineCustomElementFn: undefined,
1228
+ inputs: ['closeText', 'menuText']
1229
+ })
1230
+ ], PNavbar);
1231
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PNavbar, decorators: [{
1232
+ type: Component,
1233
+ args: [{
1234
+ selector: 'p-navbar',
1235
+ changeDetection: ChangeDetectionStrategy.OnPush,
1236
+ template: '<ng-content></ng-content>',
1237
+ inputs: ['closeText', 'menuText']
1238
+ }]
1239
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1240
+ let PNavigationItem = class PNavigationItem {
1241
+ constructor(c, r, z) {
1242
+ this.z = z;
1243
+ c.detach();
1244
+ this.el = r.nativeElement;
1245
+ }
1246
+ };
1247
+ 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 });
1248
+ 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 });
1249
+ PNavigationItem = __decorate([
1250
+ ProxyCmp({
1251
+ defineCustomElementFn: undefined,
1252
+ inputs: ['active', 'counter', 'href', 'icon', 'target']
1253
+ })
1254
+ ], PNavigationItem);
1255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PNavigationItem, decorators: [{
1256
+ type: Component,
1257
+ args: [{
1258
+ selector: 'p-navigation-item',
1259
+ changeDetection: ChangeDetectionStrategy.OnPush,
1260
+ template: '<ng-content></ng-content>',
1261
+ inputs: ['active', 'counter', 'href', 'icon', 'target']
1262
+ }]
1263
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1264
+ let PPageSizeSelect = class PPageSizeSelect {
1265
+ constructor(c, r, z) {
1266
+ this.z = z;
1267
+ c.detach();
1268
+ this.el = r.nativeElement;
1269
+ proxyOutputs(this, this.el, ['sizeChange']);
1270
+ }
1271
+ };
1272
+ 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 });
1273
+ 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 });
1274
+ PPageSizeSelect = __decorate([
1275
+ ProxyCmp({
1276
+ defineCustomElementFn: undefined,
1277
+ inputs: ['buttonSize', 'buttonTemplate', 'chevronPosition', 'itemTemplate', 'size', 'sizeOptions']
1278
+ })
1279
+ ], PPageSizeSelect);
1280
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PPageSizeSelect, decorators: [{
1281
+ type: Component,
1282
+ args: [{
1283
+ selector: 'p-page-size-select',
1284
+ changeDetection: ChangeDetectionStrategy.OnPush,
1285
+ template: '<ng-content></ng-content>',
1286
+ inputs: ['buttonSize', 'buttonTemplate', 'chevronPosition', 'itemTemplate', 'size', 'sizeOptions']
1287
+ }]
1288
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1289
+ let PPagination = class PPagination {
1290
+ constructor(c, r, z) {
1291
+ this.z = z;
1292
+ c.detach();
1293
+ this.el = r.nativeElement;
1294
+ proxyOutputs(this, this.el, ['pageChange']);
1295
+ }
1296
+ };
1297
+ 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 });
1298
+ 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 });
1299
+ PPagination = __decorate([
1300
+ ProxyCmp({
1301
+ defineCustomElementFn: undefined,
1302
+ inputs: ['hideOnSinglePage', 'page', 'pageSize', 'total']
1303
+ })
1304
+ ], PPagination);
1305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PPagination, decorators: [{
1306
+ type: Component,
1307
+ args: [{
1308
+ selector: 'p-pagination',
1309
+ changeDetection: ChangeDetectionStrategy.OnPush,
1310
+ template: '<ng-content></ng-content>',
1311
+ inputs: ['hideOnSinglePage', 'page', 'pageSize', 'total']
1312
+ }]
1313
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1314
+ let PPaginationItem = class PPaginationItem {
1315
+ constructor(c, r, z) {
1316
+ this.z = z;
1317
+ c.detach();
1318
+ this.el = r.nativeElement;
1319
+ }
1320
+ };
1321
+ 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 });
1322
+ 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 });
1323
+ PPaginationItem = __decorate([
1324
+ ProxyCmp({
1325
+ defineCustomElementFn: undefined,
1326
+ inputs: ['active']
1327
+ })
1328
+ ], PPaginationItem);
1329
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PPaginationItem, decorators: [{
1330
+ type: Component,
1331
+ args: [{
1332
+ selector: 'p-pagination-item',
1333
+ changeDetection: ChangeDetectionStrategy.OnPush,
1334
+ template: '<ng-content></ng-content>',
1335
+ inputs: ['active']
1336
+ }]
1337
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1338
+ let PProfile = class PProfile {
1339
+ constructor(c, r, z) {
1340
+ this.z = z;
1341
+ c.detach();
1342
+ this.el = r.nativeElement;
1343
+ }
1344
+ };
1345
+ 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 });
1346
+ 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 });
1347
+ PProfile = __decorate([
1348
+ ProxyCmp({
1349
+ defineCustomElementFn: undefined,
1350
+ inputs: ['size', 'variant']
1351
+ })
1352
+ ], PProfile);
1353
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PProfile, decorators: [{
1354
+ type: Component,
1355
+ args: [{
1356
+ selector: 'p-profile',
1357
+ changeDetection: ChangeDetectionStrategy.OnPush,
1358
+ template: '<ng-content></ng-content>',
1359
+ inputs: ['size', 'variant']
1360
+ }]
1361
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1362
+ let PSegmentContainer = class PSegmentContainer {
1363
+ constructor(c, r, z) {
1364
+ this.z = z;
1365
+ c.detach();
1366
+ this.el = r.nativeElement;
1367
+ }
1368
+ };
1369
+ 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 });
1370
+ 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 });
1371
+ PSegmentContainer = __decorate([
1372
+ ProxyCmp({
1373
+ defineCustomElementFn: undefined
1374
+ })
1375
+ ], PSegmentContainer);
1376
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PSegmentContainer, decorators: [{
1377
+ type: Component,
1378
+ args: [{
1379
+ selector: 'p-segment-container',
1380
+ changeDetection: ChangeDetectionStrategy.OnPush,
1381
+ template: '<ng-content></ng-content>'
1382
+ }]
1383
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1384
+ let PSegmentItem = class PSegmentItem {
1385
+ constructor(c, r, z) {
1386
+ this.z = z;
1387
+ c.detach();
1388
+ this.el = r.nativeElement;
1389
+ }
1390
+ };
1391
+ 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 });
1392
+ 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 });
1393
+ PSegmentItem = __decorate([
1394
+ ProxyCmp({
1395
+ defineCustomElementFn: undefined,
1396
+ inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
1397
+ })
1398
+ ], PSegmentItem);
1399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PSegmentItem, decorators: [{
1400
+ type: Component,
1401
+ args: [{
1402
+ selector: 'p-segment-item',
1403
+ changeDetection: ChangeDetectionStrategy.OnPush,
1404
+ template: '<ng-content></ng-content>',
1405
+ inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
1406
+ }]
1407
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1408
+ let PSliderIndicator = class PSliderIndicator {
1409
+ constructor(c, r, z) {
1410
+ this.z = z;
1411
+ c.detach();
1412
+ this.el = r.nativeElement;
1413
+ }
1414
+ };
1415
+ 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 });
1416
+ 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 });
1417
+ PSliderIndicator = __decorate([
1418
+ ProxyCmp({
1419
+ defineCustomElementFn: undefined,
1420
+ inputs: ['active']
1421
+ })
1422
+ ], PSliderIndicator);
1423
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PSliderIndicator, decorators: [{
1424
+ type: Component,
1425
+ args: [{
1426
+ selector: 'p-slider-indicator',
1427
+ changeDetection: ChangeDetectionStrategy.OnPush,
1428
+ template: '<ng-content></ng-content>',
1429
+ inputs: ['active']
1430
+ }]
1431
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1432
+ let PStatus = class PStatus {
1433
+ constructor(c, r, z) {
1434
+ this.z = z;
1435
+ c.detach();
1436
+ this.el = r.nativeElement;
1437
+ }
1438
+ };
1439
+ 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 });
1440
+ 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 });
1441
+ PStatus = __decorate([
1442
+ ProxyCmp({
1443
+ defineCustomElementFn: undefined,
1444
+ inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
1445
+ })
1446
+ ], PStatus);
1447
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStatus, decorators: [{
1448
+ type: Component,
1449
+ args: [{
1450
+ selector: 'p-status',
1451
+ changeDetection: ChangeDetectionStrategy.OnPush,
1452
+ template: '<ng-content></ng-content>',
1453
+ inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
1454
+ }]
1455
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1456
+ let PStepper = class PStepper {
1457
+ constructor(c, r, z) {
1458
+ this.z = z;
1459
+ c.detach();
1460
+ this.el = r.nativeElement;
1461
+ }
1462
+ };
1463
+ 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 });
1464
+ 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 });
1465
+ PStepper = __decorate([
1466
+ ProxyCmp({
1467
+ defineCustomElementFn: undefined,
1468
+ inputs: ['activeStep', 'direction']
1469
+ })
1470
+ ], PStepper);
1471
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStepper, decorators: [{
1472
+ type: Component,
1473
+ args: [{
1474
+ selector: 'p-stepper',
1475
+ changeDetection: ChangeDetectionStrategy.OnPush,
1476
+ template: '<ng-content></ng-content>',
1477
+ inputs: ['activeStep', 'direction']
1478
+ }]
1479
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1480
+ let PStepperItem = class PStepperItem {
1481
+ constructor(c, r, z) {
1482
+ this.z = z;
1483
+ c.detach();
1484
+ this.el = r.nativeElement;
1485
+ }
1486
+ };
1487
+ 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 });
1488
+ 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 });
1489
+ PStepperItem = __decorate([
1490
+ ProxyCmp({
1491
+ defineCustomElementFn: undefined,
1492
+ inputs: ['active', 'align', 'direction', 'finished']
1493
+ })
1494
+ ], PStepperItem);
1495
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStepperItem, decorators: [{
1496
+ type: Component,
1497
+ args: [{
1498
+ selector: 'p-stepper-item',
1499
+ changeDetection: ChangeDetectionStrategy.OnPush,
1500
+ template: '<ng-content></ng-content>',
1501
+ inputs: ['active', 'align', 'direction', 'finished']
1502
+ }]
1503
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1504
+ let PStepperLine = class PStepperLine {
1505
+ constructor(c, r, z) {
1506
+ this.z = z;
1507
+ c.detach();
1508
+ this.el = r.nativeElement;
1509
+ }
1510
+ };
1511
+ 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 });
1512
+ 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 });
1513
+ PStepperLine = __decorate([
1514
+ ProxyCmp({
1515
+ defineCustomElementFn: undefined,
1516
+ inputs: ['active', 'direction']
1517
+ })
1518
+ ], PStepperLine);
1519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PStepperLine, decorators: [{
1520
+ type: Component,
1521
+ args: [{
1522
+ selector: 'p-stepper-line',
1523
+ changeDetection: ChangeDetectionStrategy.OnPush,
1524
+ template: '<ng-content></ng-content>',
1525
+ inputs: ['active', 'direction']
1526
+ }]
1527
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1528
+ let PTabGroup = class PTabGroup {
1529
+ constructor(c, r, z) {
1530
+ this.z = z;
1531
+ c.detach();
1532
+ this.el = r.nativeElement;
1533
+ }
1534
+ };
1535
+ 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 });
1536
+ 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 });
1537
+ PTabGroup = __decorate([
1538
+ ProxyCmp({
1539
+ defineCustomElementFn: undefined
1540
+ })
1541
+ ], PTabGroup);
1542
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTabGroup, decorators: [{
1543
+ type: Component,
1544
+ args: [{
1545
+ selector: 'p-tab-group',
1546
+ changeDetection: ChangeDetectionStrategy.OnPush,
1547
+ template: '<ng-content></ng-content>'
1548
+ }]
1549
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1550
+ let PTabItem = class PTabItem {
1551
+ constructor(c, r, z) {
1552
+ this.z = z;
1553
+ c.detach();
1554
+ this.el = r.nativeElement;
1555
+ }
1556
+ };
1557
+ 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 });
1558
+ 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 });
1559
+ PTabItem = __decorate([
1560
+ ProxyCmp({
1561
+ defineCustomElementFn: undefined,
1562
+ inputs: ['active']
1563
+ })
1564
+ ], PTabItem);
1565
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTabItem, decorators: [{
1566
+ type: Component,
1567
+ args: [{
1568
+ selector: 'p-tab-item',
1569
+ changeDetection: ChangeDetectionStrategy.OnPush,
1570
+ template: '<ng-content></ng-content>',
1571
+ inputs: ['active']
1572
+ }]
1573
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1574
+ let PTable = class PTable {
1575
+ constructor(c, r, z) {
1576
+ this.z = z;
1577
+ c.detach();
1578
+ this.el = r.nativeElement;
1579
+ proxyOutputs(this, this.el, ['selectedRowsChange', 'rowClick', 'rowSelected', 'rowDeselected', 'quickFilter', 'queryChange', 'filter', 'edit', 'pageChange', 'pageSizeChange', 'export']);
1580
+ }
1581
+ };
1582
+ 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 });
1583
+ 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 });
1584
+ PTable = __decorate([
1585
+ ProxyCmp({
1586
+ defineCustomElementFn: undefined,
1587
+ inputs: ['activeQuickFilterIdentifier', 'canSelectKey', 'editButtonTemplate', 'enableEdit', 'enableExport', 'enableFilter', 'enablePageSize', 'enablePagination', 'enableRowSelection', 'enableSearch', 'filterButtonTemplate', 'items', 'page', 'pageSize', 'pageSizeOptions', 'query', 'quickFilters', 'selectedFiltersAmount', 'selectedRows', 'selectionKey', 'total']
1588
+ })
1589
+ ], PTable);
1590
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTable, decorators: [{
1591
+ type: Component,
1592
+ args: [{
1593
+ selector: 'p-table',
1594
+ changeDetection: ChangeDetectionStrategy.OnPush,
1595
+ template: '<ng-content></ng-content>',
1596
+ inputs: ['activeQuickFilterIdentifier', 'canSelectKey', 'editButtonTemplate', 'enableEdit', 'enableExport', 'enableFilter', 'enablePageSize', 'enablePagination', 'enableRowSelection', 'enableSearch', 'filterButtonTemplate', 'items', 'page', 'pageSize', 'pageSizeOptions', 'query', 'quickFilters', 'selectedFiltersAmount', 'selectedRows', 'selectionKey', 'total']
1597
+ }]
1598
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1599
+ let PTableBody = class PTableBody {
1600
+ constructor(c, r, z) {
1601
+ this.z = z;
1602
+ c.detach();
1603
+ this.el = r.nativeElement;
1604
+ }
1605
+ };
1606
+ 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 });
1607
+ 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 });
1608
+ PTableBody = __decorate([
1609
+ ProxyCmp({
1610
+ defineCustomElementFn: undefined
1611
+ })
1612
+ ], PTableBody);
1613
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableBody, decorators: [{
1614
+ type: Component,
1615
+ args: [{
1616
+ selector: 'p-table-body',
1617
+ changeDetection: ChangeDetectionStrategy.OnPush,
1618
+ template: '<ng-content></ng-content>'
1619
+ }]
1620
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1621
+ let PTableContainer = class PTableContainer {
1622
+ constructor(c, r, z) {
1623
+ this.z = z;
1624
+ c.detach();
1625
+ this.el = r.nativeElement;
1626
+ }
1627
+ };
1628
+ 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 });
1629
+ 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 });
1630
+ PTableContainer = __decorate([
1631
+ ProxyCmp({
1632
+ defineCustomElementFn: undefined
1633
+ })
1634
+ ], PTableContainer);
1635
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableContainer, decorators: [{
1636
+ type: Component,
1637
+ args: [{
1638
+ selector: 'p-table-container',
1639
+ changeDetection: ChangeDetectionStrategy.OnPush,
1640
+ template: '<ng-content></ng-content>'
1641
+ }]
1642
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1643
+ let PTableDefinition = class PTableDefinition {
1644
+ constructor(c, r, z) {
1645
+ this.z = z;
1646
+ c.detach();
1647
+ this.el = r.nativeElement;
1648
+ proxyOutputs(this, this.el, ['tableDefinitionChanged']);
1649
+ }
1650
+ };
1651
+ 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 });
1652
+ 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 });
1653
+ PTableDefinition = __decorate([
1654
+ ProxyCmp({
1655
+ defineCustomElementFn: undefined,
1656
+ inputs: ['align', 'name', 'path', 'sizes', 'template', 'type']
1657
+ })
1658
+ ], PTableDefinition);
1659
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableDefinition, decorators: [{
1660
+ type: Component,
1661
+ args: [{
1662
+ selector: 'p-table-definition',
1663
+ changeDetection: ChangeDetectionStrategy.OnPush,
1664
+ template: '<ng-content></ng-content>',
1665
+ inputs: ['align', 'name', 'path', 'sizes', 'template', 'type']
1666
+ }]
1667
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1668
+ let PTableFooter = class PTableFooter {
1669
+ constructor(c, r, z) {
1670
+ this.z = z;
1671
+ c.detach();
1672
+ this.el = r.nativeElement;
1673
+ proxyOutputs(this, this.el, ['pageChange', 'pageSizeChange', 'export']);
1674
+ }
1675
+ };
1676
+ 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 });
1677
+ 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 });
1678
+ PTableFooter = __decorate([
1679
+ ProxyCmp({
1680
+ defineCustomElementFn: undefined,
1681
+ inputs: ['enableExport', 'enablePageSize', 'enablePagination', 'page', 'pageSize', 'pageSizeOptions', 'total']
1682
+ })
1683
+ ], PTableFooter);
1684
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableFooter, decorators: [{
1685
+ type: Component,
1686
+ args: [{
1687
+ selector: 'p-table-footer',
1688
+ changeDetection: ChangeDetectionStrategy.OnPush,
1689
+ template: '<ng-content></ng-content>',
1690
+ inputs: ['enableExport', 'enablePageSize', 'enablePagination', 'page', 'pageSize', 'pageSizeOptions', 'total']
1691
+ }]
1692
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1693
+ let PTableHeader = class PTableHeader {
1694
+ constructor(c, r, z) {
1695
+ this.z = z;
1696
+ c.detach();
1697
+ this.el = r.nativeElement;
1698
+ proxyOutputs(this, this.el, ['quickFilter', 'queryChange', 'filter', 'edit']);
1699
+ }
1700
+ };
1701
+ 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 });
1702
+ 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 });
1703
+ PTableHeader = __decorate([
1704
+ ProxyCmp({
1705
+ defineCustomElementFn: undefined,
1706
+ inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
1707
+ })
1708
+ ], PTableHeader);
1709
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableHeader, decorators: [{
1710
+ type: Component,
1711
+ args: [{
1712
+ selector: 'p-table-header',
1713
+ changeDetection: ChangeDetectionStrategy.OnPush,
1714
+ template: '<ng-content></ng-content>',
1715
+ inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
1716
+ }]
1717
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1718
+ let PTableRow = class PTableRow {
1719
+ constructor(c, r, z) {
1720
+ this.z = z;
1721
+ c.detach();
1722
+ this.el = r.nativeElement;
1723
+ }
1724
+ };
1725
+ 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 });
1726
+ 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 });
1727
+ PTableRow = __decorate([
1728
+ ProxyCmp({
1729
+ defineCustomElementFn: undefined,
1730
+ inputs: ['enableHover', 'variant']
1731
+ })
1732
+ ], PTableRow);
1733
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTableRow, decorators: [{
1734
+ type: Component,
1735
+ args: [{
1736
+ selector: 'p-table-row',
1737
+ changeDetection: ChangeDetectionStrategy.OnPush,
1738
+ template: '<ng-content></ng-content>',
1739
+ inputs: ['enableHover', 'variant']
1740
+ }]
1741
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1742
+ let PTag = class PTag {
1743
+ constructor(c, r, z) {
1744
+ this.z = z;
1745
+ c.detach();
1746
+ this.el = r.nativeElement;
1747
+ }
1748
+ };
1749
+ 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 });
1750
+ 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 });
1751
+ PTag = __decorate([
1752
+ ProxyCmp({
1753
+ defineCustomElementFn: undefined,
1754
+ inputs: ['circle', 'variant']
1755
+ })
1756
+ ], PTag);
1757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTag, decorators: [{
1758
+ type: Component,
1759
+ args: [{
1760
+ selector: 'p-tag',
1761
+ changeDetection: ChangeDetectionStrategy.OnPush,
1762
+ template: '<ng-content></ng-content>',
1763
+ inputs: ['circle', 'variant']
314
1764
  }]
315
1765
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
316
1766
  let PTooltip = class PTooltip {
@@ -318,51 +1768,90 @@ let PTooltip = class PTooltip {
318
1768
  this.z = z;
319
1769
  c.detach();
320
1770
  this.el = r.nativeElement;
1771
+ proxyOutputs(this, this.el, ['isOpen']);
321
1772
  }
322
1773
  };
323
- PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
324
- PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
1774
+ 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 });
1775
+ 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 });
325
1776
  PTooltip = __decorate([
326
1777
  ProxyCmp({
327
1778
  defineCustomElementFn: undefined,
328
- inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
1779
+ inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
329
1780
  })
330
1781
  ], PTooltip);
331
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTooltip, decorators: [{
1782
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PTooltip, decorators: [{
332
1783
  type: Component,
333
1784
  args: [{
334
1785
  selector: 'p-tooltip',
335
1786
  changeDetection: ChangeDetectionStrategy.OnPush,
336
1787
  template: '<ng-content></ng-content>',
337
- inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
1788
+ inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
338
1789
  }]
339
1790
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
340
1791
 
341
1792
  const DIRECTIVES = [
1793
+ PAccordion,
342
1794
  PAvatar,
1795
+ PAvatarGroup,
343
1796
  PButton,
1797
+ PCardBody,
1798
+ PCardContainer,
1799
+ PCardHeader,
1800
+ PContentSlider,
344
1801
  PCounter,
345
1802
  PDivider,
1803
+ PDropdown,
1804
+ PDropdownMenuContainer,
1805
+ PDropdownMenuItem,
346
1806
  PHelper,
347
1807
  PIcon,
348
1808
  PIllustration,
349
1809
  PInfoPanel,
1810
+ PInputGroup,
1811
+ PLayout,
350
1812
  PLoader,
1813
+ PModal,
1814
+ PModalBackdrop,
1815
+ PModalBody,
1816
+ PModalContainer,
1817
+ PModalFooter,
1818
+ PModalHeader,
1819
+ PNavbar,
1820
+ PNavigationItem,
1821
+ PPageSizeSelect,
351
1822
  PPagination,
352
1823
  PPaginationItem,
1824
+ PProfile,
1825
+ PSegmentContainer,
1826
+ PSegmentItem,
1827
+ PSliderIndicator,
1828
+ PStatus,
1829
+ PStepper,
1830
+ PStepperItem,
1831
+ PStepperLine,
1832
+ PTabGroup,
1833
+ PTabItem,
1834
+ PTable,
1835
+ PTableBody,
1836
+ PTableContainer,
1837
+ PTableDefinition,
1838
+ PTableFooter,
1839
+ PTableHeader,
1840
+ PTableRow,
1841
+ PTag,
353
1842
  PTooltip
354
1843
  ];
355
1844
 
356
1845
  class PaperlessModule {
357
1846
  }
358
- PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
359
- PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule, declarations: [PAvatar, PButton, PCounter, PDivider, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PPagination, PPaginationItem, PTooltip], exports: [PAvatar, PButton, PCounter, PDivider, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PPagination, PPaginationItem, PTooltip] });
360
- PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule });
361
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule, decorators: [{
1847
+ PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1848
+ 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, PageSizeSelectDirective, TableFooterDirective, TableHeaderDirective], 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, PageSizeSelectDirective, TableFooterDirective, TableHeaderDirective] });
1849
+ PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PaperlessModule });
1850
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.6", ngImport: i0, type: PaperlessModule, decorators: [{
362
1851
  type: NgModule,
363
1852
  args: [{
364
- declarations: [...DIRECTIVES],
365
- exports: [...DIRECTIVES],
1853
+ declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
1854
+ exports: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
366
1855
  }]
367
1856
  }] });
368
1857
 
@@ -374,5 +1863,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
374
1863
  * Generated bundle index. Do not edit.
375
1864
  */
376
1865
 
377
- export { PAvatar, PButton, PCounter, PDivider, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PPagination, PPaginationItem, PTooltip, PaperlessModule };
1866
+ export { BaseTableComponent, BaseUploadComponent, BaseValueAccessor, CUSTOM_DIRECTIVES, FormBaseComponent, 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, PageSizeSelectDirective, PaginationDirective, PaperlessModule, TableFooterDirective, TableHeaderDirective };
378
1867
  //# sourceMappingURL=paperless-angular.mjs.map