@paperless/angular 0.1.0-alpha.281 → 0.1.0-alpha.282
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/base/upload.component.mjs +3 -3
- package/esm2020/lib/base/value-accessor.mjs +3 -3
- package/esm2020/lib/directives/p-page-size-select.directive.mjs +3 -3
- package/esm2020/lib/directives/p-pagination.directive.mjs +3 -3
- package/esm2020/lib/directives/p-select.directive.mjs +3 -3
- package/esm2020/lib/modules/index.mjs +4 -2
- package/esm2020/lib/modules/overlay/index.mjs +4 -0
- package/esm2020/lib/modules/overlay/overlay.module.mjs +38 -0
- package/esm2020/lib/modules/overlay/overlay.ref.mjs +9 -0
- package/esm2020/lib/modules/overlay/services/index.mjs +4 -0
- package/esm2020/lib/modules/overlay/services/overlay.service.mjs +65 -0
- package/esm2020/lib/modules/table/base/form.component.mjs +3 -3
- package/esm2020/lib/modules/table/base/table.component.mjs +3 -3
- package/esm2020/lib/modules/table/components/table/table.component.mjs +3 -3
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +3 -3
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +3 -3
- package/esm2020/lib/modules/table/directives/p-table-filter-modal.directive.mjs +3 -3
- package/esm2020/lib/modules/table/directives/p-table-footer.directive.mjs +3 -3
- package/esm2020/lib/modules/table/directives/p-table-header.directive.mjs +3 -3
- package/esm2020/lib/modules/table/directives/p-table-ngx.directive.mjs +3 -3
- package/esm2020/lib/modules/table/directives/p-table.directive.mjs +3 -3
- package/esm2020/lib/modules/table/table.module.mjs +4 -4
- package/esm2020/lib/modules/toast/components/toast-container/toast-container.component.mjs +3 -3
- package/esm2020/lib/modules/toast/directives/toast.directive.mjs +3 -3
- package/esm2020/lib/modules/toast/services/toast.service.mjs +3 -3
- package/esm2020/lib/modules/toast/toast.module.mjs +4 -4
- package/esm2020/lib/paperless.module.mjs +8 -6
- package/esm2020/lib/pipes/currency.pipe.mjs +3 -3
- package/esm2020/lib/pipes/date.pipe.mjs +3 -3
- package/esm2020/lib/pipes/safe.pipe.mjs +3 -3
- package/esm2020/lib/stencil/components.mjs +170 -168
- package/esm2020/lib/stencil.module.mjs +4 -4
- package/fesm2015/paperless-angular.mjs +1025 -917
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +1024 -917
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/index.d.ts +3 -2
- package/lib/modules/overlay/index.d.ts +3 -0
- package/lib/modules/overlay/overlay.module.d.ts +12 -0
- package/lib/modules/overlay/overlay.ref.d.ts +6 -0
- package/lib/modules/overlay/services/index.d.ts +3 -0
- package/lib/modules/overlay/services/overlay.service.d.ts +22 -0
- package/lib/paperless.module.d.ts +2 -1
- package/lib/stencil/components.d.ts +13 -5
- package/package.json +2 -1
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Component, Input, Output, ViewChild, Directive, HostListener, ChangeDetectionStrategy, HostBinding, TemplateRef, ContentChild, ContentChildren, Host,
|
|
2
|
+
import { EventEmitter, Component, Input, Output, ViewChild, Directive, HostListener, ChangeDetectionStrategy, NgModule, Injector, Injectable, HostBinding, TemplateRef, ContentChild, ContentChildren, Host, Pipe } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR, FormControl, FormGroup, FormArray } from '@angular/forms';
|
|
4
|
+
import * as i1$1 from '@angular/common';
|
|
5
|
+
import { CommonModule, DatePipe, CurrencyPipe } from '@angular/common';
|
|
4
6
|
import { __decorate } from 'tslib';
|
|
7
|
+
import { fromEvent, timer, BehaviorSubject, distinctUntilChanged, map as map$1 } from 'rxjs';
|
|
8
|
+
import { ObserversModule } from '@angular/cdk/observers';
|
|
9
|
+
import * as i1 from '@angular/cdk/overlay';
|
|
10
|
+
import { OverlayModule as OverlayModule$1, OverlayConfig } from '@angular/cdk/overlay';
|
|
11
|
+
import { PlatformModule } from '@angular/cdk/platform';
|
|
12
|
+
import { PortalModule, CdkPortal, ComponentPortal } from '@angular/cdk/portal';
|
|
5
13
|
import { untilDestroyed, UntilDestroy } from '@ngneat/until-destroy';
|
|
6
|
-
import { timer, fromEvent, BehaviorSubject, distinctUntilChanged, map as map$1 } from 'rxjs';
|
|
7
14
|
import { startWith, pairwise, map, filter, debounce } from 'rxjs/operators';
|
|
8
15
|
import { objectGetByPath } from '@paperless/core';
|
|
9
|
-
import * as i1 from '@angular/common';
|
|
10
|
-
import { CommonModule, DatePipe, CurrencyPipe } from '@angular/common';
|
|
11
16
|
import { trigger, transition, style, animate } from '@angular/animations';
|
|
12
|
-
import * as i1$
|
|
17
|
+
import * as i1$2 from '@angular/platform-browser';
|
|
13
18
|
|
|
14
19
|
class BaseUploadComponent {
|
|
15
20
|
constructor() {
|
|
@@ -46,9 +51,9 @@ class BaseUploadComponent {
|
|
|
46
51
|
this._loading = false;
|
|
47
52
|
}
|
|
48
53
|
}
|
|
49
|
-
BaseUploadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
50
|
-
BaseUploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
51
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
54
|
+
BaseUploadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: BaseUploadComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
55
|
+
BaseUploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
56
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: BaseUploadComponent, decorators: [{
|
|
52
57
|
type: Component,
|
|
53
58
|
args: [{
|
|
54
59
|
template: ``,
|
|
@@ -96,9 +101,9 @@ class BaseValueAccessor {
|
|
|
96
101
|
this.onTouched();
|
|
97
102
|
}
|
|
98
103
|
}
|
|
99
|
-
BaseValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
100
|
-
BaseValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
104
|
+
BaseValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: BaseValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
105
|
+
BaseValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", type: BaseValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: BaseValueAccessor, decorators: [{
|
|
102
107
|
type: Directive,
|
|
103
108
|
args: [{}]
|
|
104
109
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
@@ -118,15 +123,15 @@ class PageSizeSelectDirective extends BaseValueAccessor {
|
|
|
118
123
|
super.registerOnChange((value) => fn(parseInt(value, 10)));
|
|
119
124
|
}
|
|
120
125
|
}
|
|
121
|
-
PageSizeSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
122
|
-
PageSizeSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
126
|
+
PageSizeSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PageSizeSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
127
|
+
PageSizeSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", type: PageSizeSelectDirective, selector: "p-page-size-select", host: { listeners: { "sizeChange": "handleChangeEvent($event.detail)" } }, providers: [
|
|
123
128
|
{
|
|
124
129
|
provide: NG_VALUE_ACCESSOR,
|
|
125
130
|
useExisting: PageSizeSelectDirective,
|
|
126
131
|
multi: true,
|
|
127
132
|
},
|
|
128
133
|
], usesInheritance: true, ngImport: i0 });
|
|
129
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PageSizeSelectDirective, decorators: [{
|
|
130
135
|
type: Directive,
|
|
131
136
|
args: [{
|
|
132
137
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -156,15 +161,15 @@ class PaginationDirective extends BaseValueAccessor {
|
|
|
156
161
|
super.registerOnChange((value) => fn(parseInt(value, 10)));
|
|
157
162
|
}
|
|
158
163
|
}
|
|
159
|
-
PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
160
|
-
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
164
|
+
PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
165
|
+
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", type: PaginationDirective, selector: "p-pagination", host: { listeners: { "pageChange": "handleChangeEvent($event.detail)" } }, providers: [
|
|
161
166
|
{
|
|
162
167
|
provide: NG_VALUE_ACCESSOR,
|
|
163
168
|
useExisting: PaginationDirective,
|
|
164
169
|
multi: true,
|
|
165
170
|
},
|
|
166
171
|
], usesInheritance: true, ngImport: i0 });
|
|
167
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PaginationDirective, decorators: [{
|
|
168
173
|
type: Directive,
|
|
169
174
|
args: [{
|
|
170
175
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -190,15 +195,15 @@ class SelectDirective extends BaseValueAccessor {
|
|
|
190
195
|
this.el.nativeElement.value = this.lastValue = value;
|
|
191
196
|
}
|
|
192
197
|
}
|
|
193
|
-
SelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
194
|
-
SelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
198
|
+
SelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: SelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
199
|
+
SelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", type: SelectDirective, selector: "p-select", host: { listeners: { "valueChange": "handleChangeEvent($event.detail)" } }, providers: [
|
|
195
200
|
{
|
|
196
201
|
provide: NG_VALUE_ACCESSOR,
|
|
197
202
|
useExisting: SelectDirective,
|
|
198
203
|
multi: true,
|
|
199
204
|
},
|
|
200
205
|
], usesInheritance: true, ngImport: i0 });
|
|
201
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: SelectDirective, decorators: [{
|
|
202
207
|
type: Directive,
|
|
203
208
|
args: [{
|
|
204
209
|
selector: 'p-select',
|
|
@@ -221,560 +226,244 @@ const DIRECTIVES$1 = [
|
|
|
221
226
|
SelectDirective,
|
|
222
227
|
];
|
|
223
228
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
first.scrollIntoView({
|
|
235
|
-
behavior: 'smooth',
|
|
236
|
-
block: 'center',
|
|
237
|
-
inline: 'center',
|
|
238
|
-
});
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
markControlDirty(control) {
|
|
242
|
-
if (control instanceof FormControl) {
|
|
243
|
-
control.markAsDirty({ onlySelf: true });
|
|
244
|
-
control.markAsTouched({ onlySelf: true });
|
|
245
|
-
}
|
|
246
|
-
else if (control instanceof FormGroup) {
|
|
247
|
-
control.markAsDirty();
|
|
248
|
-
control.markAsTouched();
|
|
249
|
-
this.markAllDirty(control);
|
|
250
|
-
}
|
|
251
|
-
else if (control instanceof FormArray) {
|
|
252
|
-
control.markAsDirty();
|
|
253
|
-
control.markAsTouched();
|
|
254
|
-
for (const child of control?.controls) {
|
|
255
|
-
this.markControlDirty(child);
|
|
229
|
+
/* eslint-disable */
|
|
230
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
231
|
+
const Prototype = Cmp.prototype;
|
|
232
|
+
inputs.forEach(item => {
|
|
233
|
+
Object.defineProperty(Prototype, item, {
|
|
234
|
+
get() {
|
|
235
|
+
return this.el[item];
|
|
236
|
+
},
|
|
237
|
+
set(val) {
|
|
238
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
256
239
|
}
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
240
|
+
});
|
|
241
|
+
});
|
|
242
|
+
};
|
|
243
|
+
const proxyMethods = (Cmp, methods) => {
|
|
244
|
+
const Prototype = Cmp.prototype;
|
|
245
|
+
methods.forEach(methodName => {
|
|
246
|
+
Prototype[methodName] = function () {
|
|
247
|
+
const args = arguments;
|
|
248
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
249
|
+
};
|
|
250
|
+
});
|
|
251
|
+
};
|
|
252
|
+
const proxyOutputs = (instance, el, events) => {
|
|
253
|
+
events.forEach(eventName => instance[eventName] = fromEvent(el, eventName));
|
|
254
|
+
};
|
|
255
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
256
|
+
if (customElement !== undefined &&
|
|
257
|
+
typeof customElements !== 'undefined' &&
|
|
258
|
+
!customElements.get(tagName)) {
|
|
259
|
+
customElements.define(tagName, customElement);
|
|
275
260
|
}
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
261
|
+
};
|
|
262
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
263
|
+
function ProxyCmp(opts) {
|
|
264
|
+
const decorator = function (cls) {
|
|
265
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
266
|
+
if (defineCustomElementFn !== undefined) {
|
|
267
|
+
defineCustomElementFn();
|
|
282
268
|
}
|
|
283
|
-
if (
|
|
284
|
-
|
|
269
|
+
if (inputs) {
|
|
270
|
+
proxyInputs(cls, inputs);
|
|
285
271
|
}
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
for (const key of keys) {
|
|
289
|
-
if (control.errors[key]) {
|
|
290
|
-
err = key;
|
|
291
|
-
break;
|
|
292
|
-
}
|
|
272
|
+
if (methods) {
|
|
273
|
+
proxyMethods(cls, methods);
|
|
293
274
|
}
|
|
294
|
-
return
|
|
275
|
+
return cls;
|
|
276
|
+
};
|
|
277
|
+
return decorator;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
let PAccordion = class PAccordion {
|
|
281
|
+
constructor(c, r, z) {
|
|
282
|
+
this.z = z;
|
|
283
|
+
c.detach();
|
|
284
|
+
this.el = r.nativeElement;
|
|
285
|
+
proxyOutputs(this, this.el, ['isOpen']);
|
|
295
286
|
}
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
287
|
+
};
|
|
288
|
+
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
289
|
+
PAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
290
|
+
PAccordion = __decorate([
|
|
291
|
+
ProxyCmp({
|
|
292
|
+
defineCustomElementFn: undefined,
|
|
293
|
+
inputs: ['closeable', 'header', 'open', 'openable']
|
|
294
|
+
})
|
|
295
|
+
], PAccordion);
|
|
296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PAccordion, decorators: [{
|
|
297
|
+
type: Component,
|
|
298
|
+
args: [{
|
|
299
|
+
selector: 'p-accordion',
|
|
300
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
301
|
+
template: '<ng-content></ng-content>',
|
|
302
|
+
inputs: ['closeable', 'header', 'open', 'openable']
|
|
303
|
+
}]
|
|
304
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
305
|
+
let PAvatar = class PAvatar {
|
|
306
|
+
constructor(c, r, z) {
|
|
307
|
+
this.z = z;
|
|
308
|
+
c.detach();
|
|
309
|
+
this.el = r.nativeElement;
|
|
308
310
|
}
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
311
|
+
};
|
|
312
|
+
PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
313
|
+
PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
314
|
+
PAvatar = __decorate([
|
|
315
|
+
ProxyCmp({
|
|
316
|
+
defineCustomElementFn: undefined,
|
|
317
|
+
inputs: ['defaultImage', 'size', 'src', 'variant']
|
|
318
|
+
})
|
|
319
|
+
], PAvatar);
|
|
320
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PAvatar, decorators: [{
|
|
321
|
+
type: Component,
|
|
322
|
+
args: [{
|
|
323
|
+
selector: 'p-avatar',
|
|
324
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
325
|
+
template: '<ng-content></ng-content>',
|
|
326
|
+
inputs: ['defaultImage', 'size', 'src', 'variant']
|
|
327
|
+
}]
|
|
328
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
329
|
+
let PAvatarGroup = class PAvatarGroup {
|
|
330
|
+
constructor(c, r, z) {
|
|
331
|
+
this.z = z;
|
|
332
|
+
c.detach();
|
|
333
|
+
this.el = r.nativeElement;
|
|
315
334
|
}
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
335
|
+
};
|
|
336
|
+
PAvatarGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PAvatarGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
337
|
+
PAvatarGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PAvatarGroup, selector: "p-avatar-group", inputs: { extra: "extra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
338
|
+
PAvatarGroup = __decorate([
|
|
339
|
+
ProxyCmp({
|
|
340
|
+
defineCustomElementFn: undefined,
|
|
341
|
+
inputs: ['extra']
|
|
342
|
+
})
|
|
343
|
+
], PAvatarGroup);
|
|
344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PAvatarGroup, decorators: [{
|
|
320
345
|
type: Component,
|
|
321
346
|
args: [{
|
|
322
|
-
|
|
347
|
+
selector: 'p-avatar-group',
|
|
348
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
349
|
+
template: '<ng-content></ng-content>',
|
|
350
|
+
inputs: ['extra']
|
|
323
351
|
}]
|
|
324
|
-
}] });
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
if (key !== quickFilterKey && !value?.length) {
|
|
332
|
-
continue;
|
|
333
|
-
}
|
|
334
|
-
if (quickFilterKey && key === quickFilterKey) {
|
|
335
|
-
quickFilter = quickFilters.find((f) => f.value === value);
|
|
336
|
-
continue;
|
|
337
|
-
}
|
|
338
|
-
filters.push({
|
|
339
|
-
key,
|
|
340
|
-
value,
|
|
341
|
-
});
|
|
352
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
353
|
+
let PBackdrop = class PBackdrop {
|
|
354
|
+
constructor(c, r, z) {
|
|
355
|
+
this.z = z;
|
|
356
|
+
c.detach();
|
|
357
|
+
this.el = r.nativeElement;
|
|
358
|
+
proxyOutputs(this, this.el, ['clicked']);
|
|
342
359
|
}
|
|
343
|
-
return {
|
|
344
|
-
filters,
|
|
345
|
-
quickFilter,
|
|
346
|
-
};
|
|
347
360
|
};
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
}
|
|
372
|
-
get page() {
|
|
373
|
-
if (!this.tableOptions) {
|
|
374
|
-
return this._defaultTableValues.page;
|
|
375
|
-
}
|
|
376
|
-
return this.tableOptions.value.page;
|
|
377
|
-
}
|
|
378
|
-
get quickFilter() {
|
|
379
|
-
if (!this.tableOptions) {
|
|
380
|
-
return this._defaultTableValues.quickFilter;
|
|
381
|
-
}
|
|
382
|
-
return this.tableOptions.value.quickFilter;
|
|
383
|
-
}
|
|
384
|
-
set quickFilter(quickFilter) {
|
|
385
|
-
this.tableValues = {
|
|
386
|
-
quickFilter,
|
|
387
|
-
};
|
|
388
|
-
}
|
|
389
|
-
get query() {
|
|
390
|
-
if (!this.tableOptions) {
|
|
391
|
-
return this._defaultTableValues.query;
|
|
392
|
-
}
|
|
393
|
-
return this.tableOptions.value.query;
|
|
394
|
-
}
|
|
395
|
-
set query(query) {
|
|
396
|
-
this.tableValues = {
|
|
397
|
-
query,
|
|
398
|
-
};
|
|
399
|
-
}
|
|
400
|
-
get filters() {
|
|
401
|
-
if (!this.tableOptions) {
|
|
402
|
-
return this._defaultTableValues.filters;
|
|
403
|
-
}
|
|
404
|
-
return this.tableOptions.value.filters;
|
|
405
|
-
}
|
|
406
|
-
set filters(filters) {
|
|
407
|
-
this.tableValues = {
|
|
408
|
-
filters,
|
|
409
|
-
};
|
|
410
|
-
}
|
|
411
|
-
get selectedRows() {
|
|
412
|
-
if (!this.tableOptions) {
|
|
413
|
-
return this._defaultTableValues.selectedRows;
|
|
414
|
-
}
|
|
415
|
-
return this.tableOptions.value.selectedRows;
|
|
416
|
-
}
|
|
417
|
-
set selectedRows(selectedRows) {
|
|
418
|
-
this.tableValues = {
|
|
419
|
-
selectedRows,
|
|
420
|
-
};
|
|
421
|
-
}
|
|
422
|
-
// setter
|
|
423
|
-
get parsedDefaultTableValues() {
|
|
424
|
-
return {
|
|
425
|
-
...this._defaultTableValues,
|
|
426
|
-
...this.defaultTableValues,
|
|
427
|
-
pageSize: this.defaultTableValues?.pageSize || this.pageSizeDefault,
|
|
428
|
-
};
|
|
429
|
-
}
|
|
430
|
-
get tableValues() {
|
|
431
|
-
return this.tableOptions?.value ?? {};
|
|
432
|
-
}
|
|
433
|
-
set tableValues(values) {
|
|
434
|
-
this._setTableValues({
|
|
435
|
-
...this.tableValues,
|
|
436
|
-
...values,
|
|
437
|
-
});
|
|
438
|
-
}
|
|
439
|
-
ngOnInit() {
|
|
440
|
-
this.tableOptions = new FormControl({
|
|
441
|
-
pageSize: this.parsedDefaultTableValues.pageSize,
|
|
442
|
-
page: this.parsedDefaultTableValues.page,
|
|
443
|
-
quickFilter: this.parsedDefaultTableValues.quickFilter,
|
|
444
|
-
query: this.parsedDefaultTableValues.query,
|
|
445
|
-
filters: this.parsedDefaultTableValues.filters,
|
|
446
|
-
selectedRows: this.parsedDefaultTableValues.selectedRows,
|
|
447
|
-
});
|
|
448
|
-
this.tableOptions.valueChanges
|
|
449
|
-
.pipe(untilDestroyed(this), startWith(this.tableOptions.value), pairwise(), map(([previous, next]) => this._getChanges(previous, next)), filter((changes) => !!changes), debounce((changes) => {
|
|
450
|
-
if (changes?.query && Object.keys(changes)?.length === 1) {
|
|
451
|
-
return timer(300);
|
|
452
|
-
}
|
|
453
|
-
return timer(0);
|
|
454
|
-
}), filter((changes) => !(changes?.selected &&
|
|
455
|
-
Object.keys(changes)?.length === 1)))
|
|
456
|
-
.subscribe((changes) => {
|
|
457
|
-
if (changes?.page) {
|
|
458
|
-
this._refresh();
|
|
459
|
-
return;
|
|
460
|
-
}
|
|
461
|
-
this._resetPageOrRefresh();
|
|
462
|
-
});
|
|
463
|
-
this._refresh();
|
|
464
|
-
}
|
|
465
|
-
resetTable(emitEvent = true, forceRefresh = null) {
|
|
466
|
-
this._setTableValues(this.parsedDefaultTableValues, emitEvent);
|
|
467
|
-
if (forceRefresh) {
|
|
468
|
-
this._refresh();
|
|
469
|
-
}
|
|
470
|
-
}
|
|
471
|
-
applyFormFilters(values = null) {
|
|
472
|
-
values = values ?? this.filterForm.value;
|
|
473
|
-
const { filters, quickFilter } = createFormFilters(values, this.quickFilters, this.filterFormQuickFilterKey);
|
|
474
|
-
if (quickFilter) {
|
|
475
|
-
this.quickFilter = quickFilter;
|
|
476
|
-
}
|
|
477
|
-
this.filters = filters;
|
|
478
|
-
}
|
|
479
|
-
resetFormFilters(resetQuickFilter = false) {
|
|
480
|
-
const values = this.filterForm.value;
|
|
481
|
-
const defaultQuickFilter = this.quickFilters.find((f) => f.default);
|
|
482
|
-
for (const key of Object.keys(values)) {
|
|
483
|
-
if (key === this.filterFormQuickFilterKey) {
|
|
484
|
-
if (resetQuickFilter) {
|
|
485
|
-
values[key] = defaultQuickFilter.value;
|
|
486
|
-
}
|
|
487
|
-
continue;
|
|
488
|
-
}
|
|
489
|
-
values[key] = this.defaultFilterFormValues[key] ?? null;
|
|
490
|
-
}
|
|
491
|
-
this.filterForm.setValue(values);
|
|
492
|
-
this.applyFormFilters(values);
|
|
493
|
-
}
|
|
494
|
-
_refresh() {
|
|
495
|
-
console.warn('Not implemented');
|
|
496
|
-
}
|
|
497
|
-
_resetPageOrRefresh() {
|
|
498
|
-
if (!this.tableOptions) {
|
|
499
|
-
return;
|
|
500
|
-
}
|
|
501
|
-
if (this.page !== 1) {
|
|
502
|
-
this.tableOptions.get('page')?.setValue(1);
|
|
503
|
-
return;
|
|
504
|
-
}
|
|
505
|
-
this._refresh();
|
|
506
|
-
}
|
|
507
|
-
_setTableValues(data, emitEvent = true) {
|
|
508
|
-
this.tableOptions?.setValue({
|
|
509
|
-
...this.tableOptions.value,
|
|
510
|
-
...data,
|
|
511
|
-
}, { emitEvent });
|
|
512
|
-
}
|
|
513
|
-
_getChanges(previous, next) {
|
|
514
|
-
const changes = {};
|
|
515
|
-
let key;
|
|
516
|
-
for (key in next) {
|
|
517
|
-
if (key === 'selectedRows') {
|
|
518
|
-
continue;
|
|
519
|
-
}
|
|
520
|
-
if (JSON.stringify(previous[key]) !== JSON.stringify(next[key])) {
|
|
521
|
-
// @ts-ignore
|
|
522
|
-
changes[key] = next[key];
|
|
523
|
-
}
|
|
524
|
-
}
|
|
525
|
-
return Object.keys(changes).length ? changes : null;
|
|
361
|
+
PBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
362
|
+
PBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PBackdrop, selector: "p-backdrop", inputs: { applyBlur: "applyBlur", closing: "closing", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
363
|
+
PBackdrop = __decorate([
|
|
364
|
+
ProxyCmp({
|
|
365
|
+
defineCustomElementFn: undefined,
|
|
366
|
+
inputs: ['applyBlur', 'closing', 'variant']
|
|
367
|
+
})
|
|
368
|
+
], PBackdrop);
|
|
369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PBackdrop, decorators: [{
|
|
370
|
+
type: Component,
|
|
371
|
+
args: [{
|
|
372
|
+
selector: 'p-backdrop',
|
|
373
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
374
|
+
template: '<ng-content></ng-content>',
|
|
375
|
+
inputs: ['applyBlur', 'closing', 'variant']
|
|
376
|
+
}]
|
|
377
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
378
|
+
let PButton = class PButton {
|
|
379
|
+
constructor(c, r, z) {
|
|
380
|
+
this.z = z;
|
|
381
|
+
c.detach();
|
|
382
|
+
this.el = r.nativeElement;
|
|
383
|
+
proxyOutputs(this, this.el, ['onClick']);
|
|
526
384
|
}
|
|
527
385
|
};
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
386
|
+
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
387
|
+
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
388
|
+
PButton = __decorate([
|
|
389
|
+
ProxyCmp({
|
|
390
|
+
defineCustomElementFn: undefined,
|
|
391
|
+
inputs: ['chevron', 'chevronPosition', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant']
|
|
392
|
+
})
|
|
393
|
+
], PButton);
|
|
394
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PButton, decorators: [{
|
|
534
395
|
type: Component,
|
|
535
396
|
args: [{
|
|
536
|
-
|
|
397
|
+
selector: 'p-button',
|
|
398
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
399
|
+
template: '<ng-content></ng-content>',
|
|
400
|
+
inputs: ['chevron', 'chevronPosition', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant']
|
|
537
401
|
}]
|
|
538
|
-
}], ctorParameters: function () { return []; } });
|
|
539
|
-
|
|
540
|
-
/* eslint-disable */
|
|
541
|
-
const proxyInputs = (Cmp, inputs) => {
|
|
542
|
-
const Prototype = Cmp.prototype;
|
|
543
|
-
inputs.forEach(item => {
|
|
544
|
-
Object.defineProperty(Prototype, item, {
|
|
545
|
-
get() {
|
|
546
|
-
return this.el[item];
|
|
547
|
-
},
|
|
548
|
-
set(val) {
|
|
549
|
-
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
550
|
-
}
|
|
551
|
-
});
|
|
552
|
-
});
|
|
553
|
-
};
|
|
554
|
-
const proxyMethods = (Cmp, methods) => {
|
|
555
|
-
const Prototype = Cmp.prototype;
|
|
556
|
-
methods.forEach(methodName => {
|
|
557
|
-
Prototype[methodName] = function () {
|
|
558
|
-
const args = arguments;
|
|
559
|
-
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
560
|
-
};
|
|
561
|
-
});
|
|
562
|
-
};
|
|
563
|
-
const proxyOutputs = (instance, el, events) => {
|
|
564
|
-
events.forEach(eventName => instance[eventName] = fromEvent(el, eventName));
|
|
565
|
-
};
|
|
566
|
-
const defineCustomElement = (tagName, customElement) => {
|
|
567
|
-
if (customElement !== undefined &&
|
|
568
|
-
typeof customElements !== 'undefined' &&
|
|
569
|
-
!customElements.get(tagName)) {
|
|
570
|
-
customElements.define(tagName, customElement);
|
|
571
|
-
}
|
|
572
|
-
};
|
|
573
|
-
// tslint:disable-next-line: only-arrow-functions
|
|
574
|
-
function ProxyCmp(opts) {
|
|
575
|
-
const decorator = function (cls) {
|
|
576
|
-
const { defineCustomElementFn, inputs, methods } = opts;
|
|
577
|
-
if (defineCustomElementFn !== undefined) {
|
|
578
|
-
defineCustomElementFn();
|
|
579
|
-
}
|
|
580
|
-
if (inputs) {
|
|
581
|
-
proxyInputs(cls, inputs);
|
|
582
|
-
}
|
|
583
|
-
if (methods) {
|
|
584
|
-
proxyMethods(cls, methods);
|
|
585
|
-
}
|
|
586
|
-
return cls;
|
|
587
|
-
};
|
|
588
|
-
return decorator;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
let PAccordion = class PAccordion {
|
|
402
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
403
|
+
let PCardBody = class PCardBody {
|
|
592
404
|
constructor(c, r, z) {
|
|
593
405
|
this.z = z;
|
|
594
406
|
c.detach();
|
|
595
407
|
this.el = r.nativeElement;
|
|
596
|
-
proxyOutputs(this, this.el, ['isOpen']);
|
|
597
408
|
}
|
|
598
409
|
};
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
410
|
+
PCardBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PCardBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
411
|
+
PCardBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PCardBody, selector: "p-card-body", inputs: { inheritText: "inheritText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
412
|
+
PCardBody = __decorate([
|
|
602
413
|
ProxyCmp({
|
|
603
414
|
defineCustomElementFn: undefined,
|
|
604
|
-
inputs: ['
|
|
415
|
+
inputs: ['inheritText']
|
|
605
416
|
})
|
|
606
|
-
],
|
|
607
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
417
|
+
], PCardBody);
|
|
418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PCardBody, decorators: [{
|
|
608
419
|
type: Component,
|
|
609
420
|
args: [{
|
|
610
|
-
selector: 'p-
|
|
421
|
+
selector: 'p-card-body',
|
|
611
422
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
612
423
|
template: '<ng-content></ng-content>',
|
|
613
|
-
inputs: ['
|
|
424
|
+
inputs: ['inheritText']
|
|
614
425
|
}]
|
|
615
426
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
616
|
-
let
|
|
427
|
+
let PCardContainer = class PCardContainer {
|
|
617
428
|
constructor(c, r, z) {
|
|
618
429
|
this.z = z;
|
|
619
430
|
c.detach();
|
|
620
431
|
this.el = r.nativeElement;
|
|
621
432
|
}
|
|
622
433
|
};
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
434
|
+
PCardContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PCardContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
435
|
+
PCardContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PCardContainer, selector: "p-card-container", inputs: { hoverable: "hoverable", shadow: "shadow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
436
|
+
PCardContainer = __decorate([
|
|
626
437
|
ProxyCmp({
|
|
627
438
|
defineCustomElementFn: undefined,
|
|
628
|
-
inputs: ['
|
|
439
|
+
inputs: ['hoverable', 'shadow']
|
|
629
440
|
})
|
|
630
|
-
],
|
|
631
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
441
|
+
], PCardContainer);
|
|
442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PCardContainer, decorators: [{
|
|
632
443
|
type: Component,
|
|
633
444
|
args: [{
|
|
634
|
-
selector: 'p-
|
|
445
|
+
selector: 'p-card-container',
|
|
635
446
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
636
447
|
template: '<ng-content></ng-content>',
|
|
637
|
-
inputs: ['
|
|
448
|
+
inputs: ['hoverable', 'shadow']
|
|
638
449
|
}]
|
|
639
450
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
640
|
-
let
|
|
451
|
+
let PCardHeader = class PCardHeader {
|
|
641
452
|
constructor(c, r, z) {
|
|
642
453
|
this.z = z;
|
|
643
454
|
c.detach();
|
|
644
455
|
this.el = r.nativeElement;
|
|
645
456
|
}
|
|
646
457
|
};
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
PAvatarGroup = __decorate([
|
|
650
|
-
ProxyCmp({
|
|
651
|
-
defineCustomElementFn: undefined,
|
|
652
|
-
inputs: ['extra']
|
|
653
|
-
})
|
|
654
|
-
], PAvatarGroup);
|
|
655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PAvatarGroup, decorators: [{
|
|
656
|
-
type: Component,
|
|
657
|
-
args: [{
|
|
658
|
-
selector: 'p-avatar-group',
|
|
659
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
660
|
-
template: '<ng-content></ng-content>',
|
|
661
|
-
inputs: ['extra']
|
|
662
|
-
}]
|
|
663
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
664
|
-
let PBackdrop = class PBackdrop {
|
|
665
|
-
constructor(c, r, z) {
|
|
666
|
-
this.z = z;
|
|
667
|
-
c.detach();
|
|
668
|
-
this.el = r.nativeElement;
|
|
669
|
-
proxyOutputs(this, this.el, ['clicked']);
|
|
670
|
-
}
|
|
671
|
-
};
|
|
672
|
-
PBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
673
|
-
PBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: PBackdrop, selector: "p-backdrop", inputs: { applyBlur: "applyBlur", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
674
|
-
PBackdrop = __decorate([
|
|
675
|
-
ProxyCmp({
|
|
676
|
-
defineCustomElementFn: undefined,
|
|
677
|
-
inputs: ['applyBlur', 'variant']
|
|
678
|
-
})
|
|
679
|
-
], PBackdrop);
|
|
680
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PBackdrop, decorators: [{
|
|
681
|
-
type: Component,
|
|
682
|
-
args: [{
|
|
683
|
-
selector: 'p-backdrop',
|
|
684
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
685
|
-
template: '<ng-content></ng-content>',
|
|
686
|
-
inputs: ['applyBlur', 'variant']
|
|
687
|
-
}]
|
|
688
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
689
|
-
let PButton = class PButton {
|
|
690
|
-
constructor(c, r, z) {
|
|
691
|
-
this.z = z;
|
|
692
|
-
c.detach();
|
|
693
|
-
this.el = r.nativeElement;
|
|
694
|
-
proxyOutputs(this, this.el, ['onClick']);
|
|
695
|
-
}
|
|
696
|
-
};
|
|
697
|
-
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
698
|
-
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", 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" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
699
|
-
PButton = __decorate([
|
|
700
|
-
ProxyCmp({
|
|
701
|
-
defineCustomElementFn: undefined,
|
|
702
|
-
inputs: ['chevron', 'chevronPosition', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant']
|
|
703
|
-
})
|
|
704
|
-
], PButton);
|
|
705
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PButton, decorators: [{
|
|
706
|
-
type: Component,
|
|
707
|
-
args: [{
|
|
708
|
-
selector: 'p-button',
|
|
709
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
710
|
-
template: '<ng-content></ng-content>',
|
|
711
|
-
inputs: ['chevron', 'chevronPosition', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant']
|
|
712
|
-
}]
|
|
713
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
714
|
-
let PCardBody = class PCardBody {
|
|
715
|
-
constructor(c, r, z) {
|
|
716
|
-
this.z = z;
|
|
717
|
-
c.detach();
|
|
718
|
-
this.el = r.nativeElement;
|
|
719
|
-
}
|
|
720
|
-
};
|
|
721
|
-
PCardBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PCardBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
722
|
-
PCardBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: PCardBody, selector: "p-card-body", inputs: { inheritText: "inheritText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
723
|
-
PCardBody = __decorate([
|
|
724
|
-
ProxyCmp({
|
|
725
|
-
defineCustomElementFn: undefined,
|
|
726
|
-
inputs: ['inheritText']
|
|
727
|
-
})
|
|
728
|
-
], PCardBody);
|
|
729
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PCardBody, decorators: [{
|
|
730
|
-
type: Component,
|
|
731
|
-
args: [{
|
|
732
|
-
selector: 'p-card-body',
|
|
733
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
734
|
-
template: '<ng-content></ng-content>',
|
|
735
|
-
inputs: ['inheritText']
|
|
736
|
-
}]
|
|
737
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
738
|
-
let PCardContainer = class PCardContainer {
|
|
739
|
-
constructor(c, r, z) {
|
|
740
|
-
this.z = z;
|
|
741
|
-
c.detach();
|
|
742
|
-
this.el = r.nativeElement;
|
|
743
|
-
}
|
|
744
|
-
};
|
|
745
|
-
PCardContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PCardContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
746
|
-
PCardContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: PCardContainer, selector: "p-card-container", inputs: { hoverable: "hoverable", shadow: "shadow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
747
|
-
PCardContainer = __decorate([
|
|
748
|
-
ProxyCmp({
|
|
749
|
-
defineCustomElementFn: undefined,
|
|
750
|
-
inputs: ['hoverable', 'shadow']
|
|
751
|
-
})
|
|
752
|
-
], PCardContainer);
|
|
753
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PCardContainer, decorators: [{
|
|
754
|
-
type: Component,
|
|
755
|
-
args: [{
|
|
756
|
-
selector: 'p-card-container',
|
|
757
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
758
|
-
template: '<ng-content></ng-content>',
|
|
759
|
-
inputs: ['hoverable', 'shadow']
|
|
760
|
-
}]
|
|
761
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
762
|
-
let PCardHeader = class PCardHeader {
|
|
763
|
-
constructor(c, r, z) {
|
|
764
|
-
this.z = z;
|
|
765
|
-
c.detach();
|
|
766
|
-
this.el = r.nativeElement;
|
|
767
|
-
}
|
|
768
|
-
};
|
|
769
|
-
PCardHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
770
|
-
PCardHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: PCardHeader, selector: "p-card-header", inputs: { arrow: "arrow", header: "header" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
458
|
+
PCardHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
459
|
+
PCardHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PCardHeader, selector: "p-card-header", inputs: { arrow: "arrow", header: "header" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
771
460
|
PCardHeader = __decorate([
|
|
772
461
|
ProxyCmp({
|
|
773
462
|
defineCustomElementFn: undefined,
|
|
774
463
|
inputs: ['arrow', 'header']
|
|
775
464
|
})
|
|
776
465
|
], PCardHeader);
|
|
777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
466
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PCardHeader, decorators: [{
|
|
778
467
|
type: Component,
|
|
779
468
|
args: [{
|
|
780
469
|
selector: 'p-card-header',
|
|
@@ -790,15 +479,15 @@ let PContentSlider = class PContentSlider {
|
|
|
790
479
|
this.el = r.nativeElement;
|
|
791
480
|
}
|
|
792
481
|
};
|
|
793
|
-
PContentSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
794
|
-
PContentSlider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
482
|
+
PContentSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PContentSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
483
|
+
PContentSlider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
795
484
|
PContentSlider = __decorate([
|
|
796
485
|
ProxyCmp({
|
|
797
486
|
defineCustomElementFn: undefined,
|
|
798
487
|
inputs: ['disableAutoCenter', 'disableDrag', 'disableIndicatorClick', 'hideMobileIndicator']
|
|
799
488
|
})
|
|
800
489
|
], PContentSlider);
|
|
801
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PContentSlider, decorators: [{
|
|
802
491
|
type: Component,
|
|
803
492
|
args: [{
|
|
804
493
|
selector: 'p-content-slider',
|
|
@@ -814,15 +503,15 @@ let PCounter = class PCounter {
|
|
|
814
503
|
this.el = r.nativeElement;
|
|
815
504
|
}
|
|
816
505
|
};
|
|
817
|
-
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
818
|
-
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
506
|
+
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
507
|
+
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PCounter, selector: "p-counter", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
819
508
|
PCounter = __decorate([
|
|
820
509
|
ProxyCmp({
|
|
821
510
|
defineCustomElementFn: undefined,
|
|
822
511
|
inputs: ['size', 'variant']
|
|
823
512
|
})
|
|
824
513
|
], PCounter);
|
|
825
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
514
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PCounter, decorators: [{
|
|
826
515
|
type: Component,
|
|
827
516
|
args: [{
|
|
828
517
|
selector: 'p-counter',
|
|
@@ -838,14 +527,14 @@ let PDivider = class PDivider {
|
|
|
838
527
|
this.el = r.nativeElement;
|
|
839
528
|
}
|
|
840
529
|
};
|
|
841
|
-
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
842
|
-
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
530
|
+
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
531
|
+
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PDivider, selector: "p-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
843
532
|
PDivider = __decorate([
|
|
844
533
|
ProxyCmp({
|
|
845
534
|
defineCustomElementFn: undefined
|
|
846
535
|
})
|
|
847
536
|
], PDivider);
|
|
848
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDivider, decorators: [{
|
|
849
538
|
type: Component,
|
|
850
539
|
args: [{
|
|
851
540
|
selector: 'p-divider',
|
|
@@ -858,18 +547,18 @@ let PDrawer = class PDrawer {
|
|
|
858
547
|
this.z = z;
|
|
859
548
|
c.detach();
|
|
860
549
|
this.el = r.nativeElement;
|
|
861
|
-
proxyOutputs(this, this.el, ['
|
|
550
|
+
proxyOutputs(this, this.el, ['closeClicked', 'closed']);
|
|
862
551
|
}
|
|
863
552
|
};
|
|
864
|
-
PDrawer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
865
|
-
PDrawer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
553
|
+
PDrawer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
554
|
+
PDrawer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PDrawer, selector: "p-drawer", inputs: { applyBlur: "applyBlur", backdropClickClose: "backdropClickClose", header: "header", show: "show", showClose: "showClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
866
555
|
PDrawer = __decorate([
|
|
867
556
|
ProxyCmp({
|
|
868
557
|
defineCustomElementFn: undefined,
|
|
869
558
|
inputs: ['applyBlur', 'backdropClickClose', 'header', 'show', 'showClose']
|
|
870
559
|
})
|
|
871
560
|
], PDrawer);
|
|
872
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDrawer, decorators: [{
|
|
873
562
|
type: Component,
|
|
874
563
|
args: [{
|
|
875
564
|
selector: 'p-drawer',
|
|
@@ -885,15 +574,15 @@ let PDrawerBody = class PDrawerBody {
|
|
|
885
574
|
this.el = r.nativeElement;
|
|
886
575
|
}
|
|
887
576
|
};
|
|
888
|
-
PDrawerBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
889
|
-
PDrawerBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
577
|
+
PDrawerBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDrawerBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
578
|
+
PDrawerBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PDrawerBody, selector: "p-drawer-body", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
890
579
|
PDrawerBody = __decorate([
|
|
891
580
|
ProxyCmp({
|
|
892
581
|
defineCustomElementFn: undefined,
|
|
893
582
|
inputs: ['variant']
|
|
894
583
|
})
|
|
895
584
|
], PDrawerBody);
|
|
896
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
585
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDrawerBody, decorators: [{
|
|
897
586
|
type: Component,
|
|
898
587
|
args: [{
|
|
899
588
|
selector: 'p-drawer-body',
|
|
@@ -909,19 +598,21 @@ let PDrawerContainer = class PDrawerContainer {
|
|
|
909
598
|
this.el = r.nativeElement;
|
|
910
599
|
}
|
|
911
600
|
};
|
|
912
|
-
PDrawerContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
913
|
-
PDrawerContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
601
|
+
PDrawerContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDrawerContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
602
|
+
PDrawerContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PDrawerContainer, selector: "p-drawer-container", inputs: { closing: "closing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
914
603
|
PDrawerContainer = __decorate([
|
|
915
604
|
ProxyCmp({
|
|
916
|
-
defineCustomElementFn: undefined
|
|
605
|
+
defineCustomElementFn: undefined,
|
|
606
|
+
inputs: ['closing']
|
|
917
607
|
})
|
|
918
608
|
], PDrawerContainer);
|
|
919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDrawerContainer, decorators: [{
|
|
920
610
|
type: Component,
|
|
921
611
|
args: [{
|
|
922
612
|
selector: 'p-drawer-container',
|
|
923
613
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
924
|
-
template: '<ng-content></ng-content>'
|
|
614
|
+
template: '<ng-content></ng-content>',
|
|
615
|
+
inputs: ['closing']
|
|
925
616
|
}]
|
|
926
617
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
927
618
|
let PDrawerHeader = class PDrawerHeader {
|
|
@@ -932,15 +623,15 @@ let PDrawerHeader = class PDrawerHeader {
|
|
|
932
623
|
proxyOutputs(this, this.el, ['close']);
|
|
933
624
|
}
|
|
934
625
|
};
|
|
935
|
-
PDrawerHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
936
|
-
PDrawerHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
626
|
+
PDrawerHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDrawerHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
627
|
+
PDrawerHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PDrawerHeader, selector: "p-drawer-header", inputs: { showClose: "showClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
937
628
|
PDrawerHeader = __decorate([
|
|
938
629
|
ProxyCmp({
|
|
939
630
|
defineCustomElementFn: undefined,
|
|
940
631
|
inputs: ['showClose']
|
|
941
632
|
})
|
|
942
633
|
], PDrawerHeader);
|
|
943
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
634
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDrawerHeader, decorators: [{
|
|
944
635
|
type: Component,
|
|
945
636
|
args: [{
|
|
946
637
|
selector: 'p-drawer-header',
|
|
@@ -957,15 +648,15 @@ let PDropdown = class PDropdown {
|
|
|
957
648
|
proxyOutputs(this, this.el, ['isOpen']);
|
|
958
649
|
}
|
|
959
650
|
};
|
|
960
|
-
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
961
|
-
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
651
|
+
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
652
|
+
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PDropdown, selector: "p-dropdown", inputs: { calculateWidth: "calculateWidth", chevronDirection: "chevronDirection", chevronPosition: "chevronPosition", disableTriggerClick: "disableTriggerClick", insideClick: "insideClick", placement: "placement", show: "show", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
962
653
|
PDropdown = __decorate([
|
|
963
654
|
ProxyCmp({
|
|
964
655
|
defineCustomElementFn: undefined,
|
|
965
656
|
inputs: ['calculateWidth', 'chevronDirection', 'chevronPosition', 'disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
966
657
|
})
|
|
967
658
|
], PDropdown);
|
|
968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDropdown, decorators: [{
|
|
969
660
|
type: Component,
|
|
970
661
|
args: [{
|
|
971
662
|
selector: 'p-dropdown',
|
|
@@ -981,15 +672,15 @@ let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
|
981
672
|
this.el = r.nativeElement;
|
|
982
673
|
}
|
|
983
674
|
};
|
|
984
|
-
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
985
|
-
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
675
|
+
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDropdownMenuContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
676
|
+
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", inputs: { maxWidth: "maxWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
986
677
|
PDropdownMenuContainer = __decorate([
|
|
987
678
|
ProxyCmp({
|
|
988
679
|
defineCustomElementFn: undefined,
|
|
989
680
|
inputs: ['maxWidth']
|
|
990
681
|
})
|
|
991
682
|
], PDropdownMenuContainer);
|
|
992
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
|
|
993
684
|
type: Component,
|
|
994
685
|
args: [{
|
|
995
686
|
selector: 'p-dropdown-menu-container',
|
|
@@ -1005,15 +696,15 @@ let PDropdownMenuItem = class PDropdownMenuItem {
|
|
|
1005
696
|
this.el = r.nativeElement;
|
|
1006
697
|
}
|
|
1007
698
|
};
|
|
1008
|
-
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1009
|
-
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
699
|
+
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDropdownMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
700
|
+
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PDropdownMenuItem, selector: "p-dropdown-menu-item", inputs: { active: "active", enableHover: "enableHover", icon: "icon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1010
701
|
PDropdownMenuItem = __decorate([
|
|
1011
702
|
ProxyCmp({
|
|
1012
703
|
defineCustomElementFn: undefined,
|
|
1013
704
|
inputs: ['active', 'enableHover', 'icon']
|
|
1014
705
|
})
|
|
1015
706
|
], PDropdownMenuItem);
|
|
1016
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
707
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PDropdownMenuItem, decorators: [{
|
|
1017
708
|
type: Component,
|
|
1018
709
|
args: [{
|
|
1019
710
|
selector: 'p-dropdown-menu-item',
|
|
@@ -1029,15 +720,15 @@ let PHelper = class PHelper {
|
|
|
1029
720
|
this.el = r.nativeElement;
|
|
1030
721
|
}
|
|
1031
722
|
};
|
|
1032
|
-
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1033
|
-
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
723
|
+
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PHelper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
724
|
+
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PHelper, selector: "p-helper", inputs: { placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1034
725
|
PHelper = __decorate([
|
|
1035
726
|
ProxyCmp({
|
|
1036
727
|
defineCustomElementFn: undefined,
|
|
1037
728
|
inputs: ['placement']
|
|
1038
729
|
})
|
|
1039
730
|
], PHelper);
|
|
1040
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PHelper, decorators: [{
|
|
1041
732
|
type: Component,
|
|
1042
733
|
args: [{
|
|
1043
734
|
selector: 'p-helper',
|
|
@@ -1053,15 +744,15 @@ let PIcon = class PIcon {
|
|
|
1053
744
|
this.el = r.nativeElement;
|
|
1054
745
|
}
|
|
1055
746
|
};
|
|
1056
|
-
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1057
|
-
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
747
|
+
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
748
|
+
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1058
749
|
PIcon = __decorate([
|
|
1059
750
|
ProxyCmp({
|
|
1060
751
|
defineCustomElementFn: undefined,
|
|
1061
752
|
inputs: ['flip', 'rotate', 'size', 'variant']
|
|
1062
753
|
})
|
|
1063
754
|
], PIcon);
|
|
1064
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
755
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PIcon, decorators: [{
|
|
1065
756
|
type: Component,
|
|
1066
757
|
args: [{
|
|
1067
758
|
selector: 'p-icon',
|
|
@@ -1077,15 +768,15 @@ let PIllustration = class PIllustration {
|
|
|
1077
768
|
this.el = r.nativeElement;
|
|
1078
769
|
}
|
|
1079
770
|
};
|
|
1080
|
-
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1081
|
-
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
771
|
+
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PIllustration, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
772
|
+
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PIllustration, selector: "p-illustration", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1082
773
|
PIllustration = __decorate([
|
|
1083
774
|
ProxyCmp({
|
|
1084
775
|
defineCustomElementFn: undefined,
|
|
1085
776
|
inputs: ['variant']
|
|
1086
777
|
})
|
|
1087
778
|
], PIllustration);
|
|
1088
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
779
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PIllustration, decorators: [{
|
|
1089
780
|
type: Component,
|
|
1090
781
|
args: [{
|
|
1091
782
|
selector: 'p-illustration',
|
|
@@ -1101,15 +792,15 @@ let PInfoPanel = class PInfoPanel {
|
|
|
1101
792
|
this.el = r.nativeElement;
|
|
1102
793
|
}
|
|
1103
794
|
};
|
|
1104
|
-
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1105
|
-
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
795
|
+
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PInfoPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
796
|
+
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1106
797
|
PInfoPanel = __decorate([
|
|
1107
798
|
ProxyCmp({
|
|
1108
799
|
defineCustomElementFn: undefined,
|
|
1109
800
|
inputs: ['closeable', 'content', 'header', 'variant']
|
|
1110
801
|
})
|
|
1111
802
|
], PInfoPanel);
|
|
1112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PInfoPanel, decorators: [{
|
|
1113
804
|
type: Component,
|
|
1114
805
|
args: [{
|
|
1115
806
|
selector: 'p-info-panel',
|
|
@@ -1125,15 +816,15 @@ let PInputGroup = class PInputGroup {
|
|
|
1125
816
|
this.el = r.nativeElement;
|
|
1126
817
|
}
|
|
1127
818
|
};
|
|
1128
|
-
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1129
|
-
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
819
|
+
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
820
|
+
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PInputGroup, selector: "p-input-group", inputs: { disabled: "disabled", error: "error", focused: "focused", helper: "helper", icon: "icon", iconFlip: "iconFlip", iconPosition: "iconPosition", iconRotate: "iconRotate", label: "label", prefix: "prefix", required: "required", size: "size", suffix: "suffix" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1130
821
|
PInputGroup = __decorate([
|
|
1131
822
|
ProxyCmp({
|
|
1132
823
|
defineCustomElementFn: undefined,
|
|
1133
824
|
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'label', 'prefix', 'required', 'size', 'suffix']
|
|
1134
825
|
})
|
|
1135
826
|
], PInputGroup);
|
|
1136
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
827
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PInputGroup, decorators: [{
|
|
1137
828
|
type: Component,
|
|
1138
829
|
args: [{
|
|
1139
830
|
selector: 'p-input-group',
|
|
@@ -1149,15 +840,15 @@ let PLabel = class PLabel {
|
|
|
1149
840
|
this.el = r.nativeElement;
|
|
1150
841
|
}
|
|
1151
842
|
};
|
|
1152
|
-
PLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1153
|
-
PLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
843
|
+
PLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
844
|
+
PLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PLabel, selector: "p-label", inputs: { behavior: "behavior", icon: "icon", iconFlip: "iconFlip", iconRotate: "iconRotate", keepMobileContent: "keepMobileContent", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1154
845
|
PLabel = __decorate([
|
|
1155
846
|
ProxyCmp({
|
|
1156
847
|
defineCustomElementFn: undefined,
|
|
1157
848
|
inputs: ['behavior', 'icon', 'iconFlip', 'iconRotate', 'keepMobileContent', 'size', 'variant']
|
|
1158
849
|
})
|
|
1159
850
|
], PLabel);
|
|
1160
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PLabel, decorators: [{
|
|
1161
852
|
type: Component,
|
|
1162
853
|
args: [{
|
|
1163
854
|
selector: 'p-label',
|
|
@@ -1173,15 +864,15 @@ let PLayout = class PLayout {
|
|
|
1173
864
|
this.el = r.nativeElement;
|
|
1174
865
|
}
|
|
1175
866
|
};
|
|
1176
|
-
PLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1177
|
-
PLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
867
|
+
PLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
868
|
+
PLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PLayout, selector: "p-layout", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1178
869
|
PLayout = __decorate([
|
|
1179
870
|
ProxyCmp({
|
|
1180
871
|
defineCustomElementFn: undefined,
|
|
1181
872
|
inputs: ['variant']
|
|
1182
873
|
})
|
|
1183
874
|
], PLayout);
|
|
1184
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PLayout, decorators: [{
|
|
1185
876
|
type: Component,
|
|
1186
877
|
args: [{
|
|
1187
878
|
selector: 'p-layout',
|
|
@@ -1197,15 +888,15 @@ let PLoader = class PLoader {
|
|
|
1197
888
|
this.el = r.nativeElement;
|
|
1198
889
|
}
|
|
1199
890
|
};
|
|
1200
|
-
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1201
|
-
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
891
|
+
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
892
|
+
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1202
893
|
PLoader = __decorate([
|
|
1203
894
|
ProxyCmp({
|
|
1204
895
|
defineCustomElementFn: undefined,
|
|
1205
896
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
1206
897
|
})
|
|
1207
898
|
], PLoader);
|
|
1208
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PLoader, decorators: [{
|
|
1209
900
|
type: Component,
|
|
1210
901
|
args: [{
|
|
1211
902
|
selector: 'p-loader',
|
|
@@ -1219,18 +910,18 @@ let PModal = class PModal {
|
|
|
1219
910
|
this.z = z;
|
|
1220
911
|
c.detach();
|
|
1221
912
|
this.el = r.nativeElement;
|
|
1222
|
-
proxyOutputs(this, this.el, ['
|
|
913
|
+
proxyOutputs(this, this.el, ['closeClicked', 'closed']);
|
|
1223
914
|
}
|
|
1224
915
|
};
|
|
1225
|
-
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1226
|
-
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
916
|
+
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
917
|
+
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PModal, selector: "p-modal", inputs: { applyBlur: "applyBlur", backdropClickClose: "backdropClickClose", 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 });
|
|
1227
918
|
PModal = __decorate([
|
|
1228
919
|
ProxyCmp({
|
|
1229
920
|
defineCustomElementFn: undefined,
|
|
1230
921
|
inputs: ['applyBlur', 'backdropClickClose', 'header', 'show', 'showMobileClose', 'showMobileFooter', 'size', 'variant']
|
|
1231
922
|
})
|
|
1232
923
|
], PModal);
|
|
1233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModal, decorators: [{
|
|
1234
925
|
type: Component,
|
|
1235
926
|
args: [{
|
|
1236
927
|
selector: 'p-modal',
|
|
@@ -1246,15 +937,15 @@ let PModalBody = class PModalBody {
|
|
|
1246
937
|
this.el = r.nativeElement;
|
|
1247
938
|
}
|
|
1248
939
|
};
|
|
1249
|
-
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1250
|
-
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
940
|
+
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModalBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
941
|
+
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PModalBody, selector: "p-modal-body", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1251
942
|
PModalBody = __decorate([
|
|
1252
943
|
ProxyCmp({
|
|
1253
944
|
defineCustomElementFn: undefined,
|
|
1254
945
|
inputs: ['variant']
|
|
1255
946
|
})
|
|
1256
947
|
], PModalBody);
|
|
1257
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
948
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModalBody, decorators: [{
|
|
1258
949
|
type: Component,
|
|
1259
950
|
args: [{
|
|
1260
951
|
selector: 'p-modal-body',
|
|
@@ -1270,21 +961,21 @@ let PModalContainer = class PModalContainer {
|
|
|
1270
961
|
this.el = r.nativeElement;
|
|
1271
962
|
}
|
|
1272
963
|
};
|
|
1273
|
-
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1274
|
-
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
964
|
+
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModalContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
965
|
+
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PModalContainer, selector: "p-modal-container", inputs: { closing: "closing", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1275
966
|
PModalContainer = __decorate([
|
|
1276
967
|
ProxyCmp({
|
|
1277
968
|
defineCustomElementFn: undefined,
|
|
1278
|
-
inputs: ['size']
|
|
969
|
+
inputs: ['closing', 'size']
|
|
1279
970
|
})
|
|
1280
971
|
], PModalContainer);
|
|
1281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModalContainer, decorators: [{
|
|
1282
973
|
type: Component,
|
|
1283
974
|
args: [{
|
|
1284
975
|
selector: 'p-modal-container',
|
|
1285
976
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1286
977
|
template: '<ng-content></ng-content>',
|
|
1287
|
-
inputs: ['size']
|
|
978
|
+
inputs: ['closing', 'size']
|
|
1288
979
|
}]
|
|
1289
980
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1290
981
|
let PModalFooter = class PModalFooter {
|
|
@@ -1294,14 +985,14 @@ let PModalFooter = class PModalFooter {
|
|
|
1294
985
|
this.el = r.nativeElement;
|
|
1295
986
|
}
|
|
1296
987
|
};
|
|
1297
|
-
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1298
|
-
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
988
|
+
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
989
|
+
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PModalFooter, selector: "p-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1299
990
|
PModalFooter = __decorate([
|
|
1300
991
|
ProxyCmp({
|
|
1301
992
|
defineCustomElementFn: undefined
|
|
1302
993
|
})
|
|
1303
994
|
], PModalFooter);
|
|
1304
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
995
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModalFooter, decorators: [{
|
|
1305
996
|
type: Component,
|
|
1306
997
|
args: [{
|
|
1307
998
|
selector: 'p-modal-footer',
|
|
@@ -1317,15 +1008,15 @@ let PModalHeader = class PModalHeader {
|
|
|
1317
1008
|
proxyOutputs(this, this.el, ['close']);
|
|
1318
1009
|
}
|
|
1319
1010
|
};
|
|
1320
|
-
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1321
|
-
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1011
|
+
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1012
|
+
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PModalHeader, selector: "p-modal-header", inputs: { showClose: "showClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1322
1013
|
PModalHeader = __decorate([
|
|
1323
1014
|
ProxyCmp({
|
|
1324
1015
|
defineCustomElementFn: undefined,
|
|
1325
1016
|
inputs: ['showClose']
|
|
1326
1017
|
})
|
|
1327
1018
|
], PModalHeader);
|
|
1328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PModalHeader, decorators: [{
|
|
1329
1020
|
type: Component,
|
|
1330
1021
|
args: [{
|
|
1331
1022
|
selector: 'p-modal-header',
|
|
@@ -1341,15 +1032,15 @@ let PNavbar = class PNavbar {
|
|
|
1341
1032
|
this.el = r.nativeElement;
|
|
1342
1033
|
}
|
|
1343
1034
|
};
|
|
1344
|
-
PNavbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1345
|
-
PNavbar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1035
|
+
PNavbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1036
|
+
PNavbar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PNavbar, selector: "p-navbar", inputs: { closeText: "closeText", menuText: "menuText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1346
1037
|
PNavbar = __decorate([
|
|
1347
1038
|
ProxyCmp({
|
|
1348
1039
|
defineCustomElementFn: undefined,
|
|
1349
1040
|
inputs: ['closeText', 'menuText']
|
|
1350
1041
|
})
|
|
1351
1042
|
], PNavbar);
|
|
1352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PNavbar, decorators: [{
|
|
1353
1044
|
type: Component,
|
|
1354
1045
|
args: [{
|
|
1355
1046
|
selector: 'p-navbar',
|
|
@@ -1365,15 +1056,15 @@ let PNavigationItem = class PNavigationItem {
|
|
|
1365
1056
|
this.el = r.nativeElement;
|
|
1366
1057
|
}
|
|
1367
1058
|
};
|
|
1368
|
-
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1369
|
-
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1059
|
+
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1060
|
+
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1370
1061
|
PNavigationItem = __decorate([
|
|
1371
1062
|
ProxyCmp({
|
|
1372
1063
|
defineCustomElementFn: undefined,
|
|
1373
1064
|
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
1374
1065
|
})
|
|
1375
1066
|
], PNavigationItem);
|
|
1376
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1067
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PNavigationItem, decorators: [{
|
|
1377
1068
|
type: Component,
|
|
1378
1069
|
args: [{
|
|
1379
1070
|
selector: 'p-navigation-item',
|
|
@@ -1390,15 +1081,15 @@ let PPageSizeSelect = class PPageSizeSelect {
|
|
|
1390
1081
|
proxyOutputs(this, this.el, ['sizeChange']);
|
|
1391
1082
|
}
|
|
1392
1083
|
};
|
|
1393
|
-
PPageSizeSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1394
|
-
PPageSizeSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1084
|
+
PPageSizeSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PPageSizeSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1085
|
+
PPageSizeSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1395
1086
|
PPageSizeSelect = __decorate([
|
|
1396
1087
|
ProxyCmp({
|
|
1397
1088
|
defineCustomElementFn: undefined,
|
|
1398
1089
|
inputs: ['buttonSize', 'buttonTemplate', 'chevronPosition', 'hidden', 'itemTemplate', 'size', 'sizeOptions']
|
|
1399
1090
|
})
|
|
1400
1091
|
], PPageSizeSelect);
|
|
1401
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1092
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PPageSizeSelect, decorators: [{
|
|
1402
1093
|
type: Component,
|
|
1403
1094
|
args: [{
|
|
1404
1095
|
selector: 'p-page-size-select',
|
|
@@ -1415,15 +1106,15 @@ let PPagination = class PPagination {
|
|
|
1415
1106
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
1416
1107
|
}
|
|
1417
1108
|
};
|
|
1418
|
-
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1419
|
-
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1109
|
+
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1110
|
+
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1420
1111
|
PPagination = __decorate([
|
|
1421
1112
|
ProxyCmp({
|
|
1422
1113
|
defineCustomElementFn: undefined,
|
|
1423
1114
|
inputs: ['hideOnSinglePage', 'page', 'pageSize', 'total']
|
|
1424
1115
|
})
|
|
1425
1116
|
], PPagination);
|
|
1426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PPagination, decorators: [{
|
|
1427
1118
|
type: Component,
|
|
1428
1119
|
args: [{
|
|
1429
1120
|
selector: 'p-pagination',
|
|
@@ -1439,15 +1130,15 @@ let PPaginationItem = class PPaginationItem {
|
|
|
1439
1130
|
this.el = r.nativeElement;
|
|
1440
1131
|
}
|
|
1441
1132
|
};
|
|
1442
|
-
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1443
|
-
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1133
|
+
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PPaginationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1134
|
+
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PPaginationItem, selector: "p-pagination-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1444
1135
|
PPaginationItem = __decorate([
|
|
1445
1136
|
ProxyCmp({
|
|
1446
1137
|
defineCustomElementFn: undefined,
|
|
1447
1138
|
inputs: ['active']
|
|
1448
1139
|
})
|
|
1449
1140
|
], PPaginationItem);
|
|
1450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PPaginationItem, decorators: [{
|
|
1451
1142
|
type: Component,
|
|
1452
1143
|
args: [{
|
|
1453
1144
|
selector: 'p-pagination-item',
|
|
@@ -1463,15 +1154,15 @@ let PProfile = class PProfile {
|
|
|
1463
1154
|
this.el = r.nativeElement;
|
|
1464
1155
|
}
|
|
1465
1156
|
};
|
|
1466
|
-
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1467
|
-
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1157
|
+
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PProfile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1158
|
+
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PProfile, selector: "p-profile", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1468
1159
|
PProfile = __decorate([
|
|
1469
1160
|
ProxyCmp({
|
|
1470
1161
|
defineCustomElementFn: undefined,
|
|
1471
1162
|
inputs: ['size', 'variant']
|
|
1472
1163
|
})
|
|
1473
1164
|
], PProfile);
|
|
1474
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1165
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PProfile, decorators: [{
|
|
1475
1166
|
type: Component,
|
|
1476
1167
|
args: [{
|
|
1477
1168
|
selector: 'p-profile',
|
|
@@ -1487,14 +1178,14 @@ let PSegmentContainer = class PSegmentContainer {
|
|
|
1487
1178
|
this.el = r.nativeElement;
|
|
1488
1179
|
}
|
|
1489
1180
|
};
|
|
1490
|
-
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1491
|
-
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1181
|
+
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PSegmentContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1182
|
+
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PSegmentContainer, selector: "p-segment-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1492
1183
|
PSegmentContainer = __decorate([
|
|
1493
1184
|
ProxyCmp({
|
|
1494
1185
|
defineCustomElementFn: undefined
|
|
1495
1186
|
})
|
|
1496
1187
|
], PSegmentContainer);
|
|
1497
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PSegmentContainer, decorators: [{
|
|
1498
1189
|
type: Component,
|
|
1499
1190
|
args: [{
|
|
1500
1191
|
selector: 'p-segment-container',
|
|
@@ -1509,15 +1200,15 @@ let PSegmentItem = class PSegmentItem {
|
|
|
1509
1200
|
this.el = r.nativeElement;
|
|
1510
1201
|
}
|
|
1511
1202
|
};
|
|
1512
|
-
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1513
|
-
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1203
|
+
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PSegmentItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1204
|
+
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1514
1205
|
PSegmentItem = __decorate([
|
|
1515
1206
|
ProxyCmp({
|
|
1516
1207
|
defineCustomElementFn: undefined,
|
|
1517
1208
|
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
1518
1209
|
})
|
|
1519
1210
|
], PSegmentItem);
|
|
1520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PSegmentItem, decorators: [{
|
|
1521
1212
|
type: Component,
|
|
1522
1213
|
args: [{
|
|
1523
1214
|
selector: 'p-segment-item',
|
|
@@ -1534,15 +1225,15 @@ let PSelect = class PSelect {
|
|
|
1534
1225
|
proxyOutputs(this, this.el, ['queryChange', 'valueChange']);
|
|
1535
1226
|
}
|
|
1536
1227
|
};
|
|
1537
|
-
PSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1538
|
-
PSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1228
|
+
PSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1229
|
+
PSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PSelect, selector: "p-select", inputs: { asyncFilter: "asyncFilter", autoSelectFirst: "autoSelectFirst", autocompletePlaceholder: "autocompletePlaceholder", disabled: "disabled", displayKey: "displayKey", enableAutocomplete: "enableAutocomplete", error: "error", helper: "helper", items: "items", label: "label", loading: "loading", maxDisplayedItems: "maxDisplayedItems", placeholder: "placeholder", prefix: "prefix", query: "query", queryKey: "queryKey", size: "size", value: "value", valueKey: "valueKey" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1539
1230
|
PSelect = __decorate([
|
|
1540
1231
|
ProxyCmp({
|
|
1541
1232
|
defineCustomElementFn: undefined,
|
|
1542
1233
|
inputs: ['asyncFilter', 'autoSelectFirst', 'autocompletePlaceholder', 'disabled', 'displayKey', 'enableAutocomplete', 'error', 'helper', 'items', 'label', 'loading', 'maxDisplayedItems', 'placeholder', 'prefix', 'query', 'queryKey', 'size', 'value', 'valueKey']
|
|
1543
1234
|
})
|
|
1544
1235
|
], PSelect);
|
|
1545
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1236
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PSelect, decorators: [{
|
|
1546
1237
|
type: Component,
|
|
1547
1238
|
args: [{
|
|
1548
1239
|
selector: 'p-select',
|
|
@@ -1558,15 +1249,15 @@ let PSliderIndicator = class PSliderIndicator {
|
|
|
1558
1249
|
this.el = r.nativeElement;
|
|
1559
1250
|
}
|
|
1560
1251
|
};
|
|
1561
|
-
PSliderIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1562
|
-
PSliderIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1252
|
+
PSliderIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PSliderIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1253
|
+
PSliderIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PSliderIndicator, selector: "p-slider-indicator", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1563
1254
|
PSliderIndicator = __decorate([
|
|
1564
1255
|
ProxyCmp({
|
|
1565
1256
|
defineCustomElementFn: undefined,
|
|
1566
1257
|
inputs: ['active']
|
|
1567
1258
|
})
|
|
1568
1259
|
], PSliderIndicator);
|
|
1569
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PSliderIndicator, decorators: [{
|
|
1570
1261
|
type: Component,
|
|
1571
1262
|
args: [{
|
|
1572
1263
|
selector: 'p-slider-indicator',
|
|
@@ -1582,15 +1273,15 @@ let PStatus = class PStatus {
|
|
|
1582
1273
|
this.el = r.nativeElement;
|
|
1583
1274
|
}
|
|
1584
1275
|
};
|
|
1585
|
-
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1586
|
-
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1276
|
+
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1277
|
+
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1587
1278
|
PStatus = __decorate([
|
|
1588
1279
|
ProxyCmp({
|
|
1589
1280
|
defineCustomElementFn: undefined,
|
|
1590
1281
|
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
1591
1282
|
})
|
|
1592
1283
|
], PStatus);
|
|
1593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PStatus, decorators: [{
|
|
1594
1285
|
type: Component,
|
|
1595
1286
|
args: [{
|
|
1596
1287
|
selector: 'p-status',
|
|
@@ -1606,15 +1297,15 @@ let PStepper = class PStepper {
|
|
|
1606
1297
|
this.el = r.nativeElement;
|
|
1607
1298
|
}
|
|
1608
1299
|
};
|
|
1609
|
-
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1610
|
-
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1300
|
+
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1301
|
+
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PStepper, selector: "p-stepper", inputs: { activeStep: "activeStep", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1611
1302
|
PStepper = __decorate([
|
|
1612
1303
|
ProxyCmp({
|
|
1613
1304
|
defineCustomElementFn: undefined,
|
|
1614
1305
|
inputs: ['activeStep', 'direction']
|
|
1615
1306
|
})
|
|
1616
1307
|
], PStepper);
|
|
1617
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PStepper, decorators: [{
|
|
1618
1309
|
type: Component,
|
|
1619
1310
|
args: [{
|
|
1620
1311
|
selector: 'p-stepper',
|
|
@@ -1630,15 +1321,15 @@ let PStepperItem = class PStepperItem {
|
|
|
1630
1321
|
this.el = r.nativeElement;
|
|
1631
1322
|
}
|
|
1632
1323
|
};
|
|
1633
|
-
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1634
|
-
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1324
|
+
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PStepperItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1325
|
+
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1635
1326
|
PStepperItem = __decorate([
|
|
1636
1327
|
ProxyCmp({
|
|
1637
1328
|
defineCustomElementFn: undefined,
|
|
1638
1329
|
inputs: ['active', 'align', 'direction', 'finished']
|
|
1639
1330
|
})
|
|
1640
1331
|
], PStepperItem);
|
|
1641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1332
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PStepperItem, decorators: [{
|
|
1642
1333
|
type: Component,
|
|
1643
1334
|
args: [{
|
|
1644
1335
|
selector: 'p-stepper-item',
|
|
@@ -1654,15 +1345,15 @@ let PStepperLine = class PStepperLine {
|
|
|
1654
1345
|
this.el = r.nativeElement;
|
|
1655
1346
|
}
|
|
1656
1347
|
};
|
|
1657
|
-
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1658
|
-
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1348
|
+
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PStepperLine, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1349
|
+
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PStepperLine, selector: "p-stepper-line", inputs: { active: "active", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1659
1350
|
PStepperLine = __decorate([
|
|
1660
1351
|
ProxyCmp({
|
|
1661
1352
|
defineCustomElementFn: undefined,
|
|
1662
1353
|
inputs: ['active', 'direction']
|
|
1663
1354
|
})
|
|
1664
1355
|
], PStepperLine);
|
|
1665
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1356
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PStepperLine, decorators: [{
|
|
1666
1357
|
type: Component,
|
|
1667
1358
|
args: [{
|
|
1668
1359
|
selector: 'p-stepper-line',
|
|
@@ -1678,14 +1369,14 @@ let PTabGroup = class PTabGroup {
|
|
|
1678
1369
|
this.el = r.nativeElement;
|
|
1679
1370
|
}
|
|
1680
1371
|
};
|
|
1681
|
-
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1682
|
-
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1372
|
+
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1373
|
+
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PTabGroup, selector: "p-tab-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1683
1374
|
PTabGroup = __decorate([
|
|
1684
1375
|
ProxyCmp({
|
|
1685
1376
|
defineCustomElementFn: undefined
|
|
1686
1377
|
})
|
|
1687
1378
|
], PTabGroup);
|
|
1688
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1379
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTabGroup, decorators: [{
|
|
1689
1380
|
type: Component,
|
|
1690
1381
|
args: [{
|
|
1691
1382
|
selector: 'p-tab-group',
|
|
@@ -1699,170 +1390,655 @@ let PTabItem = class PTabItem {
|
|
|
1699
1390
|
c.detach();
|
|
1700
1391
|
this.el = r.nativeElement;
|
|
1701
1392
|
}
|
|
1702
|
-
};
|
|
1703
|
-
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
1704
|
-
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
1705
|
-
PTabItem = __decorate([
|
|
1706
|
-
ProxyCmp({
|
|
1707
|
-
defineCustomElementFn: undefined,
|
|
1708
|
-
inputs: ['active']
|
|
1709
|
-
})
|
|
1710
|
-
], PTabItem);
|
|
1711
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
1712
|
-
type: Component,
|
|
1713
|
-
args: [{
|
|
1714
|
-
selector: 'p-tab-item',
|
|
1715
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1716
|
-
template: '<ng-content></ng-content>',
|
|
1717
|
-
inputs: ['active']
|
|
1718
|
-
}]
|
|
1719
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1720
|
-
let PTableContainer = class PTableContainer {
|
|
1721
|
-
constructor(c, r, z) {
|
|
1722
|
-
this.z = z;
|
|
1723
|
-
c.detach();
|
|
1724
|
-
this.el = r.nativeElement;
|
|
1393
|
+
};
|
|
1394
|
+
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1395
|
+
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PTabItem, selector: "p-tab-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1396
|
+
PTabItem = __decorate([
|
|
1397
|
+
ProxyCmp({
|
|
1398
|
+
defineCustomElementFn: undefined,
|
|
1399
|
+
inputs: ['active']
|
|
1400
|
+
})
|
|
1401
|
+
], PTabItem);
|
|
1402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTabItem, decorators: [{
|
|
1403
|
+
type: Component,
|
|
1404
|
+
args: [{
|
|
1405
|
+
selector: 'p-tab-item',
|
|
1406
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1407
|
+
template: '<ng-content></ng-content>',
|
|
1408
|
+
inputs: ['active']
|
|
1409
|
+
}]
|
|
1410
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1411
|
+
let PTableContainer = class PTableContainer {
|
|
1412
|
+
constructor(c, r, z) {
|
|
1413
|
+
this.z = z;
|
|
1414
|
+
c.detach();
|
|
1415
|
+
this.el = r.nativeElement;
|
|
1416
|
+
}
|
|
1417
|
+
};
|
|
1418
|
+
PTableContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTableContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1419
|
+
PTableContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PTableContainer, selector: "p-table-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1420
|
+
PTableContainer = __decorate([
|
|
1421
|
+
ProxyCmp({
|
|
1422
|
+
defineCustomElementFn: undefined
|
|
1423
|
+
})
|
|
1424
|
+
], PTableContainer);
|
|
1425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTableContainer, decorators: [{
|
|
1426
|
+
type: Component,
|
|
1427
|
+
args: [{
|
|
1428
|
+
selector: 'p-table-container',
|
|
1429
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1430
|
+
template: '<ng-content></ng-content>'
|
|
1431
|
+
}]
|
|
1432
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1433
|
+
let PTableFooter = class PTableFooter {
|
|
1434
|
+
constructor(c, r, z) {
|
|
1435
|
+
this.z = z;
|
|
1436
|
+
c.detach();
|
|
1437
|
+
this.el = r.nativeElement;
|
|
1438
|
+
proxyOutputs(this, this.el, ['pageChange', 'pageSizeChange', 'export']);
|
|
1439
|
+
}
|
|
1440
|
+
};
|
|
1441
|
+
PTableFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTableFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1442
|
+
PTableFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1443
|
+
PTableFooter = __decorate([
|
|
1444
|
+
ProxyCmp({
|
|
1445
|
+
defineCustomElementFn: undefined,
|
|
1446
|
+
inputs: ['enableExport', 'enablePageSize', 'enablePagination', 'hideOnSinglePage', 'page', 'pageSize', 'pageSizeOptions', 'total']
|
|
1447
|
+
})
|
|
1448
|
+
], PTableFooter);
|
|
1449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTableFooter, decorators: [{
|
|
1450
|
+
type: Component,
|
|
1451
|
+
args: [{
|
|
1452
|
+
selector: 'p-table-footer',
|
|
1453
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1454
|
+
template: '<ng-content></ng-content>',
|
|
1455
|
+
inputs: ['enableExport', 'enablePageSize', 'enablePagination', 'hideOnSinglePage', 'page', 'pageSize', 'pageSizeOptions', 'total']
|
|
1456
|
+
}]
|
|
1457
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1458
|
+
let PTableHeader = class PTableHeader {
|
|
1459
|
+
constructor(c, r, z) {
|
|
1460
|
+
this.z = z;
|
|
1461
|
+
c.detach();
|
|
1462
|
+
this.el = r.nativeElement;
|
|
1463
|
+
proxyOutputs(this, this.el, ['quickFilter', 'queryChange', 'filter', 'edit']);
|
|
1464
|
+
}
|
|
1465
|
+
};
|
|
1466
|
+
PTableHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1467
|
+
PTableHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1468
|
+
PTableHeader = __decorate([
|
|
1469
|
+
ProxyCmp({
|
|
1470
|
+
defineCustomElementFn: undefined,
|
|
1471
|
+
inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
|
|
1472
|
+
})
|
|
1473
|
+
], PTableHeader);
|
|
1474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTableHeader, decorators: [{
|
|
1475
|
+
type: Component,
|
|
1476
|
+
args: [{
|
|
1477
|
+
selector: 'p-table-header',
|
|
1478
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1479
|
+
template: '<ng-content></ng-content>',
|
|
1480
|
+
inputs: ['activeQuickFilterIdentifier', 'canEdit', 'editButtonTemplate', 'enableEdit', 'enableFilter', 'enableSearch', 'filterButtonTemplate', 'itemsSelectedAmount', 'query', 'quickFilters', 'selectedFiltersAmount']
|
|
1481
|
+
}]
|
|
1482
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1483
|
+
let PTableRow = class PTableRow {
|
|
1484
|
+
constructor(c, r, z) {
|
|
1485
|
+
this.z = z;
|
|
1486
|
+
c.detach();
|
|
1487
|
+
this.el = r.nativeElement;
|
|
1488
|
+
}
|
|
1489
|
+
};
|
|
1490
|
+
PTableRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1491
|
+
PTableRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PTableRow, selector: "p-table-row", inputs: { enableHover: "enableHover", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1492
|
+
PTableRow = __decorate([
|
|
1493
|
+
ProxyCmp({
|
|
1494
|
+
defineCustomElementFn: undefined,
|
|
1495
|
+
inputs: ['enableHover', 'variant']
|
|
1496
|
+
})
|
|
1497
|
+
], PTableRow);
|
|
1498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTableRow, decorators: [{
|
|
1499
|
+
type: Component,
|
|
1500
|
+
args: [{
|
|
1501
|
+
selector: 'p-table-row',
|
|
1502
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1503
|
+
template: '<ng-content></ng-content>',
|
|
1504
|
+
inputs: ['enableHover', 'variant']
|
|
1505
|
+
}]
|
|
1506
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1507
|
+
let PToast = class PToast {
|
|
1508
|
+
constructor(c, r, z) {
|
|
1509
|
+
this.z = z;
|
|
1510
|
+
c.detach();
|
|
1511
|
+
this.el = r.nativeElement;
|
|
1512
|
+
proxyOutputs(this, this.el, ['action']);
|
|
1513
|
+
}
|
|
1514
|
+
};
|
|
1515
|
+
PToast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1516
|
+
PToast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: PToast, selector: "p-toast", inputs: { actionIcon: "actionIcon", actionIconFlip: "actionIconFlip", actionIconRotate: "actionIconRotate", content: "content", enableAction: "enableAction", header: "header", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1517
|
+
PToast = __decorate([
|
|
1518
|
+
ProxyCmp({
|
|
1519
|
+
defineCustomElementFn: undefined,
|
|
1520
|
+
inputs: ['actionIcon', 'actionIconFlip', 'actionIconRotate', 'content', 'enableAction', 'header', 'variant']
|
|
1521
|
+
})
|
|
1522
|
+
], PToast);
|
|
1523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PToast, decorators: [{
|
|
1524
|
+
type: Component,
|
|
1525
|
+
args: [{
|
|
1526
|
+
selector: 'p-toast',
|
|
1527
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1528
|
+
template: '<ng-content></ng-content>',
|
|
1529
|
+
inputs: ['actionIcon', 'actionIconFlip', 'actionIconRotate', 'content', 'enableAction', 'header', 'variant']
|
|
1530
|
+
}]
|
|
1531
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1532
|
+
let PTooltip = class PTooltip {
|
|
1533
|
+
constructor(c, r, z) {
|
|
1534
|
+
this.z = z;
|
|
1535
|
+
c.detach();
|
|
1536
|
+
this.el = r.nativeElement;
|
|
1537
|
+
proxyOutputs(this, this.el, ['isOpen']);
|
|
1538
|
+
}
|
|
1539
|
+
};
|
|
1540
|
+
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1541
|
+
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", 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 });
|
|
1542
|
+
PTooltip = __decorate([
|
|
1543
|
+
ProxyCmp({
|
|
1544
|
+
defineCustomElementFn: undefined,
|
|
1545
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
|
|
1546
|
+
})
|
|
1547
|
+
], PTooltip);
|
|
1548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PTooltip, decorators: [{
|
|
1549
|
+
type: Component,
|
|
1550
|
+
args: [{
|
|
1551
|
+
selector: 'p-tooltip',
|
|
1552
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1553
|
+
template: '<ng-content></ng-content>',
|
|
1554
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
|
|
1555
|
+
}]
|
|
1556
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1557
|
+
|
|
1558
|
+
const DIRECTIVES = [
|
|
1559
|
+
PAccordion,
|
|
1560
|
+
PAvatar,
|
|
1561
|
+
PAvatarGroup,
|
|
1562
|
+
PBackdrop,
|
|
1563
|
+
PButton,
|
|
1564
|
+
PCardBody,
|
|
1565
|
+
PCardContainer,
|
|
1566
|
+
PCardHeader,
|
|
1567
|
+
PContentSlider,
|
|
1568
|
+
PCounter,
|
|
1569
|
+
PDivider,
|
|
1570
|
+
PDrawer,
|
|
1571
|
+
PDrawerBody,
|
|
1572
|
+
PDrawerContainer,
|
|
1573
|
+
PDrawerHeader,
|
|
1574
|
+
PDropdown,
|
|
1575
|
+
PDropdownMenuContainer,
|
|
1576
|
+
PDropdownMenuItem,
|
|
1577
|
+
PHelper,
|
|
1578
|
+
PIcon,
|
|
1579
|
+
PIllustration,
|
|
1580
|
+
PInfoPanel,
|
|
1581
|
+
PInputGroup,
|
|
1582
|
+
PLabel,
|
|
1583
|
+
PLayout,
|
|
1584
|
+
PLoader,
|
|
1585
|
+
PModal,
|
|
1586
|
+
PModalBody,
|
|
1587
|
+
PModalContainer,
|
|
1588
|
+
PModalFooter,
|
|
1589
|
+
PModalHeader,
|
|
1590
|
+
PNavbar,
|
|
1591
|
+
PNavigationItem,
|
|
1592
|
+
PPageSizeSelect,
|
|
1593
|
+
PPagination,
|
|
1594
|
+
PPaginationItem,
|
|
1595
|
+
PProfile,
|
|
1596
|
+
PSegmentContainer,
|
|
1597
|
+
PSegmentItem,
|
|
1598
|
+
PSelect,
|
|
1599
|
+
PSliderIndicator,
|
|
1600
|
+
PStatus,
|
|
1601
|
+
PStepper,
|
|
1602
|
+
PStepperItem,
|
|
1603
|
+
PStepperLine,
|
|
1604
|
+
PTabGroup,
|
|
1605
|
+
PTabItem,
|
|
1606
|
+
PTableContainer,
|
|
1607
|
+
PTableFooter,
|
|
1608
|
+
PTableHeader,
|
|
1609
|
+
PTableRow,
|
|
1610
|
+
PToast,
|
|
1611
|
+
PTooltip
|
|
1612
|
+
];
|
|
1613
|
+
|
|
1614
|
+
class StencilModule {
|
|
1615
|
+
}
|
|
1616
|
+
StencilModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: StencilModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1617
|
+
StencilModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.2", ngImport: i0, type: StencilModule, declarations: [PAccordion, PAvatar, PAvatarGroup, PBackdrop, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDrawer, PDrawerBody, PDrawerContainer, PDrawerHeader, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableContainer, PTableFooter, PTableHeader, PTableRow, PToast, PTooltip], exports: [PAccordion, PAvatar, PAvatarGroup, PBackdrop, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDrawer, PDrawerBody, PDrawerContainer, PDrawerHeader, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableContainer, PTableFooter, PTableHeader, PTableRow, PToast, PTooltip] });
|
|
1618
|
+
StencilModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: StencilModule });
|
|
1619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: StencilModule, decorators: [{
|
|
1620
|
+
type: NgModule,
|
|
1621
|
+
args: [{
|
|
1622
|
+
declarations: [...DIRECTIVES],
|
|
1623
|
+
exports: [...DIRECTIVES],
|
|
1624
|
+
}]
|
|
1625
|
+
}] });
|
|
1626
|
+
|
|
1627
|
+
class OverlayModule {
|
|
1628
|
+
}
|
|
1629
|
+
OverlayModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: OverlayModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1630
|
+
OverlayModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.2", ngImport: i0, type: OverlayModule, imports: [CommonModule,
|
|
1631
|
+
StencilModule,
|
|
1632
|
+
OverlayModule$1,
|
|
1633
|
+
PlatformModule,
|
|
1634
|
+
ObserversModule,
|
|
1635
|
+
PortalModule], exports: [PortalModule] });
|
|
1636
|
+
OverlayModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: OverlayModule, imports: [CommonModule,
|
|
1637
|
+
StencilModule,
|
|
1638
|
+
OverlayModule$1,
|
|
1639
|
+
PlatformModule,
|
|
1640
|
+
ObserversModule,
|
|
1641
|
+
PortalModule, PortalModule] });
|
|
1642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: OverlayModule, decorators: [{
|
|
1643
|
+
type: NgModule,
|
|
1644
|
+
args: [{
|
|
1645
|
+
imports: [
|
|
1646
|
+
CommonModule,
|
|
1647
|
+
StencilModule,
|
|
1648
|
+
OverlayModule$1,
|
|
1649
|
+
PlatformModule,
|
|
1650
|
+
ObserversModule,
|
|
1651
|
+
PortalModule,
|
|
1652
|
+
],
|
|
1653
|
+
exports: [PortalModule],
|
|
1654
|
+
}]
|
|
1655
|
+
}] });
|
|
1656
|
+
|
|
1657
|
+
class OverlayRef {
|
|
1658
|
+
constructor(_overlay) {
|
|
1659
|
+
this._overlay = _overlay;
|
|
1660
|
+
}
|
|
1661
|
+
close() {
|
|
1662
|
+
this._overlay.dispose();
|
|
1663
|
+
}
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
class OverlayService {
|
|
1667
|
+
constructor(injector, overlay) {
|
|
1668
|
+
this.injector = injector;
|
|
1669
|
+
this.overlay = overlay;
|
|
1670
|
+
}
|
|
1671
|
+
open(component, options = {}) {
|
|
1672
|
+
const overlay = this.createOverlay();
|
|
1673
|
+
const overlayRef = new OverlayRef(overlay);
|
|
1674
|
+
this.attachModalContainer(overlay, overlayRef, component, options.providers ?? []);
|
|
1675
|
+
this.overlayRef = overlayRef;
|
|
1676
|
+
return overlayRef;
|
|
1677
|
+
}
|
|
1678
|
+
// tslint:disable-next-line:max-line-length
|
|
1679
|
+
attachModalContainer(overlay, overlayRef, component, providers) {
|
|
1680
|
+
const injector = this.createInjector(overlayRef, providers);
|
|
1681
|
+
const containerPortal = component instanceof CdkPortal
|
|
1682
|
+
? component
|
|
1683
|
+
: new ComponentPortal(component, null, injector);
|
|
1684
|
+
const containerRef = overlay.attach(containerPortal);
|
|
1685
|
+
return containerRef.instance;
|
|
1686
|
+
}
|
|
1687
|
+
createInjector(overlayRef, providers) {
|
|
1688
|
+
return Injector.create({
|
|
1689
|
+
providers: [
|
|
1690
|
+
{
|
|
1691
|
+
provide: OverlayRef,
|
|
1692
|
+
useValue: overlayRef,
|
|
1693
|
+
},
|
|
1694
|
+
...providers,
|
|
1695
|
+
],
|
|
1696
|
+
parent: this.injector,
|
|
1697
|
+
});
|
|
1698
|
+
}
|
|
1699
|
+
getOverlayConfig() {
|
|
1700
|
+
const positionStrategy = this.overlay
|
|
1701
|
+
.position()
|
|
1702
|
+
.global()
|
|
1703
|
+
.centerHorizontally()
|
|
1704
|
+
.centerVertically();
|
|
1705
|
+
const overlayConfig = new OverlayConfig({
|
|
1706
|
+
hasBackdrop: false,
|
|
1707
|
+
scrollStrategy: this.overlay.scrollStrategies.block(),
|
|
1708
|
+
positionStrategy,
|
|
1709
|
+
});
|
|
1710
|
+
return overlayConfig;
|
|
1711
|
+
}
|
|
1712
|
+
createOverlay() {
|
|
1713
|
+
// Returns an OverlayConfig
|
|
1714
|
+
const overlayConfig = this.getOverlayConfig();
|
|
1715
|
+
// Returns an OverlayRef
|
|
1716
|
+
return this.overlay.create(overlayConfig);
|
|
1717
|
+
}
|
|
1718
|
+
}
|
|
1719
|
+
OverlayService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: OverlayService, deps: [{ token: i0.Injector }, { token: i1.Overlay }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1720
|
+
OverlayService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: OverlayService });
|
|
1721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: OverlayService, decorators: [{
|
|
1722
|
+
type: Injectable
|
|
1723
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i1.Overlay }]; } });
|
|
1724
|
+
|
|
1725
|
+
const OVERLAY_SERVICES = [OverlayService];
|
|
1726
|
+
|
|
1727
|
+
class FormBaseComponent {
|
|
1728
|
+
constructor() {
|
|
1729
|
+
this.markedDirty = false;
|
|
1730
|
+
}
|
|
1731
|
+
scrollToFirstError() {
|
|
1732
|
+
const invalidInputs = Array.from(document.getElementsByClassName('ng-invalid'))
|
|
1733
|
+
.filter((e) => e?.nodeName?.toLowerCase() !== 'form')
|
|
1734
|
+
.sort((a, b) => a.scrollTop - b.scrollTop);
|
|
1735
|
+
const first = invalidInputs[0];
|
|
1736
|
+
if (first) {
|
|
1737
|
+
first.scrollIntoView({
|
|
1738
|
+
behavior: 'smooth',
|
|
1739
|
+
block: 'center',
|
|
1740
|
+
inline: 'center',
|
|
1741
|
+
});
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
markControlDirty(control) {
|
|
1745
|
+
if (control instanceof FormControl) {
|
|
1746
|
+
control.markAsDirty({ onlySelf: true });
|
|
1747
|
+
control.markAsTouched({ onlySelf: true });
|
|
1748
|
+
}
|
|
1749
|
+
else if (control instanceof FormGroup) {
|
|
1750
|
+
control.markAsDirty();
|
|
1751
|
+
control.markAsTouched();
|
|
1752
|
+
this.markAllDirty(control);
|
|
1753
|
+
}
|
|
1754
|
+
else if (control instanceof FormArray) {
|
|
1755
|
+
control.markAsDirty();
|
|
1756
|
+
control.markAsTouched();
|
|
1757
|
+
for (const child of control?.controls) {
|
|
1758
|
+
this.markControlDirty(child);
|
|
1759
|
+
}
|
|
1760
|
+
}
|
|
1761
|
+
control.updateValueAndValidity();
|
|
1762
|
+
}
|
|
1763
|
+
markAllDirty(formGroup) {
|
|
1764
|
+
this.markedDirty = true;
|
|
1765
|
+
for (const field of Object.keys(formGroup.controls)) {
|
|
1766
|
+
const control = formGroup.get(field);
|
|
1767
|
+
this.markControlDirty(control);
|
|
1768
|
+
}
|
|
1769
|
+
}
|
|
1770
|
+
getControlError(control) {
|
|
1771
|
+
if (!this.hasControlError(control)) {
|
|
1772
|
+
return;
|
|
1773
|
+
}
|
|
1774
|
+
return this.firstControlError(control);
|
|
1775
|
+
}
|
|
1776
|
+
hasControlError(control, showChildErrors = true) {
|
|
1777
|
+
return (control?.dirty && this.firstControlError(control, showChildErrors));
|
|
1778
|
+
}
|
|
1779
|
+
firstControlError(control, showChildErrors = true) {
|
|
1780
|
+
if (control instanceof FormGroup && showChildErrors) {
|
|
1781
|
+
const errors = Object.keys(control.controls)
|
|
1782
|
+
.map((key) => this.firstControlError(control.controls[key]))
|
|
1783
|
+
.filter((val) => !!val);
|
|
1784
|
+
return errors[0];
|
|
1785
|
+
}
|
|
1786
|
+
if (!control?.errors) {
|
|
1787
|
+
return;
|
|
1788
|
+
}
|
|
1789
|
+
const keys = Object.keys(control.errors);
|
|
1790
|
+
let err;
|
|
1791
|
+
for (const key of keys) {
|
|
1792
|
+
if (control.errors[key]) {
|
|
1793
|
+
err = key;
|
|
1794
|
+
break;
|
|
1795
|
+
}
|
|
1796
|
+
}
|
|
1797
|
+
return err;
|
|
1798
|
+
}
|
|
1799
|
+
resetControl(control) {
|
|
1800
|
+
control.setErrors(null);
|
|
1801
|
+
control.reset();
|
|
1802
|
+
control.markAsPristine();
|
|
1803
|
+
if (control instanceof FormGroup) {
|
|
1804
|
+
this.resetForm(control);
|
|
1805
|
+
}
|
|
1806
|
+
else if (control instanceof FormArray) {
|
|
1807
|
+
for (const child of control?.controls) {
|
|
1808
|
+
this.resetControl(child);
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1812
|
+
resetForm(formGroup) {
|
|
1813
|
+
for (const field of Object.keys(formGroup.controls)) {
|
|
1814
|
+
const control = formGroup.get(field);
|
|
1815
|
+
this.resetControl(control);
|
|
1816
|
+
}
|
|
1817
|
+
this.markedDirty = false;
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
FormBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: FormBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1821
|
+
FormBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: FormBaseComponent, selector: "ng-component", ngImport: i0, template: ``, isInline: true });
|
|
1822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: FormBaseComponent, decorators: [{
|
|
1823
|
+
type: Component,
|
|
1824
|
+
args: [{
|
|
1825
|
+
template: ``,
|
|
1826
|
+
}]
|
|
1827
|
+
}] });
|
|
1828
|
+
|
|
1829
|
+
const createFormFilters = (values, quickFilters, quickFilterKey) => {
|
|
1830
|
+
const filters = [];
|
|
1831
|
+
let quickFilter = null;
|
|
1832
|
+
for (const key of Object.keys(values)) {
|
|
1833
|
+
const value = values[key];
|
|
1834
|
+
if (key !== quickFilterKey && !value?.length) {
|
|
1835
|
+
continue;
|
|
1836
|
+
}
|
|
1837
|
+
if (quickFilterKey && key === quickFilterKey) {
|
|
1838
|
+
quickFilter = quickFilters.find((f) => f.value === value);
|
|
1839
|
+
continue;
|
|
1840
|
+
}
|
|
1841
|
+
filters.push({
|
|
1842
|
+
key,
|
|
1843
|
+
value,
|
|
1844
|
+
});
|
|
1845
|
+
}
|
|
1846
|
+
return {
|
|
1847
|
+
filters,
|
|
1848
|
+
quickFilter,
|
|
1849
|
+
};
|
|
1850
|
+
};
|
|
1851
|
+
|
|
1852
|
+
let BaseTableComponent = class BaseTableComponent extends FormBaseComponent {
|
|
1853
|
+
constructor() {
|
|
1854
|
+
super();
|
|
1855
|
+
this.quickFilters = [];
|
|
1856
|
+
this.filterForm = new FormGroup({});
|
|
1857
|
+
this.defaultFilterFormValues = {};
|
|
1858
|
+
this.pageSizeDefault = 12;
|
|
1859
|
+
this._defaultTableValues = {
|
|
1860
|
+
pageSize: this.pageSizeDefault,
|
|
1861
|
+
page: 1,
|
|
1862
|
+
quickFilter: null,
|
|
1863
|
+
query: '',
|
|
1864
|
+
filters: [],
|
|
1865
|
+
selectedRows: [],
|
|
1866
|
+
};
|
|
1867
|
+
this.defaultTableValues = {};
|
|
1868
|
+
}
|
|
1869
|
+
get pageSize() {
|
|
1870
|
+
if (!this.tableOptions) {
|
|
1871
|
+
return this._defaultTableValues.pageSize;
|
|
1872
|
+
}
|
|
1873
|
+
return this.tableOptions.value.pageSize;
|
|
1874
|
+
}
|
|
1875
|
+
get page() {
|
|
1876
|
+
if (!this.tableOptions) {
|
|
1877
|
+
return this._defaultTableValues.page;
|
|
1878
|
+
}
|
|
1879
|
+
return this.tableOptions.value.page;
|
|
1880
|
+
}
|
|
1881
|
+
get quickFilter() {
|
|
1882
|
+
if (!this.tableOptions) {
|
|
1883
|
+
return this._defaultTableValues.quickFilter;
|
|
1884
|
+
}
|
|
1885
|
+
return this.tableOptions.value.quickFilter;
|
|
1886
|
+
}
|
|
1887
|
+
set quickFilter(quickFilter) {
|
|
1888
|
+
this.tableValues = {
|
|
1889
|
+
quickFilter,
|
|
1890
|
+
};
|
|
1891
|
+
}
|
|
1892
|
+
get query() {
|
|
1893
|
+
if (!this.tableOptions) {
|
|
1894
|
+
return this._defaultTableValues.query;
|
|
1895
|
+
}
|
|
1896
|
+
return this.tableOptions.value.query;
|
|
1897
|
+
}
|
|
1898
|
+
set query(query) {
|
|
1899
|
+
this.tableValues = {
|
|
1900
|
+
query,
|
|
1901
|
+
};
|
|
1902
|
+
}
|
|
1903
|
+
get filters() {
|
|
1904
|
+
if (!this.tableOptions) {
|
|
1905
|
+
return this._defaultTableValues.filters;
|
|
1906
|
+
}
|
|
1907
|
+
return this.tableOptions.value.filters;
|
|
1908
|
+
}
|
|
1909
|
+
set filters(filters) {
|
|
1910
|
+
this.tableValues = {
|
|
1911
|
+
filters,
|
|
1912
|
+
};
|
|
1913
|
+
}
|
|
1914
|
+
get selectedRows() {
|
|
1915
|
+
if (!this.tableOptions) {
|
|
1916
|
+
return this._defaultTableValues.selectedRows;
|
|
1917
|
+
}
|
|
1918
|
+
return this.tableOptions.value.selectedRows;
|
|
1919
|
+
}
|
|
1920
|
+
set selectedRows(selectedRows) {
|
|
1921
|
+
this.tableValues = {
|
|
1922
|
+
selectedRows,
|
|
1923
|
+
};
|
|
1924
|
+
}
|
|
1925
|
+
// setter
|
|
1926
|
+
get parsedDefaultTableValues() {
|
|
1927
|
+
return {
|
|
1928
|
+
...this._defaultTableValues,
|
|
1929
|
+
...this.defaultTableValues,
|
|
1930
|
+
pageSize: this.defaultTableValues?.pageSize || this.pageSizeDefault,
|
|
1931
|
+
};
|
|
1932
|
+
}
|
|
1933
|
+
get tableValues() {
|
|
1934
|
+
return this.tableOptions?.value ?? {};
|
|
1935
|
+
}
|
|
1936
|
+
set tableValues(values) {
|
|
1937
|
+
this._setTableValues({
|
|
1938
|
+
...this.tableValues,
|
|
1939
|
+
...values,
|
|
1940
|
+
});
|
|
1941
|
+
}
|
|
1942
|
+
ngOnInit() {
|
|
1943
|
+
this.tableOptions = new FormControl({
|
|
1944
|
+
pageSize: this.parsedDefaultTableValues.pageSize,
|
|
1945
|
+
page: this.parsedDefaultTableValues.page,
|
|
1946
|
+
quickFilter: this.parsedDefaultTableValues.quickFilter,
|
|
1947
|
+
query: this.parsedDefaultTableValues.query,
|
|
1948
|
+
filters: this.parsedDefaultTableValues.filters,
|
|
1949
|
+
selectedRows: this.parsedDefaultTableValues.selectedRows,
|
|
1950
|
+
});
|
|
1951
|
+
this.tableOptions.valueChanges
|
|
1952
|
+
.pipe(untilDestroyed(this), startWith(this.tableOptions.value), pairwise(), map(([previous, next]) => this._getChanges(previous, next)), filter((changes) => !!changes), debounce((changes) => {
|
|
1953
|
+
if (changes?.query && Object.keys(changes)?.length === 1) {
|
|
1954
|
+
return timer(300);
|
|
1955
|
+
}
|
|
1956
|
+
return timer(0);
|
|
1957
|
+
}), filter((changes) => !(changes?.selected &&
|
|
1958
|
+
Object.keys(changes)?.length === 1)))
|
|
1959
|
+
.subscribe((changes) => {
|
|
1960
|
+
if (changes?.page) {
|
|
1961
|
+
this._refresh();
|
|
1962
|
+
return;
|
|
1963
|
+
}
|
|
1964
|
+
this._resetPageOrRefresh();
|
|
1965
|
+
});
|
|
1966
|
+
this._refresh();
|
|
1967
|
+
}
|
|
1968
|
+
resetTable(emitEvent = true, forceRefresh = null) {
|
|
1969
|
+
this._setTableValues(this.parsedDefaultTableValues, emitEvent);
|
|
1970
|
+
if (forceRefresh) {
|
|
1971
|
+
this._refresh();
|
|
1972
|
+
}
|
|
1973
|
+
}
|
|
1974
|
+
applyFormFilters(values = null) {
|
|
1975
|
+
values = values ?? this.filterForm.value;
|
|
1976
|
+
const { filters, quickFilter } = createFormFilters(values, this.quickFilters, this.filterFormQuickFilterKey);
|
|
1977
|
+
if (quickFilter) {
|
|
1978
|
+
this.quickFilter = quickFilter;
|
|
1979
|
+
}
|
|
1980
|
+
this.filters = filters;
|
|
1725
1981
|
}
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
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']);
|
|
1982
|
+
resetFormFilters(resetQuickFilter = false) {
|
|
1983
|
+
const values = this.filterForm.value;
|
|
1984
|
+
const defaultQuickFilter = this.quickFilters.find((f) => f.default);
|
|
1985
|
+
for (const key of Object.keys(values)) {
|
|
1986
|
+
if (key === this.filterFormQuickFilterKey) {
|
|
1987
|
+
if (resetQuickFilter) {
|
|
1988
|
+
values[key] = defaultQuickFilter.value;
|
|
1989
|
+
}
|
|
1990
|
+
continue;
|
|
1991
|
+
}
|
|
1992
|
+
values[key] = this.defaultFilterFormValues[key] ?? null;
|
|
1993
|
+
}
|
|
1994
|
+
this.filterForm.setValue(values);
|
|
1995
|
+
this.applyFormFilters(values);
|
|
1748
1996
|
}
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
PTableFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", 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: "15.0.1", 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']);
|
|
1997
|
+
_refresh() {
|
|
1998
|
+
console.warn('Not implemented');
|
|
1773
1999
|
}
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", 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;
|
|
2000
|
+
_resetPageOrRefresh() {
|
|
2001
|
+
if (!this.tableOptions) {
|
|
2002
|
+
return;
|
|
2003
|
+
}
|
|
2004
|
+
if (this.page !== 1) {
|
|
2005
|
+
this.tableOptions.get('page')?.setValue(1);
|
|
2006
|
+
return;
|
|
2007
|
+
}
|
|
2008
|
+
this._refresh();
|
|
1797
2009
|
}
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
defineCustomElementFn: undefined,
|
|
1804
|
-
inputs: ['enableHover', 'variant']
|
|
1805
|
-
})
|
|
1806
|
-
], PTableRow);
|
|
1807
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", 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 PToast = class PToast {
|
|
1817
|
-
constructor(c, r, z) {
|
|
1818
|
-
this.z = z;
|
|
1819
|
-
c.detach();
|
|
1820
|
-
this.el = r.nativeElement;
|
|
1821
|
-
proxyOutputs(this, this.el, ['action']);
|
|
2010
|
+
_setTableValues(data, emitEvent = true) {
|
|
2011
|
+
this.tableOptions?.setValue({
|
|
2012
|
+
...this.tableOptions.value,
|
|
2013
|
+
...data,
|
|
2014
|
+
}, { emitEvent });
|
|
1822
2015
|
}
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1837
|
-
template: '<ng-content></ng-content>',
|
|
1838
|
-
inputs: ['actionIcon', 'actionIconFlip', 'actionIconRotate', 'content', 'enableAction', 'header', 'variant']
|
|
1839
|
-
}]
|
|
1840
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1841
|
-
let PTooltip = class PTooltip {
|
|
1842
|
-
constructor(c, r, z) {
|
|
1843
|
-
this.z = z;
|
|
1844
|
-
c.detach();
|
|
1845
|
-
this.el = r.nativeElement;
|
|
1846
|
-
proxyOutputs(this, this.el, ['isOpen']);
|
|
2016
|
+
_getChanges(previous, next) {
|
|
2017
|
+
const changes = {};
|
|
2018
|
+
let key;
|
|
2019
|
+
for (key in next) {
|
|
2020
|
+
if (key === 'selectedRows') {
|
|
2021
|
+
continue;
|
|
2022
|
+
}
|
|
2023
|
+
if (JSON.stringify(previous[key]) !== JSON.stringify(next[key])) {
|
|
2024
|
+
// @ts-ignore
|
|
2025
|
+
changes[key] = next[key];
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
2028
|
+
return Object.keys(changes).length ? changes : null;
|
|
1847
2029
|
}
|
|
1848
2030
|
};
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
})
|
|
1856
|
-
], PTooltip);
|
|
1857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: PTooltip, decorators: [{
|
|
2031
|
+
BaseTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: BaseTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2032
|
+
BaseTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: BaseTableComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
2033
|
+
BaseTableComponent = __decorate([
|
|
2034
|
+
UntilDestroy({ checkProperties: true })
|
|
2035
|
+
], BaseTableComponent);
|
|
2036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: BaseTableComponent, decorators: [{
|
|
1858
2037
|
type: Component,
|
|
1859
2038
|
args: [{
|
|
1860
|
-
|
|
1861
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1862
|
-
template: '<ng-content></ng-content>',
|
|
1863
|
-
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
|
|
2039
|
+
template: ``,
|
|
1864
2040
|
}]
|
|
1865
|
-
}], ctorParameters: function () { return [
|
|
2041
|
+
}], ctorParameters: function () { return []; } });
|
|
1866
2042
|
|
|
1867
2043
|
/* eslint-disable max-len */
|
|
1868
2044
|
class TableCell {
|
|
@@ -2000,9 +2176,9 @@ class TableCell {
|
|
|
2000
2176
|
};
|
|
2001
2177
|
}
|
|
2002
2178
|
}
|
|
2003
|
-
TableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
2004
|
-
TableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
2005
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
2179
|
+
TableCell.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableCell, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2180
|
+
TableCell.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: TableCell, selector: "p-table-cell-ngx", inputs: { variant: "variant", index: "index", rowIndex: "rowIndex", definition: "definition", item: "item", value: "value", checkbox: "checkbox", template: "template" }, host: { properties: { "class": "this.class" } }, ngImport: i0, template: "<ng-container *ngIf=\"checkbox\">\n <ng-container *ngTemplateOutlet=\"checkbox\"></ng-container>\n</ng-container>\n\n<ng-container [ngSwitch]=\"variant\">\n <p-loader\n *ngSwitchCase=\"'loading'\"\n variant=\"ghost\"\n class=\"rounded flex-1 w-full h-6\"\n ></p-loader>\n\n <div *ngSwitchCase=\"'header'\" class=\"flex\">\n <ng-container *ngTemplateOutlet=\"valueTemplate\"></ng-container>\n </div>\n\n <div *ngSwitchCase=\"'default'\" class=\"flex\">\n <ng-container *ngIf=\"template; else valueTemplate\">\n <ng-container\n *ngTemplateOutlet=\"template; context: data\"\n ></ng-container>\n </ng-container>\n </div>\n</ng-container>\n\n<ng-template #valueTemplate>\n {{ data.value }}\n</ng-template>\n", styles: [":host{display:flex;align-items:center;gap:1rem}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1$1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1$1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: PLoader, selector: "p-loader", inputs: ["color", "modalDescription", "modalTitle", "show", "variant"] }] });
|
|
2181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableCell, decorators: [{
|
|
2006
2182
|
type: Component,
|
|
2007
2183
|
args: [{ selector: 'p-table-cell-ngx', template: "<ng-container *ngIf=\"checkbox\">\n <ng-container *ngTemplateOutlet=\"checkbox\"></ng-container>\n</ng-container>\n\n<ng-container [ngSwitch]=\"variant\">\n <p-loader\n *ngSwitchCase=\"'loading'\"\n variant=\"ghost\"\n class=\"rounded flex-1 w-full h-6\"\n ></p-loader>\n\n <div *ngSwitchCase=\"'header'\" class=\"flex\">\n <ng-container *ngTemplateOutlet=\"valueTemplate\"></ng-container>\n </div>\n\n <div *ngSwitchCase=\"'default'\" class=\"flex\">\n <ng-container *ngIf=\"template; else valueTemplate\">\n <ng-container\n *ngTemplateOutlet=\"template; context: data\"\n ></ng-container>\n </ng-container>\n </div>\n</ng-container>\n\n<ng-template #valueTemplate>\n {{ data.value }}\n</ng-template>\n", styles: [":host{display:flex;align-items:center;gap:1rem}\n"] }]
|
|
2008
2184
|
}], propDecorators: { variant: [{
|
|
@@ -2034,15 +2210,15 @@ let TableColumn = class TableColumn {
|
|
|
2034
2210
|
proxyOutputs(this, this.el, ['tableDefinitionChanged']);
|
|
2035
2211
|
}
|
|
2036
2212
|
};
|
|
2037
|
-
TableColumn.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
2038
|
-
TableColumn.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
2213
|
+
TableColumn.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2214
|
+
TableColumn.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: TableColumn, selector: "p-table-column", inputs: { align: "align", name: "name", path: "path", sizes: "sizes", type: "type", useSlot: "useSlot" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true, read: TemplateRef, static: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2039
2215
|
TableColumn = __decorate([
|
|
2040
2216
|
ProxyCmp({
|
|
2041
2217
|
defineCustomElementFn: undefined,
|
|
2042
2218
|
inputs: ['align', 'name', 'path', 'sizes', 'type', 'useSlot'],
|
|
2043
2219
|
})
|
|
2044
2220
|
], TableColumn);
|
|
2045
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
2221
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableColumn, decorators: [{
|
|
2046
2222
|
type: Component,
|
|
2047
2223
|
args: [{
|
|
2048
2224
|
selector: 'p-table-column',
|
|
@@ -2060,9 +2236,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImpor
|
|
|
2060
2236
|
|
|
2061
2237
|
class TableFilterModalDirective {
|
|
2062
2238
|
}
|
|
2063
|
-
TableFilterModalDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
2064
|
-
TableFilterModalDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
2065
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
2239
|
+
TableFilterModalDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableFilterModalDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2240
|
+
TableFilterModalDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", type: TableFilterModalDirective, selector: "[p-table-filter-modal]", ngImport: i0 });
|
|
2241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableFilterModalDirective, decorators: [{
|
|
2066
2242
|
type: Directive,
|
|
2067
2243
|
args: [{
|
|
2068
2244
|
selector: '[p-table-filter-modal]',
|
|
@@ -2093,15 +2269,15 @@ class TableFooterDirective extends BaseValueAccessor {
|
|
|
2093
2269
|
});
|
|
2094
2270
|
}
|
|
2095
2271
|
}
|
|
2096
|
-
TableFooterDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
2097
|
-
TableFooterDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
2272
|
+
TableFooterDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableFooterDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2273
|
+
TableFooterDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", type: TableFooterDirective, selector: "p-table-footer", host: { listeners: { "pageChange": "handleChange($event.detail, \"page\")", "pageSizeChange": "handleChange($event.detail, \"pageSize\")" } }, providers: [
|
|
2098
2274
|
{
|
|
2099
2275
|
provide: NG_VALUE_ACCESSOR,
|
|
2100
2276
|
useExisting: TableFooterDirective,
|
|
2101
2277
|
multi: true,
|
|
2102
2278
|
},
|
|
2103
2279
|
], usesInheritance: true, ngImport: i0 });
|
|
2104
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
2280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableFooterDirective, decorators: [{
|
|
2105
2281
|
type: Directive,
|
|
2106
2282
|
args: [{
|
|
2107
2283
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -2149,15 +2325,15 @@ class TableHeaderDirective extends BaseValueAccessor {
|
|
|
2149
2325
|
quickFilter?.identifier;
|
|
2150
2326
|
}
|
|
2151
2327
|
}
|
|
2152
|
-
TableHeaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
2153
|
-
TableHeaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
2328
|
+
TableHeaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableHeaderDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2329
|
+
TableHeaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", type: TableHeaderDirective, selector: "p-table-header", host: { listeners: { "queryChange": "handleChange($event.detail, \"query\")", "quickFilter": "handleChange($event.detail, \"quickFilter\")" } }, providers: [
|
|
2154
2330
|
{
|
|
2155
2331
|
provide: NG_VALUE_ACCESSOR,
|
|
2156
2332
|
useExisting: TableHeaderDirective,
|
|
2157
2333
|
multi: true,
|
|
2158
2334
|
},
|
|
2159
2335
|
], usesInheritance: true, ngImport: i0 });
|
|
2160
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
2336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableHeaderDirective, decorators: [{
|
|
2161
2337
|
type: Directive,
|
|
2162
2338
|
args: [{
|
|
2163
2339
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -2650,12 +2826,12 @@ let Table = class Table {
|
|
|
2650
2826
|
return this._findRowAction(el?.parentElement);
|
|
2651
2827
|
}
|
|
2652
2828
|
};
|
|
2653
|
-
Table.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
2654
|
-
Table.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: Table, selector: "p-table-ngx", inputs: { items: "items", loading: "loading", amountOfLoadingRows: "amountOfLoadingRows", enableRowSelection: "enableRowSelection", enableRowClick: "enableRowClick", selectedRows: "selectedRows", selectionKey: "selectionKey", canSelectKey: "canSelectKey", quickFilters: "quickFilters", activeQuickFilterIdentifier: "activeQuickFilterIdentifier", enableSearch: "enableSearch", query: "query", enableFilter: "enableFilter", selectedFiltersAmount: "selectedFiltersAmount", filterButtonTemplate: "filterButtonTemplate", enableEdit: "enableEdit", editButtonTemplate: "editButtonTemplate", enablePageSize: "enablePageSize", enablePagination: "enablePagination", enableExport: "enableExport", page: "page", total: "total", pageSize: "pageSize", pageSizeOptions: "pageSizeOptions", hideOnSinglePage: "hideOnSinglePage", emptyStateType: "emptyStateType", emptyStateHeader: "emptyStateHeader", emptyStateContent: "emptyStateContent", emptyStateAction: "emptyStateAction", emptyStateFilteredHeader: "emptyStateFilteredHeader", emptyStateFilteredContent: "emptyStateFilteredContent", filterModalHeaderText: "filterModalHeaderText", filterModalSaveText: "filterModalSaveText", filterModalCancelText: "filterModalCancelText", filterModalResetText: "filterModalResetText", filterModalShowReset: "filterModalShowReset", filterModalShowResetMobile: "filterModalShowResetMobile" }, outputs: { selectedRowsChange: "selectedRowsChange", rowClick: "rowClick", rowSelected: "rowSelected", rowDeselected: "rowDeselected", quickFilter: "quickFilter", queryChange: "queryChange", filter: "filter", edit: "edit", pageChange: "pageChange", pageSizeChange: "pageSizeChange", export: "export", emptyStateActionClick: "emptyStateActionClick", filterModalShow: "filterModalShow", filterModalSave: "filterModalSave", filterModalReset: "filterModalReset" }, host: { listeners: { "document:keydown": "keyDown($event)", "document:keyup": "keyUp($event)", "document:visibilitychange": "visibilityChange($event)" } }, queries: [{ propertyName: "filterModalTemplate", first: true, predicate: TableFilterModalDirective, descendants: true, read: TemplateRef, static: true }, { propertyName: "columnDefinitions", predicate: TableColumn }], usesOnChanges: true, ngImport: i0, template: "<p-table-container>\n <p-table-header\n [quickFilters]=\"quickFilters\"\n [activeQuickFilterIdentifier]=\"activeQuickFilterIdentifier\"\n (quickFilter)=\"(onQuickFilter)\"\n [enableSearch]=\"enableSearch\"\n [query]=\"query\"\n (queryChange)=\"(onQueryChange)\"\n [enableFilter]=\"filterModalTemplate\"\n [selectedFiltersAmount]=\"selectedFiltersAmount\"\n [filterButtonTemplate]=\"filterButtonTemplate\"\n (filter)=\"filterModalShow$.next(true)\"\n [enableEdit]=\"enableEdit\"\n [canEdit]=\"!!selectedRows.length\"\n [editButtonTemplate]=\"editButtonTemplate\"\n (edit)=\"edit.emit()\"\n [itemsSelectedAmount]=\"selectedRows.length\"\n ></p-table-header>\n\n <p-table-row variant=\"header\">\n <ng-container *ngFor=\"let col of columns; let index = index\">\n <p-table-cell-ngx\n [definition]=\"col\"\n [value]=\"col.name\"\n variant=\"header\"\n [index]=\"index\"\n [checkbox]=\"\n index === 0 && enableRowSelection\n ? checkboxTemplate\n : undefined\n \"\n ></p-table-cell-ngx>\n <ng-template #checkboxTemplate>\n <input\n class=\"p-input\"\n type=\"checkbox\"\n (change)=\"_selectAllChange($event)\"\n [checked]=\"_selectionContainsAll()\"\n [indeterminate]=\"_selectionIndeterminate()\"\n />\n </ng-template>\n </ng-container>\n </p-table-row>\n\n <div class=\"flex flex-col\">\n <ng-container *ngIf=\"loading; else contentTemplate\">\n <p-table-row\n *ngFor=\"let r of loadingRows; let rowIndex = index\"\n [enableHover]=\"enableRowSelection || enableRowClick\"\n >\n <ng-container *ngFor=\"let col of columns; let index = index\">\n <p-table-cell-ngx\n [definition]=\"col\"\n variant=\"loading\"\n [checkbox]=\"\n index === 0 && enableRowSelection\n ? checkboxTemplate\n : undefined\n \"\n [index]=\"index\"\n [rowIndex]=\"rowIndex\"\n ></p-table-cell-ngx>\n <ng-template #checkboxTemplate>\n <p-loader\n variant=\"ghost\"\n class=\"rounded w-6 h-6\"\n ></p-loader>\n </ng-template>\n </ng-container>\n </p-table-row>\n </ng-container>\n\n <ng-template #contentTemplate>\n <ng-container *ngIf=\"items?.length; else emptyStateTemplate\">\n <p-table-row\n *ngFor=\"let item of items; let rowIndex = index\"\n [enableHover]=\"enableRowSelection || enableRowClick\"\n (click)=\"_rowClick($event, rowIndex)\"\n >\n <ng-container\n *ngFor=\"let col of columns; let index = index\"\n >\n <p-table-cell-ngx\n [definition]=\"col\"\n [item]=\"item\"\n [checkbox]=\"\n index === 0 && enableRowSelection\n ? checkboxTemplate\n : undefined\n \"\n [index]=\"index\"\n [rowIndex]=\"rowIndex\"\n [template]=\"col.template\"\n ></p-table-cell-ngx>\n\n <ng-template #checkboxTemplate>\n <input\n class=\"p-input\"\n type=\"checkbox\"\n (change)=\"\n _checkboxChange($event.target, rowIndex)\n \"\n [disabled]=\"_checkboxDisabled(item)\"\n [checked]=\"_selectionContains(item, rowIndex)\"\n />\n </ng-template>\n </ng-container>\n </p-table-row>\n </ng-container>\n </ng-template>\n </div>\n\n <p-table-footer\n [hideOnSinglePage]=\"hideOnSinglePage\"\n [enablePageSize]=\"enablePageSize\"\n [pageSize]=\"pageSize\"\n [pageSizeOptions]=\"pageSizeOptions\"\n (pageSizeChange)=\"(pageSizeChange)\"\n [enablePagination]=\"enablePagination\"\n [page]=\"page\"\n [total]=\"total\"\n (pageChange)=\"(pageChange)\"\n [enableExport]=\"enableExport\"\n (export)=\"export.emit()\"\n ></p-table-footer>\n</p-table-container>\n\n<ng-container *ngIf=\"filterModalTemplate\">\n <p-modal\n [header]=\"filterModalHeaderText\"\n [show]=\"filterModalShow$ | async\"\n (close)=\"filterModalShow$.next(false)\"\n >\n <div slot=\"content\" class=\"flex flex-col gap-6\">\n <ng-container\n *ngTemplateOutlet=\"filterModalTemplate\"\n ></ng-container>\n </div>\n <div slot=\"footer\" class=\"flex justify-between gap-4 w-full\">\n <p-button\n *ngIf=\"filterModalShowResetMobile\"\n class=\"flex desktop-xs:hidden w-full tablet:w-auto\"\n variant=\"secondary\"\n (onClick)=\"onFilterModalReset(true)\"\n >\n {{ filterModalResetText }}\n </p-button>\n <p-button\n *ngIf=\"filterModalShowReset\"\n class=\"hidden desktop-xs:flex w-full tablet:w-auto\"\n variant=\"secondary\"\n (onClick)=\"onFilterModalReset()\"\n >\n {{ filterModalResetText }}\n </p-button>\n <p-button\n class=\"ml-auto w-full tablet:w-auto\"\n icon=\"checkmark\"\n (onClick)=\"onFilterModalSave()\"\n >\n {{ filterModalSaveText }}\n </p-button>\n </div>\n </p-modal>\n</ng-container>\n\n<ng-template #emptyStateTemplate>\n <div\n *ngIf=\"emptyStateType === 'filtered'; else emptyStateNonFilterTemplate\"\n class=\"\n flex flex-col\n items-center\n text-center\n py-24\n max-w-[20rem]\n self-center\n \"\n >\n <p-illustration\n variant=\"empty-state-search\"\n class=\"mb-6\"\n ></p-illustration>\n <p class=\"font-semibold text-storm-default\">\n {{ emptyStateFilteredHeader }}\n </p>\n <p class=\"text-sm text-storm-medium mb-14\">\n {{ emptyStateFilteredContent }}\n </p>\n </div>\n</ng-template>\n\n<ng-template #emptyStateNonFilterTemplate>\n <div\n class=\"\n flex flex-col\n items-center\n text-center\n py-24\n max-w-[20rem]\n self-center\n \"\n >\n <p-illustration\n variant=\"empty-state-overview\"\n class=\"cursor-pointer mb-6\"\n (onClick)=\"emptyStateActionClick.emit()\"\n ></p-illustration>\n <p class=\"font-semibold text-storm-default\">\n {{ emptyStateHeader }}\n </p>\n <p class=\"text-sm text-storm-medium mb-6\">\n {{ emptyStateContent }}\n </p>\n <p-button\n variant=\"secondary\"\n icon=\"plus\"\n size=\"small\"\n (onClick)=\"emptyStateActionClick.emit()\"\n >\n {{ emptyStateAction }}\n </p-button>\n </div>\n</ng-template>\n", styles: [":host{display:flex;flex-direction:column}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: PButton, selector: "p-button", inputs: ["chevron", "chevronPosition", "disabled", "href", "icon", "iconFlip", "iconOnly", "iconPosition", "iconRotate", "inheritText", "loading", "size", "target", "variant"] }, { kind: "component", type: PIllustration, selector: "p-illustration", inputs: ["variant"] }, { kind: "component", type: PLoader, selector: "p-loader", inputs: ["color", "modalDescription", "modalTitle", "show", "variant"] }, { kind: "component", type: PModal, selector: "p-modal", inputs: ["applyBlur", "backdropClickClose", "header", "show", "showMobileClose", "showMobileFooter", "size", "variant"] }, { kind: "component", type: PTableContainer, selector: "p-table-container" }, { kind: "component", type: PTableFooter, selector: "p-table-footer", inputs: ["enableExport", "enablePageSize", "enablePagination", "hideOnSinglePage", "page", "pageSize", "pageSizeOptions", "total"] }, { kind: "component", type: PTableHeader, selector: "p-table-header", inputs: ["activeQuickFilterIdentifier", "canEdit", "editButtonTemplate", "enableEdit", "enableFilter", "enableSearch", "filterButtonTemplate", "itemsSelectedAmount", "query", "quickFilters", "selectedFiltersAmount"] }, { kind: "component", type: PTableRow, selector: "p-table-row", inputs: ["enableHover", "variant"] }, { kind: "component", type: TableCell, selector: "p-table-cell-ngx", inputs: ["variant", "index", "rowIndex", "definition", "item", "value", "checkbox", "template"] }, { kind: "directive", type: TableFooterDirective, selector: "p-table-footer" }, { kind: "directive", type: TableHeaderDirective, selector: "p-table-header" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2829
|
+
Table.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: Table, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2830
|
+
Table.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: Table, selector: "p-table-ngx", inputs: { items: "items", loading: "loading", amountOfLoadingRows: "amountOfLoadingRows", enableRowSelection: "enableRowSelection", enableRowClick: "enableRowClick", selectedRows: "selectedRows", selectionKey: "selectionKey", canSelectKey: "canSelectKey", quickFilters: "quickFilters", activeQuickFilterIdentifier: "activeQuickFilterIdentifier", enableSearch: "enableSearch", query: "query", enableFilter: "enableFilter", selectedFiltersAmount: "selectedFiltersAmount", filterButtonTemplate: "filterButtonTemplate", enableEdit: "enableEdit", editButtonTemplate: "editButtonTemplate", enablePageSize: "enablePageSize", enablePagination: "enablePagination", enableExport: "enableExport", page: "page", total: "total", pageSize: "pageSize", pageSizeOptions: "pageSizeOptions", hideOnSinglePage: "hideOnSinglePage", emptyStateType: "emptyStateType", emptyStateHeader: "emptyStateHeader", emptyStateContent: "emptyStateContent", emptyStateAction: "emptyStateAction", emptyStateFilteredHeader: "emptyStateFilteredHeader", emptyStateFilteredContent: "emptyStateFilteredContent", filterModalHeaderText: "filterModalHeaderText", filterModalSaveText: "filterModalSaveText", filterModalCancelText: "filterModalCancelText", filterModalResetText: "filterModalResetText", filterModalShowReset: "filterModalShowReset", filterModalShowResetMobile: "filterModalShowResetMobile" }, outputs: { selectedRowsChange: "selectedRowsChange", rowClick: "rowClick", rowSelected: "rowSelected", rowDeselected: "rowDeselected", quickFilter: "quickFilter", queryChange: "queryChange", filter: "filter", edit: "edit", pageChange: "pageChange", pageSizeChange: "pageSizeChange", export: "export", emptyStateActionClick: "emptyStateActionClick", filterModalShow: "filterModalShow", filterModalSave: "filterModalSave", filterModalReset: "filterModalReset" }, host: { listeners: { "document:keydown": "keyDown($event)", "document:keyup": "keyUp($event)", "document:visibilitychange": "visibilityChange($event)" } }, queries: [{ propertyName: "filterModalTemplate", first: true, predicate: TableFilterModalDirective, descendants: true, read: TemplateRef, static: true }, { propertyName: "columnDefinitions", predicate: TableColumn }], usesOnChanges: true, ngImport: i0, template: "<p-table-container>\n <p-table-header\n [quickFilters]=\"quickFilters\"\n [activeQuickFilterIdentifier]=\"activeQuickFilterIdentifier\"\n (quickFilter)=\"(onQuickFilter)\"\n [enableSearch]=\"enableSearch\"\n [query]=\"query\"\n (queryChange)=\"(onQueryChange)\"\n [enableFilter]=\"filterModalTemplate\"\n [selectedFiltersAmount]=\"selectedFiltersAmount\"\n [filterButtonTemplate]=\"filterButtonTemplate\"\n (filter)=\"filterModalShow$.next(true)\"\n [enableEdit]=\"enableEdit\"\n [canEdit]=\"!!selectedRows.length\"\n [editButtonTemplate]=\"editButtonTemplate\"\n (edit)=\"edit.emit()\"\n [itemsSelectedAmount]=\"selectedRows.length\"\n ></p-table-header>\n\n <p-table-row variant=\"header\">\n <ng-container *ngFor=\"let col of columns; let index = index\">\n <p-table-cell-ngx\n [definition]=\"col\"\n [value]=\"col.name\"\n variant=\"header\"\n [index]=\"index\"\n [checkbox]=\"\n index === 0 && enableRowSelection\n ? checkboxTemplate\n : undefined\n \"\n ></p-table-cell-ngx>\n <ng-template #checkboxTemplate>\n <input\n class=\"p-input\"\n type=\"checkbox\"\n (change)=\"_selectAllChange($event)\"\n [checked]=\"_selectionContainsAll()\"\n [indeterminate]=\"_selectionIndeterminate()\"\n />\n </ng-template>\n </ng-container>\n </p-table-row>\n\n <div class=\"flex flex-col\">\n <ng-container *ngIf=\"loading; else contentTemplate\">\n <p-table-row\n *ngFor=\"let r of loadingRows; let rowIndex = index\"\n [enableHover]=\"enableRowSelection || enableRowClick\"\n >\n <ng-container *ngFor=\"let col of columns; let index = index\">\n <p-table-cell-ngx\n [definition]=\"col\"\n variant=\"loading\"\n [checkbox]=\"\n index === 0 && enableRowSelection\n ? checkboxTemplate\n : undefined\n \"\n [index]=\"index\"\n [rowIndex]=\"rowIndex\"\n ></p-table-cell-ngx>\n <ng-template #checkboxTemplate>\n <p-loader\n variant=\"ghost\"\n class=\"rounded w-6 h-6\"\n ></p-loader>\n </ng-template>\n </ng-container>\n </p-table-row>\n </ng-container>\n\n <ng-template #contentTemplate>\n <ng-container *ngIf=\"items?.length; else emptyStateTemplate\">\n <p-table-row\n *ngFor=\"let item of items; let rowIndex = index\"\n [enableHover]=\"enableRowSelection || enableRowClick\"\n (click)=\"_rowClick($event, rowIndex)\"\n >\n <ng-container\n *ngFor=\"let col of columns; let index = index\"\n >\n <p-table-cell-ngx\n [definition]=\"col\"\n [item]=\"item\"\n [checkbox]=\"\n index === 0 && enableRowSelection\n ? checkboxTemplate\n : undefined\n \"\n [index]=\"index\"\n [rowIndex]=\"rowIndex\"\n [template]=\"col.template\"\n ></p-table-cell-ngx>\n\n <ng-template #checkboxTemplate>\n <input\n class=\"p-input\"\n type=\"checkbox\"\n (change)=\"\n _checkboxChange($event.target, rowIndex)\n \"\n [disabled]=\"_checkboxDisabled(item)\"\n [checked]=\"_selectionContains(item, rowIndex)\"\n />\n </ng-template>\n </ng-container>\n </p-table-row>\n </ng-container>\n </ng-template>\n </div>\n\n <p-table-footer\n [hideOnSinglePage]=\"hideOnSinglePage\"\n [enablePageSize]=\"enablePageSize\"\n [pageSize]=\"pageSize\"\n [pageSizeOptions]=\"pageSizeOptions\"\n (pageSizeChange)=\"(pageSizeChange)\"\n [enablePagination]=\"enablePagination\"\n [page]=\"page\"\n [total]=\"total\"\n (pageChange)=\"(pageChange)\"\n [enableExport]=\"enableExport\"\n (export)=\"export.emit()\"\n ></p-table-footer>\n</p-table-container>\n\n<ng-container *ngIf=\"filterModalTemplate\">\n <p-modal\n [header]=\"filterModalHeaderText\"\n [show]=\"filterModalShow$ | async\"\n (close)=\"filterModalShow$.next(false)\"\n >\n <div slot=\"content\" class=\"flex flex-col gap-6\">\n <ng-container\n *ngTemplateOutlet=\"filterModalTemplate\"\n ></ng-container>\n </div>\n <div slot=\"footer\" class=\"flex justify-between gap-4 w-full\">\n <p-button\n *ngIf=\"filterModalShowResetMobile\"\n class=\"flex desktop-xs:hidden w-full tablet:w-auto\"\n variant=\"secondary\"\n (onClick)=\"onFilterModalReset(true)\"\n >\n {{ filterModalResetText }}\n </p-button>\n <p-button\n *ngIf=\"filterModalShowReset\"\n class=\"hidden desktop-xs:flex w-full tablet:w-auto\"\n variant=\"secondary\"\n (onClick)=\"onFilterModalReset()\"\n >\n {{ filterModalResetText }}\n </p-button>\n <p-button\n class=\"ml-auto w-full tablet:w-auto\"\n icon=\"checkmark\"\n (onClick)=\"onFilterModalSave()\"\n >\n {{ filterModalSaveText }}\n </p-button>\n </div>\n </p-modal>\n</ng-container>\n\n<ng-template #emptyStateTemplate>\n <div\n *ngIf=\"emptyStateType === 'filtered'; else emptyStateNonFilterTemplate\"\n class=\"\n flex flex-col\n items-center\n text-center\n py-24\n max-w-[20rem]\n self-center\n \"\n >\n <p-illustration\n variant=\"empty-state-search\"\n class=\"mb-6\"\n ></p-illustration>\n <p class=\"font-semibold text-storm-default\">\n {{ emptyStateFilteredHeader }}\n </p>\n <p class=\"text-sm text-storm-medium mb-14\">\n {{ emptyStateFilteredContent }}\n </p>\n </div>\n</ng-template>\n\n<ng-template #emptyStateNonFilterTemplate>\n <div\n class=\"\n flex flex-col\n items-center\n text-center\n py-24\n max-w-[20rem]\n self-center\n \"\n >\n <p-illustration\n variant=\"empty-state-overview\"\n class=\"cursor-pointer mb-6\"\n (onClick)=\"emptyStateActionClick.emit()\"\n ></p-illustration>\n <p class=\"font-semibold text-storm-default\">\n {{ emptyStateHeader }}\n </p>\n <p class=\"text-sm text-storm-medium mb-6\">\n {{ emptyStateContent }}\n </p>\n <p-button\n variant=\"secondary\"\n icon=\"plus\"\n size=\"small\"\n (onClick)=\"emptyStateActionClick.emit()\"\n >\n {{ emptyStateAction }}\n </p-button>\n </div>\n</ng-template>\n", styles: [":host{display:flex;flex-direction:column}\n"], dependencies: [{ kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: PButton, selector: "p-button", inputs: ["chevron", "chevronPosition", "disabled", "href", "icon", "iconFlip", "iconOnly", "iconPosition", "iconRotate", "inheritText", "loading", "size", "target", "variant"] }, { kind: "component", type: PIllustration, selector: "p-illustration", inputs: ["variant"] }, { kind: "component", type: PLoader, selector: "p-loader", inputs: ["color", "modalDescription", "modalTitle", "show", "variant"] }, { kind: "component", type: PModal, selector: "p-modal", inputs: ["applyBlur", "backdropClickClose", "header", "show", "showMobileClose", "showMobileFooter", "size", "variant"] }, { kind: "component", type: PTableContainer, selector: "p-table-container" }, { kind: "component", type: PTableFooter, selector: "p-table-footer", inputs: ["enableExport", "enablePageSize", "enablePagination", "hideOnSinglePage", "page", "pageSize", "pageSizeOptions", "total"] }, { kind: "component", type: PTableHeader, selector: "p-table-header", inputs: ["activeQuickFilterIdentifier", "canEdit", "editButtonTemplate", "enableEdit", "enableFilter", "enableSearch", "filterButtonTemplate", "itemsSelectedAmount", "query", "quickFilters", "selectedFiltersAmount"] }, { kind: "component", type: PTableRow, selector: "p-table-row", inputs: ["enableHover", "variant"] }, { kind: "component", type: TableCell, selector: "p-table-cell-ngx", inputs: ["variant", "index", "rowIndex", "definition", "item", "value", "checkbox", "template"] }, { kind: "directive", type: TableFooterDirective, selector: "p-table-footer" }, { kind: "directive", type: TableHeaderDirective, selector: "p-table-header" }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2655
2831
|
Table = __decorate([
|
|
2656
2832
|
UntilDestroy({ checkProperties: true })
|
|
2657
2833
|
], Table);
|
|
2658
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
2834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: Table, decorators: [{
|
|
2659
2835
|
type: Component,
|
|
2660
2836
|
args: [{ selector: 'p-table-ngx', changeDetection: ChangeDetectionStrategy.OnPush, template: "<p-table-container>\n <p-table-header\n [quickFilters]=\"quickFilters\"\n [activeQuickFilterIdentifier]=\"activeQuickFilterIdentifier\"\n (quickFilter)=\"(onQuickFilter)\"\n [enableSearch]=\"enableSearch\"\n [query]=\"query\"\n (queryChange)=\"(onQueryChange)\"\n [enableFilter]=\"filterModalTemplate\"\n [selectedFiltersAmount]=\"selectedFiltersAmount\"\n [filterButtonTemplate]=\"filterButtonTemplate\"\n (filter)=\"filterModalShow$.next(true)\"\n [enableEdit]=\"enableEdit\"\n [canEdit]=\"!!selectedRows.length\"\n [editButtonTemplate]=\"editButtonTemplate\"\n (edit)=\"edit.emit()\"\n [itemsSelectedAmount]=\"selectedRows.length\"\n ></p-table-header>\n\n <p-table-row variant=\"header\">\n <ng-container *ngFor=\"let col of columns; let index = index\">\n <p-table-cell-ngx\n [definition]=\"col\"\n [value]=\"col.name\"\n variant=\"header\"\n [index]=\"index\"\n [checkbox]=\"\n index === 0 && enableRowSelection\n ? checkboxTemplate\n : undefined\n \"\n ></p-table-cell-ngx>\n <ng-template #checkboxTemplate>\n <input\n class=\"p-input\"\n type=\"checkbox\"\n (change)=\"_selectAllChange($event)\"\n [checked]=\"_selectionContainsAll()\"\n [indeterminate]=\"_selectionIndeterminate()\"\n />\n </ng-template>\n </ng-container>\n </p-table-row>\n\n <div class=\"flex flex-col\">\n <ng-container *ngIf=\"loading; else contentTemplate\">\n <p-table-row\n *ngFor=\"let r of loadingRows; let rowIndex = index\"\n [enableHover]=\"enableRowSelection || enableRowClick\"\n >\n <ng-container *ngFor=\"let col of columns; let index = index\">\n <p-table-cell-ngx\n [definition]=\"col\"\n variant=\"loading\"\n [checkbox]=\"\n index === 0 && enableRowSelection\n ? checkboxTemplate\n : undefined\n \"\n [index]=\"index\"\n [rowIndex]=\"rowIndex\"\n ></p-table-cell-ngx>\n <ng-template #checkboxTemplate>\n <p-loader\n variant=\"ghost\"\n class=\"rounded w-6 h-6\"\n ></p-loader>\n </ng-template>\n </ng-container>\n </p-table-row>\n </ng-container>\n\n <ng-template #contentTemplate>\n <ng-container *ngIf=\"items?.length; else emptyStateTemplate\">\n <p-table-row\n *ngFor=\"let item of items; let rowIndex = index\"\n [enableHover]=\"enableRowSelection || enableRowClick\"\n (click)=\"_rowClick($event, rowIndex)\"\n >\n <ng-container\n *ngFor=\"let col of columns; let index = index\"\n >\n <p-table-cell-ngx\n [definition]=\"col\"\n [item]=\"item\"\n [checkbox]=\"\n index === 0 && enableRowSelection\n ? checkboxTemplate\n : undefined\n \"\n [index]=\"index\"\n [rowIndex]=\"rowIndex\"\n [template]=\"col.template\"\n ></p-table-cell-ngx>\n\n <ng-template #checkboxTemplate>\n <input\n class=\"p-input\"\n type=\"checkbox\"\n (change)=\"\n _checkboxChange($event.target, rowIndex)\n \"\n [disabled]=\"_checkboxDisabled(item)\"\n [checked]=\"_selectionContains(item, rowIndex)\"\n />\n </ng-template>\n </ng-container>\n </p-table-row>\n </ng-container>\n </ng-template>\n </div>\n\n <p-table-footer\n [hideOnSinglePage]=\"hideOnSinglePage\"\n [enablePageSize]=\"enablePageSize\"\n [pageSize]=\"pageSize\"\n [pageSizeOptions]=\"pageSizeOptions\"\n (pageSizeChange)=\"(pageSizeChange)\"\n [enablePagination]=\"enablePagination\"\n [page]=\"page\"\n [total]=\"total\"\n (pageChange)=\"(pageChange)\"\n [enableExport]=\"enableExport\"\n (export)=\"export.emit()\"\n ></p-table-footer>\n</p-table-container>\n\n<ng-container *ngIf=\"filterModalTemplate\">\n <p-modal\n [header]=\"filterModalHeaderText\"\n [show]=\"filterModalShow$ | async\"\n (close)=\"filterModalShow$.next(false)\"\n >\n <div slot=\"content\" class=\"flex flex-col gap-6\">\n <ng-container\n *ngTemplateOutlet=\"filterModalTemplate\"\n ></ng-container>\n </div>\n <div slot=\"footer\" class=\"flex justify-between gap-4 w-full\">\n <p-button\n *ngIf=\"filterModalShowResetMobile\"\n class=\"flex desktop-xs:hidden w-full tablet:w-auto\"\n variant=\"secondary\"\n (onClick)=\"onFilterModalReset(true)\"\n >\n {{ filterModalResetText }}\n </p-button>\n <p-button\n *ngIf=\"filterModalShowReset\"\n class=\"hidden desktop-xs:flex w-full tablet:w-auto\"\n variant=\"secondary\"\n (onClick)=\"onFilterModalReset()\"\n >\n {{ filterModalResetText }}\n </p-button>\n <p-button\n class=\"ml-auto w-full tablet:w-auto\"\n icon=\"checkmark\"\n (onClick)=\"onFilterModalSave()\"\n >\n {{ filterModalSaveText }}\n </p-button>\n </div>\n </p-modal>\n</ng-container>\n\n<ng-template #emptyStateTemplate>\n <div\n *ngIf=\"emptyStateType === 'filtered'; else emptyStateNonFilterTemplate\"\n class=\"\n flex flex-col\n items-center\n text-center\n py-24\n max-w-[20rem]\n self-center\n \"\n >\n <p-illustration\n variant=\"empty-state-search\"\n class=\"mb-6\"\n ></p-illustration>\n <p class=\"font-semibold text-storm-default\">\n {{ emptyStateFilteredHeader }}\n </p>\n <p class=\"text-sm text-storm-medium mb-14\">\n {{ emptyStateFilteredContent }}\n </p>\n </div>\n</ng-template>\n\n<ng-template #emptyStateNonFilterTemplate>\n <div\n class=\"\n flex flex-col\n items-center\n text-center\n py-24\n max-w-[20rem]\n self-center\n \"\n >\n <p-illustration\n variant=\"empty-state-overview\"\n class=\"cursor-pointer mb-6\"\n (onClick)=\"emptyStateActionClick.emit()\"\n ></p-illustration>\n <p class=\"font-semibold text-storm-default\">\n {{ emptyStateHeader }}\n </p>\n <p class=\"text-sm text-storm-medium mb-6\">\n {{ emptyStateContent }}\n </p>\n <p-button\n variant=\"secondary\"\n icon=\"plus\"\n size=\"small\"\n (onClick)=\"emptyStateActionClick.emit()\"\n >\n {{ emptyStateAction }}\n </p-button>\n </div>\n</ng-template>\n", styles: [":host{display:flex;flex-direction:column}\n"] }]
|
|
2661
2837
|
}], ctorParameters: function () { return []; }, propDecorators: { items: [{
|
|
@@ -2869,15 +3045,15 @@ class TableNgxDirective extends BaseValueAccessor {
|
|
|
2869
3045
|
}
|
|
2870
3046
|
}
|
|
2871
3047
|
}
|
|
2872
|
-
TableNgxDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
2873
|
-
TableNgxDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
3048
|
+
TableNgxDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableNgxDirective, deps: [{ token: i0.ElementRef }, { token: Table, host: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3049
|
+
TableNgxDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", type: TableNgxDirective, selector: "p-table-ngx", 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, \"selectedRows\")" } }, providers: [
|
|
2874
3050
|
{
|
|
2875
3051
|
provide: NG_VALUE_ACCESSOR,
|
|
2876
3052
|
useExisting: TableNgxDirective,
|
|
2877
3053
|
multi: true,
|
|
2878
3054
|
},
|
|
2879
3055
|
], usesInheritance: true, ngImport: i0 });
|
|
2880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableNgxDirective, decorators: [{
|
|
2881
3057
|
type: Directive,
|
|
2882
3058
|
args: [{
|
|
2883
3059
|
selector: 'p-table-ngx',
|
|
@@ -2944,15 +3120,15 @@ class TableDirective extends BaseValueAccessor {
|
|
|
2944
3120
|
quickFilter?.identifier;
|
|
2945
3121
|
}
|
|
2946
3122
|
}
|
|
2947
|
-
TableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
2948
|
-
TableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
3123
|
+
TableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3124
|
+
TableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", 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: [
|
|
2949
3125
|
{
|
|
2950
3126
|
provide: NG_VALUE_ACCESSOR,
|
|
2951
3127
|
useExisting: TableDirective,
|
|
2952
3128
|
multi: true,
|
|
2953
3129
|
},
|
|
2954
3130
|
], usesInheritance: true, ngImport: i0 });
|
|
2955
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableDirective, decorators: [{
|
|
2956
3132
|
type: Directive,
|
|
2957
3133
|
args: [{
|
|
2958
3134
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -2982,81 +3158,12 @@ const TABLE_DIRECTIVES = [
|
|
|
2982
3158
|
TableFilterModalDirective,
|
|
2983
3159
|
];
|
|
2984
3160
|
|
|
2985
|
-
const DIRECTIVES = [
|
|
2986
|
-
PAccordion,
|
|
2987
|
-
PAvatar,
|
|
2988
|
-
PAvatarGroup,
|
|
2989
|
-
PBackdrop,
|
|
2990
|
-
PButton,
|
|
2991
|
-
PCardBody,
|
|
2992
|
-
PCardContainer,
|
|
2993
|
-
PCardHeader,
|
|
2994
|
-
PContentSlider,
|
|
2995
|
-
PCounter,
|
|
2996
|
-
PDivider,
|
|
2997
|
-
PDrawer,
|
|
2998
|
-
PDrawerBody,
|
|
2999
|
-
PDrawerContainer,
|
|
3000
|
-
PDrawerHeader,
|
|
3001
|
-
PDropdown,
|
|
3002
|
-
PDropdownMenuContainer,
|
|
3003
|
-
PDropdownMenuItem,
|
|
3004
|
-
PHelper,
|
|
3005
|
-
PIcon,
|
|
3006
|
-
PIllustration,
|
|
3007
|
-
PInfoPanel,
|
|
3008
|
-
PInputGroup,
|
|
3009
|
-
PLabel,
|
|
3010
|
-
PLayout,
|
|
3011
|
-
PLoader,
|
|
3012
|
-
PModal,
|
|
3013
|
-
PModalBody,
|
|
3014
|
-
PModalContainer,
|
|
3015
|
-
PModalFooter,
|
|
3016
|
-
PModalHeader,
|
|
3017
|
-
PNavbar,
|
|
3018
|
-
PNavigationItem,
|
|
3019
|
-
PPageSizeSelect,
|
|
3020
|
-
PPagination,
|
|
3021
|
-
PPaginationItem,
|
|
3022
|
-
PProfile,
|
|
3023
|
-
PSegmentContainer,
|
|
3024
|
-
PSegmentItem,
|
|
3025
|
-
PSelect,
|
|
3026
|
-
PSliderIndicator,
|
|
3027
|
-
PStatus,
|
|
3028
|
-
PStepper,
|
|
3029
|
-
PStepperItem,
|
|
3030
|
-
PStepperLine,
|
|
3031
|
-
PTabGroup,
|
|
3032
|
-
PTabItem,
|
|
3033
|
-
PTableContainer,
|
|
3034
|
-
PTableFooter,
|
|
3035
|
-
PTableHeader,
|
|
3036
|
-
PTableRow,
|
|
3037
|
-
PToast,
|
|
3038
|
-
PTooltip
|
|
3039
|
-
];
|
|
3040
|
-
|
|
3041
|
-
class StencilModule {
|
|
3042
|
-
}
|
|
3043
|
-
StencilModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: StencilModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3044
|
-
StencilModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.1", ngImport: i0, type: StencilModule, declarations: [PAccordion, PAvatar, PAvatarGroup, PBackdrop, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDrawer, PDrawerBody, PDrawerContainer, PDrawerHeader, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableContainer, PTableFooter, PTableHeader, PTableRow, PToast, PTooltip], exports: [PAccordion, PAvatar, PAvatarGroup, PBackdrop, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDrawer, PDrawerBody, PDrawerContainer, PDrawerHeader, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableContainer, PTableFooter, PTableHeader, PTableRow, PToast, PTooltip] });
|
|
3045
|
-
StencilModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: StencilModule });
|
|
3046
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: StencilModule, decorators: [{
|
|
3047
|
-
type: NgModule,
|
|
3048
|
-
args: [{
|
|
3049
|
-
declarations: [...DIRECTIVES],
|
|
3050
|
-
exports: [...DIRECTIVES],
|
|
3051
|
-
}]
|
|
3052
|
-
}] });
|
|
3053
|
-
|
|
3054
3161
|
class TableModule {
|
|
3055
3162
|
}
|
|
3056
|
-
TableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
3057
|
-
TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.
|
|
3058
|
-
TableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.
|
|
3059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3163
|
+
TableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3164
|
+
TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.2", ngImport: i0, type: TableModule, declarations: [Table, TableCell, TableColumn, TableFooterDirective, TableHeaderDirective, TableDirective, TableNgxDirective, TableFilterModalDirective], imports: [CommonModule, StencilModule], exports: [Table, TableCell, TableColumn, TableFooterDirective, TableHeaderDirective, TableDirective, TableNgxDirective, TableFilterModalDirective] });
|
|
3165
|
+
TableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableModule, imports: [CommonModule, StencilModule] });
|
|
3166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: TableModule, decorators: [{
|
|
3060
3167
|
type: NgModule,
|
|
3061
3168
|
args: [{
|
|
3062
3169
|
imports: [CommonModule, StencilModule],
|
|
@@ -3128,9 +3235,9 @@ class ToastService {
|
|
|
3128
3235
|
this.toasts$.next(this._toasts);
|
|
3129
3236
|
}
|
|
3130
3237
|
}
|
|
3131
|
-
ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
3132
|
-
ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.
|
|
3133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3238
|
+
ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3239
|
+
ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastService, providedIn: 'root' });
|
|
3240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastService, decorators: [{
|
|
3134
3241
|
type: Injectable,
|
|
3135
3242
|
args: [{
|
|
3136
3243
|
providedIn: 'root',
|
|
@@ -3163,9 +3270,9 @@ class ToastDirective {
|
|
|
3163
3270
|
this.dismiss.next(this.index);
|
|
3164
3271
|
}
|
|
3165
3272
|
}
|
|
3166
|
-
ToastDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
3167
|
-
ToastDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.
|
|
3168
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3273
|
+
ToastDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3274
|
+
ToastDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.2", type: ToastDirective, selector: "p-toast", inputs: { delay: "delay", index: "index", dismissOnAction: "dismissOnAction", actionFunc: "actionFunc", actionData: "actionData" }, outputs: { dismiss: "dismiss" }, host: { listeners: { "action": "onAction()" } }, ngImport: i0 });
|
|
3275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastDirective, decorators: [{
|
|
3169
3276
|
type: Directive,
|
|
3170
3277
|
args: [{
|
|
3171
3278
|
selector: 'p-toast',
|
|
@@ -3199,15 +3306,15 @@ let ToastContainer = class ToastContainer {
|
|
|
3199
3306
|
this._toastService.hide(index);
|
|
3200
3307
|
}
|
|
3201
3308
|
};
|
|
3202
|
-
ToastContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
3203
|
-
ToastContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.
|
|
3309
|
+
ToastContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastContainer, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3310
|
+
ToastContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.2", type: ToastContainer, selector: "p-toast-container", inputs: { placement: "placement" }, ngImport: i0, template: "<p-toast\n *ngFor=\"let toast of toasts$ | async; let index = index\"\n [variant]=\"toast.variant\"\n [header]=\"toast.header\"\n [content]=\"toast.content\"\n [index]=\"index\"\n [delay]=\"toast.options.delay ?? 5000\"\n [dismissOnAction]=\"toast.options.dismissOnAction ?? true\"\n [enableAction]=\"toast.options.enableAction\"\n [actionFunc]=\"toast.options.action\"\n [actionData]=\"toast.options.actionData\"\n [actionIcon]=\"toast.options.icon?.variant\"\n [actionIconFlip]=\"toast.options.icon?.flip\"\n [actionIconRotate]=\"toast.options.icon?.rotate\"\n (dismiss)=\"dismiss($event)\"\n [@pSlideInBottomOutTop]\n></p-toast>\n", dependencies: [{ kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: PToast, selector: "p-toast", inputs: ["actionIcon", "actionIconFlip", "actionIconRotate", "content", "enableAction", "header", "variant"] }, { kind: "directive", type: ToastDirective, selector: "p-toast", inputs: ["delay", "index", "dismissOnAction", "actionFunc", "actionData"], outputs: ["dismiss"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }], animations: [SLIDE_IN_TOP_OUT_BOTTOM], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3204
3311
|
ToastContainer = __decorate([
|
|
3205
3312
|
ProxyCmp({
|
|
3206
3313
|
defineCustomElementFn: undefined,
|
|
3207
3314
|
inputs: ['placement'],
|
|
3208
3315
|
})
|
|
3209
3316
|
], ToastContainer);
|
|
3210
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastContainer, decorators: [{
|
|
3211
3318
|
type: Component,
|
|
3212
3319
|
args: [{ selector: 'p-toast-container', changeDetection: ChangeDetectionStrategy.OnPush, inputs: ['placement'], animations: [SLIDE_IN_TOP_OUT_BOTTOM], template: "<p-toast\n *ngFor=\"let toast of toasts$ | async; let index = index\"\n [variant]=\"toast.variant\"\n [header]=\"toast.header\"\n [content]=\"toast.content\"\n [index]=\"index\"\n [delay]=\"toast.options.delay ?? 5000\"\n [dismissOnAction]=\"toast.options.dismissOnAction ?? true\"\n [enableAction]=\"toast.options.enableAction\"\n [actionFunc]=\"toast.options.action\"\n [actionData]=\"toast.options.actionData\"\n [actionIcon]=\"toast.options.icon?.variant\"\n [actionIconFlip]=\"toast.options.icon?.flip\"\n [actionIconRotate]=\"toast.options.icon?.rotate\"\n (dismiss)=\"dismiss($event)\"\n [@pSlideInBottomOutTop]\n></p-toast>\n" }]
|
|
3213
3320
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: ToastService }]; } });
|
|
@@ -3220,10 +3327,10 @@ const TOAST_SERVICES = [ToastService];
|
|
|
3220
3327
|
|
|
3221
3328
|
class ToastModule {
|
|
3222
3329
|
}
|
|
3223
|
-
ToastModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
3224
|
-
ToastModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.
|
|
3225
|
-
ToastModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.
|
|
3226
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3330
|
+
ToastModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3331
|
+
ToastModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.2", ngImport: i0, type: ToastModule, declarations: [ToastContainer, ToastDirective], imports: [CommonModule, StencilModule], exports: [ToastContainer, ToastDirective] });
|
|
3332
|
+
ToastModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastModule, imports: [CommonModule, StencilModule] });
|
|
3333
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: ToastModule, decorators: [{
|
|
3227
3334
|
type: NgModule,
|
|
3228
3335
|
args: [{
|
|
3229
3336
|
imports: [CommonModule, StencilModule],
|
|
@@ -3232,7 +3339,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImpor
|
|
|
3232
3339
|
}]
|
|
3233
3340
|
}] });
|
|
3234
3341
|
|
|
3235
|
-
const MODULES = [TableModule, ToastModule];
|
|
3342
|
+
const MODULES = [TableModule, ToastModule, OverlayModule];
|
|
3236
3343
|
|
|
3237
3344
|
class CustomCurrencyPipe {
|
|
3238
3345
|
constructor(_currencyPipe) {
|
|
@@ -3242,14 +3349,14 @@ class CustomCurrencyPipe {
|
|
|
3242
3349
|
return this._currencyPipe.transform(value, currencyCode, display, digitsInfo, locale);
|
|
3243
3350
|
}
|
|
3244
3351
|
}
|
|
3245
|
-
CustomCurrencyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
3246
|
-
CustomCurrencyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.
|
|
3247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3352
|
+
CustomCurrencyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: CustomCurrencyPipe, deps: [{ token: i1$1.CurrencyPipe }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
3353
|
+
CustomCurrencyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.2", ngImport: i0, type: CustomCurrencyPipe, name: "pcurrency" });
|
|
3354
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: CustomCurrencyPipe, decorators: [{
|
|
3248
3355
|
type: Pipe,
|
|
3249
3356
|
args: [{
|
|
3250
3357
|
name: 'pcurrency',
|
|
3251
3358
|
}]
|
|
3252
|
-
}], ctorParameters: function () { return [{ type: i1.CurrencyPipe }]; } });
|
|
3359
|
+
}], ctorParameters: function () { return [{ type: i1$1.CurrencyPipe }]; } });
|
|
3253
3360
|
|
|
3254
3361
|
class CustomDatePipe {
|
|
3255
3362
|
constructor(_datePipe) {
|
|
@@ -3259,14 +3366,14 @@ class CustomDatePipe {
|
|
|
3259
3366
|
return this._datePipe.transform(value, format);
|
|
3260
3367
|
}
|
|
3261
3368
|
}
|
|
3262
|
-
CustomDatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
3263
|
-
CustomDatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.
|
|
3264
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3369
|
+
CustomDatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: CustomDatePipe, deps: [{ token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
3370
|
+
CustomDatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.2", ngImport: i0, type: CustomDatePipe, name: "pdate" });
|
|
3371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: CustomDatePipe, decorators: [{
|
|
3265
3372
|
type: Pipe,
|
|
3266
3373
|
args: [{
|
|
3267
3374
|
name: 'pdate',
|
|
3268
3375
|
}]
|
|
3269
|
-
}], ctorParameters: function () { return [{ type: i1.DatePipe }]; } });
|
|
3376
|
+
}], ctorParameters: function () { return [{ type: i1$1.DatePipe }]; } });
|
|
3270
3377
|
|
|
3271
3378
|
class SafePipe {
|
|
3272
3379
|
constructor(sanitizer) {
|
|
@@ -3289,14 +3396,14 @@ class SafePipe {
|
|
|
3289
3396
|
}
|
|
3290
3397
|
}
|
|
3291
3398
|
}
|
|
3292
|
-
SafePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
3293
|
-
SafePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.
|
|
3294
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3399
|
+
SafePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: SafePipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
3400
|
+
SafePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.2", ngImport: i0, type: SafePipe, name: "psafe" });
|
|
3401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: SafePipe, decorators: [{
|
|
3295
3402
|
type: Pipe,
|
|
3296
3403
|
args: [{
|
|
3297
3404
|
name: 'psafe',
|
|
3298
3405
|
}]
|
|
3299
|
-
}], ctorParameters: function () { return [{ type: i1$
|
|
3406
|
+
}], ctorParameters: function () { return [{ type: i1$2.DomSanitizer }]; } });
|
|
3300
3407
|
|
|
3301
3408
|
const PIPES = [CustomCurrencyPipe, CustomDatePipe, SafePipe];
|
|
3302
3409
|
|
|
@@ -3305,14 +3412,14 @@ class PaperlessModule {
|
|
|
3305
3412
|
static forRoot() {
|
|
3306
3413
|
return {
|
|
3307
3414
|
ngModule: PaperlessModule,
|
|
3308
|
-
providers: [...TOAST_SERVICES],
|
|
3415
|
+
providers: [...TOAST_SERVICES, ...OVERLAY_SERVICES],
|
|
3309
3416
|
};
|
|
3310
3417
|
}
|
|
3311
3418
|
}
|
|
3312
|
-
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.
|
|
3313
|
-
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.
|
|
3314
|
-
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.
|
|
3315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.
|
|
3419
|
+
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3420
|
+
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.2", ngImport: i0, type: PaperlessModule, declarations: [PaginationDirective, PageSizeSelectDirective, SelectDirective, CustomCurrencyPipe, CustomDatePipe, SafePipe], imports: [CommonModule, StencilModule, TableModule, ToastModule, OverlayModule], exports: [StencilModule, TableModule, ToastModule, OverlayModule, PaginationDirective, PageSizeSelectDirective, SelectDirective, CustomCurrencyPipe, CustomDatePipe, SafePipe] });
|
|
3421
|
+
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PaperlessModule, providers: [...NGX_PIPES, ...PIPES], imports: [CommonModule, StencilModule, MODULES, StencilModule, TableModule, ToastModule, OverlayModule] });
|
|
3422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.2", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
3316
3423
|
type: NgModule,
|
|
3317
3424
|
args: [{
|
|
3318
3425
|
imports: [CommonModule, StencilModule, ...MODULES],
|
|
@@ -3330,5 +3437,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImpor
|
|
|
3330
3437
|
* Generated bundle index. Do not edit.
|
|
3331
3438
|
*/
|
|
3332
3439
|
|
|
3333
|
-
export { BaseTableComponent, BaseUploadComponent, BaseValueAccessor, CustomCurrencyPipe, CustomDatePipe, DIRECTIVES$1 as DIRECTIVES, FormBaseComponent, MODULES, PAccordion, PAvatar, PAvatarGroup, PBackdrop, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDrawer, PDrawerBody, PDrawerContainer, PDrawerHeader, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIPES, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableContainer, PTableFooter, PTableHeader, PTableRow, PToast, PTooltip, PageSizeSelectDirective, PaginationDirective, PaperlessModule, SafePipe, SelectDirective, StencilModule, TABLE_COMPONENTS, TABLE_DIRECTIVES, TOAST_COMPONENTS, TOAST_DIRECTIVES, TOAST_SERVICES, Table, TableCell, TableColumn, TableDirective, TableFilterModalDirective, TableFooterDirective, TableHeaderDirective, TableModule, TableNgxDirective, ToastContainer, ToastDirective, ToastModule, ToastService, ToastVariants, createFormFilters };
|
|
3440
|
+
export { BaseTableComponent, BaseUploadComponent, BaseValueAccessor, CustomCurrencyPipe, CustomDatePipe, DIRECTIVES$1 as DIRECTIVES, FormBaseComponent, MODULES, OVERLAY_SERVICES, OverlayModule, OverlayRef, OverlayService, PAccordion, PAvatar, PAvatarGroup, PBackdrop, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDrawer, PDrawerBody, PDrawerContainer, PDrawerHeader, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIPES, PIcon, PIllustration, PInfoPanel, PInputGroup, PLabel, PLayout, PLoader, PModal, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPageSizeSelect, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSelect, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTableContainer, PTableFooter, PTableHeader, PTableRow, PToast, PTooltip, PageSizeSelectDirective, PaginationDirective, PaperlessModule, SafePipe, SelectDirective, StencilModule, TABLE_COMPONENTS, TABLE_DIRECTIVES, TOAST_COMPONENTS, TOAST_DIRECTIVES, TOAST_SERVICES, Table, TableCell, TableColumn, TableDirective, TableFilterModalDirective, TableFooterDirective, TableHeaderDirective, TableModule, TableNgxDirective, ToastContainer, ToastDirective, ToastModule, ToastService, ToastVariants, createFormFilters };
|
|
3334
3441
|
//# sourceMappingURL=paperless-angular.mjs.map
|