@paperless/angular 0.1.0-alpha.15 → 0.1.0-alpha.150

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.
Files changed (38) hide show
  1. package/README.md +1 -1
  2. package/esm2020/lib/base/form.component.mjs +105 -0
  3. package/esm2020/lib/base/index.mjs +4 -1
  4. package/esm2020/lib/base/table.component.mjs +158 -0
  5. package/esm2020/lib/base/upload.component.mjs +57 -0
  6. package/esm2020/lib/base/value-accessor.mjs +8 -8
  7. package/esm2020/lib/directives/index.mjs +18 -4
  8. package/esm2020/lib/directives/p-page-size-select.directive.mjs +42 -0
  9. package/esm2020/lib/directives/p-pagination.directive.mjs +42 -0
  10. package/esm2020/lib/directives/p-table-footer.directive.mjs +52 -0
  11. package/esm2020/lib/directives/p-table-header.directive.mjs +60 -0
  12. package/esm2020/lib/directives/p-table.directive.mjs +78 -0
  13. package/esm2020/lib/paperless.module.mjs +10 -6
  14. package/esm2020/lib/stencil/components.mjs +1012 -60
  15. package/esm2020/lib/stencil/index.mjs +39 -1
  16. package/esm2020/public-api.mjs +2 -1
  17. package/fesm2015/paperless-angular.mjs +1577 -95
  18. package/fesm2015/paperless-angular.mjs.map +1 -1
  19. package/fesm2020/paperless-angular.mjs +1681 -198
  20. package/fesm2020/paperless-angular.mjs.map +1 -1
  21. package/{paperless-angular.d.ts → index.d.ts} +0 -0
  22. package/lib/base/form.component.d.ts +15 -0
  23. package/lib/base/index.d.ts +3 -0
  24. package/lib/base/table.component.d.ts +45 -0
  25. package/lib/base/upload.component.d.ts +16 -0
  26. package/lib/base/value-accessor.d.ts +6 -6
  27. package/lib/directives/index.d.ts +10 -3
  28. package/lib/directives/p-page-size-select.directive.d.ts +10 -0
  29. package/lib/directives/{pagination.directive.d.ts → p-pagination.directive.d.ts} +4 -3
  30. package/lib/directives/p-table-footer.directive.d.ts +11 -0
  31. package/lib/directives/p-table-header.directive.d.ts +17 -0
  32. package/lib/directives/p-table.directive.d.ts +22 -0
  33. package/lib/paperless.module.d.ts +6 -2
  34. package/lib/stencil/components.d.ts +457 -13
  35. package/lib/stencil/index.d.ts +1 -1
  36. package/package.json +7 -6
  37. package/public-api.d.ts +1 -0
  38. package/esm2020/lib/directives/pagination.directive.mjs +0 -41
