@paperless/angular 0.1.0-alpha.15 → 0.1.0-alpha.151

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 +1012 -60
  15. package/esm2020/lib/stencil/index.mjs +39 -1
  16. package/esm2020/public-api.mjs +2 -1
  17. package/fesm2015/paperless-angular.mjs +1573 -95
  18. package/fesm2015/paperless-angular.mjs.map +1 -1
  19. package/fesm2020/paperless-angular.mjs +1685 -198
  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} +4 -3
  30. package/lib/directives/p-table-footer.directive.d.ts +11 -0
  31. package/lib/directives/p-table-header.directive.d.ts +17 -0
  32. package/lib/directives/p-table.directive.d.ts +22 -0
  33. package/lib/paperless.module.d.ts +6 -2
  34. package/lib/stencil/components.d.ts +457 -13
  35. package/lib/stencil/index.d.ts +1 -1
  36. package/package.json +7 -6
  37. package/public-api.d.ts +1 -0
  38. package/esm2020/lib/directives/pagination.directive.mjs +0 -41
@@ -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,32 +356,71 @@ 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 {
48
360
  constructor(el) {
49
361
  super(el);
50
362
  }
363
+ writeValue(value) {
364
+ this.el.nativeElement.page = this.lastValue =
365
+ value == null ? '' : value;
366
+ }
51
367
  registerOnChange(fn) {
52
- super.registerOnChange((value) => {
53
- console.log("We got a change", value);
54
- fn(value === '' ? null : parseInt(value, 10));
55
- });
368
+ super.registerOnChange((value) => fn(value === '' ? null : parseInt(value, 10)));
56
369
  }
57
370
  }
58
- PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
59
- 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: [
371
+ PageSizeSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PageSizeSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
372
+ PageSizeSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.7", type: PageSizeSelectDirective, selector: "p-page-size-select", host: { listeners: { "sizeChange": "handleChangeEvent($event.detail)" } }, providers: [
373
+ {
374
+ provide: NG_VALUE_ACCESSOR,
375
+ useExisting: PageSizeSelectDirective,
376
+ multi: true,
377
+ },
378
+ ], usesInheritance: true, ngImport: i0 });
379
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PageSizeSelectDirective, decorators: [{
380
+ type: Directive,
381
+ args: [{
382
+ /* tslint:disable-next-line:directive-selector */
383
+ selector: 'p-page-size-select',
384
+ host: {
385
+ '(sizeChange)': 'handleChangeEvent($event.detail)',
386
+ },
387
+ providers: [
388
+ {
389
+ provide: NG_VALUE_ACCESSOR,
390
+ useExisting: PageSizeSelectDirective,
391
+ multi: true,
392
+ },
393
+ ],
394
+ }]
395
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
396
+
397
+ class PaginationDirective extends BaseValueAccessor {
398
+ constructor(el) {
399
+ super(el);
400
+ }
401
+ writeValue(value) {
402
+ this.el.nativeElement.page = this.lastValue =
403
+ value == null ? '' : value;
404
+ }
405
+ registerOnChange(fn) {
406
+ super.registerOnChange((value) => fn(value === '' ? null : parseInt(value, 10)));
407
+ }
408
+ }
409
+ PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
410
+ PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.7", type: PaginationDirective, selector: "p-pagination", host: { listeners: { "pageChange": "handleChangeEvent($event.detail)" } }, providers: [
60
411
  {
61
412
  provide: NG_VALUE_ACCESSOR,
62
413
  useExisting: PaginationDirective,
63
414
  multi: true,
64
415
  },
65
416
  ], usesInheritance: true, ngImport: i0 });
