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