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

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