@paperless/angular 0.1.0-alpha.18 → 0.1.0-alpha.180

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