@@ -0,0 +1,22 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { QuickFilter } from '@paperless/core';
3
+ import { BaseValueAccessor } from '../base';
4
+ import * as i0 from "@angular/core";
5
+ export interface TableDirectiveValue {
6
+ query?: string;
7
+ quickFilter?: QuickFilter;
8
+ page?: number;
9
+ pageSize?: number;
10
+ selectedRows?: any[];
11
+ }
12
+ export declare class TableDirective extends BaseValueAccessor {
13
+ protected lastValue: TableDirectiveValue;
14
+ constructor(el: ElementRef);
15
+ writeValue(value: TableDirectiveValue): void;
16
+ registerOnChange(fn: (value: any) => void): void;
17
+ registerOnTouched(fn: () => void): void;
18
+ handleChange(value: number | string | QuickFilter, type: 'page' | 'pageSize' | 'query' | 'quickFilter' | 'selectedRows'): void;
19
+ private _setActiveQuickFilter;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableDirective, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableDirective, "p-table", never, {}, {}, never, never, false>;
22
+ }
@@ -1,8 +1,12 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./stencil/components";
3
- import * as i2 from "./directives/pagination.directive";
3
+ import * as i2 from "./directives/p-pagination.directive";
4
+ import * as i3 from "./directives/p-page-size-select.directive";
5
+ import * as i4 from "./directives/p-table-footer.directive";
6
+ import * as i5 from "./directives/p-table-header.directive";
7
+ import * as i6 from "./directives/p-table.directive";
4
8
  export declare class PaperlessModule {
5
9
  static ɵfac: i0.ɵɵFactoryDeclaration<PaperlessModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<PaperlessModule, [typeof i1.PAvatar, typeof i1.PButton, typeof i1.PCounter, typeof i1.PDivider, typeof i1.PHelper, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PLoader, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PTooltip, typeof i2.PaginationDirective], never, [typeof i1.PAvatar, typeof i1.PButton, typeof i1.PCounter, typeof i1.PDivider, typeof i1.PHelper, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PLoader, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PTooltip, typeof i2.PaginationDirective]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PaperlessModule, [typeof i1.PAccordion, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PButton, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PDivider, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PHelper, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputGroup, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBackdrop, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTable, typeof i1.PTableBody, typeof i1.PTableContainer, typeof i1.PTableDefinition, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PTag, typeof i1.PTooltip, typeof i2.PaginationDirective, typeof i3.PageSizeSelectDirective, typeof i4.TableFooterDirective, typeof i5.TableHeaderDirective, typeof i6.TableDirective], never, [typeof i1.PAccordion, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PButton, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PContentSlider, typeof i1.PCounter, typeof i1.PDivider, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PHelper, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputGroup, typeof i1.PLayout, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBackdrop, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTable, typeof i1.PTableBody, typeof i1.PTableContainer, typeof i1.PTableDefinition, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PTag, typeof i1.PTooltip, typeof i2.PaginationDirective, typeof i3.PageSizeSelectDirective, typeof i4.TableFooterDirective, typeof i5.TableHeaderDirective, typeof i6.TableDirective]>;
7
11
  static ɵinj: i0.ɵɵInjectorDeclaration<PaperlessModule>;
8
12
  }
@@ -1,6 +1,21 @@
1
1
  import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
2
2
  import { Components } from '@paperless/core';
3
+ import type { QuickFilter as ITableQuickFilter } from '@paperless/core';
4
+ import type { QuickFilter as ITableHeaderQuickFilter } from '@paperless/core';
3
5
  import * as i0 from "@angular/core";
6
+ export declare interface PAccordion extends Components.PAccordion {
7
+ /**
8
+ * Open change event
9
+ */
10
+ isOpen: EventEmitter<CustomEvent<boolean>>;
11
+ }
12
+ export declare class PAccordion {
13
+ protected z: NgZone;
14
+ protected el: HTMLElement;
15
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion", never, { "closeable": "closeable"; "header": "header"; "open": "open"; "openable": "openable"; }, {}, never, ["*"], false>;
18
+ }
4
19
  export declare interface PAvatar extends Components.PAvatar {
5
20
  }
6
21
  export declare class PAvatar {
@@ -8,7 +23,16 @@ export declare class PAvatar {
8
23
  protected el: HTMLElement;
9
24
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
10
25
  static ɵfac: i0.ɵɵFactoryDeclaration<PAvatar, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "size": "size"; "src": "src"; "variant": "variant"; }, {}, never, ["*"]>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "size": "size"; "src": "src"; "variant": "variant"; }, {}, never, ["*"], false>;
27
+ }
28
+ export declare interface PAvatarGroup extends Components.PAvatarGroup {
29
+ }
30
+ export declare class PAvatarGroup {
31
+ protected z: NgZone;
32
+ protected el: HTMLElement;
33
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<PAvatarGroup, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAvatarGroup, "p-avatar-group", never, { "extra": "extra"; }, {}, never, ["*"], false>;
12
36
  }
