@paperless/angular 0.1.0-alpha.10 → 0.1.0-alpha.103
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 +860 -35
- package/esm2020/lib/stencil/index.mjs +34 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/paperless-angular.mjs +948 -42
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +948 -42
- 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 +330 -9
- 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.1", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
38
|
+
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", 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.1", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
+
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.1", 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.1", 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,31 @@ 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.1", 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.1", 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.1", 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 }]; } });
|
|
57
163
|
let PAvatar = class PAvatar {
|
|
58
164
|
constructor(c, r, z) {
|
|
59
165
|
this.z = z;
|
|
@@ -61,15 +167,15 @@ let PAvatar = class PAvatar {
|
|
|
61
167
|
this.el = r.nativeElement;
|
|
62
168
|
}
|
|
63
169
|
};
|
|
64
|
-
PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
65
|
-
PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
170
|
+
PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", 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.1", type: PAvatar, selector: "p-avatar", inputs: { defaultImage: "defaultImage", size: "size", src: "src", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
66
172
|
PAvatar = __decorate([
|
|
67
173
|
ProxyCmp({
|
|
68
174
|
defineCustomElementFn: undefined,
|
|
69
175
|
inputs: ['defaultImage', 'size', 'src', 'variant']
|
|
70
176
|
})
|
|
71
177
|
], PAvatar);
|
|
72
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PAvatar, decorators: [{
|
|
73
179
|
type: Component,
|
|
74
180
|
args: [{
|
|
75
181
|
selector: 'p-avatar',
|
|
@@ -78,6 +184,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
78
184
|
inputs: ['defaultImage', 'size', 'src', 'variant']
|
|
79
185
|
}]
|
|
80
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.1", 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.1", 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.1", 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 }]; } });
|
|
81
211
|
let PButton = class PButton {
|
|
82
212
|
constructor(c, r, z) {
|
|
83
213
|
this.z = z;
|
|
@@ -86,21 +216,117 @@ let PButton = class PButton {
|
|
|
86
216
|
proxyOutputs(this, this.el, ['onClick']);
|
|
87
217
|
}
|
|
88
218
|
};
|
|
89
|
-
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
90
|
-
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
219
|
+
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", 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.1", 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 });
|
|
91
221
|
PButton = __decorate([
|
|
92
222
|
ProxyCmp({
|
|
93
223
|
defineCustomElementFn: undefined,
|
|
94
|
-
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']
|
|
95
225
|
})
|
|
96
226
|
], PButton);
|
|
97
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PButton, decorators: [{
|
|
98
228
|
type: Component,
|
|
99
229
|
args: [{
|
|
100
230
|
selector: 'p-button',
|
|
101
231
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
102
232
|
template: '<ng-content></ng-content>',
|
|
103
|
-
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.1", 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.1", 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.1", 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.1", 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.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 });
|
|
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.1", 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.1", 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.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 });
|
|
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.1", 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 PContentSlider = class PContentSlider {
|
|
309
|
+
constructor(c, r, z) {
|
|
310
|
+
this.z = z;
|
|
311
|
+
c.detach();
|
|
312
|
+
this.el = r.nativeElement;
|
|
313
|
+
}
|
|
314
|
+
};
|
|
315
|
+
PContentSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PContentSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
316
|
+
PContentSlider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PContentSlider, selector: "p-content-slider", inputs: { disableDrag: "disableDrag", disableIndicatorClick: "disableIndicatorClick", hideMobileIndicator: "hideMobileIndicator" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
317
|
+
PContentSlider = __decorate([
|
|
318
|
+
ProxyCmp({
|
|
319
|
+
defineCustomElementFn: undefined,
|
|
320
|
+
inputs: ['disableDrag', 'disableIndicatorClick', 'hideMobileIndicator']
|
|
321
|
+
})
|
|
322
|
+
], PContentSlider);
|
|
323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PContentSlider, decorators: [{
|
|
324
|
+
type: Component,
|
|
325
|
+
args: [{
|
|
326
|
+
selector: 'p-content-slider',
|
|
327
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
328
|
+
template: '<ng-content></ng-content>',
|
|
329
|
+
inputs: ['disableDrag', 'disableIndicatorClick', 'hideMobileIndicator']
|
|
104
330
|
}]
|
|
105
331
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
106
332
|
let PCounter = class PCounter {
|
|
@@ -110,21 +336,116 @@ let PCounter = class PCounter {
|
|
|
110
336
|
this.el = r.nativeElement;
|
|
111
337
|
}
|
|
112
338
|
};
|
|
113
|
-
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
114
|
-
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
339
|
+
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
340
|
+
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PCounter, selector: "p-counter", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
115
341
|
PCounter = __decorate([
|
|
116
342
|
ProxyCmp({
|
|
117
|
-
defineCustomElementFn: undefined
|
|
343
|
+
defineCustomElementFn: undefined,
|
|
344
|
+
inputs: ['size', 'variant']
|
|
118
345
|
})
|
|
119
346
|
], PCounter);
|
|
120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
347
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PCounter, decorators: [{
|
|
121
348
|
type: Component,
|
|
122
349
|
args: [{
|
|
123
350
|
selector: 'p-counter',
|
|
124
351
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
352
|
+
template: '<ng-content></ng-content>',
|
|
353
|
+
inputs: ['size', 'variant']
|
|
354
|
+
}]
|
|
355
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
356
|
+
let PDivider = class PDivider {
|
|
357
|
+
constructor(c, r, z) {
|
|
358
|
+
this.z = z;
|
|
359
|
+
c.detach();
|
|
360
|
+
this.el = r.nativeElement;
|
|
361
|
+
}
|
|
362
|
+
};
|
|
363
|
+
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
364
|
+
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PDivider, selector: "p-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
365
|
+
PDivider = __decorate([
|
|
366
|
+
ProxyCmp({
|
|
367
|
+
defineCustomElementFn: undefined
|
|
368
|
+
})
|
|
369
|
+
], PDivider);
|
|
370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDivider, decorators: [{
|
|
371
|
+
type: Component,
|
|
372
|
+
args: [{
|
|
373
|
+
selector: 'p-divider',
|
|
374
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
375
|
+
template: '<ng-content></ng-content>'
|
|
376
|
+
}]
|
|
377
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
378
|
+
let PDropdown = class PDropdown {
|
|
379
|
+
constructor(c, r, z) {
|
|
380
|
+
this.z = z;
|
|
381
|
+
c.detach();
|
|
382
|
+
this.el = r.nativeElement;
|
|
383
|
+
proxyOutputs(this, this.el, ['isOpen']);
|
|
384
|
+
}
|
|
385
|
+
};
|
|
386
|
+
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
387
|
+
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PDropdown, selector: "p-dropdown", inputs: { disableTriggerClick: "disableTriggerClick", insideClick: "insideClick", placement: "placement", show: "show", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
388
|
+
PDropdown = __decorate([
|
|
389
|
+
ProxyCmp({
|
|
390
|
+
defineCustomElementFn: undefined,
|
|
391
|
+
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
392
|
+
})
|
|
393
|
+
], PDropdown);
|
|
394
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdown, decorators: [{
|
|
395
|
+
type: Component,
|
|
396
|
+
args: [{
|
|
397
|
+
selector: 'p-dropdown',
|
|
398
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
399
|
+
template: '<ng-content></ng-content>',
|
|
400
|
+
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show', 'strategy']
|
|
401
|
+
}]
|
|
402
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
403
|
+
let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
404
|
+
constructor(c, r, z) {
|
|
405
|
+
this.z = z;
|
|
406
|
+
c.detach();
|
|
407
|
+
this.el = r.nativeElement;
|
|
408
|
+
}
|
|
409
|
+
};
|
|
410
|
+
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdownMenuContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
411
|
+
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
412
|
+
PDropdownMenuContainer = __decorate([
|
|
413
|
+
ProxyCmp({
|
|
414
|
+
defineCustomElementFn: undefined
|
|
415
|
+
})
|
|
416
|
+
], PDropdownMenuContainer);
|
|
417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
|
|
418
|
+
type: Component,
|
|
419
|
+
args: [{
|
|
420
|
+
selector: 'p-dropdown-menu-container',
|
|
421
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
125
422
|
template: '<ng-content></ng-content>'
|
|
126
423
|
}]
|
|
127
424
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
425
|
+
let PDropdownMenuItem = class PDropdownMenuItem {
|
|
426
|
+
constructor(c, r, z) {
|
|
427
|
+
this.z = z;
|
|
428
|
+
c.detach();
|
|
429
|
+
this.el = r.nativeElement;
|
|
430
|
+
}
|
|
431
|
+
};
|
|
432
|
+
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdownMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
433
|
+
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PDropdownMenuItem, selector: "p-dropdown-menu-item", inputs: { active: "active", icon: "icon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
434
|
+
PDropdownMenuItem = __decorate([
|
|
435
|
+
ProxyCmp({
|
|
436
|
+
defineCustomElementFn: undefined,
|
|
437
|
+
inputs: ['active', 'icon']
|
|
438
|
+
})
|
|
439
|
+
], PDropdownMenuItem);
|
|
440
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDropdownMenuItem, decorators: [{
|
|
441
|
+
type: Component,
|
|
442
|
+
args: [{
|
|
443
|
+
selector: 'p-dropdown-menu-item',
|
|
444
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
445
|
+
template: '<ng-content></ng-content>',
|
|
446
|
+
inputs: ['active', 'icon']
|
|
447
|
+
}]
|
|
448
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
128
449
|
let PHelper = class PHelper {
|
|
129
450
|
constructor(c, r, z) {
|
|
130
451
|
this.z = z;
|
|
@@ -132,19 +453,21 @@ let PHelper = class PHelper {
|
|
|
132
453
|
this.el = r.nativeElement;
|
|
133
454
|
}
|
|
134
455
|
};
|
|
135
|
-
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
136
|
-
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
456
|
+
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PHelper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
457
|
+
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PHelper, selector: "p-helper", inputs: { placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
137
458
|
PHelper = __decorate([
|
|
138
459
|
ProxyCmp({
|
|
139
|
-
defineCustomElementFn: undefined
|
|
460
|
+
defineCustomElementFn: undefined,
|
|
461
|
+
inputs: ['placement']
|
|
140
462
|
})
|
|
141
463
|
], PHelper);
|
|
142
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PHelper, decorators: [{
|
|
143
465
|
type: Component,
|
|
144
466
|
args: [{
|
|
145
467
|
selector: 'p-helper',
|
|
146
468
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
147
|
-
template: '<ng-content></ng-content>'
|
|
469
|
+
template: '<ng-content></ng-content>',
|
|
470
|
+
inputs: ['placement']
|
|
148
471
|
}]
|
|
149
472
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
150
473
|
let PIcon = class PIcon {
|
|
@@ -154,15 +477,15 @@ let PIcon = class PIcon {
|
|
|
154
477
|
this.el = r.nativeElement;
|
|
155
478
|
}
|
|
156
479
|
};
|
|
157
|
-
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
158
|
-
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
480
|
+
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
481
|
+
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
159
482
|
PIcon = __decorate([
|
|
160
483
|
ProxyCmp({
|
|
161
484
|
defineCustomElementFn: undefined,
|
|
162
485
|
inputs: ['flip', 'rotate', 'size', 'variant']
|
|
163
486
|
})
|
|
164
487
|
], PIcon);
|
|
165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIcon, decorators: [{
|
|
166
489
|
type: Component,
|
|
167
490
|
args: [{
|
|
168
491
|
selector: 'p-icon',
|
|
@@ -178,15 +501,15 @@ let PIllustration = class PIllustration {
|
|
|
178
501
|
this.el = r.nativeElement;
|
|
179
502
|
}
|
|
180
503
|
};
|
|
181
|
-
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
182
|
-
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
504
|
+
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIllustration, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
505
|
+
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PIllustration, selector: "p-illustration", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
183
506
|
PIllustration = __decorate([
|
|
184
507
|
ProxyCmp({
|
|
185
508
|
defineCustomElementFn: undefined,
|
|
186
509
|
inputs: ['variant']
|
|
187
510
|
})
|
|
188
511
|
], PIllustration);
|
|
189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIllustration, decorators: [{
|
|
190
513
|
type: Component,
|
|
191
514
|
args: [{
|
|
192
515
|
selector: 'p-illustration',
|
|
@@ -202,15 +525,15 @@ let PInfoPanel = class PInfoPanel {
|
|
|
202
525
|
this.el = r.nativeElement;
|
|
203
526
|
}
|
|
204
527
|
};
|
|
205
|
-
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
206
|
-
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
528
|
+
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PInfoPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
529
|
+
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
207
530
|
PInfoPanel = __decorate([
|
|
208
531
|
ProxyCmp({
|
|
209
532
|
defineCustomElementFn: undefined,
|
|
210
533
|
inputs: ['closeable', 'content', 'header', 'variant']
|
|
211
534
|
})
|
|
212
535
|
], PInfoPanel);
|
|
213
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PInfoPanel, decorators: [{
|
|
214
537
|
type: Component,
|
|
215
538
|
args: [{
|
|
216
539
|
selector: 'p-info-panel',
|
|
@@ -219,6 +542,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
219
542
|
inputs: ['closeable', 'content', 'header', 'variant']
|
|
220
543
|
}]
|
|
221
544
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
545
|
+
let PInputGroup = class PInputGroup {
|
|
546
|
+
constructor(c, r, z) {
|
|
547
|
+
this.z = z;
|
|
548
|
+
c.detach();
|
|
549
|
+
this.el = r.nativeElement;
|
|
550
|
+
}
|
|
551
|
+
};
|
|
552
|
+
PInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
553
|
+
PInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
554
|
+
PInputGroup = __decorate([
|
|
555
|
+
ProxyCmp({
|
|
556
|
+
defineCustomElementFn: undefined,
|
|
557
|
+
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'suffix']
|
|
558
|
+
})
|
|
559
|
+
], PInputGroup);
|
|
560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PInputGroup, decorators: [{
|
|
561
|
+
type: Component,
|
|
562
|
+
args: [{
|
|
563
|
+
selector: 'p-input-group',
|
|
564
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
565
|
+
template: '<ng-content></ng-content>',
|
|
566
|
+
inputs: ['disabled', 'error', 'focused', 'helper', 'icon', 'iconFlip', 'iconRotate', 'label', 'prefix', 'suffix']
|
|
567
|
+
}]
|
|
568
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
569
|
+
let PLayout = class PLayout {
|
|
570
|
+
constructor(c, r, z) {
|
|
571
|
+
this.z = z;
|
|
572
|
+
c.detach();
|
|
573
|
+
this.el = r.nativeElement;
|
|
574
|
+
}
|
|
575
|
+
};
|
|
576
|
+
PLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
577
|
+
PLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PLayout, selector: "p-layout", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
578
|
+
PLayout = __decorate([
|
|
579
|
+
ProxyCmp({
|
|
580
|
+
defineCustomElementFn: undefined,
|
|
581
|
+
inputs: ['variant']
|
|
582
|
+
})
|
|
583
|
+
], PLayout);
|
|
584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PLayout, decorators: [{
|
|
585
|
+
type: Component,
|
|
586
|
+
args: [{
|
|
587
|
+
selector: 'p-layout',
|
|
588
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
589
|
+
template: '<ng-content></ng-content>',
|
|
590
|
+
inputs: ['variant']
|
|
591
|
+
}]
|
|
592
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
222
593
|
let PLoader = class PLoader {
|
|
223
594
|
constructor(c, r, z) {
|
|
224
595
|
this.z = z;
|
|
@@ -226,15 +597,15 @@ let PLoader = class PLoader {
|
|
|
226
597
|
this.el = r.nativeElement;
|
|
227
598
|
}
|
|
228
599
|
};
|
|
229
|
-
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
230
|
-
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
600
|
+
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
601
|
+
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
231
602
|
PLoader = __decorate([
|
|
232
603
|
ProxyCmp({
|
|
233
604
|
defineCustomElementFn: undefined,
|
|
234
605
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
235
606
|
})
|
|
236
607
|
], PLoader);
|
|
237
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PLoader, decorators: [{
|
|
238
609
|
type: Component,
|
|
239
610
|
args: [{
|
|
240
611
|
selector: 'p-loader',
|
|
@@ -243,53 +614,588 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
243
614
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
244
615
|
}]
|
|
245
616
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
617
|
+
let PModal = class PModal {
|
|
618
|
+
constructor(c, r, z) {
|
|
619
|
+
this.z = z;
|
|
620
|
+
c.detach();
|
|
621
|
+
this.el = r.nativeElement;
|
|
622
|
+
proxyOutputs(this, this.el, ['close']);
|
|
623
|
+
}
|
|
624
|
+
};
|
|
625
|
+
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
626
|
+
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModal, selector: "p-modal", inputs: { header: "header", show: "show", showMobileClose: "showMobileClose", showMobileFooter: "showMobileFooter", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
627
|
+
PModal = __decorate([
|
|
628
|
+
ProxyCmp({
|
|
629
|
+
defineCustomElementFn: undefined,
|
|
630
|
+
inputs: ['header', 'show', 'showMobileClose', 'showMobileFooter', 'size', 'variant']
|
|
631
|
+
})
|
|
632
|
+
], PModal);
|
|
633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModal, decorators: [{
|
|
634
|
+
type: Component,
|
|
635
|
+
args: [{
|
|
636
|
+
selector: 'p-modal',
|
|
637
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
638
|
+
template: '<ng-content></ng-content>',
|
|
639
|
+
inputs: ['header', 'show', 'showMobileClose', 'showMobileFooter', 'size', 'variant']
|
|
640
|
+
}]
|
|
641
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
642
|
+
let PModalBackdrop = class PModalBackdrop {
|
|
643
|
+
constructor(c, r, z) {
|
|
644
|
+
this.z = z;
|
|
645
|
+
c.detach();
|
|
646
|
+
this.el = r.nativeElement;
|
|
647
|
+
}
|
|
648
|
+
};
|
|
649
|
+
PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
650
|
+
PModalBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalBackdrop, selector: "p-modal-backdrop", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
651
|
+
PModalBackdrop = __decorate([
|
|
652
|
+
ProxyCmp({
|
|
653
|
+
defineCustomElementFn: undefined
|
|
654
|
+
})
|
|
655
|
+
], PModalBackdrop);
|
|
656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalBackdrop, decorators: [{
|
|
657
|
+
type: Component,
|
|
658
|
+
args: [{
|
|
659
|
+
selector: 'p-modal-backdrop',
|
|
660
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
661
|
+
template: '<ng-content></ng-content>'
|
|
662
|
+
}]
|
|
663
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
664
|
+
let PModalBody = class PModalBody {
|
|
665
|
+
constructor(c, r, z) {
|
|
666
|
+
this.z = z;
|
|
667
|
+
c.detach();
|
|
668
|
+
this.el = r.nativeElement;
|
|
669
|
+
}
|
|
670
|
+
};
|
|
671
|
+
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
672
|
+
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalBody, selector: "p-modal-body", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
673
|
+
PModalBody = __decorate([
|
|
674
|
+
ProxyCmp({
|
|
675
|
+
defineCustomElementFn: undefined,
|
|
676
|
+
inputs: ['variant']
|
|
677
|
+
})
|
|
678
|
+
], PModalBody);
|
|
679
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalBody, decorators: [{
|
|
680
|
+
type: Component,
|
|
681
|
+
args: [{
|
|
682
|
+
selector: 'p-modal-body',
|
|
683
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
684
|
+
template: '<ng-content></ng-content>',
|
|
685
|
+
inputs: ['variant']
|
|
686
|
+
}]
|
|
687
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
688
|
+
let PModalContainer = class PModalContainer {
|
|
689
|
+
constructor(c, r, z) {
|
|
690
|
+
this.z = z;
|
|
691
|
+
c.detach();
|
|
692
|
+
this.el = r.nativeElement;
|
|
693
|
+
}
|
|
694
|
+
};
|
|
695
|
+
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
696
|
+
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalContainer, selector: "p-modal-container", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
697
|
+
PModalContainer = __decorate([
|
|
698
|
+
ProxyCmp({
|
|
699
|
+
defineCustomElementFn: undefined,
|
|
700
|
+
inputs: ['size']
|
|
701
|
+
})
|
|
702
|
+
], PModalContainer);
|
|
703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalContainer, decorators: [{
|
|
704
|
+
type: Component,
|
|
705
|
+
args: [{
|
|
706
|
+
selector: 'p-modal-container',
|
|
707
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
708
|
+
template: '<ng-content></ng-content>',
|
|
709
|
+
inputs: ['size']
|
|
710
|
+
}]
|
|
711
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
712
|
+
let PModalFooter = class PModalFooter {
|
|
713
|
+
constructor(c, r, z) {
|
|
714
|
+
this.z = z;
|
|
715
|
+
c.detach();
|
|
716
|
+
this.el = r.nativeElement;
|
|
717
|
+
}
|
|
718
|
+
};
|
|
719
|
+
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
720
|
+
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalFooter, selector: "p-modal-footer", inputs: { hideOnMobile: "hideOnMobile" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
721
|
+
PModalFooter = __decorate([
|
|
722
|
+
ProxyCmp({
|
|
723
|
+
defineCustomElementFn: undefined,
|
|
724
|
+
inputs: ['hideOnMobile']
|
|
725
|
+
})
|
|
726
|
+
], PModalFooter);
|
|
727
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalFooter, decorators: [{
|
|
728
|
+
type: Component,
|
|
729
|
+
args: [{
|
|
730
|
+
selector: 'p-modal-footer',
|
|
731
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
732
|
+
template: '<ng-content></ng-content>',
|
|
733
|
+
inputs: ['hideOnMobile']
|
|
734
|
+
}]
|
|
735
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
736
|
+
let PModalHeader = class PModalHeader {
|
|
737
|
+
constructor(c, r, z) {
|
|
738
|
+
this.z = z;
|
|
739
|
+
c.detach();
|
|
740
|
+
this.el = r.nativeElement;
|
|
741
|
+
proxyOutputs(this, this.el, ['close']);
|
|
742
|
+
}
|
|
743
|
+
};
|
|
744
|
+
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
745
|
+
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PModalHeader, selector: "p-modal-header", inputs: { showMobileClose: "showMobileClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
746
|
+
PModalHeader = __decorate([
|
|
747
|
+
ProxyCmp({
|
|
748
|
+
defineCustomElementFn: undefined,
|
|
749
|
+
inputs: ['showMobileClose']
|
|
750
|
+
})
|
|
751
|
+
], PModalHeader);
|
|
752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PModalHeader, decorators: [{
|
|
753
|
+
type: Component,
|
|
754
|
+
args: [{
|
|
755
|
+
selector: 'p-modal-header',
|
|
756
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
757
|
+
template: '<ng-content></ng-content>',
|
|
758
|
+
inputs: ['showMobileClose']
|
|
759
|
+
}]
|
|
760
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
761
|
+
let PNavbar = class PNavbar {
|
|
762
|
+
constructor(c, r, z) {
|
|
763
|
+
this.z = z;
|
|
764
|
+
c.detach();
|
|
765
|
+
this.el = r.nativeElement;
|
|
766
|
+
}
|
|
767
|
+
};
|
|
768
|
+
PNavbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
769
|
+
PNavbar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PNavbar, selector: "p-navbar", inputs: { closeText: "closeText", menuText: "menuText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
770
|
+
PNavbar = __decorate([
|
|
771
|
+
ProxyCmp({
|
|
772
|
+
defineCustomElementFn: undefined,
|
|
773
|
+
inputs: ['closeText', 'menuText']
|
|
774
|
+
})
|
|
775
|
+
], PNavbar);
|
|
776
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PNavbar, decorators: [{
|
|
777
|
+
type: Component,
|
|
778
|
+
args: [{
|
|
779
|
+
selector: 'p-navbar',
|
|
780
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
781
|
+
template: '<ng-content></ng-content>',
|
|
782
|
+
inputs: ['closeText', 'menuText']
|
|
783
|
+
}]
|
|
784
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
785
|
+
let PNavigationItem = class PNavigationItem {
|
|
786
|
+
constructor(c, r, z) {
|
|
787
|
+
this.z = z;
|
|
788
|
+
c.detach();
|
|
789
|
+
this.el = r.nativeElement;
|
|
790
|
+
}
|
|
791
|
+
};
|
|
792
|
+
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
793
|
+
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
794
|
+
PNavigationItem = __decorate([
|
|
795
|
+
ProxyCmp({
|
|
796
|
+
defineCustomElementFn: undefined,
|
|
797
|
+
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
798
|
+
})
|
|
799
|
+
], PNavigationItem);
|
|
800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PNavigationItem, decorators: [{
|
|
801
|
+
type: Component,
|
|
802
|
+
args: [{
|
|
803
|
+
selector: 'p-navigation-item',
|
|
804
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
805
|
+
template: '<ng-content></ng-content>',
|
|
806
|
+
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
807
|
+
}]
|
|
808
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
809
|
+
let PPagination = class PPagination {
|
|
810
|
+
constructor(c, r, z) {
|
|
811
|
+
this.z = z;
|
|
812
|
+
c.detach();
|
|
813
|
+
this.el = r.nativeElement;
|
|
814
|
+
proxyOutputs(this, this.el, ['pageChange']);
|
|
815
|
+
}
|
|
816
|
+
};
|
|
817
|
+
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
818
|
+
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
819
|
+
PPagination = __decorate([
|
|
820
|
+
ProxyCmp({
|
|
821
|
+
defineCustomElementFn: undefined,
|
|
822
|
+
inputs: ['page', 'pageSize', 'total']
|
|
823
|
+
})
|
|
824
|
+
], PPagination);
|
|
825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPagination, decorators: [{
|
|
826
|
+
type: Component,
|
|
827
|
+
args: [{
|
|
828
|
+
selector: 'p-pagination',
|
|
829
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
830
|
+
template: '<ng-content></ng-content>',
|
|
831
|
+
inputs: ['page', 'pageSize', 'total']
|
|
832
|
+
}]
|
|
833
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
834
|
+
let PPaginationItem = class PPaginationItem {
|
|
835
|
+
constructor(c, r, z) {
|
|
836
|
+
this.z = z;
|
|
837
|
+
c.detach();
|
|
838
|
+
this.el = r.nativeElement;
|
|
839
|
+
}
|
|
840
|
+
};
|
|
841
|
+
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPaginationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
842
|
+
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PPaginationItem, selector: "p-pagination-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
843
|
+
PPaginationItem = __decorate([
|
|
844
|
+
ProxyCmp({
|
|
845
|
+
defineCustomElementFn: undefined,
|
|
846
|
+
inputs: ['active']
|
|
847
|
+
})
|
|
848
|
+
], PPaginationItem);
|
|
849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPaginationItem, decorators: [{
|
|
850
|
+
type: Component,
|
|
851
|
+
args: [{
|
|
852
|
+
selector: 'p-pagination-item',
|
|
853
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
854
|
+
template: '<ng-content></ng-content>',
|
|
855
|
+
inputs: ['active']
|
|
856
|
+
}]
|
|
857
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
858
|
+
let PProfile = class PProfile {
|
|
859
|
+
constructor(c, r, z) {
|
|
860
|
+
this.z = z;
|
|
861
|
+
c.detach();
|
|
862
|
+
this.el = r.nativeElement;
|
|
863
|
+
}
|
|
864
|
+
};
|
|
865
|
+
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PProfile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
866
|
+
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PProfile, selector: "p-profile", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
867
|
+
PProfile = __decorate([
|
|
868
|
+
ProxyCmp({
|
|
869
|
+
defineCustomElementFn: undefined,
|
|
870
|
+
inputs: ['size', 'variant']
|
|
871
|
+
})
|
|
872
|
+
], PProfile);
|
|
873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PProfile, decorators: [{
|
|
874
|
+
type: Component,
|
|
875
|
+
args: [{
|
|
876
|
+
selector: 'p-profile',
|
|
877
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
878
|
+
template: '<ng-content></ng-content>',
|
|
879
|
+
inputs: ['size', 'variant']
|
|
880
|
+
}]
|
|
881
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
882
|
+
let PSegmentContainer = class PSegmentContainer {
|
|
883
|
+
constructor(c, r, z) {
|
|
884
|
+
this.z = z;
|
|
885
|
+
c.detach();
|
|
886
|
+
this.el = r.nativeElement;
|
|
887
|
+
}
|
|
888
|
+
};
|
|
889
|
+
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSegmentContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
890
|
+
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PSegmentContainer, selector: "p-segment-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
891
|
+
PSegmentContainer = __decorate([
|
|
892
|
+
ProxyCmp({
|
|
893
|
+
defineCustomElementFn: undefined
|
|
894
|
+
})
|
|
895
|
+
], PSegmentContainer);
|
|
896
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSegmentContainer, decorators: [{
|
|
897
|
+
type: Component,
|
|
898
|
+
args: [{
|
|
899
|
+
selector: 'p-segment-container',
|
|
900
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
901
|
+
template: '<ng-content></ng-content>'
|
|
902
|
+
}]
|
|
903
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
904
|
+
let PSegmentItem = class PSegmentItem {
|
|
905
|
+
constructor(c, r, z) {
|
|
906
|
+
this.z = z;
|
|
907
|
+
c.detach();
|
|
908
|
+
this.el = r.nativeElement;
|
|
909
|
+
}
|
|
910
|
+
};
|
|
911
|
+
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSegmentItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
912
|
+
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
913
|
+
PSegmentItem = __decorate([
|
|
914
|
+
ProxyCmp({
|
|
915
|
+
defineCustomElementFn: undefined,
|
|
916
|
+
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
917
|
+
})
|
|
918
|
+
], PSegmentItem);
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSegmentItem, decorators: [{
|
|
920
|
+
type: Component,
|
|
921
|
+
args: [{
|
|
922
|
+
selector: 'p-segment-item',
|
|
923
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
924
|
+
template: '<ng-content></ng-content>',
|
|
925
|
+
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
926
|
+
}]
|
|
927
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
928
|
+
let PSliderIndicator = class PSliderIndicator {
|
|
929
|
+
constructor(c, r, z) {
|
|
930
|
+
this.z = z;
|
|
931
|
+
c.detach();
|
|
932
|
+
this.el = r.nativeElement;
|
|
933
|
+
}
|
|
934
|
+
};
|
|
935
|
+
PSliderIndicator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSliderIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
936
|
+
PSliderIndicator.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PSliderIndicator, selector: "p-slider-indicator", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
937
|
+
PSliderIndicator = __decorate([
|
|
938
|
+
ProxyCmp({
|
|
939
|
+
defineCustomElementFn: undefined,
|
|
940
|
+
inputs: ['active']
|
|
941
|
+
})
|
|
942
|
+
], PSliderIndicator);
|
|
943
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PSliderIndicator, decorators: [{
|
|
944
|
+
type: Component,
|
|
945
|
+
args: [{
|
|
946
|
+
selector: 'p-slider-indicator',
|
|
947
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
948
|
+
template: '<ng-content></ng-content>',
|
|
949
|
+
inputs: ['active']
|
|
950
|
+
}]
|
|
951
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
952
|
+
let PStatus = class PStatus {
|
|
953
|
+
constructor(c, r, z) {
|
|
954
|
+
this.z = z;
|
|
955
|
+
c.detach();
|
|
956
|
+
this.el = r.nativeElement;
|
|
957
|
+
}
|
|
958
|
+
};
|
|
959
|
+
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
960
|
+
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
961
|
+
PStatus = __decorate([
|
|
962
|
+
ProxyCmp({
|
|
963
|
+
defineCustomElementFn: undefined,
|
|
964
|
+
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
965
|
+
})
|
|
966
|
+
], PStatus);
|
|
967
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStatus, decorators: [{
|
|
968
|
+
type: Component,
|
|
969
|
+
args: [{
|
|
970
|
+
selector: 'p-status',
|
|
971
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
972
|
+
template: '<ng-content></ng-content>',
|
|
973
|
+
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
974
|
+
}]
|
|
975
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
976
|
+
let PStepper = class PStepper {
|
|
977
|
+
constructor(c, r, z) {
|
|
978
|
+
this.z = z;
|
|
979
|
+
c.detach();
|
|
980
|
+
this.el = r.nativeElement;
|
|
981
|
+
}
|
|
982
|
+
};
|
|
983
|
+
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
984
|
+
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PStepper, selector: "p-stepper", inputs: { activeStep: "activeStep", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
985
|
+
PStepper = __decorate([
|
|
986
|
+
ProxyCmp({
|
|
987
|
+
defineCustomElementFn: undefined,
|
|
988
|
+
inputs: ['activeStep', 'direction']
|
|
989
|
+
})
|
|
990
|
+
], PStepper);
|
|
991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepper, decorators: [{
|
|
992
|
+
type: Component,
|
|
993
|
+
args: [{
|
|
994
|
+
selector: 'p-stepper',
|
|
995
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
996
|
+
template: '<ng-content></ng-content>',
|
|
997
|
+
inputs: ['activeStep', 'direction']
|
|
998
|
+
}]
|
|
999
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1000
|
+
let PStepperItem = class PStepperItem {
|
|
1001
|
+
constructor(c, r, z) {
|
|
1002
|
+
this.z = z;
|
|
1003
|
+
c.detach();
|
|
1004
|
+
this.el = r.nativeElement;
|
|
1005
|
+
}
|
|
1006
|
+
};
|
|
1007
|
+
PStepperItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepperItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1008
|
+
PStepperItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
1009
|
+
PStepperItem = __decorate([
|
|
1010
|
+
ProxyCmp({
|
|
1011
|
+
defineCustomElementFn: undefined,
|
|
1012
|
+
inputs: ['active', 'align', 'direction', 'finished']
|
|
1013
|
+
})
|
|
1014
|
+
], PStepperItem);
|
|
1015
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepperItem, decorators: [{
|
|
1016
|
+
type: Component,
|
|
1017
|
+
args: [{
|
|
1018
|
+
selector: 'p-stepper-item',
|
|
1019
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1020
|
+
template: '<ng-content></ng-content>',
|
|
1021
|
+
inputs: ['active', 'align', 'direction', 'finished']
|
|
1022
|
+
}]
|
|
1023
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1024
|
+
let PStepperLine = class PStepperLine {
|
|
1025
|
+
constructor(c, r, z) {
|
|
1026
|
+
this.z = z;
|
|
1027
|
+
c.detach();
|
|
1028
|
+
this.el = r.nativeElement;
|
|
1029
|
+
}
|
|
1030
|
+
};
|
|
1031
|
+
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepperLine, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1032
|
+
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PStepperLine, selector: "p-stepper-line", inputs: { active: "active", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1033
|
+
PStepperLine = __decorate([
|
|
1034
|
+
ProxyCmp({
|
|
1035
|
+
defineCustomElementFn: undefined,
|
|
1036
|
+
inputs: ['active', 'direction']
|
|
1037
|
+
})
|
|
1038
|
+
], PStepperLine);
|
|
1039
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PStepperLine, decorators: [{
|
|
1040
|
+
type: Component,
|
|
1041
|
+
args: [{
|
|
1042
|
+
selector: 'p-stepper-line',
|
|
1043
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1044
|
+
template: '<ng-content></ng-content>',
|
|
1045
|
+
inputs: ['active', 'direction']
|
|
1046
|
+
}]
|
|
1047
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1048
|
+
let PTabGroup = class PTabGroup {
|
|
1049
|
+
constructor(c, r, z) {
|
|
1050
|
+
this.z = z;
|
|
1051
|
+
c.detach();
|
|
1052
|
+
this.el = r.nativeElement;
|
|
1053
|
+
}
|
|
1054
|
+
};
|
|
1055
|
+
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1056
|
+
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PTabGroup, selector: "p-tab-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1057
|
+
PTabGroup = __decorate([
|
|
1058
|
+
ProxyCmp({
|
|
1059
|
+
defineCustomElementFn: undefined
|
|
1060
|
+
})
|
|
1061
|
+
], PTabGroup);
|
|
1062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTabGroup, decorators: [{
|
|
1063
|
+
type: Component,
|
|
1064
|
+
args: [{
|
|
1065
|
+
selector: 'p-tab-group',
|
|
1066
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1067
|
+
template: '<ng-content></ng-content>'
|
|
1068
|
+
}]
|
|
1069
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1070
|
+
let PTabItem = class PTabItem {
|
|
1071
|
+
constructor(c, r, z) {
|
|
1072
|
+
this.z = z;
|
|
1073
|
+
c.detach();
|
|
1074
|
+
this.el = r.nativeElement;
|
|
1075
|
+
}
|
|
1076
|
+
};
|
|
1077
|
+
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1078
|
+
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PTabItem, selector: "p-tab-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1079
|
+
PTabItem = __decorate([
|
|
1080
|
+
ProxyCmp({
|
|
1081
|
+
defineCustomElementFn: undefined,
|
|
1082
|
+
inputs: ['active']
|
|
1083
|
+
})
|
|
1084
|
+
], PTabItem);
|
|
1085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTabItem, decorators: [{
|
|
1086
|
+
type: Component,
|
|
1087
|
+
args: [{
|
|
1088
|
+
selector: 'p-tab-item',
|
|
1089
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1090
|
+
template: '<ng-content></ng-content>',
|
|
1091
|
+
inputs: ['active']
|
|
1092
|
+
}]
|
|
1093
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1094
|
+
let PTag = class PTag {
|
|
1095
|
+
constructor(c, r, z) {
|
|
1096
|
+
this.z = z;
|
|
1097
|
+
c.detach();
|
|
1098
|
+
this.el = r.nativeElement;
|
|
1099
|
+
}
|
|
1100
|
+
};
|
|
1101
|
+
PTag.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1102
|
+
PTag.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", type: PTag, selector: "p-tag", inputs: { circle: "circle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1103
|
+
PTag = __decorate([
|
|
1104
|
+
ProxyCmp({
|
|
1105
|
+
defineCustomElementFn: undefined,
|
|
1106
|
+
inputs: ['circle', 'variant']
|
|
1107
|
+
})
|
|
1108
|
+
], PTag);
|
|
1109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTag, decorators: [{
|
|
1110
|
+
type: Component,
|
|
1111
|
+
args: [{
|
|
1112
|
+
selector: 'p-tag',
|
|
1113
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1114
|
+
template: '<ng-content></ng-content>',
|
|
1115
|
+
inputs: ['circle', 'variant']
|
|
1116
|
+
}]
|
|
1117
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
246
1118
|
let PTooltip = class PTooltip {
|
|
247
1119
|
constructor(c, r, z) {
|
|
248
1120
|
this.z = z;
|
|
249
1121
|
c.detach();
|
|
250
1122
|
this.el = r.nativeElement;
|
|
1123
|
+
proxyOutputs(this, this.el, ['isOpen']);
|
|
251
1124
|
}
|
|
252
1125
|
};
|
|
253
|
-
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
254
|
-
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1126
|
+
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1127
|
+
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.1", 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 });
|
|
255
1128
|
PTooltip = __decorate([
|
|
256
1129
|
ProxyCmp({
|
|
257
1130
|
defineCustomElementFn: undefined,
|
|
258
|
-
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
1131
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
|
|
259
1132
|
})
|
|
260
1133
|
], PTooltip);
|
|
261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTooltip, decorators: [{
|
|
262
1135
|
type: Component,
|
|
263
1136
|
args: [{
|
|
264
1137
|
selector: 'p-tooltip',
|
|
265
1138
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
266
1139
|
template: '<ng-content></ng-content>',
|
|
267
|
-
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
1140
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
|
|
268
1141
|
}]
|
|
269
1142
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
270
1143
|
|
|
271
1144
|
const DIRECTIVES = [
|
|
1145
|
+
PAccordion,
|
|
272
1146
|
PAvatar,
|
|
1147
|
+
PAvatarGroup,
|
|
273
1148
|
PButton,
|
|
1149
|
+
PCardBody,
|
|
1150
|
+
PCardContainer,
|
|
1151
|
+
PCardHeader,
|
|
1152
|
+
PContentSlider,
|
|
274
1153
|
PCounter,
|
|
1154
|
+
PDivider,
|
|
1155
|
+
PDropdown,
|
|
1156
|
+
PDropdownMenuContainer,
|
|
1157
|
+
PDropdownMenuItem,
|
|
275
1158
|
PHelper,
|
|
276
1159
|
PIcon,
|
|
277
1160
|
PIllustration,
|
|
278
1161
|
PInfoPanel,
|
|
1162
|
+
PInputGroup,
|
|
1163
|
+
PLayout,
|
|
279
1164
|
PLoader,
|
|
1165
|
+
PModal,
|
|
1166
|
+
PModalBackdrop,
|
|
1167
|
+
PModalBody,
|
|
1168
|
+
PModalContainer,
|
|
1169
|
+
PModalFooter,
|
|
1170
|
+
PModalHeader,
|
|
1171
|
+
PNavbar,
|
|
1172
|
+
PNavigationItem,
|
|
1173
|
+
PPagination,
|
|
1174
|
+
PPaginationItem,
|
|
1175
|
+
PProfile,
|
|
1176
|
+
PSegmentContainer,
|
|
1177
|
+
PSegmentItem,
|
|
1178
|
+
PSliderIndicator,
|
|
1179
|
+
PStatus,
|
|
1180
|
+
PStepper,
|
|
1181
|
+
PStepperItem,
|
|
1182
|
+
PStepperLine,
|
|
1183
|
+
PTabGroup,
|
|
1184
|
+
PTabItem,
|
|
1185
|
+
PTag,
|
|
280
1186
|
PTooltip
|
|
281
1187
|
];
|
|
282
1188
|
|
|
283
1189
|
class PaperlessModule {
|
|
284
1190
|
}
|
|
285
|
-
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
286
|
-
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
287
|
-
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1191
|
+
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1192
|
+
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.1", ngImport: i0, type: PaperlessModule, declarations: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective], exports: [PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective] });
|
|
1193
|
+
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaperlessModule });
|
|
1194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
289
1195
|
type: NgModule,
|
|
290
1196
|
args: [{
|
|
291
|
-
declarations: [...DIRECTIVES],
|
|
292
|
-
exports: [...DIRECTIVES],
|
|
1197
|
+
declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
1198
|
+
exports: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
293
1199
|
}]
|
|
294
1200
|
}] });
|
|
295
1201
|
|
|
@@ -301,5 +1207,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
301
1207
|
* Generated bundle index. Do not edit.
|
|
302
1208
|
*/
|
|
303
1209
|
|
|
304
|
-
export { PAvatar, PButton, PCounter, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PTooltip, PaperlessModule };
|
|
1210
|
+
export { CUSTOM_DIRECTIVES, PAccordion, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PContentSlider, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PInputGroup, PLayout, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavbar, PNavigationItem, PPagination, PPaginationItem, PProfile, PSegmentContainer, PSegmentItem, PSliderIndicator, PStatus, PStepper, PStepperItem, PStepperLine, PTabGroup, PTabItem, PTag, PTooltip, PaginationDirective, PaperlessModule };
|
|
305
1211
|
//# sourceMappingURL=paperless-angular.mjs.map
|