66
- 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: [{
67
418
  type: Directive,
68
419
  args: [{
69
420
  /* tslint:disable-next-line:directive-selector */
70
421
  selector: 'p-pagination',
71
422
  host: {
72
- '(pageChange)': 'handleChangeEvent($event.target.page)',
423
+ '(pageChange)': 'handleChangeEvent($event.detail)',
73
424
  },
74
425
  providers: [
75
426
  {
@@ -81,7 +432,182 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
81
432
  }]
82
433
  }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
83
434
 
84
- 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
+ ];
85
611
 
86
612
  /* eslint-disable */
87
613
  const proxyInputs = (Cmp, inputs) => {
@@ -134,6 +660,31 @@ function ProxyCmp(opts) {
134
660
  return decorator;
135
661
  }
136
662
 
663
+ let PAccordion = class PAccordion {
664
+ constructor(c, r, z) {
665
+ this.z = z;
666
+ c.detach();
667
+ this.el = r.nativeElement;
668
+ proxyOutputs(this, this.el, ['isOpen']);
669
+ }
670
+ };
671
+ PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.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([
674
+ ProxyCmp({
675
+ defineCustomElementFn: undefined,
676
+ inputs: ['closeable', 'header', 'open', 'openable']
677
+ })
678
+ ], PAccordion);
679
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PAccordion, decorators: [{
680
+ type: Component,
681
+ args: [{
682
+ selector: 'p-accordion',
683
+ changeDetection: ChangeDetectionStrategy.OnPush,
684
+ template: '<ng-content></ng-content>',
685
+ inputs: ['closeable', 'header', 'open', 'openable']
686
+ }]
687
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
137
688
  let PAvatar = class PAvatar {
138
689
  constructor(c, r, z) {
139
690
  this.z = z;
@@ -141,15 +692,15 @@ let PAvatar = class PAvatar {
141
692
  this.el = r.nativeElement;
142
693
  }
143
694
  };
144
- 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 });
145
- PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PAvatar, selector: "p-avatar", inputs: { defaultImage: "defaultImage", size: "size", src: "src", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
695
+ PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.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 });
146
697
  PAvatar = __decorate([
147
698
  ProxyCmp({
148
699
  defineCustomElementFn: undefined,
149
700
  inputs: ['defaultImage', 'size', 'src', 'variant']
150
701
  })
151
702
  ], PAvatar);
152
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PAvatar, decorators: [{
703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PAvatar, decorators: [{
153
704
  type: Component,
154
705
  args: [{
155
706
  selector: 'p-avatar',
@@ -158,68 +709,190 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
158
709
  inputs: ['defaultImage', 'size', 'src', 'variant']
159
710
  }]
160
711
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
161
- let PButton = class PButton {
712
+ let PAvatarGroup = class PAvatarGroup {
162
713
  constructor(c, r, z) {
163
714
  this.z = z;
164
715
  c.detach();
165
716
  this.el = r.nativeElement;
166
- proxyOutputs(this, this.el, ['onClick']);
167
717
  }
168
718
  };
169
- 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 });
170
- 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 });
171
- PButton = __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([
172
722
  ProxyCmp({
173
723
  defineCustomElementFn: undefined,
174
- inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
724
+ inputs: ['extra']
175
725
  })
176
- ], PButton);
177
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButton, decorators: [{
726
+ ], PAvatarGroup);
727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PAvatarGroup, decorators: [{
178
728
  type: Component,
179
729
  args: [{
180
- selector: 'p-button',
730
+ selector: 'p-avatar-group',
181
731
  changeDetection: ChangeDetectionStrategy.OnPush,
182
732
  template: '<ng-content></ng-content>',
183
- inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
733
+ inputs: ['extra']
184
734
  }]
185
735
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
186
- let PCounter = class PCounter {
736
+ let PButton = class PButton {
187
737
  constructor(c, r, z) {
188
738
  this.z = z;
189
739
  c.detach();
190
740
  this.el = r.nativeElement;
741
+ proxyOutputs(this, this.el, ['onClick']);
191
742
  }
192
743
  };
193
- 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 });
194
- 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 });
195
- PCounter = __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([
196
747
  ProxyCmp({
197
- defineCustomElementFn: undefined
748
+ defineCustomElementFn: undefined,
749
+ inputs: ['chevron', 'chevronPosition', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant', 'width']
198
750
  })
199
- ], PCounter);
200
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCounter, decorators: [{
751
+ ], PButton);
752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PButton, decorators: [{
201
753
  type: Component,
202
754
  args: [{
203
- selector: 'p-counter',
755
+ selector: 'p-button',
204
756
  changeDetection: ChangeDetectionStrategy.OnPush,
205
- 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']
206
759
  }]
207
760
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
208
- let PDivider = class PDivider {
761
+ let PCardBody = class PCardBody {
209
762
  constructor(c, r, z) {
210
763
  this.z = z;
211
764
  c.detach();
212
765
  this.el = r.nativeElement;
213
766
  }
214
767
  };
215
- 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 });
216
- 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 });
217
- PDivider = __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([
218
771
  ProxyCmp({
219
- defineCustomElementFn: undefined
772
+ defineCustomElementFn: undefined,
773
+ inputs: ['inheritText']
220
774
  })
221
- ], PDivider);
222
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, decorators: [{
775
+ ], PCardBody);
776
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.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: [{
223
896
  type: Component,
224
897
  args: [{
225
898
  selector: 'p-divider',
@@ -227,6 +900,77 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
227
900
  template: '<ng-content></ng-content>'
228
901
  }]
229
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([
938
+ ProxyCmp({
939
+ defineCustomElementFn: undefined
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 }]; } });
230
974
  let PHelper = class PHelper {
231
975
  constructor(c, r, z) {
232
976
  this.z = z;
@@ -234,19 +978,21 @@ let PHelper = class PHelper {
234
978
  this.el = r.nativeElement;
235
979
  }
236
980
  };
237
- 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 });
238
- 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 });
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 });
239
983
  PHelper = __decorate([
240
984
  ProxyCmp({
241
- defineCustomElementFn: undefined
985
+ defineCustomElementFn: undefined,
986
+ inputs: ['placement']
242
987
  })
243
988
  ], PHelper);
