@paperless/angular 0.1.0-alpha.14 → 0.1.0-alpha.141

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