@paperless/angular 0.1.0-alpha.19 → 0.1.0-alpha.191

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 (36) hide show
  1. package/esm2020/lib/base/form.component.mjs +105 -0
  2. package/esm2020/lib/base/index.mjs +5 -0
  3. package/esm2020/lib/base/table.component.mjs +162 -0
  4. package/esm2020/lib/base/upload.component.mjs +57 -0
  5. package/esm2020/lib/base/value-accessor.mjs +42 -0
  6. package/esm2020/lib/directives/index.mjs +19 -0
  7. package/esm2020/lib/directives/p-page-size-select.directive.mjs +42 -0
  8. package/esm2020/lib/directives/p-pagination.directive.mjs +42 -0
  9. package/esm2020/lib/directives/p-table-footer.directive.mjs +52 -0
  10. package/esm2020/lib/directives/p-table-header.directive.mjs +60 -0
  11. package/esm2020/lib/directives/p-table.directive.mjs +78 -0
  12. package/esm2020/lib/paperless.module.mjs +13 -7
  13. package/esm2020/lib/stencil/components.mjs +917 -60
  14. package/esm2020/lib/stencil/index.mjs +35 -1
  15. package/esm2020/public-api.mjs +3 -1
  16. package/fesm2015/paperless-angular.mjs +1570 -106
  17. package/fesm2015/paperless-angular.mjs.map +1 -1
  18. package/fesm2020/paperless-angular.mjs +1579 -106
  19. package/fesm2020/paperless-angular.mjs.map +1 -1
  20. package/{paperless-angular.d.ts → index.d.ts} +0 -0
  21. package/lib/base/form.component.d.ts +15 -0
  22. package/lib/base/index.d.ts +4 -0
  23. package/lib/base/table.component.d.ts +45 -0
  24. package/lib/base/upload.component.d.ts +16 -0
  25. package/lib/base/value-accessor.d.ts +17 -0
  26. package/lib/directives/index.d.ts +10 -0
  27. package/lib/directives/p-page-size-select.directive.d.ts +10 -0
  28. package/lib/directives/p-pagination.directive.d.ts +10 -0
  29. package/lib/directives/p-table-footer.directive.d.ts +11 -0
  30. package/lib/directives/p-table-header.directive.d.ts +17 -0
  31. package/lib/directives/p-table.directive.d.ts +22 -0
  32. package/lib/paperless.module.d.ts +6 -1
  33. package/lib/stencil/components.d.ts +380 -13
  34. package/lib/stencil/index.d.ts +1 -1
  35. package/package.json +7 -6
  36. package/public-api.d.ts +2 -0
@@ -1,6 +1,20 @@
1
1
  import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
2
2
  import { Components } from '@paperless/core';
3
+ import type { QuickFilter as ITableHeaderQuickFilter } from '@paperless/core';
3
4
  import * as i0 from "@angular/core";
5
+ export declare interface PAccordion extends Components.PAccordion {
6
+ /**
7
+ * Open change event
8
+ */
9
+ isOpen: EventEmitter<CustomEvent<boolean>>;
10
+ }
11
+ export declare class PAccordion {
12
+ protected z: NgZone;
13
+ protected el: HTMLElement;
14
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion", never, { "closeable": "closeable"; "header": "header"; "open": "open"; "openable": "openable"; }, {}, never, ["*"], false>;
17
+ }
4
18
  export declare interface PAvatar extends Components.PAvatar {
5
19
  }
6
20
  export declare class PAvatar {
@@ -8,7 +22,16 @@ export declare class PAvatar {
8
22
  protected el: HTMLElement;
9
23
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
10
24
  static ɵfac: i0.ɵɵFactoryDeclaration<PAvatar, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "size": "size"; "src": "src"; "variant": "variant"; }, {}, never, ["*"]>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "size": "size"; "src": "src"; "variant": "variant"; }, {}, never, ["*"], false>;
26
+ }
27
+ export declare interface PAvatarGroup extends Components.PAvatarGroup {
28
+ }
29
+ export declare class PAvatarGroup {
30
+ protected z: NgZone;
31
+ protected el: HTMLElement;
32
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<PAvatarGroup, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAvatarGroup, "p-avatar-group", never, { "extra": "extra"; }, {}, never, ["*"], false>;
12
35
  }