244
- 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: [{
245
990
  type: Component,
246
991
  args: [{
247
992
  selector: 'p-helper',
248
993
  changeDetection: ChangeDetectionStrategy.OnPush,
249
- template: '<ng-content></ng-content>'
994
+ template: '<ng-content></ng-content>',
995
+ inputs: ['placement']
250
996
  }]
251
997
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
252
998
  let PIcon = class PIcon {
@@ -256,15 +1002,15 @@ let PIcon = class PIcon {
256
1002
  this.el = r.nativeElement;
257
1003
  }
258
1004
  };
259
- 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 });
260
- 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 });
261
1007
  PIcon = __decorate([
262
1008
  ProxyCmp({
263
1009
  defineCustomElementFn: undefined,
264
1010
  inputs: ['flip', 'rotate', 'size', 'variant']
265
1011
  })
266
1012
  ], PIcon);
267
- 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: [{
268
1014
  type: Component,
269
1015
  args: [{
270
1016
  selector: 'p-icon',
@@ -280,15 +1026,15 @@ let PIllustration = class PIllustration {
280
1026
  this.el = r.nativeElement;
281
1027
  }
282
1028
  };
283
- 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 });
284
- 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 });
285
1031
  PIllustration = __decorate([
286
1032
  ProxyCmp({
287
1033
  defineCustomElementFn: undefined,
288
1034
  inputs: ['variant']
289
1035
  })
290
1036
  ], PIllustration);
291
- 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: [{
292
1038
  type: Component,
293
1039
  args: [{
294
1040
  selector: 'p-illustration',
@@ -304,15 +1050,15 @@ let PInfoPanel = class PInfoPanel {
304
1050
  this.el = r.nativeElement;
305
1051
  }
306
1052
  };
307
- 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 });
308
- 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 });
309
1055
  PInfoPanel = __decorate([
310
1056
  ProxyCmp({
311
1057
  defineCustomElementFn: undefined,
312
1058
  inputs: ['closeable', 'content', 'header', 'variant']
313
1059
  })
314
1060
  ], PInfoPanel);
315
- 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: [{
316
1062
  type: Component,
317
1063
  args: [{
318
1064
  selector: 'p-info-panel',
@@ -321,6 +1067,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
321
1067
  inputs: ['closeable', 'content', 'header', 'variant']
322
1068
  }]
323
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 }]; } });
324
1118
  let PLoader = class PLoader {
325
1119
  constructor(c, r, z) {
326
1120
  this.z = z;
@@ -328,15 +1122,15 @@ let PLoader = class PLoader {
328
1122
  this.el = r.nativeElement;
329
1123
  }
330
1124
  };
331
- 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 });
332
- 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 });
333
1127
  PLoader = __decorate([
334
1128
  ProxyCmp({
335
1129
  defineCustomElementFn: undefined,
336
1130
  inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
337
1131
  })
338
1132
  ], PLoader);
