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

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