13
36
  export declare interface PButton extends Components.PButton {
14
37
  /**
@@ -21,7 +44,43 @@ export declare class PButton {
21
44
  protected el: HTMLElement;
22
45
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
23
46
  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, ["*"]>;
47
+ 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>;
48
+ }
49
+ export declare interface PCardBody extends Components.PCardBody {
50
+ }
51
+ export declare class PCardBody {
52
+ protected z: NgZone;
53
+ protected el: HTMLElement;
54
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
55
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCardBody, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCardBody, "p-card-body", never, { "inheritText": "inheritText"; }, {}, never, ["*"], false>;
57
+ }
58
+ export declare interface PCardContainer extends Components.PCardContainer {
59
+ }
60
+ export declare class PCardContainer {
61
+ protected z: NgZone;
62
+ protected el: HTMLElement;
63
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
64
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCardContainer, never>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "hoverable": "hoverable"; "shadow": "shadow"; }, {}, never, ["*"], false>;
66
+ }
67
+ export declare interface PCardHeader extends Components.PCardHeader {
68
+ }
69
+ export declare class PCardHeader {
70
+ protected z: NgZone;
71
+ protected el: HTMLElement;
72
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
73
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCardHeader, never>;
74
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "arrow": "arrow"; "header": "header"; }, {}, never, ["*"], false>;
75
+ }
76
+ export declare interface PContentSlider extends Components.PContentSlider {
77
+ }
78
+ export declare class PContentSlider {
79
+ protected z: NgZone;
80
+ protected el: HTMLElement;
81
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
82
+ static ɵfac: i0.ɵɵFactoryDeclaration<PContentSlider, never>;
83
+ static ɵcmp: i0.ɵɵComponentDeclaration<PContentSlider, "p-content-slider", never, { "disableAutoCenter": "disableAutoCenter"; "disableDrag": "disableDrag"; "disableIndicatorClick": "disableIndicatorClick"; "hideMobileIndicator": "hideMobileIndicator"; }, {}, never, ["*"], false>;
25
84
  }
26
85
  export declare interface PCounter extends Components.PCounter {
27
86
  }
@@ -30,7 +89,7 @@ export declare class PCounter {
30
89
  protected el: HTMLElement;
31
90
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
32
91
  static ɵfac: i0.ɵɵFactoryDeclaration<PCounter, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, {}, {}, never, ["*"]>;
92
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
34
93
  }
35
94
  export declare interface PDivider extends Components.PDivider {
36
95
  }
@@ -39,7 +98,38 @@ export declare class PDivider {
39
98
  protected el: HTMLElement;
40
99
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
41
100
  static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, {}, {}, never, ["*"]>;
101
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, {}, {}, never, ["*"], false>;
102
+ }
103
+ export declare interface PDropdown extends Components.PDropdown {
104
+ /**
105
+ * Open change event
106
+ */
107
+ isOpen: EventEmitter<CustomEvent<boolean>>;
108
+ }
109
+ export declare class PDropdown {
110
+ protected z: NgZone;
111
+ protected el: HTMLElement;
112
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
113
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
114
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "calculateWidth": "calculateWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "placement": "placement"; "show": "show"; "strategy": "strategy"; }, {}, never, ["*"], false>;
115
+ }
116
+ export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
117
+ }
118
+ export declare class PDropdownMenuContainer {
119
+ protected z: NgZone;
120
+ protected el: HTMLElement;
121
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
122
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
123
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "maxWidth": "maxWidth"; }, {}, never, ["*"], false>;
124
+ }
125
+ export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
126
+ }
127
+ export declare class PDropdownMenuItem {
128
+ protected z: NgZone;
129
+ protected el: HTMLElement;
130
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
131
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
132
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "enableHover": "enableHover"; "icon": "icon"; }, {}, never, ["*"], false>;
43
133
  }
44
134
  export declare interface PHelper extends Components.PHelper {
45
135
  }
@@ -48,7 +138,7 @@ export declare class PHelper {
48
138
  protected el: HTMLElement;
49
139
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
50
140
  static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, {}, {}, never, ["*"]>;
141
+ static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; }, {}, never, ["*"], false>;
52
142
  }
53
143
  export declare interface PIcon extends Components.PIcon {
54
144
  }
@@ -57,7 +147,7 @@ export declare class PIcon {
57
147
  protected el: HTMLElement;
58
148
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
59
149
  static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
60
- static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
150
+ static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
61
151
  }
62
152
  export declare interface PIllustration extends Components.PIllustration {
63
153
  }