13
37
  export declare interface PButton extends Components.PButton {
14
38
  /**
@@ -21,7 +45,43 @@ export declare class PButton {
21
45
  protected el: HTMLElement;
22
46
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
23
47
  static ɵfac: i0.ɵɵFactoryDeclaration<PButton, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "loading": "loading"; "size": "size"; "target": "target"; "variant": "variant"; }, {}, never, ["*"]>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "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"; "variant": "variant"; "width": "width"; }, {}, never, ["*"], false>;
49
+ }
50
+ export declare interface PCardBody extends Components.PCardBody {
51
+ }
52
+ export declare class PCardBody {
53
+ protected z: NgZone;
54
+ protected el: HTMLElement;
55
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCardBody, never>;
57
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCardBody, "p-card-body", never, { "inheritText": "inheritText"; }, {}, never, ["*"], false>;
58
+ }
59
+ export declare interface PCardContainer extends Components.PCardContainer {
60
+ }
61
+ export declare class PCardContainer {
62
+ protected z: NgZone;
63
+ protected el: HTMLElement;
64
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
65
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCardContainer, never>;
66
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "hoverable": "hoverable"; "shadow": "shadow"; }, {}, never, ["*"], false>;
67
+ }
68
+ export declare interface PCardHeader extends Components.PCardHeader {
69
+ }
70
+ export declare class PCardHeader {
71
+ protected z: NgZone;
72
+ protected el: HTMLElement;
73
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
74
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCardHeader, never>;
75
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "arrow": "arrow"; "header": "header"; }, {}, never, ["*"], false>;
76
+ }
77
+ export declare interface PContentSlider extends Components.PContentSlider {
78
+ }
79
+ export declare class PContentSlider {
80
+ protected z: NgZone;
81
+ protected el: HTMLElement;
82
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
83
+ static ɵfac: i0.ɵɵFactoryDeclaration<PContentSlider, never>;
84
+ static ɵcmp: i0.ɵɵComponentDeclaration<PContentSlider, "p-content-slider", never, { "disableAutoCenter": "disableAutoCenter"; "disableDrag": "disableDrag"; "disableIndicatorClick": "disableIndicatorClick"; "hideMobileIndicator": "hideMobileIndicator"; }, {}, never, ["*"], false>;
25
85
  }
26
86
  export declare interface PCounter extends Components.PCounter {
27
87
  }
@@ -30,7 +90,7 @@ export declare class PCounter {
30
90
  protected el: HTMLElement;
31
91
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
32
92
  static ɵfac: i0.ɵɵFactoryDeclaration<PCounter, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, {}, {}, never, ["*"]>;
93
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
34
94
  }
35
95
  export declare interface PDivider extends Components.PDivider {
36
96
  }
@@ -39,7 +99,38 @@ export declare class PDivider {
39
99
  protected el: HTMLElement;
40
100
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
41
101
  static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, {}, {}, never, ["*"]>;
102
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, {}, {}, never, ["*"], false>;
103
+ }
104
+ export declare interface PDropdown extends Components.PDropdown {
105
+ /**
106
+ * Open change event
107
+ */
108
+ isOpen: EventEmitter<CustomEvent<boolean>>;
109
+ }
110
+ export declare class PDropdown {
111
+ protected z: NgZone;
112
+ protected el: HTMLElement;
113
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
114
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
115
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "placement": "placement"; "show": "show"; "strategy": "strategy"; }, {}, never, ["*"], false>;
116
+ }
117
+ export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
118
+ }
119
+ export declare class PDropdownMenuContainer {
120
+ protected z: NgZone;
121
+ protected el: HTMLElement;
122
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
123
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
124
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, {}, {}, never, ["*"], false>;
125
+ }
126
+ export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
127
+ }
128
+ export declare class PDropdownMenuItem {
129
+ protected z: NgZone;
130
+ protected el: HTMLElement;
131
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
132
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
133
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "icon": "icon"; }, {}, never, ["*"], false>;
43
134
  }
44
135
  export declare interface PHelper extends Components.PHelper {
45
136
  }
@@ -48,7 +139,7 @@ export declare class PHelper {
48
139
  protected el: HTMLElement;
49
140
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
50
141
  static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, {}, {}, never, ["*"]>;
142
+ static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; }, {}, never, ["*"], false>;
52
143
  }
53
144
  export declare interface PIcon extends Components.PIcon {
54
145
  }
