@paperless/angular 0.1.0-alpha.11 → 0.1.0-alpha.110
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 +796 -45
- package/esm2020/lib/stencil/index.mjs +31 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/paperless-angular.mjs +884 -52
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +884 -52
- 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 +303 -13
- 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,19 +336,21 @@ 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,
|
|
125
|
-
template: '<ng-content></ng-content>'
|
|
352
|
+
template: '<ng-content></ng-content>',
|
|
353
|
+
inputs: ['size', 'variant']
|
|
126
354
|
}]
|
|
127
355
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
128
356
|
let PDivider = class PDivider {
|
|
@@ -132,14 +360,14 @@ let PDivider = class PDivider {
|
|
|
132
360
|
this.el = r.nativeElement;
|
|
133
361
|
}
|
|
134
362
|
};
|
|
135
|
-
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
136
|
-
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
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 });
|
|
137
365
|
PDivider = __decorate([
|
|
138
366
|
ProxyCmp({
|
|
139
367
|
defineCustomElementFn: undefined
|
|
140
368
|
})
|
|
141
369
|
], PDivider);
|
|
142
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PDivider, decorators: [{
|
|
143
371
|
type: Component,
|
|
144
372
|
args: [{
|
|
145
373
|
selector: 'p-divider',
|
|
@@ -147,6 +375,77 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
147
375
|
template: '<ng-content></ng-content>'
|
|
148
376
|
}]
|
|
149
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,
|
|
422
|
+
template: '<ng-content></ng-content>'
|
|
423
|
+
}]
|
|
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 }]; } });
|
|
150
449
|
let PHelper = class PHelper {
|
|
151
450
|
constructor(c, r, z) {
|
|
152
451
|
this.z = z;
|
|
@@ -154,19 +453,21 @@ let PHelper = class PHelper {
|
|
|
154
453
|
this.el = r.nativeElement;
|
|
155
454
|
}
|
|
156
455
|
};
|
|
157
|
-
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
158
|
-
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 });
|
|
159
458
|
PHelper = __decorate([
|
|
160
459
|
ProxyCmp({
|
|
161
|
-
defineCustomElementFn: undefined
|
|
460
|
+
defineCustomElementFn: undefined,
|
|
461
|
+
inputs: ['placement']
|
|
162
462
|
})
|
|
163
463
|
], PHelper);
|
|
164
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PHelper, decorators: [{
|
|
165
465
|
type: Component,
|
|
166
466
|
args: [{
|
|
167
467
|
selector: 'p-helper',
|
|
168
468
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
169
|
-
template: '<ng-content></ng-content>'
|
|
469
|
+
template: '<ng-content></ng-content>',
|
|
470
|
+
inputs: ['placement']
|
|
170
471
|
}]
|
|
171
472
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
172
473
|
let PIcon = class PIcon {
|
|
@@ -176,15 +477,15 @@ let PIcon = class PIcon {
|
|
|
176
477
|
this.el = r.nativeElement;
|
|
177
478
|
}
|
|
178
479
|
};
|
|
179
|
-
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
180
|
-
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 });
|
|
181
482
|
PIcon = __decorate([
|
|
182
483
|
ProxyCmp({
|
|
183
484
|
defineCustomElementFn: undefined,
|
|
184
485
|
inputs: ['flip', 'rotate', 'size', 'variant']
|
|
185
486
|
})
|
|
186
487
|
], PIcon);
|
|
187
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIcon, decorators: [{
|
|
188
489
|
type: Component,
|
|
189
490
|
args: [{
|
|
190
491
|
selector: 'p-icon',
|
|
@@ -200,15 +501,15 @@ let PIllustration = class PIllustration {
|
|
|
200
501
|
this.el = r.nativeElement;
|
|
201
502
|
}
|
|
202
503
|
};
|
|
203
|
-
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
204
|
-
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 });
|
|
205
506
|
PIllustration = __decorate([
|
|
206
507
|
ProxyCmp({
|
|
207
508
|
defineCustomElementFn: undefined,
|
|
208
509
|
inputs: ['variant']
|
|
209
510
|
})
|
|
210
511
|
], PIllustration);
|
|
211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PIllustration, decorators: [{
|
|
212
513
|
type: Component,
|
|
213
514
|
args: [{
|
|
214
515
|
selector: 'p-illustration',
|
|
@@ -224,15 +525,15 @@ let PInfoPanel = class PInfoPanel {
|
|
|
224
525
|
this.el = r.nativeElement;
|
|
225
526
|
}
|
|
226
527
|
};
|
|
227
|
-
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
228
|
-
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 });
|
|
229
530
|
PInfoPanel = __decorate([
|
|
230
531
|
ProxyCmp({
|
|
231
532
|
defineCustomElementFn: undefined,
|
|
232
533
|
inputs: ['closeable', 'content', 'header', 'variant']
|
|
233
534
|
})
|
|
234
535
|
], PInfoPanel);
|
|
235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PInfoPanel, decorators: [{
|
|
236
537
|
type: Component,
|
|
237
538
|
args: [{
|
|
238
539
|
selector: 'p-info-panel',
|
|
@@ -241,6 +542,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
241
542
|
inputs: ['closeable', 'content', 'header', 'variant']
|
|
242
543
|
}]
|
|
243
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 }]; } });
|
|
244
593
|
let PLoader = class PLoader {
|
|
245
594
|
constructor(c, r, z) {
|
|
246
595
|
this.z = z;
|
|
@@ -248,15 +597,15 @@ let PLoader = class PLoader {
|
|
|
248
597
|
this.el = r.nativeElement;
|
|
249
598
|
}
|
|
250
599
|
};
|
|
251
|
-
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
252
|
-
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 });
|
|
253
602
|
PLoader = __decorate([
|
|
254
603
|
ProxyCmp({
|
|
255
604
|
defineCustomElementFn: undefined,
|
|
256
605
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
257
606
|
})
|
|
258
607
|
], PLoader);
|
|
259
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PLoader, decorators: [{
|
|
260
609
|
type: Component,
|
|
261
610
|
args: [{
|
|
262
611
|
selector: 'p-loader',
|
|
@@ -265,6 +614,198 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
265
614
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
266
615
|
}]
|
|
267
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 }]; } });
|
|
268
809
|
let PPagination = class PPagination {
|
|
269
810
|
constructor(c, r, z) {
|
|
270
811
|
this.z = z;
|
|
@@ -273,15 +814,15 @@ let PPagination = class PPagination {
|
|
|
273
814
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
274
815
|
}
|
|
275
816
|
};
|
|
276
|
-
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
277
|
-
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
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 });
|
|
278
819
|
PPagination = __decorate([
|
|
279
820
|
ProxyCmp({
|
|
280
821
|
defineCustomElementFn: undefined,
|
|
281
822
|
inputs: ['page', 'pageSize', 'total']
|
|
282
823
|
})
|
|
283
824
|
], PPagination);
|
|
284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
825
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPagination, decorators: [{
|
|
285
826
|
type: Component,
|
|
286
827
|
args: [{
|
|
287
828
|
selector: 'p-pagination',
|
|
@@ -297,15 +838,15 @@ let PPaginationItem = class PPaginationItem {
|
|
|
297
838
|
this.el = r.nativeElement;
|
|
298
839
|
}
|
|
299
840
|
};
|
|
300
|
-
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
301
|
-
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
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 });
|
|
302
843
|
PPaginationItem = __decorate([
|
|
303
844
|
ProxyCmp({
|
|
304
845
|
defineCustomElementFn: undefined,
|
|
305
846
|
inputs: ['active']
|
|
306
847
|
})
|
|
307
848
|
], PPaginationItem);
|
|
308
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PPaginationItem, decorators: [{
|
|
309
850
|
type: Component,
|
|
310
851
|
args: [{
|
|
311
852
|
selector: 'p-pagination-item',
|
|
@@ -314,56 +855,347 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
314
855
|
inputs: ['active']
|
|
315
856
|
}]
|
|
316
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 }]; } });
|
|
317
1118
|
let PTooltip = class PTooltip {
|
|
318
1119
|
constructor(c, r, z) {
|
|
319
1120
|
this.z = z;
|
|
320
1121
|
c.detach();
|
|
321
1122
|
this.el = r.nativeElement;
|
|
1123
|
+
proxyOutputs(this, this.el, ['isOpen']);
|
|
322
1124
|
}
|
|
323
1125
|
};
|
|
324
|
-
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
325
|
-
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 });
|
|
326
1128
|
PTooltip = __decorate([
|
|
327
1129
|
ProxyCmp({
|
|
328
1130
|
defineCustomElementFn: undefined,
|
|
329
|
-
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
1131
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
|
|
330
1132
|
})
|
|
331
1133
|
], PTooltip);
|
|
332
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.1", ngImport: i0, type: PTooltip, decorators: [{
|
|
333
1135
|
type: Component,
|
|
334
1136
|
args: [{
|
|
335
1137
|
selector: 'p-tooltip',
|
|
336
1138
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
337
1139
|
template: '<ng-content></ng-content>',
|
|
338
|
-
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
1140
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'strategy', 'variant']
|
|
339
1141
|
}]
|
|
340
1142
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
341
1143
|
|
|
342
1144
|
const DIRECTIVES = [
|
|
1145
|
+
PAccordion,
|
|
343
1146
|
PAvatar,
|
|
1147
|
+
PAvatarGroup,
|
|
344
1148
|
PButton,
|
|
1149
|
+
PCardBody,
|
|
1150
|
+
PCardContainer,
|
|
1151
|
+
PCardHeader,
|
|
1152
|
+
PContentSlider,
|
|
345
1153
|
PCounter,
|
|
346
1154
|
PDivider,
|
|
1155
|
+
PDropdown,
|
|
1156
|
+
PDropdownMenuContainer,
|
|
1157
|
+
PDropdownMenuItem,
|
|
347
1158
|
PHelper,
|
|
348
1159
|
PIcon,
|
|
349
1160
|
PIllustration,
|
|
350
1161
|
PInfoPanel,
|
|
1162
|
+
PInputGroup,
|
|
1163
|
+
PLayout,
|
|
351
1164
|
PLoader,
|
|
1165
|
+
PModal,
|
|
1166
|
+
PModalBackdrop,
|
|
1167
|
+
PModalBody,
|
|
1168
|
+
PModalContainer,
|
|
1169
|
+
PModalFooter,
|
|
1170
|
+
PModalHeader,
|
|
1171
|
+
PNavbar,
|
|
1172
|
+
PNavigationItem,
|
|
352
1173
|
PPagination,
|
|
353
1174
|
PPaginationItem,
|
|
1175
|
+
PProfile,
|
|
1176
|
+
PSegmentContainer,
|
|
1177
|
+
PSegmentItem,
|
|
1178
|
+
PSliderIndicator,
|
|
1179
|
+
PStatus,
|
|
1180
|
+
PStepper,
|
|
1181
|
+
PStepperItem,
|
|
1182
|
+
PStepperLine,
|
|
1183
|
+
PTabGroup,
|
|
1184
|
+
PTabItem,
|
|
1185
|
+
PTag,
|
|
354
1186
|
PTooltip
|
|
355
1187
|
];
|
|
356
1188
|
|
|
357
1189
|
class PaperlessModule {
|
|
358
1190
|
}
|
|
359
|
-
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
360
|
-
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
361
|
-
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
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: [{
|
|
363
1195
|
type: NgModule,
|
|
364
1196
|
args: [{
|
|
365
|
-
declarations: [...DIRECTIVES],
|
|
366
|
-
exports: [...DIRECTIVES],
|
|
1197
|
+
declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
1198
|
+
exports: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
367
1199
|
}]
|
|
368
1200
|
}] });
|
|
369
1201
|
|
|
@@ -375,5 +1207,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
375
1207
|
* Generated bundle index. Do not edit.
|
|
376
1208
|
*/
|
|
377
1209
|
|
|
378
|
-
export { PAvatar, PButton, PCounter, PDivider, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PPagination, PPaginationItem, 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 };
|
|
379
1211
|
//# sourceMappingURL=paperless-angular.mjs.map
|