@paperless/angular 0.1.0-alpha.5 → 0.1.0-alpha.50
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 +18 -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 +681 -20
- package/esm2020/lib/stencil/index.mjs +28 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/paperless-angular.mjs +769 -27
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +769 -27
- 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 +256 -5
- 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.1.1", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
38
|
+
ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.1", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.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.1.1", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
+
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.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.1.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,54 @@ function ProxyCmp(opts) {
|
|
|
54
135
|
return decorator;
|
|
55
136
|
}
|
|
56
137
|
|
|
138
|
+
let PAvatar = class PAvatar {
|
|
139
|
+
constructor(c, r, z) {
|
|
140
|
+
this.z = z;
|
|
141
|
+
c.detach();
|
|
142
|
+
this.el = r.nativeElement;
|
|
143
|
+
}
|
|
144
|
+
};
|
|
145
|
+
PAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
146
|
+
PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
147
|
+
PAvatar = __decorate([
|
|
148
|
+
ProxyCmp({
|
|
149
|
+
defineCustomElementFn: undefined,
|
|
150
|
+
inputs: ['defaultImage', 'size', 'src', 'variant']
|
|
151
|
+
})
|
|
152
|
+
], PAvatar);
|
|
153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PAvatar, decorators: [{
|
|
154
|
+
type: Component,
|
|
155
|
+
args: [{
|
|
156
|
+
selector: 'p-avatar',
|
|
157
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
158
|
+
template: '<ng-content></ng-content>',
|
|
159
|
+
inputs: ['defaultImage', 'size', 'src', 'variant']
|
|
160
|
+
}]
|
|
161
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
162
|
+
let PAvatarGroup = class PAvatarGroup {
|
|
163
|
+
constructor(c, r, z) {
|
|
164
|
+
this.z = z;
|
|
165
|
+
c.detach();
|
|
166
|
+
this.el = r.nativeElement;
|
|
167
|
+
}
|
|
168
|
+
};
|
|
169
|
+
PAvatarGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PAvatarGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
170
|
+
PAvatarGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PAvatarGroup, selector: "p-avatar-group", inputs: { extra: "extra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
171
|
+
PAvatarGroup = __decorate([
|
|
172
|
+
ProxyCmp({
|
|
173
|
+
defineCustomElementFn: undefined,
|
|
174
|
+
inputs: ['extra']
|
|
175
|
+
})
|
|
176
|
+
], PAvatarGroup);
|
|
177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PAvatarGroup, decorators: [{
|
|
178
|
+
type: Component,
|
|
179
|
+
args: [{
|
|
180
|
+
selector: 'p-avatar-group',
|
|
181
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
182
|
+
template: '<ng-content></ng-content>',
|
|
183
|
+
inputs: ['extra']
|
|
184
|
+
}]
|
|
185
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
57
186
|
let PButton = class PButton {
|
|
58
187
|
constructor(c, r, z) {
|
|
59
188
|
this.z = z;
|
|
@@ -62,21 +191,230 @@ let PButton = class PButton {
|
|
|
62
191
|
proxyOutputs(this, this.el, ['onClick']);
|
|
63
192
|
}
|
|
64
193
|
};
|
|
65
|
-
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
66
|
-
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
194
|
+
PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
195
|
+
PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
67
196
|
PButton = __decorate([
|
|
68
197
|
ProxyCmp({
|
|
69
198
|
defineCustomElementFn: undefined,
|
|
70
|
-
inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
|
|
199
|
+
inputs: ['chevron', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant']
|
|
71
200
|
})
|
|
72
201
|
], PButton);
|
|
73
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
202
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PButton, decorators: [{
|
|
74
203
|
type: Component,
|
|
75
204
|
args: [{
|
|
76
205
|
selector: 'p-button',
|
|
77
206
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
78
207
|
template: '<ng-content></ng-content>',
|
|
79
|
-
inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
|
|
208
|
+
inputs: ['chevron', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant']
|
|
209
|
+
}]
|
|
210
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
211
|
+
let PCardBody = class PCardBody {
|
|
212
|
+
constructor(c, r, z) {
|
|
213
|
+
this.z = z;
|
|
214
|
+
c.detach();
|
|
215
|
+
this.el = r.nativeElement;
|
|
216
|
+
}
|
|
217
|
+
};
|
|
218
|
+
PCardBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PCardBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
219
|
+
PCardBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PCardBody, selector: "p-card-body", inputs: { inheritText: "inheritText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
220
|
+
PCardBody = __decorate([
|
|
221
|
+
ProxyCmp({
|
|
222
|
+
defineCustomElementFn: undefined,
|
|
223
|
+
inputs: ['inheritText']
|
|
224
|
+
})
|
|
225
|
+
], PCardBody);
|
|
226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PCardBody, decorators: [{
|
|
227
|
+
type: Component,
|
|
228
|
+
args: [{
|
|
229
|
+
selector: 'p-card-body',
|
|
230
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
231
|
+
template: '<ng-content></ng-content>',
|
|
232
|
+
inputs: ['inheritText']
|
|
233
|
+
}]
|
|
234
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
235
|
+
let PCardContainer = class PCardContainer {
|
|
236
|
+
constructor(c, r, z) {
|
|
237
|
+
this.z = z;
|
|
238
|
+
c.detach();
|
|
239
|
+
this.el = r.nativeElement;
|
|
240
|
+
}
|
|
241
|
+
};
|
|
242
|
+
PCardContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PCardContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
243
|
+
PCardContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PCardContainer, selector: "p-card-container", inputs: { hoverable: "hoverable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
244
|
+
PCardContainer = __decorate([
|
|
245
|
+
ProxyCmp({
|
|
246
|
+
defineCustomElementFn: undefined,
|
|
247
|
+
inputs: ['hoverable']
|
|
248
|
+
})
|
|
249
|
+
], PCardContainer);
|
|
250
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PCardContainer, decorators: [{
|
|
251
|
+
type: Component,
|
|
252
|
+
args: [{
|
|
253
|
+
selector: 'p-card-container',
|
|
254
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
255
|
+
template: '<ng-content></ng-content>',
|
|
256
|
+
inputs: ['hoverable']
|
|
257
|
+
}]
|
|
258
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
259
|
+
let PCardHeader = class PCardHeader {
|
|
260
|
+
constructor(c, r, z) {
|
|
261
|
+
this.z = z;
|
|
262
|
+
c.detach();
|
|
263
|
+
this.el = r.nativeElement;
|
|
264
|
+
}
|
|
265
|
+
};
|
|
266
|
+
PCardHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
267
|
+
PCardHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
268
|
+
PCardHeader = __decorate([
|
|
269
|
+
ProxyCmp({
|
|
270
|
+
defineCustomElementFn: undefined,
|
|
271
|
+
inputs: ['arrow', 'header']
|
|
272
|
+
})
|
|
273
|
+
], PCardHeader);
|
|
274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PCardHeader, decorators: [{
|
|
275
|
+
type: Component,
|
|
276
|
+
args: [{
|
|
277
|
+
selector: 'p-card-header',
|
|
278
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
279
|
+
template: '<ng-content></ng-content>',
|
|
280
|
+
inputs: ['arrow', 'header']
|
|
281
|
+
}]
|
|
282
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
283
|
+
let PCounter = class PCounter {
|
|
284
|
+
constructor(c, r, z) {
|
|
285
|
+
this.z = z;
|
|
286
|
+
c.detach();
|
|
287
|
+
this.el = r.nativeElement;
|
|
288
|
+
}
|
|
289
|
+
};
|
|
290
|
+
PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
291
|
+
PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PCounter, selector: "p-counter", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
292
|
+
PCounter = __decorate([
|
|
293
|
+
ProxyCmp({
|
|
294
|
+
defineCustomElementFn: undefined
|
|
295
|
+
})
|
|
296
|
+
], PCounter);
|
|
297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PCounter, decorators: [{
|
|
298
|
+
type: Component,
|
|
299
|
+
args: [{
|
|
300
|
+
selector: 'p-counter',
|
|
301
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
302
|
+
template: '<ng-content></ng-content>'
|
|
303
|
+
}]
|
|
304
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
305
|
+
let PDivider = class PDivider {
|
|
306
|
+
constructor(c, r, z) {
|
|
307
|
+
this.z = z;
|
|
308
|
+
c.detach();
|
|
309
|
+
this.el = r.nativeElement;
|
|
310
|
+
}
|
|
311
|
+
};
|
|
312
|
+
PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
313
|
+
PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PDivider, selector: "p-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
314
|
+
PDivider = __decorate([
|
|
315
|
+
ProxyCmp({
|
|
316
|
+
defineCustomElementFn: undefined
|
|
317
|
+
})
|
|
318
|
+
], PDivider);
|
|
319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PDivider, decorators: [{
|
|
320
|
+
type: Component,
|
|
321
|
+
args: [{
|
|
322
|
+
selector: 'p-divider',
|
|
323
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
324
|
+
template: '<ng-content></ng-content>'
|
|
325
|
+
}]
|
|
326
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
327
|
+
let PDropdown = class PDropdown {
|
|
328
|
+
constructor(c, r, z) {
|
|
329
|
+
this.z = z;
|
|
330
|
+
c.detach();
|
|
331
|
+
this.el = r.nativeElement;
|
|
332
|
+
proxyOutputs(this, this.el, ['isOpen']);
|
|
333
|
+
}
|
|
334
|
+
};
|
|
335
|
+
PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
336
|
+
PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PDropdown, selector: "p-dropdown", inputs: { disableTriggerClick: "disableTriggerClick", insideClick: "insideClick", placement: "placement", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
337
|
+
PDropdown = __decorate([
|
|
338
|
+
ProxyCmp({
|
|
339
|
+
defineCustomElementFn: undefined,
|
|
340
|
+
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show']
|
|
341
|
+
})
|
|
342
|
+
], PDropdown);
|
|
343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PDropdown, decorators: [{
|
|
344
|
+
type: Component,
|
|
345
|
+
args: [{
|
|
346
|
+
selector: 'p-dropdown',
|
|
347
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
348
|
+
template: '<ng-content></ng-content>',
|
|
349
|
+
inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show']
|
|
350
|
+
}]
|
|
351
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
352
|
+
let PDropdownMenuContainer = class PDropdownMenuContainer {
|
|
353
|
+
constructor(c, r, z) {
|
|
354
|
+
this.z = z;
|
|
355
|
+
c.detach();
|
|
356
|
+
this.el = r.nativeElement;
|
|
357
|
+
}
|
|
358
|
+
};
|
|
359
|
+
PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PDropdownMenuContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
360
|
+
PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
361
|
+
PDropdownMenuContainer = __decorate([
|
|
362
|
+
ProxyCmp({
|
|
363
|
+
defineCustomElementFn: undefined
|
|
364
|
+
})
|
|
365
|
+
], PDropdownMenuContainer);
|
|
366
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
|
|
367
|
+
type: Component,
|
|
368
|
+
args: [{
|
|
369
|
+
selector: 'p-dropdown-menu-container',
|
|
370
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
371
|
+
template: '<ng-content></ng-content>'
|
|
372
|
+
}]
|
|
373
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
374
|
+
let PDropdownMenuItem = class PDropdownMenuItem {
|
|
375
|
+
constructor(c, r, z) {
|
|
376
|
+
this.z = z;
|
|
377
|
+
c.detach();
|
|
378
|
+
this.el = r.nativeElement;
|
|
379
|
+
}
|
|
380
|
+
};
|
|
381
|
+
PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PDropdownMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
382
|
+
PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PDropdownMenuItem, selector: "p-dropdown-menu-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
383
|
+
PDropdownMenuItem = __decorate([
|
|
384
|
+
ProxyCmp({
|
|
385
|
+
defineCustomElementFn: undefined,
|
|
386
|
+
inputs: ['active']
|
|
387
|
+
})
|
|
388
|
+
], PDropdownMenuItem);
|
|
389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PDropdownMenuItem, decorators: [{
|
|
390
|
+
type: Component,
|
|
391
|
+
args: [{
|
|
392
|
+
selector: 'p-dropdown-menu-item',
|
|
393
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
394
|
+
template: '<ng-content></ng-content>',
|
|
395
|
+
inputs: ['active']
|
|
396
|
+
}]
|
|
397
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
398
|
+
let PHelper = class PHelper {
|
|
399
|
+
constructor(c, r, z) {
|
|
400
|
+
this.z = z;
|
|
401
|
+
c.detach();
|
|
402
|
+
this.el = r.nativeElement;
|
|
403
|
+
}
|
|
404
|
+
};
|
|
405
|
+
PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PHelper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
406
|
+
PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PHelper, selector: "p-helper", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
407
|
+
PHelper = __decorate([
|
|
408
|
+
ProxyCmp({
|
|
409
|
+
defineCustomElementFn: undefined
|
|
410
|
+
})
|
|
411
|
+
], PHelper);
|
|
412
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PHelper, decorators: [{
|
|
413
|
+
type: Component,
|
|
414
|
+
args: [{
|
|
415
|
+
selector: 'p-helper',
|
|
416
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
417
|
+
template: '<ng-content></ng-content>'
|
|
80
418
|
}]
|
|
81
419
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
82
420
|
let PIcon = class PIcon {
|
|
@@ -86,15 +424,15 @@ let PIcon = class PIcon {
|
|
|
86
424
|
this.el = r.nativeElement;
|
|
87
425
|
}
|
|
88
426
|
};
|
|
89
|
-
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
90
|
-
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
427
|
+
PIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
428
|
+
PIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
91
429
|
PIcon = __decorate([
|
|
92
430
|
ProxyCmp({
|
|
93
431
|
defineCustomElementFn: undefined,
|
|
94
432
|
inputs: ['flip', 'rotate', 'size', 'variant']
|
|
95
433
|
})
|
|
96
434
|
], PIcon);
|
|
97
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PIcon, decorators: [{
|
|
98
436
|
type: Component,
|
|
99
437
|
args: [{
|
|
100
438
|
selector: 'p-icon',
|
|
@@ -110,15 +448,15 @@ let PIllustration = class PIllustration {
|
|
|
110
448
|
this.el = r.nativeElement;
|
|
111
449
|
}
|
|
112
450
|
};
|
|
113
|
-
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
114
|
-
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
451
|
+
PIllustration.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PIllustration, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
452
|
+
PIllustration.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PIllustration, selector: "p-illustration", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
115
453
|
PIllustration = __decorate([
|
|
116
454
|
ProxyCmp({
|
|
117
455
|
defineCustomElementFn: undefined,
|
|
118
456
|
inputs: ['variant']
|
|
119
457
|
})
|
|
120
458
|
], PIllustration);
|
|
121
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PIllustration, decorators: [{
|
|
122
460
|
type: Component,
|
|
123
461
|
args: [{
|
|
124
462
|
selector: 'p-illustration',
|
|
@@ -127,6 +465,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
127
465
|
inputs: ['variant']
|
|
128
466
|
}]
|
|
129
467
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
468
|
+
let PInfoPanel = class PInfoPanel {
|
|
469
|
+
constructor(c, r, z) {
|
|
470
|
+
this.z = z;
|
|
471
|
+
c.detach();
|
|
472
|
+
this.el = r.nativeElement;
|
|
473
|
+
}
|
|
474
|
+
};
|
|
475
|
+
PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PInfoPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
476
|
+
PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
477
|
+
PInfoPanel = __decorate([
|
|
478
|
+
ProxyCmp({
|
|
479
|
+
defineCustomElementFn: undefined,
|
|
480
|
+
inputs: ['closeable', 'content', 'header', 'variant']
|
|
481
|
+
})
|
|
482
|
+
], PInfoPanel);
|
|
483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PInfoPanel, decorators: [{
|
|
484
|
+
type: Component,
|
|
485
|
+
args: [{
|
|
486
|
+
selector: 'p-info-panel',
|
|
487
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
488
|
+
template: '<ng-content></ng-content>',
|
|
489
|
+
inputs: ['closeable', 'content', 'header', 'variant']
|
|
490
|
+
}]
|
|
491
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
130
492
|
let PLoader = class PLoader {
|
|
131
493
|
constructor(c, r, z) {
|
|
132
494
|
this.z = z;
|
|
@@ -134,15 +496,15 @@ let PLoader = class PLoader {
|
|
|
134
496
|
this.el = r.nativeElement;
|
|
135
497
|
}
|
|
136
498
|
};
|
|
137
|
-
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
138
|
-
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
499
|
+
PLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
500
|
+
PLoader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
139
501
|
PLoader = __decorate([
|
|
140
502
|
ProxyCmp({
|
|
141
503
|
defineCustomElementFn: undefined,
|
|
142
504
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
143
505
|
})
|
|
144
506
|
], PLoader);
|
|
145
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PLoader, decorators: [{
|
|
146
508
|
type: Component,
|
|
147
509
|
args: [{
|
|
148
510
|
selector: 'p-loader',
|
|
@@ -151,6 +513,359 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
151
513
|
inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
|
|
152
514
|
}]
|
|
153
515
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
516
|
+
let PModal = class PModal {
|
|
517
|
+
constructor(c, r, z) {
|
|
518
|
+
this.z = z;
|
|
519
|
+
c.detach();
|
|
520
|
+
this.el = r.nativeElement;
|
|
521
|
+
}
|
|
522
|
+
};
|
|
523
|
+
PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
524
|
+
PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PModal, selector: "p-modal", inputs: { header: "header", show: "show", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
525
|
+
PModal = __decorate([
|
|
526
|
+
ProxyCmp({
|
|
527
|
+
defineCustomElementFn: undefined,
|
|
528
|
+
inputs: ['header', 'show', 'size', 'variant']
|
|
529
|
+
})
|
|
530
|
+
], PModal);
|
|
531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModal, decorators: [{
|
|
532
|
+
type: Component,
|
|
533
|
+
args: [{
|
|
534
|
+
selector: 'p-modal',
|
|
535
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
536
|
+
template: '<ng-content></ng-content>',
|
|
537
|
+
inputs: ['header', 'show', 'size', 'variant']
|
|
538
|
+
}]
|
|
539
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
540
|
+
let PModalBackdrop = class PModalBackdrop {
|
|
541
|
+
constructor(c, r, z) {
|
|
542
|
+
this.z = z;
|
|
543
|
+
c.detach();
|
|
544
|
+
this.el = r.nativeElement;
|
|
545
|
+
}
|
|
546
|
+
};
|
|
547
|
+
PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
548
|
+
PModalBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PModalBackdrop, selector: "p-modal-backdrop", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
549
|
+
PModalBackdrop = __decorate([
|
|
550
|
+
ProxyCmp({
|
|
551
|
+
defineCustomElementFn: undefined
|
|
552
|
+
})
|
|
553
|
+
], PModalBackdrop);
|
|
554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalBackdrop, decorators: [{
|
|
555
|
+
type: Component,
|
|
556
|
+
args: [{
|
|
557
|
+
selector: 'p-modal-backdrop',
|
|
558
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
559
|
+
template: '<ng-content></ng-content>'
|
|
560
|
+
}]
|
|
561
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
562
|
+
let PModalBody = class PModalBody {
|
|
563
|
+
constructor(c, r, z) {
|
|
564
|
+
this.z = z;
|
|
565
|
+
c.detach();
|
|
566
|
+
this.el = r.nativeElement;
|
|
567
|
+
}
|
|
568
|
+
};
|
|
569
|
+
PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
570
|
+
PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PModalBody, selector: "p-modal-body", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
571
|
+
PModalBody = __decorate([
|
|
572
|
+
ProxyCmp({
|
|
573
|
+
defineCustomElementFn: undefined,
|
|
574
|
+
inputs: ['variant']
|
|
575
|
+
})
|
|
576
|
+
], PModalBody);
|
|
577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalBody, decorators: [{
|
|
578
|
+
type: Component,
|
|
579
|
+
args: [{
|
|
580
|
+
selector: 'p-modal-body',
|
|
581
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
582
|
+
template: '<ng-content></ng-content>',
|
|
583
|
+
inputs: ['variant']
|
|
584
|
+
}]
|
|
585
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
586
|
+
let PModalContainer = class PModalContainer {
|
|
587
|
+
constructor(c, r, z) {
|
|
588
|
+
this.z = z;
|
|
589
|
+
c.detach();
|
|
590
|
+
this.el = r.nativeElement;
|
|
591
|
+
}
|
|
592
|
+
};
|
|
593
|
+
PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
594
|
+
PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PModalContainer, selector: "p-modal-container", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
595
|
+
PModalContainer = __decorate([
|
|
596
|
+
ProxyCmp({
|
|
597
|
+
defineCustomElementFn: undefined,
|
|
598
|
+
inputs: ['size']
|
|
599
|
+
})
|
|
600
|
+
], PModalContainer);
|
|
601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalContainer, decorators: [{
|
|
602
|
+
type: Component,
|
|
603
|
+
args: [{
|
|
604
|
+
selector: 'p-modal-container',
|
|
605
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
606
|
+
template: '<ng-content></ng-content>',
|
|
607
|
+
inputs: ['size']
|
|
608
|
+
}]
|
|
609
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
610
|
+
let PModalFooter = class PModalFooter {
|
|
611
|
+
constructor(c, r, z) {
|
|
612
|
+
this.z = z;
|
|
613
|
+
c.detach();
|
|
614
|
+
this.el = r.nativeElement;
|
|
615
|
+
}
|
|
616
|
+
};
|
|
617
|
+
PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
618
|
+
PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PModalFooter, selector: "p-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
619
|
+
PModalFooter = __decorate([
|
|
620
|
+
ProxyCmp({
|
|
621
|
+
defineCustomElementFn: undefined
|
|
622
|
+
})
|
|
623
|
+
], PModalFooter);
|
|
624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalFooter, decorators: [{
|
|
625
|
+
type: Component,
|
|
626
|
+
args: [{
|
|
627
|
+
selector: 'p-modal-footer',
|
|
628
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
629
|
+
template: '<ng-content></ng-content>'
|
|
630
|
+
}]
|
|
631
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
632
|
+
let PModalHeader = class PModalHeader {
|
|
633
|
+
constructor(c, r, z) {
|
|
634
|
+
this.z = z;
|
|
635
|
+
c.detach();
|
|
636
|
+
this.el = r.nativeElement;
|
|
637
|
+
}
|
|
638
|
+
};
|
|
639
|
+
PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
640
|
+
PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PModalHeader, selector: "p-modal-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
641
|
+
PModalHeader = __decorate([
|
|
642
|
+
ProxyCmp({
|
|
643
|
+
defineCustomElementFn: undefined
|
|
644
|
+
})
|
|
645
|
+
], PModalHeader);
|
|
646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PModalHeader, decorators: [{
|
|
647
|
+
type: Component,
|
|
648
|
+
args: [{
|
|
649
|
+
selector: 'p-modal-header',
|
|
650
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
651
|
+
template: '<ng-content></ng-content>'
|
|
652
|
+
}]
|
|
653
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
654
|
+
let PNavigationItem = class PNavigationItem {
|
|
655
|
+
constructor(c, r, z) {
|
|
656
|
+
this.z = z;
|
|
657
|
+
c.detach();
|
|
658
|
+
this.el = r.nativeElement;
|
|
659
|
+
}
|
|
660
|
+
};
|
|
661
|
+
PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
662
|
+
PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
663
|
+
PNavigationItem = __decorate([
|
|
664
|
+
ProxyCmp({
|
|
665
|
+
defineCustomElementFn: undefined,
|
|
666
|
+
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
667
|
+
})
|
|
668
|
+
], PNavigationItem);
|
|
669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PNavigationItem, decorators: [{
|
|
670
|
+
type: Component,
|
|
671
|
+
args: [{
|
|
672
|
+
selector: 'p-navigation-item',
|
|
673
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
674
|
+
template: '<ng-content></ng-content>',
|
|
675
|
+
inputs: ['active', 'counter', 'href', 'icon', 'target']
|
|
676
|
+
}]
|
|
677
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
678
|
+
let PPagination = class PPagination {
|
|
679
|
+
constructor(c, r, z) {
|
|
680
|
+
this.z = z;
|
|
681
|
+
c.detach();
|
|
682
|
+
this.el = r.nativeElement;
|
|
683
|
+
proxyOutputs(this, this.el, ['pageChange']);
|
|
684
|
+
}
|
|
685
|
+
};
|
|
686
|
+
PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
687
|
+
PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
688
|
+
PPagination = __decorate([
|
|
689
|
+
ProxyCmp({
|
|
690
|
+
defineCustomElementFn: undefined,
|
|
691
|
+
inputs: ['page', 'pageSize', 'total']
|
|
692
|
+
})
|
|
693
|
+
], PPagination);
|
|
694
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PPagination, decorators: [{
|
|
695
|
+
type: Component,
|
|
696
|
+
args: [{
|
|
697
|
+
selector: 'p-pagination',
|
|
698
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
699
|
+
template: '<ng-content></ng-content>',
|
|
700
|
+
inputs: ['page', 'pageSize', 'total']
|
|
701
|
+
}]
|
|
702
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
703
|
+
let PPaginationItem = class PPaginationItem {
|
|
704
|
+
constructor(c, r, z) {
|
|
705
|
+
this.z = z;
|
|
706
|
+
c.detach();
|
|
707
|
+
this.el = r.nativeElement;
|
|
708
|
+
}
|
|
709
|
+
};
|
|
710
|
+
PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PPaginationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
711
|
+
PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PPaginationItem, selector: "p-pagination-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
712
|
+
PPaginationItem = __decorate([
|
|
713
|
+
ProxyCmp({
|
|
714
|
+
defineCustomElementFn: undefined,
|
|
715
|
+
inputs: ['active']
|
|
716
|
+
})
|
|
717
|
+
], PPaginationItem);
|
|
718
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PPaginationItem, decorators: [{
|
|
719
|
+
type: Component,
|
|
720
|
+
args: [{
|
|
721
|
+
selector: 'p-pagination-item',
|
|
722
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
723
|
+
template: '<ng-content></ng-content>',
|
|
724
|
+
inputs: ['active']
|
|
725
|
+
}]
|
|
726
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
727
|
+
let PSegmentContainer = class PSegmentContainer {
|
|
728
|
+
constructor(c, r, z) {
|
|
729
|
+
this.z = z;
|
|
730
|
+
c.detach();
|
|
731
|
+
this.el = r.nativeElement;
|
|
732
|
+
}
|
|
733
|
+
};
|
|
734
|
+
PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PSegmentContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
735
|
+
PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PSegmentContainer, selector: "p-segment-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
736
|
+
PSegmentContainer = __decorate([
|
|
737
|
+
ProxyCmp({
|
|
738
|
+
defineCustomElementFn: undefined
|
|
739
|
+
})
|
|
740
|
+
], PSegmentContainer);
|
|
741
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PSegmentContainer, decorators: [{
|
|
742
|
+
type: Component,
|
|
743
|
+
args: [{
|
|
744
|
+
selector: 'p-segment-container',
|
|
745
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
746
|
+
template: '<ng-content></ng-content>'
|
|
747
|
+
}]
|
|
748
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
749
|
+
let PSegmentItem = class PSegmentItem {
|
|
750
|
+
constructor(c, r, z) {
|
|
751
|
+
this.z = z;
|
|
752
|
+
c.detach();
|
|
753
|
+
this.el = r.nativeElement;
|
|
754
|
+
}
|
|
755
|
+
};
|
|
756
|
+
PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PSegmentItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
757
|
+
PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
758
|
+
PSegmentItem = __decorate([
|
|
759
|
+
ProxyCmp({
|
|
760
|
+
defineCustomElementFn: undefined,
|
|
761
|
+
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
762
|
+
})
|
|
763
|
+
], PSegmentItem);
|
|
764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PSegmentItem, decorators: [{
|
|
765
|
+
type: Component,
|
|
766
|
+
args: [{
|
|
767
|
+
selector: 'p-segment-item',
|
|
768
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
769
|
+
template: '<ng-content></ng-content>',
|
|
770
|
+
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
771
|
+
}]
|
|
772
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
773
|
+
let PStatus = class PStatus {
|
|
774
|
+
constructor(c, r, z) {
|
|
775
|
+
this.z = z;
|
|
776
|
+
c.detach();
|
|
777
|
+
this.el = r.nativeElement;
|
|
778
|
+
}
|
|
779
|
+
};
|
|
780
|
+
PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
781
|
+
PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
782
|
+
PStatus = __decorate([
|
|
783
|
+
ProxyCmp({
|
|
784
|
+
defineCustomElementFn: undefined,
|
|
785
|
+
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
786
|
+
})
|
|
787
|
+
], PStatus);
|
|
788
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStatus, decorators: [{
|
|
789
|
+
type: Component,
|
|
790
|
+
args: [{
|
|
791
|
+
selector: 'p-status',
|
|
792
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
793
|
+
template: '<ng-content></ng-content>',
|
|
794
|
+
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
795
|
+
}]
|
|
796
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
797
|
+
let PStepper = class PStepper {
|
|
798
|
+
constructor(c, r, z) {
|
|
799
|
+
this.z = z;
|
|
800
|
+
c.detach();
|
|
801
|
+
this.el = r.nativeElement;
|
|
802
|
+
}
|
|
803
|
+
};
|
|
804
|
+
PStepper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
805
|
+
PStepper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PStepper, selector: "p-stepper", inputs: { activeStep: "activeStep", direction: "direction" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
806
|
+
PStepper = __decorate([
|
|
807
|
+
ProxyCmp({
|
|
808
|
+
defineCustomElementFn: undefined,
|
|
809
|
+
inputs: ['activeStep', 'direction']
|
|
810
|
+
})
|
|
811
|
+
], PStepper);
|
|
812
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStepper, decorators: [{
|
|
813
|
+
type: Component,
|
|
814
|
+
args: [{
|
|
815
|
+
selector: 'p-stepper',
|
|
816
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
817
|
+
template: '<ng-content></ng-content>',
|
|
818
|
+
inputs: ['activeStep', 'direction']
|
|
819
|
+
}]
|
|
820
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
821
|
+
let PStepperLine = class PStepperLine {
|
|
822
|
+
constructor(c, r, z) {
|
|
823
|
+
this.z = z;
|
|
824
|
+
c.detach();
|
|
825
|
+
this.el = r.nativeElement;
|
|
826
|
+
}
|
|
827
|
+
};
|
|
828
|
+
PStepperLine.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStepperLine, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
829
|
+
PStepperLine.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.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 });
|
|
830
|
+
PStepperLine = __decorate([
|
|
831
|
+
ProxyCmp({
|
|
832
|
+
defineCustomElementFn: undefined,
|
|
833
|
+
inputs: ['active', 'direction']
|
|
834
|
+
})
|
|
835
|
+
], PStepperLine);
|
|
836
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStepperLine, decorators: [{
|
|
837
|
+
type: Component,
|
|
838
|
+
args: [{
|
|
839
|
+
selector: 'p-stepper-line',
|
|
840
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
841
|
+
template: '<ng-content></ng-content>',
|
|
842
|
+
inputs: ['active', 'direction']
|
|
843
|
+
}]
|
|
844
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
845
|
+
let PStepperStep = class PStepperStep {
|
|
846
|
+
constructor(c, r, z) {
|
|
847
|
+
this.z = z;
|
|
848
|
+
c.detach();
|
|
849
|
+
this.el = r.nativeElement;
|
|
850
|
+
}
|
|
851
|
+
};
|
|
852
|
+
PStepperStep.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStepperStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
853
|
+
PStepperStep.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PStepperStep, selector: "p-stepper-step", inputs: { active: "active", align: "align", direction: "direction", finished: "finished" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
854
|
+
PStepperStep = __decorate([
|
|
855
|
+
ProxyCmp({
|
|
856
|
+
defineCustomElementFn: undefined,
|
|
857
|
+
inputs: ['active', 'align', 'direction', 'finished']
|
|
858
|
+
})
|
|
859
|
+
], PStepperStep);
|
|
860
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStepperStep, decorators: [{
|
|
861
|
+
type: Component,
|
|
862
|
+
args: [{
|
|
863
|
+
selector: 'p-stepper-step',
|
|
864
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
865
|
+
template: '<ng-content></ng-content>',
|
|
866
|
+
inputs: ['active', 'align', 'direction', 'finished']
|
|
867
|
+
}]
|
|
868
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
154
869
|
let PTooltip = class PTooltip {
|
|
155
870
|
constructor(c, r, z) {
|
|
156
871
|
this.z = z;
|
|
@@ -158,42 +873,69 @@ let PTooltip = class PTooltip {
|
|
|
158
873
|
this.el = r.nativeElement;
|
|
159
874
|
}
|
|
160
875
|
};
|
|
161
|
-
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
162
|
-
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
876
|
+
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
877
|
+
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PTooltip, selector: "p-tooltip", inputs: { canManuallyClose: "canManuallyClose", placement: "placement", popover: "popover", show: "show", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
163
878
|
PTooltip = __decorate([
|
|
164
879
|
ProxyCmp({
|
|
165
880
|
defineCustomElementFn: undefined,
|
|
166
|
-
inputs: ['
|
|
881
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
167
882
|
})
|
|
168
883
|
], PTooltip);
|
|
169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
884
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PTooltip, decorators: [{
|
|
170
885
|
type: Component,
|
|
171
886
|
args: [{
|
|
172
887
|
selector: 'p-tooltip',
|
|
173
888
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
174
889
|
template: '<ng-content></ng-content>',
|
|
175
|
-
inputs: ['
|
|
890
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
176
891
|
}]
|
|
177
892
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
178
893
|
|
|
179
894
|
const DIRECTIVES = [
|
|
895
|
+
PAvatar,
|
|
896
|
+
PAvatarGroup,
|
|
180
897
|
PButton,
|
|
898
|
+
PCardBody,
|
|
899
|
+
PCardContainer,
|
|
900
|
+
PCardHeader,
|
|
901
|
+
PCounter,
|
|
902
|
+
PDivider,
|
|
903
|
+
PDropdown,
|
|
904
|
+
PDropdownMenuContainer,
|
|
905
|
+
PDropdownMenuItem,
|
|
906
|
+
PHelper,
|
|
181
907
|
PIcon,
|
|
182
908
|
PIllustration,
|
|
909
|
+
PInfoPanel,
|
|
183
910
|
PLoader,
|
|
911
|
+
PModal,
|
|
912
|
+
PModalBackdrop,
|
|
913
|
+
PModalBody,
|
|
914
|
+
PModalContainer,
|
|
915
|
+
PModalFooter,
|
|
916
|
+
PModalHeader,
|
|
917
|
+
PNavigationItem,
|
|
918
|
+
PPagination,
|
|
919
|
+
PPaginationItem,
|
|
920
|
+
PSegmentContainer,
|
|
921
|
+
PSegmentItem,
|
|
922
|
+
PStatus,
|
|
923
|
+
PStepper,
|
|
924
|
+
PStepperLine,
|
|
925
|
+
PStepperStep,
|
|
184
926
|
PTooltip
|
|
185
927
|
];
|
|
186
928
|
|
|
187
929
|
class PaperlessModule {
|
|
188
930
|
}
|
|
189
|
-
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
190
|
-
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
191
|
-
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
931
|
+
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
932
|
+
PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.1", ngImport: i0, type: PaperlessModule, declarations: [PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperLine, PStepperStep, PTooltip, PaginationDirective], exports: [PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperLine, PStepperStep, PTooltip, PaginationDirective] });
|
|
933
|
+
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PaperlessModule });
|
|
934
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
193
935
|
type: NgModule,
|
|
194
936
|
args: [{
|
|
195
|
-
declarations: [...DIRECTIVES],
|
|
196
|
-
exports: [...DIRECTIVES],
|
|
937
|
+
declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
938
|
+
exports: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
197
939
|
}]
|
|
198
940
|
}] });
|
|
199
941
|
|
|
@@ -205,5 +947,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
205
947
|
* Generated bundle index. Do not edit.
|
|
206
948
|
*/
|
|
207
949
|
|
|
208
|
-
export { PButton, PIcon, PIllustration, PLoader, PTooltip, PaperlessModule };
|
|
950
|
+
export { CUSTOM_DIRECTIVES, PAvatar, PAvatarGroup, PButton, PCardBody, PCardContainer, PCardHeader, PCounter, PDivider, PDropdown, PDropdownMenuContainer, PDropdownMenuItem, PHelper, PIcon, PIllustration, PInfoPanel, PLoader, PModal, PModalBackdrop, PModalBody, PModalContainer, PModalFooter, PModalHeader, PNavigationItem, PPagination, PPaginationItem, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperLine, PStepperStep, PTooltip, PaginationDirective, PaperlessModule };
|
|
209
951
|
//# sourceMappingURL=paperless-angular.mjs.map
|