@paperless/angular 0.1.0-alpha.5 → 0.1.0-alpha.52
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 +752 -20
- package/esm2020/lib/stencil/index.mjs +31 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/paperless-angular.mjs +840 -27
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +840 -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 +283 -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,427 @@ 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 PProfile = class PProfile {
|
|
728
|
+
constructor(c, r, z) {
|
|
729
|
+
this.z = z;
|
|
730
|
+
c.detach();
|
|
731
|
+
this.el = r.nativeElement;
|
|
732
|
+
}
|
|
733
|
+
};
|
|
734
|
+
PProfile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PProfile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
735
|
+
PProfile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PProfile, selector: "p-profile", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
736
|
+
PProfile = __decorate([
|
|
737
|
+
ProxyCmp({
|
|
738
|
+
defineCustomElementFn: undefined
|
|
739
|
+
})
|
|
740
|
+
], PProfile);
|
|
741
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PProfile, decorators: [{
|
|
742
|
+
type: Component,
|
|
743
|
+
args: [{
|
|
744
|
+
selector: 'p-profile',
|
|
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 PSegmentContainer = class PSegmentContainer {
|
|
750
|
+
constructor(c, r, z) {
|
|
751
|
+
this.z = z;
|
|
752
|
+
c.detach();
|
|
753
|
+
this.el = r.nativeElement;
|
|
754
|
+
}
|
|
755
|
+
};
|
|
756
|
+
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 });
|
|
757
|
+
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 });
|
|
758
|
+
PSegmentContainer = __decorate([
|
|
759
|
+
ProxyCmp({
|
|
760
|
+
defineCustomElementFn: undefined
|
|
761
|
+
})
|
|
762
|
+
], PSegmentContainer);
|
|
763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PSegmentContainer, decorators: [{
|
|
764
|
+
type: Component,
|
|
765
|
+
args: [{
|
|
766
|
+
selector: 'p-segment-container',
|
|
767
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
768
|
+
template: '<ng-content></ng-content>'
|
|
769
|
+
}]
|
|
770
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
771
|
+
let PSegmentItem = class PSegmentItem {
|
|
772
|
+
constructor(c, r, z) {
|
|
773
|
+
this.z = z;
|
|
774
|
+
c.detach();
|
|
775
|
+
this.el = r.nativeElement;
|
|
776
|
+
}
|
|
777
|
+
};
|
|
778
|
+
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 });
|
|
779
|
+
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 });
|
|
780
|
+
PSegmentItem = __decorate([
|
|
781
|
+
ProxyCmp({
|
|
782
|
+
defineCustomElementFn: undefined,
|
|
783
|
+
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
784
|
+
})
|
|
785
|
+
], PSegmentItem);
|
|
786
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PSegmentItem, decorators: [{
|
|
787
|
+
type: Component,
|
|
788
|
+
args: [{
|
|
789
|
+
selector: 'p-segment-item',
|
|
790
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
791
|
+
template: '<ng-content></ng-content>',
|
|
792
|
+
inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
|
|
793
|
+
}]
|
|
794
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
795
|
+
let PStatus = class PStatus {
|
|
796
|
+
constructor(c, r, z) {
|
|
797
|
+
this.z = z;
|
|
798
|
+
c.detach();
|
|
799
|
+
this.el = r.nativeElement;
|
|
800
|
+
}
|
|
801
|
+
};
|
|
802
|
+
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 });
|
|
803
|
+
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 });
|
|
804
|
+
PStatus = __decorate([
|
|
805
|
+
ProxyCmp({
|
|
806
|
+
defineCustomElementFn: undefined,
|
|
807
|
+
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
808
|
+
})
|
|
809
|
+
], PStatus);
|
|
810
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStatus, decorators: [{
|
|
811
|
+
type: Component,
|
|
812
|
+
args: [{
|
|
813
|
+
selector: 'p-status',
|
|
814
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
815
|
+
template: '<ng-content></ng-content>',
|
|
816
|
+
inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
|
|
817
|
+
}]
|
|
818
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
819
|
+
let PStepper = class PStepper {
|
|
820
|
+
constructor(c, r, z) {
|
|
821
|
+
this.z = z;
|
|
822
|
+
c.detach();
|
|
823
|
+
this.el = r.nativeElement;
|
|
824
|
+
}
|
|
825
|
+
};
|
|
826
|
+
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 });
|
|
827
|
+
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 });
|
|
828
|
+
PStepper = __decorate([
|
|
829
|
+
ProxyCmp({
|
|
830
|
+
defineCustomElementFn: undefined,
|
|
831
|
+
inputs: ['activeStep', 'direction']
|
|
832
|
+
})
|
|
833
|
+
], PStepper);
|
|
834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStepper, decorators: [{
|
|
835
|
+
type: Component,
|
|
836
|
+
args: [{
|
|
837
|
+
selector: 'p-stepper',
|
|
838
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
839
|
+
template: '<ng-content></ng-content>',
|
|
840
|
+
inputs: ['activeStep', 'direction']
|
|
841
|
+
}]
|
|
842
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
843
|
+
let PStepperLine = class PStepperLine {
|
|
844
|
+
constructor(c, r, z) {
|
|
845
|
+
this.z = z;
|
|
846
|
+
c.detach();
|
|
847
|
+
this.el = r.nativeElement;
|
|
848
|
+
}
|
|
849
|
+
};
|
|
850
|
+
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 });
|
|
851
|
+
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 });
|
|
852
|
+
PStepperLine = __decorate([
|
|
853
|
+
ProxyCmp({
|
|
854
|
+
defineCustomElementFn: undefined,
|
|
855
|
+
inputs: ['active', 'direction']
|
|
856
|
+
})
|
|
857
|
+
], PStepperLine);
|
|
858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStepperLine, decorators: [{
|
|
859
|
+
type: Component,
|
|
860
|
+
args: [{
|
|
861
|
+
selector: 'p-stepper-line',
|
|
862
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
863
|
+
template: '<ng-content></ng-content>',
|
|
864
|
+
inputs: ['active', 'direction']
|
|
865
|
+
}]
|
|
866
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
867
|
+
let PStepperStep = class PStepperStep {
|
|
868
|
+
constructor(c, r, z) {
|
|
869
|
+
this.z = z;
|
|
870
|
+
c.detach();
|
|
871
|
+
this.el = r.nativeElement;
|
|
872
|
+
}
|
|
873
|
+
};
|
|
874
|
+
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 });
|
|
875
|
+
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 });
|
|
876
|
+
PStepperStep = __decorate([
|
|
877
|
+
ProxyCmp({
|
|
878
|
+
defineCustomElementFn: undefined,
|
|
879
|
+
inputs: ['active', 'align', 'direction', 'finished']
|
|
880
|
+
})
|
|
881
|
+
], PStepperStep);
|
|
882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PStepperStep, decorators: [{
|
|
883
|
+
type: Component,
|
|
884
|
+
args: [{
|
|
885
|
+
selector: 'p-stepper-step',
|
|
886
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
887
|
+
template: '<ng-content></ng-content>',
|
|
888
|
+
inputs: ['active', 'align', 'direction', 'finished']
|
|
889
|
+
}]
|
|
890
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
891
|
+
let PTabGroup = class PTabGroup {
|
|
892
|
+
constructor(c, r, z) {
|
|
893
|
+
this.z = z;
|
|
894
|
+
c.detach();
|
|
895
|
+
this.el = r.nativeElement;
|
|
896
|
+
}
|
|
897
|
+
};
|
|
898
|
+
PTabGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PTabGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
899
|
+
PTabGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PTabGroup, selector: "p-tab-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
900
|
+
PTabGroup = __decorate([
|
|
901
|
+
ProxyCmp({
|
|
902
|
+
defineCustomElementFn: undefined
|
|
903
|
+
})
|
|
904
|
+
], PTabGroup);
|
|
905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PTabGroup, decorators: [{
|
|
906
|
+
type: Component,
|
|
907
|
+
args: [{
|
|
908
|
+
selector: 'p-tab-group',
|
|
909
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
910
|
+
template: '<ng-content></ng-content>'
|
|
911
|
+
}]
|
|
912
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
913
|
+
let PTabItem = class PTabItem {
|
|
914
|
+
constructor(c, r, z) {
|
|
915
|
+
this.z = z;
|
|
916
|
+
c.detach();
|
|
917
|
+
this.el = r.nativeElement;
|
|
918
|
+
}
|
|
919
|
+
};
|
|
920
|
+
PTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
921
|
+
PTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: PTabItem, selector: "p-tab-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
922
|
+
PTabItem = __decorate([
|
|
923
|
+
ProxyCmp({
|
|
924
|
+
defineCustomElementFn: undefined,
|
|
925
|
+
inputs: ['active']
|
|
926
|
+
})
|
|
927
|
+
], PTabItem);
|
|
928
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PTabItem, decorators: [{
|
|
929
|
+
type: Component,
|
|
930
|
+
args: [{
|
|
931
|
+
selector: 'p-tab-item',
|
|
932
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
933
|
+
template: '<ng-content></ng-content>',
|
|
934
|
+
inputs: ['active']
|
|
935
|
+
}]
|
|
936
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
154
937
|
let PTooltip = class PTooltip {
|
|
155
938
|
constructor(c, r, z) {
|
|
156
939
|
this.z = z;
|
|
@@ -158,42 +941,72 @@ let PTooltip = class PTooltip {
|
|
|
158
941
|
this.el = r.nativeElement;
|
|
159
942
|
}
|
|
160
943
|
};
|
|
161
|
-
PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
162
|
-
PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
944
|
+
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 });
|
|
945
|
+
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
946
|
PTooltip = __decorate([
|
|
164
947
|
ProxyCmp({
|
|
165
948
|
defineCustomElementFn: undefined,
|
|
166
|
-
inputs: ['
|
|
949
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
167
950
|
})
|
|
168
951
|
], PTooltip);
|
|
169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
952
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PTooltip, decorators: [{
|
|
170
953
|
type: Component,
|
|
171
954
|
args: [{
|
|
172
955
|
selector: 'p-tooltip',
|
|
173
956
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
174
957
|
template: '<ng-content></ng-content>',
|
|
175
|
-
inputs: ['
|
|
958
|
+
inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
|
|
176
959
|
}]
|
|
177
960
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
178
961
|
|
|
179
962
|
const DIRECTIVES = [
|
|
963
|
+
PAvatar,
|
|
964
|
+
PAvatarGroup,
|
|
180
965
|
PButton,
|
|
966
|
+
PCardBody,
|
|
967
|
+
PCardContainer,
|
|
968
|
+
PCardHeader,
|
|
969
|
+
PCounter,
|
|
970
|
+
PDivider,
|
|
971
|
+
PDropdown,
|
|
972
|
+
PDropdownMenuContainer,
|
|
973
|
+
PDropdownMenuItem,
|
|
974
|
+
PHelper,
|
|
181
975
|
PIcon,
|
|
182
976
|
PIllustration,
|
|
977
|
+
PInfoPanel,
|
|
183
978
|
PLoader,
|
|
979
|
+
PModal,
|
|
980
|
+
PModalBackdrop,
|
|
981
|
+
PModalBody,
|
|
982
|
+
PModalContainer,
|
|
983
|
+
PModalFooter,
|
|
984
|
+
PModalHeader,
|
|
985
|
+
PNavigationItem,
|
|
986
|
+
PPagination,
|
|
987
|
+
PPaginationItem,
|
|
988
|
+
PProfile,
|
|
989
|
+
PSegmentContainer,
|
|
990
|
+
PSegmentItem,
|
|
991
|
+
PStatus,
|
|
992
|
+
PStepper,
|
|
993
|
+
PStepperLine,
|
|
994
|
+
PStepperStep,
|
|
995
|
+
PTabGroup,
|
|
996
|
+
PTabItem,
|
|
184
997
|
PTooltip
|
|
185
998
|
];
|
|
186
999
|
|
|
187
1000
|
class PaperlessModule {
|
|
188
1001
|
}
|
|
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: "
|
|
1002
|
+
PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1003
|
+
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, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperLine, PStepperStep, PTabGroup, PTabItem, 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, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperLine, PStepperStep, PTabGroup, PTabItem, PTooltip, PaginationDirective] });
|
|
1004
|
+
PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PaperlessModule });
|
|
1005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: PaperlessModule, decorators: [{
|
|
193
1006
|
type: NgModule,
|
|
194
1007
|
args: [{
|
|
195
|
-
declarations: [...DIRECTIVES],
|
|
196
|
-
exports: [...DIRECTIVES],
|
|
1008
|
+
declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
1009
|
+
exports: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
|
|
197
1010
|
}]
|
|
198
1011
|
}] });
|
|
199
1012
|
|
|
@@ -205,5 +1018,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
205
1018
|
* Generated bundle index. Do not edit.
|
|
206
1019
|
*/
|
|
207
1020
|
|
|
208
|
-
export { PButton, PIcon, PIllustration, PLoader, PTooltip, PaperlessModule };
|
|
1021
|
+
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, PProfile, PSegmentContainer, PSegmentItem, PStatus, PStepper, PStepperLine, PStepperStep, PTabGroup, PTabItem, PTooltip, PaginationDirective, PaperlessModule };
|
|
209
1022
|
//# sourceMappingURL=paperless-angular.mjs.map
|