@paperless/angular 0.1.0-alpha.16 → 0.1.0-alpha.161

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