@paperless/angular 0.1.0-alpha.19 → 0.1.0-alpha.191

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