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

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