@paperless/angular 2.0.1-beta.2 → 2.0.1-beta.20

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.
@@ -77,7 +77,7 @@ export declare class PButton {
77
77
  protected el: HTMLElement;
78
78
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
79
79
  static ɵfac: i0.ɵɵFactoryDeclaration<PButton, never>;
80
- static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "as": "as"; "buttonGroupPosition": "buttonGroupPosition"; "chevron": "chevron"; "chevronPosition": "chevronPosition"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "loading": "loading"; "size": "size"; "target": "target"; "type": "type"; "underline": "underline"; "variant": "variant"; }, {}, never, ["*"], false, never>;
80
+ static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "active": "active"; "as": "as"; "buttonGroupPosition": "buttonGroupPosition"; "chevron": "chevron"; "chevronPosition": "chevronPosition"; "class": "class"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "loading": "loading"; "size": "size"; "target": "target"; "type": "type"; "underline": "underline"; "variant": "variant"; }, {}, never, ["*"], false, never>;
81
81
  }
82
82
  export declare interface PButton extends Components.PButton {
83
83
  /**
@@ -244,7 +244,7 @@ export declare class PDropdown {
244
244
  protected el: HTMLElement;
245
245
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
246
246
  static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
247
- static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "calculateWidth": "calculateWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "offset": "offset"; "placement": "placement"; "scrollable": "scrollable"; "show": "show"; "strategy": "strategy"; }, {}, never, ["*"], false, never>;
247
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "calculateWidth": "calculateWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "offset": "offset"; "placement": "placement"; "scrollable": "scrollable"; "show": "show"; "strategy": "strategy"; "usePortal": "usePortal"; }, {}, never, ["*"], false, never>;
248
248
  }
249
249
  export declare interface PDropdown extends Components.PDropdown {
250
250
  /**
@@ -266,10 +266,37 @@ export declare class PDropdownMenuItem {
266
266
  protected el: HTMLElement;
267
267
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
268
268
  static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
269
- static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "disabled": "disabled"; "enableHover": "enableHover"; "icon": "icon"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
269
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "checkbox": "checkbox"; "disabled": "disabled"; "enableHover": "enableHover"; "icon": "icon"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
270
270
  }
271
271
  export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
272
272
  }
273
+ export declare class PField {
274
+ protected z: NgZone;
275
+ protected el: HTMLElement;
276
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
277
+ static ɵfac: i0.ɵɵFactoryDeclaration<PField, never>;
278
+ static ɵcmp: i0.ɵɵComponentDeclaration<PField, "p-field", never, { "disabled": "disabled"; "error": "error"; "errorPlacement": "errorPlacement"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "optionalTemplate": "optionalTemplate"; "placeholder": "placeholder"; "prefix": "prefix"; "properties": "properties"; "required": "required"; "selectAllOnFocus": "selectAllOnFocus"; "size": "size"; "suffix": "suffix"; "type": "type"; "value": "value"; }, {}, never, ["*"], false, never>;
279
+ }
280
+ export declare interface PField extends Components.PField {
281
+ /**
282
+ * Event whenever the value changes
283
+ */
284
+ valueChange: EventEmitter<CustomEvent<string>>;
285
+ /**
286
+ * Event whenever the input ref changes
287
+ */
288
+ inputRefChange: EventEmitter<CustomEvent<HTMLInputElement | HTMLTextAreaElement>>;
289
+ }
290
+ export declare class PFieldContainer {
291
+ protected z: NgZone;
292
+ protected el: HTMLElement;
293
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
294
+ static ɵfac: i0.ɵɵFactoryDeclaration<PFieldContainer, never>;
295
+ static ɵcmp: i0.ɵɵComponentDeclaration<PFieldContainer, "p-field-container", never, { "error": "error"; "errorPlacement": "errorPlacement"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "label": "label"; "optionalTemplate": "optionalTemplate"; "required": "required"; }, {}, never, ["*"], false, never>;
296
+ }
297
+ export declare interface PFieldContainer extends Components.PFieldContainer {
298
+ focus: EventEmitter<CustomEvent<void>>;
299
+ }
273
300
  export declare class PFloatingMenuContainer {
274
301
  protected z: NgZone;
275
302
  protected el: HTMLElement;
@@ -355,15 +382,6 @@ export declare class PInputError {
355
382
  }
356
383
  export declare interface PInputError extends Components.PInputError {
357
384
  }
358
- export declare class PInputGroup {
359
- protected z: NgZone;
360
- protected el: HTMLElement;
361
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
362
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
363
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputGroup, "p-input-group", never, { "disabled": "disabled"; "error": "error"; "errorVariant": "errorVariant"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "prefix": "prefix"; "required": "required"; "size": "size"; "suffix": "suffix"; }, {}, never, ["*"], false, never>;
364
- }
365
- export declare interface PInputGroup extends Components.PInputGroup {
366
- }
367
385
  export declare class PLabel {
368
386
  protected z: NgZone;
369
387
  protected el: HTMLElement;
@@ -453,7 +471,7 @@ export declare class PNavbar {
453
471
  protected el: HTMLElement;
454
472
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
455
473
  static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
456
- static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, { "menuText": "menuText"; }, {}, never, ["*"], false, never>;
474
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, {}, {}, never, ["*"], false, never>;
457
475
  }
458
476
  export declare interface PNavbar extends Components.PNavbar {
459
477
  }
@@ -462,10 +480,19 @@ export declare class PNavigationItem {
462
480
  protected el: HTMLElement;
463
481
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
464
482
  static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
465
- static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "as": "as"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false, never>;
483
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "as": "as"; "class": "class"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false, never>;
466
484
  }
467
485
  export declare interface PNavigationItem extends Components.PNavigationItem {
468
486
  }
487
+ export declare class PNavigationSection {
488
+ protected z: NgZone;
489
+ protected el: HTMLElement;
490
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
491
+ static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationSection, never>;
492
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationSection, "p-navigation-section", never, { "header": "header"; }, {}, never, ["*"], false, never>;
493
+ }
494
+ export declare interface PNavigationSection extends Components.PNavigationSection {
495
+ }
469
496
  export declare class PNavigationTitle {
470
497
  protected z: NgZone;
471
498
  protected el: HTMLElement;
@@ -510,15 +537,37 @@ export declare class PPaginationItem {
510
537
  }
511
538
  export declare interface PPaginationItem extends Components.PPaginationItem {
512
539
  }
540
+ export declare class PPortal {
541
+ protected z: NgZone;
542
+ protected el: HTMLElement;
543
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
544
+ static ɵfac: i0.ɵɵFactoryDeclaration<PPortal, never>;
545
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPortal, "p-portal", never, {}, {}, never, ["*"], false, never>;
546
+ }
547
+ export declare interface PPortal extends Components.PPortal {
548
+ }
513
549
  export declare class PProfile {
514
550
  protected z: NgZone;
515
551
  protected el: HTMLElement;
516
552
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
517
553
  static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
518
- static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; "size": "size"; }, {}, never, ["*"], false, never>;
554
+ static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; }, {}, never, ["*"], false, never>;
519
555
  }
520
556
  export declare interface PProfile extends Components.PProfile {
521
557
  }
558
+ export declare class PRadio {
559
+ protected z: NgZone;
560
+ protected el: HTMLElement;
561
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
562
+ static ɵfac: i0.ɵɵFactoryDeclaration<PRadio, never>;
563
+ static ɵcmp: i0.ɵɵComponentDeclaration<PRadio, "p-radio", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; "size": "size"; "value": "value"; }, {}, never, ["*"], false, never>;
564
+ }
565
+ export declare interface PRadio extends Components.PRadio {
566
+ /**
567
+ * Event whenever the checked changes
568
+ */
569
+ checkedChange: EventEmitter<CustomEvent<boolean>>;
570
+ }
522
571
  export declare class PSegmentContainer {
523
572
  protected z: NgZone;
524
573
  protected el: HTMLElement;
@@ -711,7 +760,7 @@ export declare class PTooltip {
711
760
  protected el: HTMLElement;
712
761
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
713
762
  static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
714
- static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "content": "content"; "enableUserInput": "enableUserInput"; "offset": "offset"; "placement": "placement"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false, never>;
763
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "content": "content"; "enableUserInput": "enableUserInput"; "offset": "offset"; "placement": "placement"; "show": "show"; "strategy": "strategy"; "usePortal": "usePortal"; "variant": "variant"; }, {}, never, ["*"], false, never>;
715
764
  }
