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

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