@paperless/angular 0.1.0-alpha.8 → 0.1.0-alpha.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/esm2020/lib/base/index.mjs +2 -0
- package/esm2020/lib/base/value-accessor.mjs +42 -0
- package/esm2020/lib/directives/index.mjs +4 -0
- package/esm2020/lib/directives/pagination.directive.mjs +42 -0
- package/esm2020/lib/paperless.module.mjs +9 -7
- package/esm2020/lib/stencil/components.mjs +837 -25
- package/esm2020/lib/stencil/index.mjs +34 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/paperless-angular.mjs +925 -32
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +925 -32
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/{paperless-angular.d.ts → index.d.ts} +0 -0
- package/lib/base/index.d.ts +1 -0
- package/lib/base/value-accessor.d.ts +17 -0
- package/lib/directives/index.d.ts +3 -0
- package/lib/directives/pagination.directive.d.ts +10 -0
- package/lib/paperless.module.d.ts +2 -1
- package/lib/stencil/components.d.ts +315 -6
- package/lib/stencil/index.d.ts +1 -1
- package/package.json +6 -6
- package/public-api.d.ts +1 -0
|
@@ -1,8 +1,89 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
2
|
+
import { Directive, HostListener, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
3
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
4
|
import { __decorate } from 'tslib';
|
|
4
5
|
import { fromEvent } from 'rxjs';
|
|
5
6
|
|
|
7
|
+
class ValueAccessor {
|
|
8
|
+
constructor(el) {
|
|
9
|
+
this.el = el;
|
|
10
|
+
this.onChange = () => {
|
|
11
|
+
/**/
|
|
12
|
+
};
|
|
13
|
+
this.onTouched = () => {
|
|
14
|
+
/**/
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
writeValue(value) {
|
|
18
|
+
this.el.nativeElement.value = this.lastValue =
|
|
19
|
+
value == null ? '' : value;
|
|
20
|
+
}
|
|
21
|
+
handleChangeEvent(value) {
|
|
22
|
+
if (value !== this.lastValue) {
|
|
23
|
+
this.lastValue = value;
|
|
24
|
+
this.onChange(value);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
_handleBlurEvent() {
|
|
28
|
+
this.onTouched();
|
|
29
|
+
}
|
|
30
|
+
registerOnChange(fn) {
|
|
31
|
+
this.onChange = fn;
|
|
32
|
+
}
|
|
33
|
+
registerOnTouched(fn) {
|
|
34
|
+
this.onTouched = fn;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
38
|
+
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
40
|
+
type: Directive,
|
|
41
|
+
args: [{}]
|
|
42
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
43
|
+
type: HostListener,
|
|
44
|
+
args: ['focusout']
|
|
45
|
+
}] } });
|
|
46
|
+
|
|
47
|
+
class PaginationDirective extends ValueAccessor {
|
|
48
|
+
constructor(el) {
|
|
49
|
+
super(el);
|
|
50
|
+
}
|
|
51
|
+
writeValue(value) {
|
|
52
|
+
this.el.nativeElement.page = this.lastValue =
|
|
53
|
+
value == null ? '' : value;
|
|
54
|
+
}
|
|
55
|
+
registerOnChange(fn) {
|
|
56
|
+
super.registerOnChange((value) => fn(value === '' ? null : parseInt(value, 10)));
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
+
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: PaginationDirective, selector: "p-pagination", host: { listeners: { "pageChange": "handleChangeEvent($event.target.page)" } }, providers: [
|
|
61
|
+
{
|
|
62
|
+
provide: NG_VALUE_ACCESSOR,
|
|
63
|
+
useExisting: PaginationDirective,
|
|
64
|
+
multi: true,
|
|
65
|
+
},
|
|
66
|
+
], usesInheritance: true, ngImport: i0 });
|
|
67
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PaginationDirective, decorators: [{
|
|
68
|
+
type: Directive,
|
|
69
|
+
args: [{
|
|
70
|
+
/* tslint:disable-next-line:directive-selector */
|
|
71
|
+
selector: 'p-pagination',
|
|
72
|
+
host: {
|
|
73
|
+
'(pageChange)': 'handleChangeEvent($event.target.page)',
|
|
74
|
+
},
|
|
75
|
+
providers: [
|
|
76
|
+
{
|
|
77
|
+
provide: NG_VALUE_ACCESSOR,
|
|
78
|
+
useExisting: PaginationDirective,
|
|
79
|
+
multi: true,
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
}]
|
|
83
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
84
|
+
|
|
85
|
+
const CUSTOM_DIRECTIVES = [PaginationDirective];
|
|
86
|
+
|
|
6
87
|
/* eslint-disable */
|
|
7
88
|
const proxyInputs = (Cmp, inputs) => {
|
|
8
89
|
const Prototype = Cmp.prototype;
|
|
@@ -54,6 +135,79 @@ function ProxyCmp(opts) {
|
|
|
54
135
|
return decorator;
|
|
55
136
|
}
|
|
56
137
|
|
|
138
|
+
let PAccordion = class PAccordion {
|
|
139
|
+
constructor(c, r, z) {
|
|
140
|
+
this.z = z;
|
|
141
|
+
c.detach();
|
|
142
|
+
this.el = r.nativeElement;
|
|
143
|
+
proxyOutputs(this, this.el, ['isOpen']);
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
PAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
147
|
+
PAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
148
|
+
PAccordion = __decorate([
|
|
149
|
+
ProxyCmp({
|
|
150
|
+
defineCustomElementFn: undefined,
|
|
151
|
+
inputs: ['closeable', 'header', 'open', 'openable']
|
|
152
|
+
})
|
|
153
|
+
], PAccordion);
|
|
154
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PAccordion, decorators: [{
|
|
155
|
+
type: Component,
|
|
156
|
+
args: [{
|
|
157
|
+
selector: 'p-accordion',
|
|
158
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
159
|
+
template: '<ng-content></ng-content>',
|
|
160
|
+
inputs: ['closeable', 'header', 'open', 'openable']
|
|
161
|
+
}]
|
|
162
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
163
|
+
let PAvatar = class PAvatar {
|
|
164
|
+
constructor(c, r, z) {
|
|
165
|
+
this.z = z;
|
|
166
|
+
c.detach();
|
|
167
|
+
this.el = r.nativeElement;
|
|
168
|
+
}
|
|
169
|
+
};
|
|
170
|
+
PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
171
|
+
PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
172
|
+
PAvatar = __decorate([
|
|
173
|
+
ProxyCmp({
|
|
174
|
+
defineCustomElementFn: undefined,
|
|
175
|
+
inputs: ['defaultImage', 'size', 'src', 'variant']
|
|
176
|
+
})
|
|
177
|
+
], PAvatar);
|
|
178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PAvatar, decorators: [{
|
|
179
|
+
type: Component,
|
|
180
|
+
args: [{
|
|
181
|
+
selector: 'p-avatar',
|
|
182
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
183
|
+
template: '<ng-content></ng-content>',
|
|
184
|
+
inputs: ['defaultImage', 'size', 'src', 'variant']
|
|
185
|
+
}]
|
|
186
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
187
|
+
let PAvatarGroup = class PAvatarGroup {
|
|
188
|
+
constructor(c, r, z) {
|
|
189
|
+
this.z = z;
|
|
190
|
+
c.detach();
|
|
191
|
+
this.el = r.nativeElement;
|
|
192
|
+
}
|
|
193
|
+
};
|
|
194
|
+
PAvatarGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PAvatarGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
195
|
+
PAvatarGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PAvatarGroup, selector: "p-avatar-group", inputs: { extra: "extra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
196
|
+
PAvatarGroup = __decorate([
|
|
197
|
+
ProxyCmp({
|
|
198
|
+
defineCustomElementFn: undefined,
|
|
199
|
+
inputs: ['extra']
|
|
200
|
+
})
|
|
201
|
+
], PAvatarGroup);
|
|
202
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PAvatarGroup, decorators: [{
|
|
203
|
+
type: Component,
|
|
204
|
+
args: [{
|
|
205
|
+
selector: 'p-avatar-group',
|
|
206
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
207
|
+
template: '<ng-content></ng-content>',
|
|
208
|
+
inputs: ['extra']
|
|
209
|
+
}]
|
|
210
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
57
211
|
let PButton = class PButton {
|
|
58
212
|
constructor(c, r, z) {
|
|
59
213
|
this.z = z;
|
|
@@ -62,21 +216,208 @@ let PButton = class PButton {
|
|
|
62
216
|
proxyOutputs(this, this.el, ['onClick']);
|
|
63
217
|
}
|
|
64
218
|
};
|
|
65
|
-
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
66
|
-
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
219
|
+
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
220
|
+
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PButton, selector: "p-button", inputs: { chevron: "chevron", disabled: "disabled", href: "href", icon: "icon", iconFlip: "iconFlip", iconOnly: "iconOnly", iconPosition: "iconPosition", iconRotate: "iconRotate", inheritText: "inheritText", loading: "loading", size: "size", target: "target", variant: "variant", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
67
221
|
PButton = __decorate([
|
|
68
222
|
ProxyCmp({
|
|
69
223
|
defineCustomElementFn: undefined,
|
|
70
|
-
inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
|
|
224
|
+
inputs: ['chevron', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant', 'width']
|
|
71
225
|
})
|
|
72
226
|
], PButton);
|
|
73
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PButton, decorators: [{
|
|
74
228
|
type: Component,
|
|
75
229
|
args: [{
|
|
76
230
|
selector: 'p-button',
|
|
77
231
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
78
232
|
template: '<ng-content></ng-content>',
|
|
79
|
-
inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
|
|
233
|
+
inputs: ['chevron', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant', 'width']
|
|
234
|
+
}]
|
|
235
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
236
|
+
let PCardBody = class PCardBody {
|
|
237
|
+
constructor(c, r, z) {
|
|
238
|
+
this.z = z;
|
|
239
|
+
c.detach();
|
|
240
|
+
this.el = r.nativeElement;
|
|
241
|
+
}
|
|
242
|
+
};
|
|
243
|
+
PCardBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCardBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
244
|
+
PCardBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PCardBody, selector: "p-card-body", inputs: { inheritText: "inheritText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
245
|
+
PCardBody = __decorate([
|
|
246
|
+
ProxyCmp({
|
|
247
|
+
defineCustomElementFn: undefined,
|
|
248
|
+
inputs: ['inheritText']
|
|
249
|
+
})
|
|
250
|
+
], PCardBody);
|
|
251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCardBody, decorators: [{
|
|
252
|
+
type: Component,
|
|
253
|
+
args: [{
|
|
254
|
+
selector: 'p-card-body',
|
|
255
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
256
|
+
template: '<ng-content></ng-content>',
|
|
257
|
+
inputs: ['inheritText']
|
|
258
|
+
}]
|
|
259
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
260
|
+
let PCardContainer = class PCardContainer {
|
|
261
|
+
constructor(c, r, z) {
|
|
262
|
+
this.z = z;
|
|
263
|
+
c.detach();
|
|
264
|
+
this.el = r.nativeElement;
|
|
265
|
+
}
|
|
266
|
+
};
|
|
267
|
+
PCardContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCardContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
268
|
+
PCardContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PCardContainer, selector: "p-card-container", inputs: { hoverable: "hoverable", shadow: "shadow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
269
|
+
PCardContainer = __decorate([
|
|
270
|
+
ProxyCmp({
|
|
271
|
+
defineCustomElementFn: undefined,
|
|
272
|
+
inputs: ['hoverable', 'shadow']
|
|
273
|
+
})
|
|
274
|
+
], PCardContainer);
|
|
275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCardContainer, decorators: [{
|
|
276
|
+
type: Component,
|
|
277
|
+
args: [{
|
|
278
|
+
selector: 'p-card-container',
|
|
279
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
280
|
+
template: '<ng-content></ng-content>',
|
|
281
|
+
inputs: ['hoverable', 'shadow']
|
|
282
|
+
}]
|
|
283
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
284
|
+
let PCardHeader = class PCardHeader {
|
|
285
|
+
constructor(c, r, z) {
|
|
286
|
+
this.z = z;
|
|
287
|
+
c.detach();
|
|
288
|
+
this.el = r.nativeElement;
|
|
289
|
+
}
|
|
290
|
+
};
|
|
291
|
+
PCardHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
292
|
+
PCardHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PCardHeader, selector: "p-card-header", inputs: { arrow: "arrow", header: "header" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
293
|
+
PCardHeader = __decorate([
|
|
294
|
+
ProxyCmp({
|
|
295
|
+
defineCustomElementFn: undefined,
|
|
296
|
+
inputs: ['arrow', 'header']
|
|
297
|
+
})
|
|
298
|
+
], PCardHeader);
|
|
299
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCardHeader, decorators: [{
|
|
300
|
+
type: Component,
|
|
301
|
+
args: [{
|
|
302
|
+
selector: 'p-card-header',
|
|
303
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
304
|
+
template: '<ng-content></ng-content>',
|
|
305
|
+
inputs: ['arrow', 'header']
|
|
306
|
+
}]
|
|
307
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
308
|
+
let PCounter = class PCounter {
|
|
309
|
+
constructor(c, r, z) {
|
|
310
|
+
this.z = z;
|
|
311
|
+
c.detach();
|
|
312
|
+
this.el = r.nativeElement;
|
|
313
|
+
}
|
|
314
|
+
};
|
|
315
|
+
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
316
|
+
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PCounter, selector: "p-counter", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
317
|
+
PCounter = __decorate([
|
|
318
|
+
ProxyCmp({
|
|
319
|
+
defineCustomElementFn: undefined
|
|
320
|
+
})
|
|
321
|
+
], PCounter);
|
|
322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PCounter, decorators: [{
|
|
323
|
+
type: Component,
|
|
324
|
+
args: [{
|
|
325
|
+
selector: 'p-counter',
|
|
326
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
327
|
+
template: '<ng-content></ng-content>'
|
|
328
|
+
}]
|
|
329
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
330
|
+
let PDivider = class PDivider {
|
|
331
|
+
constructor(c, r, z) {
|
|
332
|
+
this.z = z;
|
|
333
|
+
c.detach();
|
|
334
|
+
this.el = r.nativeElement;
|
|
335
|
+
}
|
|
336
|
+
};
|
|
337
|
+
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
338
|
+
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PDivider, selector: "p-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
339
|
+
PDivider = __decorate([
|
|
340
|
+
ProxyCmp({
|
|
341
|
+
defineCustomElementFn: undefined
|
|
342
|
+
})
|
|
343
|
+
], PDivider);
|
|
344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDivider, decorators: [{
|
|
345
|
+
type: Component,
|
|
346
|
+
args: [{
|
|
347
|
+
selector: 'p-divider',
|
|
348
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
349
|
+
template: '<ng-content></ng-content>'
|
|
350
|
+
}]
|
|
351
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
352
|
+
let PDropdown = class PDropdown {
|
|
353
|
+
constructor(c, r, z) {
|
|
354
|
+
this.z = z;
|
|
355
|
+
c.detach();
|
|
356
|
+
this.el = r.nativeElement;
|
|
357
|
+
proxyOutputs(this, this.el, ['isOpen']);
|
|
358
|
+
}
|
|
359
|
+
};
|
|
360
|
+
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
361
|
+
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PDropdown, selector: "p-dropdown", inputs: { disableTriggerClick: "disableTriggerClick", insideClick: "insideClick", placement: "placement", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
362
|
+
PDropdown = __decorate([
|
|
363
|
+
ProxyCmp({
|
|
364
|
+
defineCustomElementFn: undefined,
|
|
365
|
+
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show']
|
|
366
|
+
})
|
|
367
|
+
], PDropdown);
|
|
368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdown, decorators: [{
|
|
369
|
+
type: Component,
|
|
370
|
+
args: [{
|
|
371
|
+
selector: 'p-dropdown',
|
|
372
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
373
|
+
template: '<ng-content></ng-content>',
|
|
374
|
+
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show']
|
|
375
|
+
}]
|
|
376
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
377
|
+
let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
378
|
+
constructor(c, r, z) {
|
|
379
|
+
this.z = z;
|
|
380
|
+
c.detach();
|
|
381
|
+
this.el = r.nativeElement;
|
|
382
|
+
}
|
|
383
|
+
};
|
|
384
|
+
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdownMenuContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
385
|
+
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
386
|
+
PDropdownMenuContainer = __decorate([
|
|
387
|
+
ProxyCmp({
|
|
388
|
+
defineCustomElementFn: undefined
|
|
389
|
+
})
|
|
390
|
+
], PDropdownMenuContainer);
|
|
391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
|
|
392
|
+
type: Component,
|
|
393
|
+
args: [{
|
|
394
|
+
selector: 'p-dropdown-menu-container',
|
|
395
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
396
|
+
template: '<ng-content></ng-content>'
|
|
397
|
+
}]
|
|
398
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
399
|
+
let PDropdownMenuItem = class PDropdownMenuItem {
|
|
400
|
+
constructor(c, r, z) {
|
|
401
|
+
this.z = z;
|
|
402
|
+
c.detach();
|
|
403
|
+
this.el = r.nativeElement;
|
|
404
|
+
}
|
|
405
|
+
};
|
|
406
|
+
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdownMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
407
|
+
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PDropdownMenuItem, selector: "p-dropdown-menu-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
408
|
+
PDropdownMenuItem = __decorate([
|
|
409
|
+
ProxyCmp({
|
|
410
|
+
defineCustomElementFn: undefined,
|
|
411
|
+
inputs: ['active']
|
|
412
|
+
})
|
|
413
|
+
], PDropdownMenuItem);
|
|
414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PDropdownMenuItem, decorators: [{
|
|
415
|
+
type: Component,
|
|
416
|
+
args: [{
|
|
417
|
+
selector: 'p-dropdown-menu-item',
|
|
418
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
419
|
+
template: '<ng-content></ng-content>',
|
|
420
|
+
inputs: ['active']
|
|
80
421
|
}]
|
|
81
422
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
82
423
|
let PHelper = class PHelper {
|
|
@@ -86,19 +427,21 @@ let PHelper = class PHelper {
|
|
|
86
427
|
this.el = r.nativeElement;
|
|
87
428
|
}
|
|
88
429
|
};
|
|
89
|
-
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
90
|
-
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
430
|
+
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PHelper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
431
|
+
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PHelper, selector: "p-helper", inputs: { placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
91
432
|
PHelper = __decorate([
|
|
92
433
|
ProxyCmp({
|
|
93
|
-
defineCustomElementFn: undefined
|
|
434
|
+
defineCustomElementFn: undefined,
|
|
435
|
+
inputs: ['placement']
|
|
94
436
|
})
|
|
95
437
|
], PHelper);
|
|
96
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
438
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PHelper, decorators: [{
|
|
97
439
|
type: Component,
|
|
98
440
|
args: [{
|
|
99
441
|
selector: 'p-helper',
|
|
100
442
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
101
|
-
template: '<ng-content></ng-content>'
|
|
443
|
+
template: '<ng-content></ng-content>',
|
|
444
|
+
inputs: ['placement']
|
|
102
445
|
}]
|
|
103
446
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
104
447
|
let PIcon = class PIcon {
|
|
@@ -108,15 +451,15 @@ let PIcon = class PIcon {
|
|
|
108
451
|
this.el = r.nativeElement;
|
|
109
452
|
}
|
|
110
453
|
};
|
|
111
|
-
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
112
|
-
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
454
|
+
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
455
|
+
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
113
456
|
PIcon = __decorate([
|
|
114
457
|
ProxyCmp({
|
|
115
458
|
defineCustomElementFn: undefined,
|
|
116
459
|
inputs: ['flip', 'rotate', 'size', 'variant']
|
|
117
460
|
})
|
|
118
461
|
], PIcon);
|
|
119
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
462
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PIcon, decorators: [{
|
|
120
463
|
type: Component,
|
|
121
464
|
args: [{
|
|
122
465
|
selector: 'p-icon',
|
|
@@ -132,15 +475,15 @@ let PIllustration = class PIllustration {
|
|
|
132
475
|
this.el = r.nativeElement;
|
|
133
476
|
}
|
|
134
477
|
};
|
|
135
|
-
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
136
|
-
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
478
|
+
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PIllustration, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
479
|
+
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PIllustration, selector: "p-illustration", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
137
480
|
PIllustration = __decorate([
|
|
138
481
|
ProxyCmp({
|
|
139
482
|
defineCustomElementFn: undefined,
|
|
140
483
|
inputs: ['variant']
|
|
141
484
|
})
|
|
142
485
|
], PIllustration);
|
|
143
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PIllustration, decorators: [{
|
|
144
487
|
type: Component,
|
|
145
488
|
args: [{
|
|
146
489
|
selector: 'p-illustration',
|
|
@@ -149,6 +492,78 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
149
492
|
inputs: ['variant']
|
|
150
493
|
}]
|
|
151
494
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
495
|
+
let PInfoPanel = class PInfoPanel {
|
|
496
|
+
constructor(c, r, z) {
|
|
497
|
+
this.z = z;
|
|
498
|
+
c.detach();
|
|
499
|
+
this.el = r.nativeElement;
|
|
500
|
+
}
|
|
501
|
+
};
|
|
502
|
+
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PInfoPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
503
|
+
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
504
|
+
PInfoPanel = __decorate([
|
|
505
|
+
ProxyCmp({
|
|
506
|
+
defineCustomElementFn: undefined,
|
|
507
|
+
inputs: ['closeable', 'content', 'header', 'variant']
|
|
508
|
+
})
|
|
509
|
+
], PInfoPanel);
|
|
510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PInfoPanel, decorators: [{
|
|
511
|
+
type: Component,
|
|
512
|
+
args: [{
|
|
513
|
+
selector: 'p-info-panel',
|
|
514
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
515
|
+
template: '<ng-content></ng-content>',
|
|
516
|
+
inputs: ['closeable', 'content', 'header', 'variant']
|
|
517
|
+
}]
|
|
518
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
519
|
+
let PInputGroup = class PInputGroup {
|
|
520
|
+
constructor(c, r, z) {
|
|
521
|
+
this.z = z;
|
|
522
|
+
c.detach();
|
|
523
|
+
this.el = r.nativeElement;
|
|
524
|
+
}
|
|
525
|
+
};
|
|
526
|
+
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
527
|
+
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PInputGroup, selector: "p-input-group", inputs: { disabled: "disabled", error: "error", focused: "focused", helper: "helper", icon: "icon", iconFlip: "iconFlip", iconRotate: "iconRotate", label: "label", prefix: "prefix", suffix: "suffix" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
528
|
+
PInputGroup = __decorate([
|
|
529
|
+
ProxyCmp({
|
|
530
|
+
defineCustomElementFn: undefined,
|
|
531
|
+
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'suffix']
|
|
532
|
+
})
|
|
533
|
+
], PInputGroup);
|
|
534
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PInputGroup, decorators: [{
|
|
535
|
+
type: Component,
|
|
536
|
+
args: [{
|
|
537
|
+
selector: 'p-input-group',
|
|
538
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
539
|
+
template: '<ng-content></ng-content>',
|
|
540
|
+
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'suffix']
|
|
541
|
+
}]
|
|
542
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
543
|
+
let PLayout = class PLayout {
|
|
544
|
+
constructor(c, r, z) {
|
|
545
|
+
this.z = z;
|
|
546
|
+
c.detach();
|
|
547
|
+
this.el = r.nativeElement;
|
|
548
|
+
}
|
|
549
|
+
};
|
|
550
|
+
PLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
551
|
+
PLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PLayout, selector: "p-layout", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
552
|
+
PLayout = __decorate([
|
|
553
|
+
ProxyCmp({
|
|
554
|
+
defineCustomElementFn: undefined,
|
|
555
|
+
inputs: ['variant']
|
|
556
|
+
})
|
|
557
|
+
], PLayout);
|
|
558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PLayout, decorators: [{
|
|
559
|
+
type: Component,
|
|
560
|
+
args: [{
|
|
561
|
+
selector: 'p-layout',
|
|
562
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
563
|
+
template: '<ng-content></ng-content>',
|
|
564
|
+
inputs: ['variant']
|
|
565
|
+
}]
|
|
566
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
152
567
|
let PLoader = class PLoader {
|
|
153
568
|
constructor(c, r, z) {
|
|
154
569
|
this.z = z;
|
|
@@ -156,15 +571,15 @@ let PLoader = class PLoader {
|
|
|
156
571
|
this.el = r.nativeElement;
|
|
157
572
|
}
|
|
158
573
|
};
|
|
159
|
-
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
160
|
-
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
574
|
+
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
575
|
+
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
161
576
|
PLoader = __decorate([
|
|
162
577
|
ProxyCmp({
|
|
163
578
|
defineCustomElementFn: undefined,
|
|
164
579
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
165
580
|
})
|
|
166
581
|
], PLoader);
|
|
167
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PLoader, decorators: [{
|
|
168
583
|
type: Component,
|
|
169
584
|
args: [{
|
|
170
585
|
selector: 'p-loader',
|
|
@@ -173,6 +588,451 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
173
588
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
174
589
|
}]
|
|
175
590
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
591
|
+
let PModal = class PModal {
|
|
592
|
+
constructor(c, r, z) {
|
|
593
|
+
this.z = z;
|
|
594
|
+
c.detach();
|
|
595
|
+
this.el = r.nativeElement;
|
|
596
|
+
}
|
|
597
|
+
};
|
|
598
|
+
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
599
|
+
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModal, selector: "p-modal", inputs: { header: "header", show: "show", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
600
|
+
PModal = __decorate([
|
|
601
|
+
ProxyCmp({
|
|
602
|
+
defineCustomElementFn: undefined,
|
|
603
|
+
inputs: ['header', 'show', 'size', 'variant']
|
|
604
|
+
})
|
|
605
|
+
], PModal);
|
|
606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModal, decorators: [{
|
|
607
|
+
type: Component,
|
|
608
|
+
args: [{
|
|
609
|
+
selector: 'p-modal',
|
|
610
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
611
|
+
template: '<ng-content></ng-content>',
|
|
612
|
+
inputs: ['header', 'show', 'size', 'variant']
|
|
613
|
+
}]
|
|
614
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
615
|
+
let PModalBackdrop = class PModalBackdrop {
|
|
616
|
+
constructor(c, r, z) {
|
|
617
|
+
this.z = z;
|
|
618
|
+
c.detach();
|
|
619
|
+
this.el = r.nativeElement;
|
|
620
|
+
}
|
|
621
|
+
};
|
|
622
|
+
PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
623
|
+
PModalBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalBackdrop, selector: "p-modal-backdrop", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
624
|
+
PModalBackdrop = __decorate([
|
|
625
|
+
ProxyCmp({
|
|
626
|
+
defineCustomElementFn: undefined
|
|
627
|
+
})
|
|
628
|
+
], PModalBackdrop);
|
|
629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalBackdrop, decorators: [{
|
|
630
|
+
type: Component,
|
|
631
|
+
args: [{
|
|
632
|
+
selector: 'p-modal-backdrop',
|
|
633
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
634
|
+
template: '<ng-content></ng-content>'
|
|
635
|
+
}]
|
|
636
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
637
|
+
let PModalBody = class PModalBody {
|
|
638
|
+
constructor(c, r, z) {
|
|
639
|
+
this.z = z;
|
|
640
|
+
c.detach();
|
|
641
|
+
this.el = r.nativeElement;
|
|
642
|
+
}
|
|
643
|
+
};
|
|
644
|
+
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
645
|
+
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalBody, selector: "p-modal-body", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
646
|
+
PModalBody = __decorate([
|
|
647
|
+
ProxyCmp({
|
|
648
|
+
defineCustomElementFn: undefined,
|
|
649
|
+
inputs: ['variant']
|
|
650
|
+
})
|
|
651
|
+
], PModalBody);
|
|
652
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalBody, decorators: [{
|
|
653
|
+
type: Component,
|
|
654
|
+
args: [{
|
|
655
|
+
selector: 'p-modal-body',
|
|
656
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
657
|
+
template: '<ng-content></ng-content>',
|
|
658
|
+
inputs: ['variant']
|
|
659
|
+
}]
|
|
660
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
661
|
+
let PModalContainer = class PModalContainer {
|
|
662
|
+
constructor(c, r, z) {
|
|
663
|
+
this.z = z;
|
|
664
|
+
c.detach();
|
|
665
|
+
this.el = r.nativeElement;
|
|
666
|
+
}
|
|
667
|
+
};
|
|
668
|
+
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
669
|
+
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalContainer, selector: "p-modal-container", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
670
|
+
PModalContainer = __decorate([
|
|
671
|
+
ProxyCmp({
|
|
672
|
+
defineCustomElementFn: undefined,
|
|
673
|
+
inputs: ['size']
|
|
674
|
+
})
|
|
675
|
+
], PModalContainer);
|
|
676
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalContainer, decorators: [{
|
|
677
|
+
type: Component,
|
|
678
|
+
args: [{
|
|
679
|
+
selector: 'p-modal-container',
|
|
680
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
681
|
+
template: '<ng-content></ng-content>',
|
|
682
|
+
inputs: ['size']
|
|
683
|
+
}]
|
|
684
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
685
|
+
let PModalFooter = class PModalFooter {
|
|
686
|
+
constructor(c, r, z) {
|
|
687
|
+
this.z = z;
|
|
688
|
+
c.detach();
|
|
689
|
+
this.el = r.nativeElement;
|
|
690
|
+
}
|
|
691
|
+
};
|
|
692
|
+
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
693
|
+
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalFooter, selector: "p-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
694
|
+
PModalFooter = __decorate([
|
|
695
|
+
ProxyCmp({
|
|
696
|
+
defineCustomElementFn: undefined
|
|
697
|
+
})
|
|
698
|
+
], PModalFooter);
|
|
699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalFooter, decorators: [{
|
|
700
|
+
type: Component,
|
|
701
|
+
args: [{
|
|
702
|
+
selector: 'p-modal-footer',
|
|
703
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
704
|
+
template: '<ng-content></ng-content>'
|
|
705
|
+
}]
|
|
706
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
707
|
+
let PModalHeader = class PModalHeader {
|
|
708
|
+
constructor(c, r, z) {
|
|
709
|
+
this.z = z;
|
|
710
|
+
c.detach();
|
|
711
|
+
this.el = r.nativeElement;
|
|
712
|
+
}
|
|
713
|
+
};
|
|
714
|
+
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
715
|
+
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PModalHeader, selector: "p-modal-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
716
|
+
PModalHeader = __decorate([
|
|
717
|
+
ProxyCmp({
|
|
718
|
+
defineCustomElementFn: undefined
|
|
719
|
+
})
|
|
720
|
+
], PModalHeader);
|
|
721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PModalHeader, decorators: [{
|
|
722
|
+
type: Component,
|
|
723
|
+
args: [{
|
|
724
|
+
selector: 'p-modal-header',
|
|
725
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
726
|
+
template: '<ng-content></ng-content>'
|
|
727
|
+
}]
|
|
728
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
729
|
+
let PNavigationItem = class PNavigationItem {
|
|
730
|
+
constructor(c, r, z) {
|
|
731
|
+
this.z = z;
|
|
732
|
+
c.detach();
|
|
733
|
+
this.el = r.nativeElement;
|
|
734
|
+
}
|
|
735
|
+
};
|
|
736
|
+
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
737
|
+
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
738
|
+
PNavigationItem = __decorate([
|
|
739
|
+
ProxyCmp({
|
|
740
|
+
defineCustomElementFn: undefined,
|
|
741
|
+
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
742
|
+
})
|
|
743
|
+
], PNavigationItem);
|
|
744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PNavigationItem, decorators: [{
|
|
745
|
+
type: Component,
|
|
746
|
+
args: [{
|
|
747
|
+
selector: 'p-navigation-item',
|
|
748
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
749
|
+
template: '<ng-content></ng-content>',
|
|
750
|
+
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
751
|
+
}]
|
|
752
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
753
|
+
let PPagination = class PPagination {
|
|
754
|
+
constructor(c, r, z) {
|
|
755
|
+
this.z = z;
|
|
756
|
+
c.detach();
|
|
757
|
+
this.el = r.nativeElement;
|
|
758
|
+
proxyOutputs(this, this.el, ['pageChange']);
|
|
759
|
+
}
|
|
760
|
+
};
|
|
761
|
+
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
762
|
+
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PPagination, selector: "p-pagination", inputs: { page: "page", pageSize: "pageSize", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
763
|
+
PPagination = __decorate([
|
|
764
|
+
ProxyCmp({
|
|
765
|
+
defineCustomElementFn: undefined,
|
|
766
|
+
inputs: ['page', 'pageSize', 'total']
|
|
767
|
+
})
|
|
768
|
+
], PPagination);
|
|
769
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PPagination, decorators: [{
|
|
770
|
+
type: Component,
|
|
771
|
+
args: [{
|
|
772
|
+
selector: 'p-pagination',
|
|
773
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
774
|
+
template: '<ng-content></ng-content>',
|
|
775
|
+
inputs: ['page', 'pageSize', 'total']
|
|
776
|
+
}]
|
|
777
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
778
|
+
let PPaginationItem = class PPaginationItem {
|
|
779
|
+
constructor(c, r, z) {
|
|
780
|
+
this.z = z;
|
|
781
|
+
c.detach();
|
|
782
|
+
this.el = r.nativeElement;
|
|
783
|
+
}
|
|
784
|
+
};
|
|
785
|
+
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PPaginationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
786
|
+
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PPaginationItem, selector: "p-pagination-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
787
|
+
PPaginationItem = __decorate([
|
|
788
|
+
ProxyCmp({
|
|
789
|
+
defineCustomElementFn: undefined,
|
|
790
|
+
inputs: ['active']
|
|
791
|
+
})
|
|
792
|
+
], PPaginationItem);
|
|
793
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PPaginationItem, decorators: [{
|
|
794
|
+
type: Component,
|
|
795
|
+
args: [{
|
|
796
|
+
selector: 'p-pagination-item',
|
|
797
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
798
|
+
template: '<ng-content></ng-content>',
|
|
799
|
+
inputs: ['active']
|
|
800
|
+
}]
|
|
801
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
802
|
+
let PProfile = class PProfile {
|
|
803
|
+
constructor(c, r, z) {
|
|
804
|
+
this.z = z;
|
|
805
|
+
c.detach();
|
|
806
|
+
this.el = r.nativeElement;
|
|
807
|
+
}
|
|
808
|
+
};
|
|
809
|
+
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PProfile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
810
|
+
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PProfile, selector: "p-profile", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
811
|
+
PProfile = __decorate([
|
|
812
|
+
ProxyCmp({
|
|
813
|
+
defineCustomElementFn: undefined
|
|
814
|
+
})
|
|
815
|
+
], PProfile);
|
|
816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PProfile, decorators: [{
|
|
817
|
+
type: Component,
|
|
818
|
+
args: [{
|
|
819
|
+
selector: 'p-profile',
|
|
820
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
821
|
+
template: '<ng-content></ng-content>'
|
|
822
|
+
}]
|
|
823
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
824
|
+
let PSegmentContainer = class PSegmentContainer {
|
|
825
|
+
constructor(c, r, z) {
|
|
826
|
+
this.z = z;
|
|
827
|
+
c.detach();
|
|
828
|
+
this.el = r.nativeElement;
|
|
829
|
+
}
|
|
830
|
+
};
|
|
831
|
+
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PSegmentContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
832
|
+
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PSegmentContainer, selector: "p-segment-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
833
|
+
PSegmentContainer = __decorate([
|
|
834
|
+
ProxyCmp({
|
|
835
|
+
defineCustomElementFn: undefined
|
|
836
|
+
})
|
|
837
|
+
], PSegmentContainer);
|
|
838
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PSegmentContainer, decorators: [{
|
|
839
|
+
type: Component,
|
|
840
|
+
args: [{
|
|
841
|
+
selector: 'p-segment-container',
|
|
842
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
843
|
+
template: '<ng-content></ng-content>'
|
|
844
|
+
}]
|
|
845
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
846
|
+
let PSegmentItem = class PSegmentItem {
|
|
847
|
+
constructor(c, r, z) {
|
|
848
|
+
this.z = z;
|
|
849
|
+
c.detach();
|
|
850
|
+
this.el = r.nativeElement;
|
|
851
|
+
}
|
|
852
|
+
};
|
|
853
|
+
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PSegmentItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
854
|
+
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
855
|
+
PSegmentItem = __decorate([
|
|
856
|
+
ProxyCmp({
|
|
857
|
+
defineCustomElementFn: undefined,
|
|
858
|
+
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
859
|
+
})
|
|
860
|
+
], PSegmentItem);
|
|
861
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PSegmentItem, decorators: [{
|
|
862
|
+
type: Component,
|
|
863
|
+
args: [{
|
|
864
|
+
selector: 'p-segment-item',
|
|
865
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
866
|
+
template: '<ng-content></ng-content>',
|
|
867
|
+
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
868
|
+
}]
|
|
869
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
870
|
+
let PStatus = class PStatus {
|
|
871
|
+
constructor(c, r, z) {
|
|
872
|
+
this.z = z;
|
|
873
|
+
c.detach();
|
|
874
|
+
this.el = r.nativeElement;
|
|
875
|
+
}
|
|
876
|
+
};
|
|
877
|
+
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
878
|
+
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
879
|
+
PStatus = __decorate([
|
|
880
|
+
ProxyCmp({
|
|
881
|
+
defineCustomElementFn: undefined,
|
|
882
|
+
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
883
|
+
})
|
|
884
|
+
], PStatus);
|
|
885
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStatus, decorators: [{
|
|
886
|
+
type: Component,
|
|
887
|
+
args: [{
|
|
888
|
+
selector: 'p-status',
|
|
889
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
890
|
+
template: '<ng-content></ng-content>',
|
|
891
|
+
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
892
|
+
}]
|
|
893
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
894
|
+
let PStepper = class PStepper {
|
|
895
|
+
constructor(c, r, z) {
|
|
896
|
+
this.z = z;
|
|
897
|
+
c.detach();
|
|
898
|
+
this.el = r.nativeElement;
|
|
899
|
+
}
|
|
900
|
+
};
|
|
901
|
+
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
902
|
+
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PStepper, selector: "p-stepper", inputs: { activeStep: "activeStep", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
903
|
+
PStepper = __decorate([
|
|
904
|
+
ProxyCmp({
|
|
905
|
+
defineCustomElementFn: undefined,
|
|
906
|
+
inputs: ['activeStep', 'direction']
|
|
907
|
+
})
|
|
908
|
+
], PStepper);
|
|
909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepper, decorators: [{
|
|
910
|
+
type: Component,
|
|
911
|
+
args: [{
|
|
912
|
+
selector: 'p-stepper',
|
|
913
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
914
|
+
template: '<ng-content></ng-content>',
|
|
915
|
+
inputs: ['activeStep', 'direction']
|
|
916
|
+
}]
|
|
917
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
918
|
+
let PStepperItem = class PStepperItem {
|
|
919
|
+
constructor(c, r, z) {
|
|
920
|
+
this.z = z;
|
|
921
|
+
c.detach();
|
|
922
|
+
this.el = r.nativeElement;
|
|
923
|
+
}
|
|
924
|
+
};
|
|
925
|
+
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepperItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
926
|
+
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", 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 });
|
|
927
|
+
PStepperItem = __decorate([
|
|
928
|
+
ProxyCmp({
|
|
929
|
+
defineCustomElementFn: undefined,
|
|
930
|
+
inputs: ['active', 'align', 'direction', 'finished']
|
|
931
|
+
})
|
|
932
|
+
], PStepperItem);
|
|
933
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepperItem, decorators: [{
|
|
934
|
+
type: Component,
|
|
935
|
+
args: [{
|
|
936
|
+
selector: 'p-stepper-item',
|
|
937
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
938
|
+
template: '<ng-content></ng-content>',
|
|
939
|
+
inputs: ['active', 'align', 'direction', 'finished']
|
|
940
|
+
}]
|
|
941
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
942
|
+
let PStepperLine = class PStepperLine {
|
|
943
|
+
constructor(c, r, z) {
|
|
944
|
+
this.z = z;
|
|
945
|
+
c.detach();
|
|
946
|
+
this.el = r.nativeElement;
|
|
947
|
+
}
|
|
948
|
+
};
|
|
949
|
+
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepperLine, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
950
|
+
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PStepperLine, selector: "p-stepper-line", inputs: { active: "active", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
951
|
+
PStepperLine = __decorate([
|
|
952
|
+
ProxyCmp({
|
|
953
|
+
defineCustomElementFn: undefined,
|
|
954
|
+
inputs: ['active', 'direction']
|
|
955
|
+
})
|
|
956
|
+
], PStepperLine);
|
|
957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PStepperLine, decorators: [{
|
|
958
|
+
type: Component,
|
|
959
|
+
args: [{
|
|
960
|
+
selector: 'p-stepper-line',
|
|
961
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
962
|
+
template: '<ng-content></ng-content>',
|
|
963
|
+
inputs: ['active', 'direction']
|
|
964
|
+
}]
|
|
965
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
966
|
+
let PTabGroup = class PTabGroup {
|
|
967
|
+
constructor(c, r, z) {
|
|
968
|
+
this.z = z;
|
|
969
|
+
c.detach();
|
|
970
|
+
this.el = r.nativeElement;
|
|
971
|
+
}
|
|
972
|
+
};
|
|
973
|
+
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
974
|
+
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PTabGroup, selector: "p-tab-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
975
|
+
PTabGroup = __decorate([
|
|
976
|
+
ProxyCmp({
|
|
977
|
+
defineCustomElementFn: undefined
|
|
978
|
+
})
|
|
979
|
+
], PTabGroup);
|
|
980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTabGroup, decorators: [{
|
|
981
|
+
type: Component,
|
|
982
|
+
args: [{
|
|
983
|
+
selector: 'p-tab-group',
|
|
984
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
985
|
+
template: '<ng-content></ng-content>'
|
|
986
|
+
}]
|
|
987
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
988
|
+
let PTabItem = class PTabItem {
|
|
989
|
+
constructor(c, r, z) {
|
|
990
|
+
this.z = z;
|
|
991
|
+
c.detach();
|
|
992
|
+
this.el = r.nativeElement;
|
|
993
|
+
}
|
|
994
|
+
};
|
|
995
|
+
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
996
|
+
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PTabItem, selector: "p-tab-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
997
|
+
PTabItem = __decorate([
|
|
998
|
+
ProxyCmp({
|
|
999
|
+
defineCustomElementFn: undefined,
|
|
1000
|
+
inputs: ['active']
|
|
1001
|
+
})
|
|
1002
|
+
], PTabItem);
|
|
1003
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTabItem, decorators: [{
|
|
1004
|
+
type: Component,
|
|
1005
|
+
args: [{
|
|
1006
|
+
selector: 'p-tab-item',
|
|
1007
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1008
|
+
template: '<ng-content></ng-content>',
|
|
1009
|
+
inputs: ['active']
|
|
1010
|
+
}]
|
|
1011
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1012
|
+
let PTag = class PTag {
|
|
1013
|
+
constructor(c, r, z) {
|
|
1014
|
+
this.z = z;
|
|
1015
|
+
c.detach();
|
|
1016
|
+
this.el = r.nativeElement;
|
|
1017
|
+
}
|
|
1018
|
+
};
|
|
1019
|
+
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1020
|
+
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PTag, selector: "p-tag", inputs: { circle: "circle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1021
|
+
PTag = __decorate([
|
|
1022
|
+
ProxyCmp({
|
|
1023
|
+
defineCustomElementFn: undefined,
|
|
1024
|
+
inputs: ['circle', 'variant']
|
|
1025
|
+
})
|
|
1026
|
+
], PTag);
|
|
1027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTag, decorators: [{
|
|
1028
|
+
type: Component,
|
|
1029
|
+
args: [{
|
|
1030
|
+
selector: 'p-tag',
|
|
1031
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1032
|
+
template: '<ng-content></ng-content>',
|
|
1033
|
+
inputs: ['circle', 'variant']
|
|
1034
|
+
}]
|
|
1035
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
176
1036
|
let PTooltip = class PTooltip {
|
|
177
1037
|
constructor(c, r, z) {
|
|
178
1038
|
this.z = z;
|
|
@@ -180,43 +1040,76 @@ let PTooltip = class PTooltip {
|
|
|
180
1040
|
this.el = r.nativeElement;
|
|
181
1041
|
}
|
|
182
1042
|
};
|
|
183
|
-
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
184
|
-
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1043
|
+
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1044
|
+
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: PTooltip, selector: "p-tooltip", inputs: { canManuallyClose: "canManuallyClose", placement: "placement", popover: "popover", show: "show", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
185
1045
|
PTooltip = __decorate([
|
|
186
1046
|
ProxyCmp({
|
|
187
1047
|
defineCustomElementFn: undefined,
|
|
188
|
-
inputs: ['
|
|
1048
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
189
1049
|
})
|
|
190
1050
|
], PTooltip);
|
|
191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1051
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PTooltip, decorators: [{
|
|
192
1052
|
type: Component,
|
|
193
1053
|
args: [{
|
|
194
1054
|
selector: 'p-tooltip',
|
|
195
1055
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
196
1056
|
template: '<ng-content></ng-content>',
|
|
197
|
-
inputs: ['
|
|
1057
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
198
1058
|
}]
|
|
199
1059
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
200
1060
|
|
|
201
1061
|
const DIRECTIVES = [
|
|
1062
|
+
PAccordion,
|
|
1063
|
+
PAvatar,
|
|
1064
|
+
PAvatarGroup,
|
|
202
1065
|
PButton,
|
|
1066
|
+
PCardBody,
|
|
1067
|
+
PCardContainer,
|
|
1068
|
+
PCardHeader,
|
|
1069
|
+
PCounter,
|
|
1070
|
+
PDivider,
|
|
1071
|
+
PDropdown,
|
|
1072
|
+
PDropdownMenuContainer,
|
|
1073
|
+
PDropdownMenuItem,
|
|
203
1074
|
PHelper,
|
|
204
1075
|
PIcon,
|
|
205
1076
|
PIllustration,
|
|
1077
|
+
PInfoPanel,
|
|
1078
|
+
PInputGroup,
|
|
1079
|
+
PLayout,
|
|
206
1080
|
PLoader,
|
|
1081
|
+
PModal,
|
|
1082
|
+
PModalBackdrop,
|
|
1083
|
+
PModalBody,
|
|
1084
|
+
PModalContainer,
|
|
1085
|
+
PModalFooter,
|
|
1086
|
+
PModalHeader,
|
|
1087
|
+
PNavigationItem,
|
|
1088
|
+
PPagination,
|
|
1089
|
+
PPaginationItem,
|
|
1090
|
+
PProfile,
|
|
1091
|
+
PSegmentContainer,
|
|
1092
|
+
PSegmentItem,
|
|
1093
|
+
PStatus,
|
|
1094
|
+
PStepper,
|
|
1095
|
+
PStepperItem,
|
|
1096
|
+
PStepperLine,
|
|
1097
|
+
PTabGroup,
|
|
1098
|
+
PTabItem,
|
|
1099
|
+
PTag,
|
|
207
1100
|
PTooltip
|
|
208
1101
|
];
|
|
209
1102
|
|
|
210
1103
|
class PaperlessModule {
|
|
211
1104
|
}
|
|
212
|
-
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
213
|
-
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
214
|
-
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1105
|
+
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1106
|
+
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: PaperlessModule, declarations: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective], exports: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective] });
|
|
1107
|
+
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PaperlessModule });
|
|
1108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
216
1109
|
type: NgModule,
|
|
217
1110
|
args: [{
|
|
218
|
-
declarations: [...DIRECTIVES],
|
|
219
|
-
exports: [...DIRECTIVES],
|
|
1111
|
+
declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
1112
|
+
exports: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
220
1113
|
}]
|
|
221
1114
|
}] });
|
|
222
1115
|
|
|
@@ -228,5 +1121,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
228
1121
|
* Generated bundle index. Do not edit.
|
|
229
1122
|
*/
|
|
230
1123
|
|
|
231
|
-
export { PButton, PHelper, PIcon, PIllustration, PLoader, PTooltip, PaperlessModule };
|
|
1124
|
+
export { CUSTOM_DIRECTIVES, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective, PaperlessModule };
|
|
232
1125
|
//# sourceMappingURL=paperless-angular.mjs.map
|