716
765
  export declare interface PTooltip extends Components.PTooltip {
717
766
  /**
@@ -1,2 +1,2 @@
1
1
  import * as d from './components';
2
- export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PBadge | typeof d.PButton | typeof d.PButtonGroup | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PContentSlider | typeof d.PCounter | typeof d.PCropper | typeof d.PDatepicker | typeof d.PDivider | typeof d.PDrawer | typeof d.PDrawerBody | typeof d.PDrawerContainer | typeof d.PDrawerHeader | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PFloatingMenuContainer | typeof d.PFloatingMenuItem | typeof d.PHelper | typeof d.PIbanIcon | typeof d.PIcon | typeof d.PIconDeprecated | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputError | typeof d.PInputGroup | typeof d.PLabel | typeof d.PLayout | typeof d.PLoader | typeof d.PModal | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavbar | typeof d.PNavigationItem | typeof d.PNavigationTitle | typeof d.PPageSizeSelect | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PProfile | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PSelect | typeof d.PSliderIndicator | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTableContainer | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | typeof d.PToast | typeof d.PTooltip)[];
2
+ export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PBadge | typeof d.PButton | typeof d.PButtonGroup | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PContentSlider | typeof d.PCounter | typeof d.PCropper | typeof d.PDatepicker | typeof d.PDivider | typeof d.PDrawer | typeof d.PDrawerBody | typeof d.PDrawerContainer | typeof d.PDrawerHeader | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PField | typeof d.PFieldContainer | typeof d.PFloatingMenuContainer | typeof d.PFloatingMenuItem | typeof d.PHelper | typeof d.PIbanIcon | typeof d.PIcon | typeof d.PIconDeprecated | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputError | typeof d.PLabel | typeof d.PLayout | typeof d.PLoader | typeof d.PModal | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavbar | typeof d.PNavigationItem | typeof d.PNavigationSection | typeof d.PNavigationTitle | typeof d.PPageSizeSelect | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PPortal | typeof d.PProfile | typeof d.PRadio | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PSelect | typeof d.PSliderIndicator | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTableContainer | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | typeof d.PToast | typeof d.PTooltip)[];
@@ -2,6 +2,6 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./stencil/components";
3
3
  export declare class StencilModule {
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<StencilModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PInputGroup, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationTitle, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PTooltip], never, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PInputGroup, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationTitle, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PTooltip]>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PPortal, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PTooltip], never, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PPortal, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PTooltip]>;
6
6
  static ɵinj: i0.ɵɵInjectorDeclaration<StencilModule>;
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "2.0.1-beta.2",
3
+ "version": "2.0.1-beta.20",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.3.0 || ^14.0.0 || ^15.0.0 || ^17.0.0",
6
6
  "@angular/common": "^13.3.0 || ^14.0.0 || ^15.0.0",