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