@@ -57,7 +148,7 @@ export declare class PIcon {
57
148
  protected el: HTMLElement;
58
149
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
59
150
  static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
60
- static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
151
+ static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
61
152
  }
62
153
  export declare interface PIllustration extends Components.PIllustration {
63
154
  }
@@ -66,7 +157,7 @@ export declare class PIllustration {
66
157
  protected el: HTMLElement;
67
158
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
68
159
  static ɵfac: i0.ɵɵFactoryDeclaration<PIllustration, never>;
69
- static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"]>;
160
+ static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"], false>;
70
161
  }
71
162
  export declare interface PInfoPanel extends Components.PInfoPanel {
72
163
  }
@@ -75,7 +166,25 @@ export declare class PInfoPanel {
75
166
  protected el: HTMLElement;
76
167
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
77
168
  static ɵfac: i0.ɵɵFactoryDeclaration<PInfoPanel, never>;
78
- static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"]>;
169
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false>;
170
+ }
171
+ export declare interface PInputGroup extends Components.PInputGroup {
172
+ }
173
+ export declare class PInputGroup {
174
+ protected z: NgZone;
175
+ protected el: HTMLElement;
176
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
177
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
178
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputGroup, "p-input-group", never, { "disabled": "disabled"; "error": "error"; "focused": "focused"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "label": "label"; "prefix": "prefix"; "size": "size"; "suffix": "suffix"; }, {}, never, ["*"], false>;
179
+ }
180
+ export declare interface PLayout extends Components.PLayout {
181
+ }
182
+ export declare class PLayout {
183
+ protected z: NgZone;
184
+ protected el: HTMLElement;
185
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
186
+ static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
187
+ static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false>;
79
188
  }
80
189
  export declare interface PLoader extends Components.PLoader {
81
190
  }
@@ -84,11 +193,104 @@ export declare class PLoader {
84
193
  protected el: HTMLElement;
85
194
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
86
195
  static ɵfac: i0.ɵɵFactoryDeclaration<PLoader, never>;
87
- static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"]>;
196
+ static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false>;
197
+ }
198
+ export declare interface PModal extends Components.PModal {
199
+ /**
200
+ * Close click event
201
+ */
202
+ close: EventEmitter<CustomEvent<MouseEvent>>;
203
+ }
204
+ export declare class PModal {
205
+ protected z: NgZone;
206
+ protected el: HTMLElement;
207
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
208
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
209
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "header": "header"; "show": "show"; "showMobileClose": "showMobileClose"; "showMobileFooter": "showMobileFooter"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
210
+ }
211
+ export declare interface PModalBackdrop extends Components.PModalBackdrop {
212
+ }
213
+ export declare class PModalBackdrop {
214
+ protected z: NgZone;
215
+ protected el: HTMLElement;
216
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
217
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalBackdrop, never>;
218
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalBackdrop, "p-modal-backdrop", never, {}, {}, never, ["*"], false>;
219
+ }
220
+ export declare interface PModalBody extends Components.PModalBody {
221
+ }
222
+ export declare class PModalBody {
223
+ protected z: NgZone;
224
+ protected el: HTMLElement;
225
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
226
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
227
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "variant": "variant"; }, {}, never, ["*"], false>;
228
+ }
229
+ export declare interface PModalContainer extends Components.PModalContainer {
230
+ }
231
+ export declare class PModalContainer {
232
+ protected z: NgZone;
233
+ protected el: HTMLElement;
234
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
235
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
236
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "size": "size"; }, {}, never, ["*"], false>;
237
+ }
238
+ export declare interface PModalFooter extends Components.PModalFooter {
239
+ }
240
+ export declare class PModalFooter {
241
+ protected z: NgZone;
242
+ protected el: HTMLElement;
243
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
244
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
245
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, { "hideOnMobile": "hideOnMobile"; }, {}, never, ["*"], false>;
246
+ }
247
+ export declare interface PModalHeader extends Components.PModalHeader {
248
+ /**
249
+ * Close click event
250
+ */
251
+ close: EventEmitter<CustomEvent<MouseEvent>>;
252
+ }
253
+ export declare class PModalHeader {
254
+ protected z: NgZone;
255
+ protected el: HTMLElement;
256
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
257
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
258
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, { "showMobileClose": "showMobileClose"; }, {}, never, ["*"], false>;
259
+ }
260
+ export declare interface PNavbar extends Components.PNavbar {
261
+ }
262
+ export declare class PNavbar {
263
+ protected z: NgZone;
264
+ protected el: HTMLElement;
265
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
266
+ static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
267
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, { "closeText": "closeText"; "menuText": "menuText"; }, {}, never, ["*"], false>;
268
+ }
269
+ export declare interface PNavigationItem extends Components.PNavigationItem {
270
+ }
271
+ export declare class PNavigationItem {
272
+ protected z: NgZone;
273
+ protected el: HTMLElement;
274
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
275
+ static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
276
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false>;
277
+ }
278
+ export declare interface PPageSizeSelect extends Components.PPageSizeSelect {
279
+ /**
280
+ * Event whenever the size changes
281
+ */
282
+ sizeChange: EventEmitter<CustomEvent<number>>;
283
+ }
284
+ export declare class PPageSizeSelect {
285
+ protected z: NgZone;
286
+ protected el: HTMLElement;
287
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
288
+ static ɵfac: i0.ɵɵFactoryDeclaration<PPageSizeSelect, never>;
289
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPageSizeSelect, "p-page-size-select", never, { "buttonSize": "buttonSize"; "buttonTemplate": "buttonTemplate"; "chevronPosition": "chevronPosition"; "hidden": "hidden"; "itemTemplate": "itemTemplate"; "size": "size"; "sizeOptions": "sizeOptions"; }, {}, never, ["*"], false>;
88
290
  }