@@ -66,7 +156,7 @@ export declare class PIllustration {
66
156
  protected el: HTMLElement;
67
157
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
68
158
  static ɵfac: i0.ɵɵFactoryDeclaration<PIllustration, never>;
69
- static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"]>;
159
+ static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"], false>;
70
160
  }
71
161
  export declare interface PInfoPanel extends Components.PInfoPanel {
72
162
  }
@@ -75,7 +165,34 @@ export declare class PInfoPanel {
75
165
  protected el: HTMLElement;
76
166
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
77
167
  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, ["*"]>;
168
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false>;
169
+ }
170
+ export declare interface PInputGroup extends Components.PInputGroup {
171
+ }
172
+ export declare class PInputGroup {
173
+ protected z: NgZone;
174
+ protected el: HTMLElement;
175
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
176
+ static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
177
+ static ɵcmp: i0.ɵɵComponentDeclaration<PInputGroup, "p-input-group", never, { "disabled": "disabled"; "error": "error"; "focused": "focused"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "prefix": "prefix"; "size": "size"; "suffix": "suffix"; }, {}, never, ["*"], false>;
178
+ }
179
+ export declare interface PLabel extends Components.PLabel {
180
+ }
181
+ export declare class PLabel {
182
+ protected z: NgZone;
183
+ protected el: HTMLElement;
184
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
185
+ static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, never>;
186
+ static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "circle": "circle"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
187
+ }
188
+ export declare interface PLayout extends Components.PLayout {
189
+ }
190
+ export declare class PLayout {
191
+ protected z: NgZone;
192
+ protected el: HTMLElement;
193
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
194
+ static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
195
+ static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false>;
79
196
  }
80
197
  export declare interface PLoader extends Components.PLoader {
81
198
  }
@@ -84,11 +201,104 @@ export declare class PLoader {
84
201
  protected el: HTMLElement;
85
202
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
86
203
  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, ["*"]>;
204
+ static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false>;
205
+ }
206
+ export declare interface PModal extends Components.PModal {
207
+ /**
208
+ * Close click event
209
+ */
210
+ close: EventEmitter<CustomEvent<MouseEvent>>;
211
+ }
212
+ export declare class PModal {
213
+ protected z: NgZone;
214
+ protected el: HTMLElement;
215
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
216
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
217
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "header": "header"; "show": "show"; "showMobileClose": "showMobileClose"; "showMobileFooter": "showMobileFooter"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
218
+ }
219
+ export declare interface PModalBackdrop extends Components.PModalBackdrop {
220
+ }
221
+ export declare class PModalBackdrop {
222
+ protected z: NgZone;
223
+ protected el: HTMLElement;
224
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
225
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalBackdrop, never>;
226
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalBackdrop, "p-modal-backdrop", never, {}, {}, never, ["*"], false>;
227
+ }
228
+ export declare interface PModalBody extends Components.PModalBody {
229
+ }
230
+ export declare class PModalBody {
231
+ protected z: NgZone;
232
+ protected el: HTMLElement;
233
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
234
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
235
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "variant": "variant"; }, {}, never, ["*"], false>;
236
+ }
237
+ export declare interface PModalContainer extends Components.PModalContainer {
238
+ }
239
+ export declare class PModalContainer {
240
+ protected z: NgZone;
241
+ protected el: HTMLElement;
242
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
243
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
244
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "size": "size"; }, {}, never, ["*"], false>;
245
+ }
246
+ export declare interface PModalFooter extends Components.PModalFooter {
247
+ }
248
+ export declare class PModalFooter {
249
+ protected z: NgZone;
250
+ protected el: HTMLElement;
251
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
252
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
253
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, { "hideOnMobile": "hideOnMobile"; }, {}, never, ["*"], false>;
254
+ }
255
+ export declare interface PModalHeader extends Components.PModalHeader {
256
+ /**
257
+ * Close click event
258
+ */
259
+ close: EventEmitter<CustomEvent<MouseEvent>>;
260
+ }
261
+ export declare class PModalHeader {
262
+ protected z: NgZone;
263
+ protected el: HTMLElement;
264
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
265
+ static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
266
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, { "showMobileClose": "showMobileClose"; }, {}, never, ["*"], false>;
267
+ }
268
+ export declare interface PNavbar extends Components.PNavbar {
269
+ }
270
+ export declare class PNavbar {
271
+ protected z: NgZone;
272
+ protected el: HTMLElement;
273
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
274
+ static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
275
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, { "closeText": "closeText"; "menuText": "menuText"; }, {}, never, ["*"], false>;
276
+ }
277
+ export declare interface PNavigationItem extends Components.PNavigationItem {
278
+ }
279
+ export declare class PNavigationItem {
280
+ protected z: NgZone;
281
+ protected el: HTMLElement;
282
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
283
+ static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
284
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false>;
285
+ }
286
+ export declare interface PPageSizeSelect extends Components.PPageSizeSelect {
287
+ /**
288
+ * Event whenever the size changes
289
+ */
290
+ sizeChange: EventEmitter<CustomEvent<number>>;
291
+ }
292
+ export declare class PPageSizeSelect {
293
+ protected z: NgZone;
294
+ protected el: HTMLElement;
295
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
296
+ static ɵfac: i0.ɵɵFactoryDeclaration<PPageSizeSelect, never>;
297
+ 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
298
  }
