@paperless/angular 0.1.0-alpha.15 → 0.1.0-alpha.151

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