89
291
  export declare interface PPagination extends Components.PPagination {
90
292
  /**
91
- *
293
+ * Event whenever the page changes
92
294
  */
93
295
  pageChange: EventEmitter<CustomEvent<number>>;
94
296
  }
@@ -97,7 +299,7 @@ export declare class PPagination {
97
299
  protected el: HTMLElement;
98
300
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
99
301
  static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
100
- static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"]>;
302
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false>;
101
303
  }
102
304
  export declare interface PPaginationItem extends Components.PPaginationItem {
103
305
  }
@@ -106,14 +308,256 @@ export declare class PPaginationItem {
106
308
  protected el: HTMLElement;
107
309
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
108
310
  static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationItem, never>;
109
- static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationItem, "p-pagination-item", never, { "active": "active"; }, {}, never, ["*"]>;
311
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationItem, "p-pagination-item", never, { "active": "active"; }, {}, never, ["*"], false>;
312
+ }
313
+ export declare interface PProfile extends Components.PProfile {
314
+ }
315
+ export declare class PProfile {
316
+ protected z: NgZone;
317
+ protected el: HTMLElement;
318
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
319
+ static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
320
+ static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
321
+ }
322
+ export declare interface PSegmentContainer extends Components.PSegmentContainer {
323
+ }
324
+ export declare class PSegmentContainer {
325
+ protected z: NgZone;
326
+ protected el: HTMLElement;
327
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
328
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
329
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false>;
330
+ }
331
+ export declare interface PSegmentItem extends Components.PSegmentItem {
332
+ }
333
+ export declare class PSegmentItem {
334
+ protected z: NgZone;
335
+ protected el: HTMLElement;
336
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
337
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
338
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; }, {}, never, ["*"], false>;
339
+ }
340
+ export declare interface PSliderIndicator extends Components.PSliderIndicator {
341
+ }
342
+ export declare class PSliderIndicator {
343
+ protected z: NgZone;
344
+ protected el: HTMLElement;
345
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
346
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSliderIndicator, never>;
347
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSliderIndicator, "p-slider-indicator", never, { "active": "active"; }, {}, never, ["*"], false>;
348
+ }
349
+ export declare interface PStatus extends Components.PStatus {
350
+ }
351
+ export declare class PStatus {
352
+ protected z: NgZone;
353
+ protected el: HTMLElement;
354
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
355
+ static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
356
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false>;
357
+ }
358
+ export declare interface PStepper extends Components.PStepper {
359
+ }
360
+ export declare class PStepper {
361
+ protected z: NgZone;
362
+ protected el: HTMLElement;
363
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
364
+ static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
365
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "direction": "direction"; }, {}, never, ["*"], false>;
366
+ }
367
+ export declare interface PStepperItem extends Components.PStepperItem {
368
+ }
369
+ export declare class PStepperItem {
370
+ protected z: NgZone;
371
+ protected el: HTMLElement;
372
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
373
+ static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
374
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "direction": "direction"; "finished": "finished"; }, {}, never, ["*"], false>;
375
+ }
376
+ export declare interface PStepperLine extends Components.PStepperLine {
377
+ }
378
+ export declare class PStepperLine {
379
+ protected z: NgZone;
380
+ protected el: HTMLElement;
381
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
382
+ static ɵfac: i0.ɵɵFactoryDeclaration<PStepperLine, never>;
383
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepperLine, "p-stepper-line", never, { "active": "active"; "direction": "direction"; }, {}, never, ["*"], false>;
384
+ }
385
+ export declare interface PTabGroup extends Components.PTabGroup {
386
+ }
387
+ export declare class PTabGroup {
388
+ protected z: NgZone;
389
+ protected el: HTMLElement;
390
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
391
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTabGroup, never>;
392
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTabGroup, "p-tab-group", never, {}, {}, never, ["*"], false>;
393
+ }
394
+ export declare interface PTabItem extends Components.PTabItem {
395
+ }
396
+ export declare class PTabItem {
397
+ protected z: NgZone;
398
+ protected el: HTMLElement;
399
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
400
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTabItem, never>;
401
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTabItem, "p-tab-item", never, { "active": "active"; }, {}, never, ["*"], false>;
402
+ }
403
+ export declare interface PTable extends Components.PTable {
404
+ /**
405
+ * Event whenever the current selection changes
406
+ */
407
+ selectedRowsChange: EventEmitter<CustomEvent<any>>;
408
+ /**
409
+ * Event whenever a row is clicked
410
+ */
411
+ rowClick: EventEmitter<CustomEvent<any>>;
412
+ /**
413
+ * Event whenever a row is selected
414
+ */
415
+ rowSelected: EventEmitter<CustomEvent<any>>;
416
+ /**
417
+ * Event whenever a row is deselected
418
+ */
419
+ rowDeselected: EventEmitter<CustomEvent<any>>;
420
+ /**
421
+ * Event when one of the quick filters is clicked
422
+ */
423
+ quickFilter: EventEmitter<CustomEvent<ITableQuickFilter>>;
424
+ /**
425
+ * Event when the query changes
426
+ */
427
+ queryChange: EventEmitter<CustomEvent<string>>;
428
+ /**
429
+ * Event when the filter button is clicked
430
+ */
431
+ filter: EventEmitter<CustomEvent<null>>;
432
+ /**
433
+ * Event when the edit button is clicked
434
+ */
435
+ edit: EventEmitter<CustomEvent<null>>;
436
+ /**
437
+ * Event whenever the page changes
438
+ */
439
+ pageChange: EventEmitter<CustomEvent<number>>;
440
+ /**
441
+ * Event whenever the page changes
442
+ */
443
+ pageSizeChange: EventEmitter<CustomEvent<number>>;
444
+ /**
445
+ * Event whenever the page changes
446
+ */
447
+ export: EventEmitter<CustomEvent<number>>;
448
+ }
449
+ export declare class PTable {
450
+ protected z: NgZone;
451
+ protected el: HTMLElement;
452
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
453
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTable, never>;
454
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table", never, { "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "amountOfLoadingRows": "amountOfLoadingRows"; "canSelectKey": "canSelectKey"; "editButtonTemplate": "editButtonTemplate"; "enableEdit": "enableEdit"; "enableExport": "enableExport"; "enableFilter": "enableFilter"; "enablePageSize": "enablePageSize"; "enablePagination": "enablePagination"; "enableRowClick": "enableRowClick"; "enableRowSelection": "enableRowSelection"; "enableSearch": "enableSearch"; "filterButtonTemplate": "filterButtonTemplate"; "hideOnSinglePage": "hideOnSinglePage"; "items": "items"; "loading": "loading"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "query": "query"; "quickFilters": "quickFilters"; "selectedFiltersAmount": "selectedFiltersAmount"; "selectedRows": "selectedRows"; "selectionKey": "selectionKey"; "total": "total"; }, {}, never, ["*"], false>;
455
+ }
456
+ export declare interface PTableBody extends Components.PTableBody {
457
+ }
458
+ export declare class PTableBody {
459
+ protected z: NgZone;
460
+ protected el: HTMLElement;
461
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
462
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableBody, never>;
463
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableBody, "p-table-body", never, {}, {}, never, ["*"], false>;
464
+ }
465
+ export declare interface PTableContainer extends Components.PTableContainer {
466
+ }
467
+ export declare class PTableContainer {
468
+ protected z: NgZone;
469
+ protected el: HTMLElement;
470
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
471
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableContainer, never>;
472
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {}, {}, never, ["*"], false>;
473
+ }
474
+ export declare interface PTableDefinition extends Components.PTableDefinition {
475
+ /**
476
+ * Event to let the table know it has to re render
477
+ */
478
+ tableDefinitionChanged: EventEmitter<CustomEvent<boolean>>;
479
+ }
480
+ export declare class PTableDefinition {
481
+ protected z: NgZone;
482
+ protected el: HTMLElement;
483
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
484
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableDefinition, never>;
485
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableDefinition, "p-table-definition", never, { "align": "align"; "name": "name"; "path": "path"; "sizes": "sizes"; "template": "template"; "type": "type"; }, {}, never, ["*"], false>;
486
+ }
487
+ export declare interface PTableFooter extends Components.PTableFooter {
488
+ /**
489
+ * Event whenever the page changes
490
+ */
491
+ pageChange: EventEmitter<CustomEvent<number>>;
492
+ /**
493
+ * Event whenever the page changes
494
+ */
495
+ pageSizeChange: EventEmitter<CustomEvent<number>>;
496
+ /**
497
+ * Event whenever the page changes
498
+ */
499
+ export: EventEmitter<CustomEvent<number>>;
500
+ }
501
+ export declare class PTableFooter {
502
+ protected z: NgZone;
503
+ protected el: HTMLElement;
504
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
505
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableFooter, never>;
506
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableFooter, "p-table-footer", never, { "enableExport": "enableExport"; "enablePageSize": "enablePageSize"; "enablePagination": "enablePagination"; "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "total": "total"; }, {}, never, ["*"], false>;
507
+ }
508
+ export declare interface PTableHeader extends Components.PTableHeader {
509
+ /**
510
+ * Event when one of the quick filters is clicked
511
+ */
512
+ quickFilter: EventEmitter<CustomEvent<ITableHeaderQuickFilter>>;
513
+ /**
514
+ * Event when the query changes
515
+ */
516
+ queryChange: EventEmitter<CustomEvent<string>>;
517
+ /**
518
+ * Event when the filter button is clicked
519
+ */
520
+ filter: EventEmitter<CustomEvent<null>>;
521
+ /**
522
+ * Event when the edit button is clicked
523
+ */
524
+ edit: EventEmitter<CustomEvent<null>>;
525
+ }
526
+ export declare class PTableHeader {
527
+ protected z: NgZone;
528
+ protected el: HTMLElement;
529
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
530
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableHeader, never>;
531
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableHeader, "p-table-header", never, { "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "canEdit": "canEdit"; "editButtonTemplate": "editButtonTemplate"; "enableEdit": "enableEdit"; "enableFilter": "enableFilter"; "enableSearch": "enableSearch"; "filterButtonTemplate": "filterButtonTemplate"; "itemsSelectedAmount": "itemsSelectedAmount"; "query": "query"; "quickFilters": "quickFilters"; "selectedFiltersAmount": "selectedFiltersAmount"; }, {}, never, ["*"], false>;
532
+ }
533
+ export declare interface PTableRow extends Components.PTableRow {
534
+ }
535
+ export declare class PTableRow {
536
+ protected z: NgZone;
537
+ protected el: HTMLElement;
538
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
539
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableRow, never>;
540
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false>;
541
+ }
542
+ export declare interface PTag extends Components.PTag {
543
+ }
544
+ export declare class PTag {
545
+ protected z: NgZone;
546
+ protected el: HTMLElement;
547
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
548
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTag, never>;
549
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTag, "p-tag", never, { "circle": "circle"; "variant": "variant"; }, {}, never, ["*"], false>;
110
550
  }
111
551
  export declare interface PTooltip extends Components.PTooltip {
552
+ /**
553
+ * Open change event
554
+ */
555
+ isOpen: EventEmitter<CustomEvent<boolean>>;
112
556
  }
113
557
  export declare class PTooltip {
114
558
  protected z: NgZone;
115
559
  protected el: HTMLElement;
116
560
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
117
561
  static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
118
- static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "placement": "placement"; "popover": "popover"; "show": "show"; "variant": "variant"; }, {}, never, ["*"]>;
562
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "placement": "placement"; "popover": "popover"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false>;
119
563
  }
@@ -1,2 +1,2 @@
1
1
  import * as d from './components';
2
- export declare const DIRECTIVES: (typeof d.PAvatar | typeof d.PButton | typeof d.PCounter | typeof d.PDivider | typeof d.PHelper | typeof d.PIcon | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PLoader | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PTooltip)[];
2
+ export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PButton | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PContentSlider | typeof d.PCounter | typeof d.PDivider | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PHelper | typeof d.PIcon | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputGroup | typeof d.PLayout | typeof d.PLoader | typeof d.PModal | typeof d.PModalBackdrop | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavbar | typeof d.PNavigationItem | typeof d.PPageSizeSelect | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PProfile | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PSliderIndicator | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTable | typeof d.PTableBody | typeof d.PTableContainer | typeof d.PTableDefinition | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | typeof d.PTag | typeof d.PTooltip)[];
package/package.json CHANGED
@@ -1,25 +1,26 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "0.1.0-alpha.15",
3
+ "version": "0.1.0-alpha.150",
4
4
  "peerDependencies": {
5
- "@angular/common": "^13.3.0",
6
- "@angular/core": "^13.3.0"
5
+ "@angular/common": "^13.3.0 || ^14.0.0",
6
+ "@angular/core": "^13.3.0 || ^14.0.0"
7
7
  },
