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

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