@paperless/angular 0.1.0-alpha.4 → 0.1.0-alpha.43

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.
@@ -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: "13.3.11", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
38
+ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
39
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", 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: "13.3.11", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
60
+ PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", 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: "13.3.11", 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,20 +135,44 @@ 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: "13.3.11", ngImport: i0, type: PAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
146
+ PAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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: "13.3.11", 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 }]; } });
57
162
  let PButton = class PButton {
58
163
  constructor(c, r, z) {
59
164
  this.z = z;
60
165
  c.detach();
61
166
  this.el = r.nativeElement;
62
- proxyOutputs(this, this.el, ['click']);
167
+ proxyOutputs(this, this.el, ['onClick']);
63
168
  }
64
169
  };
65
170
  PButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
66
- PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PButton, selector: "p-button", inputs: { disabled: "disabled", href: "href", icon: "icon", iconFlip: "iconFlip", iconPosition: "iconPosition", iconRotate: "iconRotate", loading: "loading", size: "size", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
171
+ PButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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
172
  PButton = __decorate([
68
173
  ProxyCmp({
69
174
  defineCustomElementFn: undefined,
70
- inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
175
+ inputs: ['chevron', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant']
71
176
  })
72
177
  ], PButton);
73
178
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PButton, decorators: [{
@@ -76,7 +181,216 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
76
181
  selector: 'p-button',
77
182
  changeDetection: ChangeDetectionStrategy.OnPush,
78
183
  template: '<ng-content></ng-content>',
79
- inputs: ['disabled', 'href', 'icon', 'iconFlip', 'iconPosition', 'iconRotate', 'loading', 'size', 'target', 'variant']
184
+ inputs: ['chevron', 'disabled', 'href', 'icon', 'iconFlip', 'iconOnly', 'iconPosition', 'iconRotate', 'inheritText', 'loading', 'size', 'target', 'variant']
185
+ }]
186
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
187
+ let PCardBody = class PCardBody {
188
+ constructor(c, r, z) {
189
+ this.z = z;
190
+ c.detach();
191
+ this.el = r.nativeElement;
192
+ }
193
+ };
194
+ PCardBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCardBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
195
+ PCardBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCardBody, selector: "p-card-body", inputs: { inheritText: "inheritText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
196
+ PCardBody = __decorate([
197
+ ProxyCmp({
198
+ defineCustomElementFn: undefined,
199
+ inputs: ['inheritText']
200
+ })
201
+ ], PCardBody);
202
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCardBody, decorators: [{
203
+ type: Component,
204
+ args: [{
205
+ selector: 'p-card-body',
206
+ changeDetection: ChangeDetectionStrategy.OnPush,
207
+ template: '<ng-content></ng-content>',
208
+ inputs: ['inheritText']
209
+ }]
210
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
211
+ let PCardContainer = class PCardContainer {
212
+ constructor(c, r, z) {
213
+ this.z = z;
214
+ c.detach();
215
+ this.el = r.nativeElement;
216
+ }
217
+ };
218
+ PCardContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCardContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
219
+ PCardContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCardContainer, selector: "p-card-container", inputs: { hoverable: "hoverable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
220
+ PCardContainer = __decorate([
221
+ ProxyCmp({
222
+ defineCustomElementFn: undefined,
223
+ inputs: ['hoverable']
224
+ })
225
+ ], PCardContainer);
226
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCardContainer, decorators: [{
227
+ type: Component,
228
+ args: [{
229
+ selector: 'p-card-container',
230
+ changeDetection: ChangeDetectionStrategy.OnPush,
231
+ template: '<ng-content></ng-content>',
232
+ inputs: ['hoverable']
233
+ }]
234
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
235
+ let PCardHeader = class PCardHeader {
236
+ constructor(c, r, z) {
237
+ this.z = z;
238
+ c.detach();
239
+ this.el = r.nativeElement;
240
+ }
241
+ };
242
+ PCardHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
243
+ PCardHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCardHeader, selector: "p-card-header", inputs: { arrow: "arrow", title: "title" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
244
+ PCardHeader = __decorate([
245
+ ProxyCmp({
246
+ defineCustomElementFn: undefined,
247
+ inputs: ['arrow', 'title']
248
+ })
249
+ ], PCardHeader);
250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCardHeader, decorators: [{
251
+ type: Component,
252
+ args: [{
253
+ selector: 'p-card-header',
254
+ changeDetection: ChangeDetectionStrategy.OnPush,
255
+ template: '<ng-content></ng-content>',
256
+ inputs: ['arrow', 'title']
257
+ }]
258
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
259
+ let PCounter = class PCounter {
260
+ constructor(c, r, z) {
261
+ this.z = z;
262
+ c.detach();
263
+ this.el = r.nativeElement;
264
+ }
265
+ };
266
+ PCounter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCounter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
267
+ PCounter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PCounter, selector: "p-counter", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
268
+ PCounter = __decorate([
269
+ ProxyCmp({
270
+ defineCustomElementFn: undefined
271
+ })
272
+ ], PCounter);
273
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PCounter, decorators: [{
274
+ type: Component,
275
+ args: [{
276
+ selector: 'p-counter',
277
+ changeDetection: ChangeDetectionStrategy.OnPush,
278
+ template: '<ng-content></ng-content>'
279
+ }]
280
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
281
+ let PDivider = class PDivider {
282
+ constructor(c, r, z) {
283
+ this.z = z;
284
+ c.detach();
285
+ this.el = r.nativeElement;
286
+ }
287
+ };
288
+ PDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
289
+ PDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PDivider, selector: "p-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
290
+ PDivider = __decorate([
291
+ ProxyCmp({
292
+ defineCustomElementFn: undefined
293
+ })
294
+ ], PDivider);
295
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDivider, decorators: [{
296
+ type: Component,
297
+ args: [{
298
+ selector: 'p-divider',
299
+ changeDetection: ChangeDetectionStrategy.OnPush,
300
+ template: '<ng-content></ng-content>'
301
+ }]
302
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
303
+ let PDropdown = class PDropdown {
304
+ constructor(c, r, z) {
305
+ this.z = z;
306
+ c.detach();
307
+ this.el = r.nativeElement;
308
+ proxyOutputs(this, this.el, ['isOpen']);
309
+ }
310
+ };
311
+ PDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
312
+ PDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
313
+ PDropdown = __decorate([
314
+ ProxyCmp({
315
+ defineCustomElementFn: undefined,
316
+ inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show']
317
+ })
318
+ ], PDropdown);
319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDropdown, decorators: [{
320
+ type: Component,
321
+ args: [{
322
+ selector: 'p-dropdown',
323
+ changeDetection: ChangeDetectionStrategy.OnPush,
324
+ template: '<ng-content></ng-content>',
325
+ inputs: ['disableTriggerClick', 'insideClick', 'placement', 'show']
326
+ }]
327
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
328
+ let PDropdownMenuContainer = class PDropdownMenuContainer {
329
+ constructor(c, r, z) {
330
+ this.z = z;
331
+ c.detach();
332
+ this.el = r.nativeElement;
333
+ }
334
+ };
335
+ PDropdownMenuContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDropdownMenuContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
336
+ PDropdownMenuContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PDropdownMenuContainer, selector: "p-dropdown-menu-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
337
+ PDropdownMenuContainer = __decorate([
338
+ ProxyCmp({
339
+ defineCustomElementFn: undefined
340
+ })
341
+ ], PDropdownMenuContainer);
342
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDropdownMenuContainer, decorators: [{
343
+ type: Component,
344
+ args: [{
345
+ selector: 'p-dropdown-menu-container',
346
+ changeDetection: ChangeDetectionStrategy.OnPush,
347
+ template: '<ng-content></ng-content>'
348
+ }]
349
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
350
+ let PDropdownMenuItem = class PDropdownMenuItem {
351
+ constructor(c, r, z) {
352
+ this.z = z;
353
+ c.detach();
354
+ this.el = r.nativeElement;
355
+ }
356
+ };
357
+ PDropdownMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDropdownMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
358
+ PDropdownMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PDropdownMenuItem, selector: "p-dropdown-menu-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
359
+ PDropdownMenuItem = __decorate([
360
+ ProxyCmp({
361
+ defineCustomElementFn: undefined,
362
+ inputs: ['active']
363
+ })
364
+ ], PDropdownMenuItem);
365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PDropdownMenuItem, decorators: [{
366
+ type: Component,
367
+ args: [{
368
+ selector: 'p-dropdown-menu-item',
369
+ changeDetection: ChangeDetectionStrategy.OnPush,
370
+ template: '<ng-content></ng-content>',
371
+ inputs: ['active']
372
+ }]
373
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
374
+ let PHelper = class PHelper {
375
+ constructor(c, r, z) {
376
+ this.z = z;
377
+ c.detach();
378
+ this.el = r.nativeElement;
379
+ }
380
+ };
381
+ PHelper.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PHelper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
382
+ PHelper.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PHelper, selector: "p-helper", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
383
+ PHelper = __decorate([
384
+ ProxyCmp({
385
+ defineCustomElementFn: undefined
386
+ })
387
+ ], PHelper);
388
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PHelper, decorators: [{
389
+ type: Component,
390
+ args: [{
391
+ selector: 'p-helper',
392
+ changeDetection: ChangeDetectionStrategy.OnPush,
393
+ template: '<ng-content></ng-content>'
80
394
  }]
81
395
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
82
396
  let PIcon = class PIcon {
@@ -127,6 +441,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
127
441
  inputs: ['variant']
128
442
  }]
129
443
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
444
+ let PInfoPanel = class PInfoPanel {
445
+ constructor(c, r, z) {
446
+ this.z = z;
447
+ c.detach();
448
+ this.el = r.nativeElement;
449
+ }
450
+ };
451
+ PInfoPanel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PInfoPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
452
+ PInfoPanel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
453
+ PInfoPanel = __decorate([
454
+ ProxyCmp({
455
+ defineCustomElementFn: undefined,
456
+ inputs: ['closeable', 'content', 'header', 'variant']
457
+ })
458
+ ], PInfoPanel);
459
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PInfoPanel, decorators: [{
460
+ type: Component,
461
+ args: [{
462
+ selector: 'p-info-panel',
463
+ changeDetection: ChangeDetectionStrategy.OnPush,
464
+ template: '<ng-content></ng-content>',
465
+ inputs: ['closeable', 'content', 'header', 'variant']
466
+ }]
467
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
130
468
  let PLoader = class PLoader {
131
469
  constructor(c, r, z) {
132
470
  this.z = z;
@@ -151,6 +489,287 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
151
489
  inputs: ['color', 'modalDescription', 'modalTitle', 'show', 'variant']
152
490
  }]
153
491
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
492
+ let PModal = class PModal {
493
+ constructor(c, r, z) {
494
+ this.z = z;
495
+ c.detach();
496
+ this.el = r.nativeElement;
497
+ }
498
+ };
499
+ PModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
500
+ PModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PModal, selector: "p-modal", inputs: { show: "show", size: "size", title: "title", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
501
+ PModal = __decorate([
502
+ ProxyCmp({
503
+ defineCustomElementFn: undefined,
504
+ inputs: ['show', 'size', 'title', 'variant']
505
+ })
506
+ ], PModal);
507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModal, decorators: [{
508
+ type: Component,
509
+ args: [{
510
+ selector: 'p-modal',
511
+ changeDetection: ChangeDetectionStrategy.OnPush,
512
+ template: '<ng-content></ng-content>',
513
+ inputs: ['show', 'size', 'title', 'variant']
514
+ }]
515
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
516
+ let PModalBackdrop = class PModalBackdrop {
517
+ constructor(c, r, z) {
518
+ this.z = z;
519
+ c.detach();
520
+ this.el = r.nativeElement;
521
+ }
522
+ };
523
+ PModalBackdrop.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
524
+ PModalBackdrop.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PModalBackdrop, selector: "p-modal-backdrop", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
525
+ PModalBackdrop = __decorate([
526
+ ProxyCmp({
527
+ defineCustomElementFn: undefined
528
+ })
529
+ ], PModalBackdrop);
530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalBackdrop, decorators: [{
531
+ type: Component,
532
+ args: [{
533
+ selector: 'p-modal-backdrop',
534
+ changeDetection: ChangeDetectionStrategy.OnPush,
535
+ template: '<ng-content></ng-content>'
536
+ }]
537
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
538
+ let PModalBody = class PModalBody {
539
+ constructor(c, r, z) {
540
+ this.z = z;
541
+ c.detach();
542
+ this.el = r.nativeElement;
543
+ }
544
+ };
545
+ PModalBody.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
546
+ PModalBody.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PModalBody, selector: "p-modal-body", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
547
+ PModalBody = __decorate([
548
+ ProxyCmp({
549
+ defineCustomElementFn: undefined,
550
+ inputs: ['variant']
551
+ })
552
+ ], PModalBody);
553
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalBody, decorators: [{
554
+ type: Component,
555
+ args: [{
556
+ selector: 'p-modal-body',
557
+ changeDetection: ChangeDetectionStrategy.OnPush,
558
+ template: '<ng-content></ng-content>',
559
+ inputs: ['variant']
560
+ }]
561
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
562
+ let PModalContainer = class PModalContainer {
563
+ constructor(c, r, z) {
564
+ this.z = z;
565
+ c.detach();
566
+ this.el = r.nativeElement;
567
+ }
568
+ };
569
+ PModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
570
+ PModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PModalContainer, selector: "p-modal-container", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
571
+ PModalContainer = __decorate([
572
+ ProxyCmp({
573
+ defineCustomElementFn: undefined,
574
+ inputs: ['size']
575
+ })
576
+ ], PModalContainer);
577
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalContainer, decorators: [{
578
+ type: Component,
579
+ args: [{
580
+ selector: 'p-modal-container',
581
+ changeDetection: ChangeDetectionStrategy.OnPush,
582
+ template: '<ng-content></ng-content>',
583
+ inputs: ['size']
584
+ }]
585
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
586
+ let PModalFooter = class PModalFooter {
587
+ constructor(c, r, z) {
588
+ this.z = z;
589
+ c.detach();
590
+ this.el = r.nativeElement;
591
+ }
592
+ };
593
+ PModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
594
+ PModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PModalFooter, selector: "p-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
595
+ PModalFooter = __decorate([
596
+ ProxyCmp({
597
+ defineCustomElementFn: undefined
598
+ })
599
+ ], PModalFooter);
600
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalFooter, decorators: [{
601
+ type: Component,
602
+ args: [{
603
+ selector: 'p-modal-footer',
604
+ changeDetection: ChangeDetectionStrategy.OnPush,
605
+ template: '<ng-content></ng-content>'
606
+ }]
607
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
608
+ let PModalHeader = class PModalHeader {
609
+ constructor(c, r, z) {
610
+ this.z = z;
611
+ c.detach();
612
+ this.el = r.nativeElement;
613
+ }
614
+ };
615
+ PModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
616
+ PModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PModalHeader, selector: "p-modal-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
617
+ PModalHeader = __decorate([
618
+ ProxyCmp({
619
+ defineCustomElementFn: undefined
620
+ })
621
+ ], PModalHeader);
622
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PModalHeader, decorators: [{
623
+ type: Component,
624
+ args: [{
625
+ selector: 'p-modal-header',
626
+ changeDetection: ChangeDetectionStrategy.OnPush,
627
+ template: '<ng-content></ng-content>'
628
+ }]
629
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
630
+ let PNavigationItem = class PNavigationItem {
631
+ constructor(c, r, z) {
632
+ this.z = z;
633
+ c.detach();
634
+ this.el = r.nativeElement;
635
+ }
636
+ };
637
+ PNavigationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
638
+ PNavigationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
639
+ PNavigationItem = __decorate([
640
+ ProxyCmp({
641
+ defineCustomElementFn: undefined,
642
+ inputs: ['active', 'counter', 'href', 'icon', 'target']
643
+ })
644
+ ], PNavigationItem);
645
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PNavigationItem, decorators: [{
646
+ type: Component,
647
+ args: [{
648
+ selector: 'p-navigation-item',
649
+ changeDetection: ChangeDetectionStrategy.OnPush,
650
+ template: '<ng-content></ng-content>',
651
+ inputs: ['active', 'counter', 'href', 'icon', 'target']
652
+ }]
653
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
654
+ let PPagination = class PPagination {
655
+ constructor(c, r, z) {
656
+ this.z = z;
657
+ c.detach();
658
+ this.el = r.nativeElement;
659
+ proxyOutputs(this, this.el, ['pageChange']);
660
+ }
661
+ };
662
+ PPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
663
+ PPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
664
+ PPagination = __decorate([
665
+ ProxyCmp({
666
+ defineCustomElementFn: undefined,
667
+ inputs: ['page', 'pageSize', 'total']
668
+ })
669
+ ], PPagination);
670
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPagination, decorators: [{
671
+ type: Component,
672
+ args: [{
673
+ selector: 'p-pagination',
674
+ changeDetection: ChangeDetectionStrategy.OnPush,
675
+ template: '<ng-content></ng-content>',
676
+ inputs: ['page', 'pageSize', 'total']
677
+ }]
678
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
679
+ let PPaginationItem = class PPaginationItem {
680
+ constructor(c, r, z) {
681
+ this.z = z;
682
+ c.detach();
683
+ this.el = r.nativeElement;
684
+ }
685
+ };
686
+ PPaginationItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPaginationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
687
+ PPaginationItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PPaginationItem, selector: "p-pagination-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
688
+ PPaginationItem = __decorate([
689
+ ProxyCmp({
690
+ defineCustomElementFn: undefined,
691
+ inputs: ['active']
692
+ })
693
+ ], PPaginationItem);
694
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PPaginationItem, decorators: [{
695
+ type: Component,
696
+ args: [{
697
+ selector: 'p-pagination-item',
698
+ changeDetection: ChangeDetectionStrategy.OnPush,
699
+ template: '<ng-content></ng-content>',
700
+ inputs: ['active']
701
+ }]
702
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
703
+ let PSegmentContainer = class PSegmentContainer {
704
+ constructor(c, r, z) {
705
+ this.z = z;
706
+ c.detach();
707
+ this.el = r.nativeElement;
708
+ }
709
+ };
710
+ PSegmentContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSegmentContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
711
+ PSegmentContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PSegmentContainer, selector: "p-segment-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
712
+ PSegmentContainer = __decorate([
713
+ ProxyCmp({
714
+ defineCustomElementFn: undefined
715
+ })
716
+ ], PSegmentContainer);
717
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSegmentContainer, decorators: [{
718
+ type: Component,
719
+ args: [{
720
+ selector: 'p-segment-container',
721
+ changeDetection: ChangeDetectionStrategy.OnPush,
722
+ template: '<ng-content></ng-content>'
723
+ }]
724
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
725
+ let PSegmentItem = class PSegmentItem {
726
+ constructor(c, r, z) {
727
+ this.z = z;
728
+ c.detach();
729
+ this.el = r.nativeElement;
730
+ }
731
+ };
732
+ PSegmentItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSegmentItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
733
+ PSegmentItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
734
+ PSegmentItem = __decorate([
735
+ ProxyCmp({
736
+ defineCustomElementFn: undefined,
737
+ inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
738
+ })
739
+ ], PSegmentItem);
740
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PSegmentItem, decorators: [{
741
+ type: Component,
742
+ args: [{
743
+ selector: 'p-segment-item',
744
+ changeDetection: ChangeDetectionStrategy.OnPush,
745
+ template: '<ng-content></ng-content>',
746
+ inputs: ['active', 'icon', 'iconFlip', 'iconRotate']
747
+ }]
748
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
749
+ let PStatus = class PStatus {
750
+ constructor(c, r, z) {
751
+ this.z = z;
752
+ c.detach();
753
+ this.el = r.nativeElement;
754
+ }
755
+ };
756
+ PStatus.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
757
+ PStatus.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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 });
758
+ PStatus = __decorate([
759
+ ProxyCmp({
760
+ defineCustomElementFn: undefined,
761
+ inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
762
+ })
763
+ ], PStatus);
764
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PStatus, decorators: [{
765
+ type: Component,
766
+ args: [{
767
+ selector: 'p-status',
768
+ changeDetection: ChangeDetectionStrategy.OnPush,
769
+ template: '<ng-content></ng-content>',
770
+ inputs: ['icon', 'iconFlip', 'iconRotate', 'variant']
771
+ }]
772
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
154
773
  let PTooltip = class PTooltip {
155
774
  constructor(c, r, z) {
156
775
  this.z = z;
@@ -159,11 +778,11 @@ let PTooltip = class PTooltip {
159
778
  }
160
779
  };
161
780
  PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
162
- PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: PTooltip, selector: "p-tooltip", inputs: { content: "content", forceShow: "forceShow", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
781
+ PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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
782
  PTooltip = __decorate([
164
783
  ProxyCmp({
165
784
  defineCustomElementFn: undefined,
166
- inputs: ['content', 'forceShow', 'placement']
785
+ inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
167
786
  })
168
787
  ], PTooltip);
169
788
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PTooltip, decorators: [{
@@ -172,28 +791,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
172
791
  selector: 'p-tooltip',
173
792
  changeDetection: ChangeDetectionStrategy.OnPush,
174
793
  template: '<ng-content></ng-content>',
175
- inputs: ['content', 'forceShow', 'placement']
794
+ inputs: ['canManuallyClose', 'placement', 'popover', 'show', 'variant']
176
795
  }]
177
796
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
178
797
 
179
798
  const DIRECTIVES = [
799
+ PAvatar,
180
800
  PButton,
801
+ PCardBody,
802
+ PCardContainer,
803
+ PCardHeader,
804
+ PCounter,
805
+ PDivider,
806
+ PDropdown,
807
+ PDropdownMenuContainer,
808
+ PDropdownMenuItem,
809
+ PHelper,
181
810
  PIcon,
182
811
  PIllustration,
812
+ PInfoPanel,
183
813
  PLoader,
814
+ PModal,
815
+ PModalBackdrop,
816
+ PModalBody,
817
+ PModalContainer,
818
+ PModalFooter,
819
+ PModalHeader,
820
+ PNavigationItem,
821
+ PPagination,
822
+ PPaginationItem,
823
+ PSegmentContainer,
824
+ PSegmentItem,
825
+ PStatus,
184
826
  PTooltip
185
827
  ];
186
828
 
187
829
  class PaperlessModule {
188
830
  }
189
831
  PaperlessModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
190
- PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule, declarations: [PButton, PIcon, PIllustration, PLoader, PTooltip], exports: [PButton, PIcon, PIllustration, PLoader, PTooltip] });
832
+ PaperlessModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule, declarations: [PAvatar, 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, PTooltip, PaginationDirective], exports: [PAvatar, 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, PTooltip, PaginationDirective] });
191
833
  PaperlessModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule });
192
834
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PaperlessModule, decorators: [{
193
835
  type: NgModule,
194
836
  args: [{
195
- declarations: [...DIRECTIVES],
196
- exports: [...DIRECTIVES],
837
+ declarations: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
838
+ exports: [...DIRECTIVES, ...CUSTOM_DIRECTIVES],
197
839
  }]
198
840
  }] });
199
841
 
@@ -205,5 +847,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
205
847
  * Generated bundle index. Do not edit.
206
848
  */
207
849
 
208
- export { PButton, PIcon, PIllustration, PLoader, PTooltip, PaperlessModule };
850
+ export { CUSTOM_DIRECTIVES, PAvatar, 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, PTooltip, PaginationDirective, PaperlessModule };
209
851
  //# sourceMappingURL=paperless-angular.mjs.map