8
8
  "dependencies": {
9
- "tslib": "^2.3.0"
9
+ "@ngneat/until-destroy": "9.2.2",
10
+ "tslib": "2.4.0"
10
11
  },
11
12
  "module": "fesm2015/paperless-angular.mjs",
12
13
  "es2020": "fesm2020/paperless-angular.mjs",
13
14
  "esm2020": "esm2020/paperless-angular.mjs",
14
15
  "fesm2020": "fesm2020/paperless-angular.mjs",
15
16
  "fesm2015": "fesm2015/paperless-angular.mjs",
16
- "typings": "paperless-angular.d.ts",
17
+ "typings": "index.d.ts",
17
18
  "exports": {
18
19
  "./package.json": {
19
20
  "default": "./package.json"
20
21
  },
21
22
  ".": {
22
- "types": "./paperless-angular.d.ts",
23
+ "types": "./index.d.ts",
23
24
  "esm2020": "./esm2020/paperless-angular.mjs",
24
25
  "es2020": "./fesm2020/paperless-angular.mjs",
25
26
  "es2015": "./fesm2015/paperless-angular.mjs",
package/public-api.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './lib/base';
1
2
  export * from './lib/directives';
2
3
  export * from './lib/paperless.module';
3
4
  export * from './lib/stencil/components';