339
- 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: [{
340
1134
  type: Component,
341
1135
  args: [{
342
1136
  selector: 'p-loader',
@@ -345,53 +1139,698 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
345
1139
  inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
346
1140
  }]
347
1141
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
348
- let PPagination = class PPagination {
1142
+ let PModal = class PModal {
349
1143
  constructor(c, r, z) {
350
1144
  this.z = z;
351
1145
  c.detach();
352
1146
  this.el = r.nativeElement;
353
- proxyOutputs(this, this.el, ['pageChange']);
1147
+ proxyOutputs(this, this.el, ['close']);
354
1148
  }
355
1149
  };
356
- 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 });
357
- 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 });
358
- 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([
359
1153
  ProxyCmp({
360
1154
  defineCustomElementFn: undefined,
361
- inputs: ['page', 'pageSize', 'total']
1155
+ inputs: ['header', 'show', 'showMobileClose', 'showMobileFooter', 'size', 'variant']
362
1156
  })
363
- ], PPagination);
364
- 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: [{
365
1159
  type: Component,
366
1160
  args: [{
367
- selector: 'p-pagination',
1161
+ selector: 'p-modal',
368
1162
  changeDetection: ChangeDetectionStrategy.OnPush,
369
1163
  template: '<ng-content></ng-content>',
370
- inputs: ['page', 'pageSize', 'total']
1164
+ inputs: ['header', 'show', 'showMobileClose', 'showMobileFooter', 'size', 'variant']
371
1165
  }]
372
1166
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
373
- let PPaginationItem = class PPaginationItem {
1167
+ let PModalBackdrop = class PModalBackdrop {
374
1168
  constructor(c, r, z) {
375
1169
  this.z = z;
376
1170
  c.detach();
377
1171
  this.el = r.nativeElement;
378
1172
  }
379
1173
  };
380
- 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 });
381
- 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 });
382
- 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([
383
1199
  ProxyCmp({
384
1200
  defineCustomElementFn: undefined,
385
- inputs: ['active']
1201
+ inputs: ['variant']
386
1202
  })
387
- ], PPaginationItem);
388
- 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: [{
389
1205
  type: Component,
390
1206
  args: [{
391
- selector: 'p-pagination-item',
1207
+ selector: 'p-modal-body',
392
1208
  changeDetection: ChangeDetectionStrategy.OnPush,
393
1209
  template: '<ng-content></ng-content>',
394
- 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 PTableDefinition = class PTableDefinition {
1714
+ constructor(c, r, z) {
1715
+ this.z = z;
1716
+ c.detach();
1717
+ this.el = r.nativeElement;
1718
+ proxyOutputs(this, this.el, ['tableDefinitionChanged']);
1719
+ }
1720
+ };
1721
+ PTableDefinition.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTableDefinition, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1722
+ PTableDefinition.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PTableDefinition, selector: "p-table-definition", inputs: { align: "align", name: "name", path: "path", sizes: "sizes", template: "template", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1723
+ PTableDefinition = __decorate([
1724
+ ProxyCmp({
1725
+ defineCustomElementFn: undefined,
1726
+ inputs: ['align', 'name', 'path', 'sizes', 'template', 'type']
1727
+ })
1728
+ ], PTableDefinition);
1729
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTableDefinition, decorators: [{
1730
+ type: Component,
1731
+ args: [{
1732
+ selector: 'p-table-definition',
1733
+ changeDetection: ChangeDetectionStrategy.OnPush,
1734
+ template: '<ng-content></ng-content>',
1735
+ inputs: ['align', 'name', 'path', 'sizes', 'template', 'type']
1736
+ }]
1737
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1738
+ let PTableFooter = class PTableFooter {
1739
+ constructor(c, r, z) {
1740
+ this.z = z;
1741
+ c.detach();
1742
+ this.el = r.nativeElement;
1743
+ proxyOutputs(this, this.el, ['pageChange', 'pageSizeChange', 'export']);
1744
+ }
1745
+ };
1746
+ PTableFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTableFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1747
+ PTableFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.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 });
1748
+ PTableFooter = __decorate([
1749
+ ProxyCmp({
1750
+ defineCustomElementFn: undefined,
1751
+ inputs: ['enableExport', 'enablePageSize', 'enablePagination', 'hideOnSinglePage', 'page', 'pageSize', 'pageSizeOptions', 'total']
1752
+ })
1753
+ ], PTableFooter);
1754
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTableFooter, decorators: [{
1755
+ type: Component,
1756
+ args: [{
1757
+ selector: 'p-table-footer',
1758
+ changeDetection: ChangeDetectionStrategy.OnPush,
1759
+ template: '<ng-content></ng-content>',
1760
+ inputs: ['enableExport', 'enablePageSize', 'enablePagination', 'hideOnSinglePage', 'page', 'pageSize', 'pageSizeOptions', 'total']
1761
+ }]
1762
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1763
+ let PTableHeader = class PTableHeader {
1764
+ constructor(c, r, z) {
1765
+ this.z = z;
1766
+ c.detach();
1767
+ this.el = r.nativeElement;
1768
+ proxyOutputs(this, this.el, ['quickFilter', 'queryChange', 'filter', 'edit']);
1769
+ }
1770
+ };
1771
+ PTableHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1772
+ PTableHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.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 });
1773
+ PTableHeader = __decorate([
1774
+ ProxyCmp({
1775
+ defineCustomElementFn: undefined,
1776
+ inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
1777
+ })
1778
+ ], PTableHeader);
1779
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTableHeader, decorators: [{
1780
+ type: Component,
1781
+ args: [{
1782
+ selector: 'p-table-header',
1783
+ changeDetection: ChangeDetectionStrategy.OnPush,
1784
+ template: '<ng-content></ng-content>',
1785
+ inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
1786
+ }]
1787
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1788
+ let PTableRow = class PTableRow {
1789
+ constructor(c, r, z) {
1790
+ this.z = z;
1791
+ c.detach();
1792
+ this.el = r.nativeElement;
1793
+ }
1794
+ };
1795
+ PTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1796
+ PTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.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 });
1797
+ PTableRow = __decorate([
1798
+ ProxyCmp({
1799
+ defineCustomElementFn: undefined,
1800
+ inputs: ['enableHover', 'variant']
1801
+ })
1802
+ ], PTableRow);
1803
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTableRow, decorators: [{
1804
+ type: Component,
1805
+ args: [{
1806
+ selector: 'p-table-row',
1807
+ changeDetection: ChangeDetectionStrategy.OnPush,
1808
+ template: '<ng-content></ng-content>',
1809
+ inputs: ['enableHover', 'variant']
1810
+ }]
1811
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1812
+ let PTag = class PTag {
1813
+ constructor(c, r, z) {
1814
+ this.z = z;
1815
+ c.detach();
1816
+ this.el = r.nativeElement;
1817
+ }
1818
+ };
1819
+ PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1820
+ PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PTag, selector: "p-tag", inputs: { circle: "circle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1821
+ PTag = __decorate([
1822
+ ProxyCmp({
1823
+ defineCustomElementFn: undefined,
1824
+ inputs: ['circle', 'variant']
1825
+ })
1826
+ ], PTag);
1827
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTag, decorators: [{
1828
+ type: Component,
1829
+ args: [{
1830
+ selector: 'p-tag',
1831
+ changeDetection: ChangeDetectionStrategy.OnPush,
1832
+ template: '<ng-content></ng-content>',
1833
+ inputs: ['circle', 'variant']
395
1834
  }]
396
1835
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
397
1836
  let PTooltip = class PTooltip {
@@ -399,47 +1838,86 @@ let PTooltip = class PTooltip {
399
1838
  this.z = z;
400
1839
  c.detach();
401
1840
  this.el = r.nativeElement;
1841
+ proxyOutputs(this, this.el, ['isOpen']);
402
1842
  }
403
1843
  };
404
- 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 });
405
- PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTooltip, selector: "p-tooltip", inputs: { canManuallyClose: "canManuallyClose", placement: "placement", popover: "popover", show: "show", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1844
+ PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1845
+ PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.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 });
406
1846
  PTooltip = __decorate([
407
1847
  ProxyCmp({
408
1848
  defineCustomElementFn: undefined,
409
- inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
1849
+ inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
410
1850
  })
411
1851
  ], PTooltip);
412
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTooltip, decorators: [{
1852
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PTooltip, decorators: [{
413
1853
  type: Component,
414
1854
  args: [{
415
1855
  selector: 'p-tooltip',
416
1856
  changeDetection: ChangeDetectionStrategy.OnPush,
417
1857
  template: '<ng-content></ng-content>',
418
- inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
1858
+ inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
419
1859
  }]
420
1860
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
421
1861
 
422
1862
  const DIRECTIVES = [
1863
+ PAccordion,
423
1864
  PAvatar,
1865
+ PAvatarGroup,
424
1866
  PButton,
1867
+ PCardBody,
1868
+ PCardContainer,
1869
+ PCardHeader,
1870
+ PContentSlider,
425
1871
  PCounter,
426
1872
  PDivider,
1873
+ PDropdown,
1874
+ PDropdownMenuContainer,
1875
+ PDropdownMenuItem,
427
1876
  PHelper,
428
1877
  PIcon,
429
1878
  PIllustration,
430
1879
  PInfoPanel,
1880
+ PInputGroup,
1881
+ PLayout,
431
1882
  PLoader,
1883
+ PModal,
1884
+ PModalBackdrop,
1885
+ PModalBody,
1886
+ PModalContainer,
1887
+ PModalFooter,
1888
+ PModalHeader,
1889
+ PNavbar,
1890
+ PNavigationItem,
1891
+ PPageSizeSelect,
432
1892
  PPagination,
433
1893
  PPaginationItem,
1894
+ PProfile,
1895
+ PSegmentContainer,
1896
+ PSegmentItem,
1897
+ PSliderIndicator,
1898
+ PStatus,
1899
+ PStepper,
1900
+ PStepperItem,
1901
+ PStepperLine,
1902
+ PTabGroup,
1903
+ PTabItem,
1904
+ PTable,
1905
+ PTableBody,
1906
+ PTableContainer,
1907
+ PTableDefinition,
1908
+ PTableFooter,
1909
+ PTableHeader,
1910
+ PTableRow,
1911
+ PTag,
434
1912
  PTooltip
435
1913
  ];
436
1914
 
437
1915
  class PaperlessModule {
438
1916
  }
439
- PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
440
- 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] });
441
- PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule });
442
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule, decorators: [{
1917
+ PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1918
+ 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, PTableDefinition, PTableFooter, PTableHeader, PTableRow, PTag, PTooltip, PaginationDirective, PageSizeSelectDirective, TableFooterDirective, TableHeaderDirective, TableDirective], exports: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTable, PTableBody, PTableContainer, PTableDefinition, PTableFooter, PTableHeader, PTableRow, PTag, PTooltip, PaginationDirective, PageSizeSelectDirective, TableFooterDirective, TableHeaderDirective, TableDirective] });
1919
+ PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule });
1920
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PaperlessModule, decorators: [{
443
1921
  type: NgModule,
444
1922
  args: [{
445
1923
  declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
@@ -455,5 +1933,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
455
1933
  * Generated bundle index. Do not edit.
456
1934
  */
457
1935
 
458
- export { CUSTOM_DIRECTIVES, PAvatar, PButton, PCounter, PDivider, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PPagination, PPaginationItem, PTooltip, PaginationDirective, PaperlessModule };
1936
+ export { BaseTableComponent, BaseUploadComponent, BaseValueAccessor, CUSTOM_DIRECTIVES, FormBaseComponent, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTable, PTableBody, PTableContainer, PTableDefinition, PTableFooter, PTableHeader, PTableRow, PTag, PTooltip, PageSizeSelectDirective, PaginationDirective, PaperlessModule, TableDirective, TableFooterDirective, TableHeaderDirective };
459
1937
  //# sourceMappingURL=paperless-angular.mjs.map