89
299
  export declare interface PPagination extends Components.PPagination {
90
300
  /**
91
- *
301
+ * Event whenever the page changes
92
302
  */
93
303
  pageChange: EventEmitter<CustomEvent<number>>;
94
304
  }
@@ -97,7 +307,7 @@ export declare class PPagination {
97
307
  protected el: HTMLElement;
98
308
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
99
309
  static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
100
- static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"]>;
310
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false>;
101
311
  }
102
312
  export declare interface PPaginationItem extends Components.PPaginationItem {
103
313
  }
@@ -106,14 +316,171 @@ export declare class PPaginationItem {
106
316
  protected el: HTMLElement;
107
317
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
108
318
  static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationItem, never>;
109
- static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationItem, "p-pagination-item", never, { "active": "active"; }, {}, never, ["*"]>;
319
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationItem, "p-pagination-item", never, { "active": "active"; }, {}, never, ["*"], false>;
320
+ }
321
+ export declare interface PProfile extends Components.PProfile {
322
+ }
323
+ export declare class PProfile {
324
+ protected z: NgZone;
325
+ protected el: HTMLElement;
326
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
327
+ static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
328
+ static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
329
+ }
330
+ export declare interface PSegmentContainer extends Components.PSegmentContainer {
331
+ }
332
+ export declare class PSegmentContainer {
333
+ protected z: NgZone;
334
+ protected el: HTMLElement;
335
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
336
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
337
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false>;
338
+ }
339
+ export declare interface PSegmentItem extends Components.PSegmentItem {
340
+ }
341
+ export declare class PSegmentItem {
342
+ protected z: NgZone;
343
+ protected el: HTMLElement;
344
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
345
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
346
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; }, {}, never, ["*"], false>;
347
+ }
348
+ export declare interface PSelect extends Components.PSelect {
349
+ /**
350
+ * Event when the query of the autocomplete changes
351
+ */
352
+ queryChange: EventEmitter<CustomEvent<string>>;
353
+ /**
354
+ * Event when the value changes
355
+ */
356
+ valueChange: EventEmitter<CustomEvent<any>>;
357
+ }
358
+ export declare class PSelect {
359
+ protected z: NgZone;
360
+ protected el: HTMLElement;
361
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
362
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
363
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select", never, { "asyncFilter": "asyncFilter"; "autoSelectFirst": "autoSelectFirst"; "autocompletePlaceholder": "autocompletePlaceholder"; "disabled": "disabled"; "displayKey": "displayKey"; "enableAutocomplete": "enableAutocomplete"; "error": "error"; "helper": "helper"; "items": "items"; "label": "label"; "loading": "loading"; "maxDisplayedItems": "maxDisplayedItems"; "placeholder": "placeholder"; "prefix": "prefix"; "query": "query"; "queryKey": "queryKey"; "size": "size"; "value": "value"; "valueKey": "valueKey"; }, {}, never, ["*"], false>;
364
+ }
365
+ export declare interface PSliderIndicator extends Components.PSliderIndicator {
366
+ }
367
+ export declare class PSliderIndicator {
368
+ protected z: NgZone;
369
+ protected el: HTMLElement;
370
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
371
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSliderIndicator, never>;
372
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSliderIndicator, "p-slider-indicator", never, { "active": "active"; }, {}, never, ["*"], false>;
373
+ }
374
+ export declare interface PStatus extends Components.PStatus {
375
+ }
376
+ export declare class PStatus {
377
+ protected z: NgZone;
378
+ protected el: HTMLElement;
379
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
380
+ static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
381
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false>;
382
+ }
383
+ export declare interface PStepper extends Components.PStepper {
384
+ }
385
+ export declare class PStepper {
386
+ protected z: NgZone;
387
+ protected el: HTMLElement;
388
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
389
+ static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
390
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "direction": "direction"; }, {}, never, ["*"], false>;
391
+ }
392
+ export declare interface PStepperItem extends Components.PStepperItem {
393
+ }
394
+ export declare class PStepperItem {
395
+ protected z: NgZone;
396
+ protected el: HTMLElement;
397
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
398
+ static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
399
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "direction": "direction"; "finished": "finished"; }, {}, never, ["*"], false>;
400
+ }
401
+ export declare interface PStepperLine extends Components.PStepperLine {
402
+ }
403
+ export declare class PStepperLine {
404
+ protected z: NgZone;
405
+ protected el: HTMLElement;
406
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
407
+ static ɵfac: i0.ɵɵFactoryDeclaration<PStepperLine, never>;
408
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepperLine, "p-stepper-line", never, { "active": "active"; "direction": "direction"; }, {}, never, ["*"], false>;
409
+ }
410
+ export declare interface PTabGroup extends Components.PTabGroup {
411
+ }
412
+ export declare class PTabGroup {
413
+ protected z: NgZone;
414
+ protected el: HTMLElement;
415
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
416
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTabGroup, never>;
417
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTabGroup, "p-tab-group", never, {}, {}, never, ["*"], false>;
418
+ }
419
+ export declare interface PTabItem extends Components.PTabItem {
420
+ }
421
+ export declare class PTabItem {
422
+ protected z: NgZone;
423
+ protected el: HTMLElement;
424
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
425
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTabItem, never>;
426
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTabItem, "p-tab-item", never, { "active": "active"; }, {}, never, ["*"], false>;
427
+ }
428
+ export declare interface PTableFooter extends Components.PTableFooter {
429
+ /**
430
+ * Event whenever the page changes
431
+ */
432
+ pageChange: EventEmitter<CustomEvent<number>>;
433
+ /**
434
+ * Event whenever the page changes
435
+ */
436
+ pageSizeChange: EventEmitter<CustomEvent<number>>;
437
+ /**
438
+ * Event whenever the page changes
439
+ */
440
+ export: EventEmitter<CustomEvent<number>>;
441
+ }
442
+ export declare class PTableFooter {
443
+ protected z: NgZone;
444
+ protected el: HTMLElement;
445
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
446
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableFooter, never>;
447
+ 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>;
448
+ }
449
+ export declare interface PTableHeader extends Components.PTableHeader {
450
+ /**
451
+ * Event when one of the quick filters is clicked
452
+ */
453
+ quickFilter: EventEmitter<CustomEvent<ITableHeaderQuickFilter>>;
454
+ /**
455
+ * Event when the query changes
456
+ */
457
+ queryChange: EventEmitter<CustomEvent<string>>;
458
+ /**
459
+ * Event when the filter button is clicked
460
+ */
461
+ filter: EventEmitter<CustomEvent<null>>;
462
+ /**
463
+ * Event when the edit button is clicked
464
+ */
465
+ edit: EventEmitter<CustomEvent<null>>;
466
+ }
467
+ export declare class PTableHeader {
468
+ protected z: NgZone;
469
+ protected el: HTMLElement;
470
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
471
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableHeader, never>;
472
+ 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>;
110
473
  }
111
474
  export declare interface PTooltip extends Components.PTooltip {
475
+ /**
476
+ * Open change event
477
+ */
478
+ isOpen: EventEmitter<CustomEvent<boolean>>;
112
479
  }
113
480
  export declare class PTooltip {
114
481
  protected z: NgZone;
115
482
  protected el: HTMLElement;
116
483
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
117
484
  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, ["*"]>;
485
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "placement": "placement"; "popover": "popover"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false>;
119
486
  }
@@ -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.PLabel | 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.PSelect | typeof d.PSliderIndicator | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTooltip)[];
package/package.json CHANGED
@@ -1,25 +1,26 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "0.1.0-alpha.19",
3
+ "version": "0.1.0-alpha.191",
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,2 +1,4 @@
1
+ export * from './lib/base';
2
+ export * from './lib/directives';
1
3
  export * from './lib/paperless.module';
2
4
  export * from './lib/stencil/components';