@paperless/angular 2.0.1-beta.19 → 2.0.1-beta.190

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 (40) hide show
  1. package/esm2020/lib/directives/index.mjs +19 -7
  2. package/esm2020/lib/directives/p-checkbox.directive.mjs +39 -0
  3. package/esm2020/lib/directives/p-field.directive.mjs +38 -0
  4. package/esm2020/lib/directives/p-pagination-pages.directive.mjs +41 -0
  5. package/esm2020/lib/directives/p-pagination-size.directive.mjs +41 -0
  6. package/esm2020/lib/directives/p-radio.directive.mjs +60 -0
  7. package/esm2020/lib/directives/p-toggle.directive.mjs +38 -0
  8. package/esm2020/lib/modules/table/components/table/table.component.mjs +146 -80
  9. package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +5 -19
  10. package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +20 -4
  11. package/esm2020/lib/modules/toast/types.mjs +4 -3
  12. package/esm2020/lib/paperless.module.mjs +15 -11
  13. package/esm2020/lib/stencil/angular-component-lib/utils.mjs +9 -1
  14. package/esm2020/lib/stencil/components.mjs +410 -241
  15. package/esm2020/lib/stencil/index.mjs +16 -9
  16. package/esm2020/lib/stencil.module.mjs +1 -1
  17. package/fesm2015/paperless-angular.mjs +789 -378
  18. package/fesm2015/paperless-angular.mjs.map +1 -1
  19. package/fesm2020/paperless-angular.mjs +784 -377
  20. package/fesm2020/paperless-angular.mjs.map +1 -1
  21. package/lib/directives/index.d.ts +9 -4
  22. package/lib/directives/p-checkbox.directive.d.ts +9 -0
  23. package/lib/directives/p-field.directive.d.ts +9 -0
  24. package/lib/directives/p-pagination-pages.directive.d.ts +10 -0
  25. package/lib/directives/{p-page-size-select.directive.d.ts → p-pagination-size.directive.d.ts} +3 -3
  26. package/lib/directives/p-radio.directive.d.ts +18 -0
  27. package/lib/directives/p-toggle.directive.d.ts +9 -0
  28. package/lib/modules/table/components/table/table.component.d.ts +40 -14
  29. package/lib/modules/table/components/table-cell/table-cell.component.d.ts +2 -6
  30. package/lib/modules/table/components/table-column/table-column.component.d.ts +1 -1
  31. package/lib/modules/toast/types.d.ts +3 -2
  32. package/lib/paperless.module.d.ts +15 -11
  33. package/lib/stencil/components.d.ts +284 -157
  34. package/lib/stencil/index.d.ts +1 -1
  35. package/lib/stencil.module.d.ts +1 -1
  36. package/package.json +1 -1
  37. package/paperless.css +250 -55
  38. package/esm2020/lib/directives/p-page-size-select.directive.mjs +0 -41
  39. package/esm2020/lib/directives/p-pagination.directive.mjs +0 -41
  40. package/lib/directives/p-pagination.directive.d.ts +0 -10
@@ -4,10 +4,10 @@ import type { QuickFilter as IPTableHeaderQuickFilter } from '@paperless/core';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class PAccordion {
6
6
  protected z: NgZone;
7
- protected el: HTMLElement;
7
+ protected el: HTMLPAccordionElement;
8
8
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion", never, { "closeable": "closeable"; "header": "header"; "open": "open"; "openable": "openable"; }, {}, never, ["*"], false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion", never, { "closeable": "closeable"; "header": "header"; "open": "open"; "openable": "openable"; "variant": "variant"; }, {}, never, ["*"], false, never>;
11
11
  }
12
12
  export declare interface PAccordion extends Components.PAccordion {
13
13
  /**
@@ -17,24 +17,32 @@ export declare interface PAccordion extends Components.PAccordion {
17
17
  }
18
18
  export declare class PAttachment {
19
19
  protected z: NgZone;
20
- protected el: HTMLElement;
20
+ protected el: HTMLPAttachmentElement;
21
21
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<PAttachment, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<PAttachment, "p-attachment", never, { "downloading": "downloading"; "error": "error"; "loading": "loading"; "mode": "mode"; }, {}, never, ["*"], false, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAttachment, "p-attachment", never, { "accept": "accept"; "cameraTooltip": "cameraTooltip"; "deleteTooltip": "deleteTooltip"; "downloadTooltip": "downloadTooltip"; "enableCameraOnMobile": "enableCameraOnMobile"; "error": "error"; "fileId": "fileId"; "helper": "helper"; "label": "label"; "loading": "loading"; "mode": "mode"; "placeholder": "placeholder"; "required": "required"; "uploadTooltip": "uploadTooltip"; "value": "value"; }, {}, never, ["*"], false, never>;
24
24
  }
25
25
  export declare interface PAttachment extends Components.PAttachment {
26
+ /**
27
+ * Event when upload is pressed
28
+ */
29
+ upload: EventEmitter<CustomEvent<{
30
+ file: File;
31
+ fileId: string;
32
+ result: string;
33
+ }>>;
26
34
  /**
27
35
  * Event when download is pressed
28
36
  */
29
- download: EventEmitter<CustomEvent<any>>;
37
+ download: EventEmitter<CustomEvent<void>>;
30
38
  /**
31
39
  * Event when delete is pressed
32
40
  */
33
- delete: EventEmitter<CustomEvent<any>>;
41
+ delete: EventEmitter<CustomEvent<void>>;
34
42
  }
35
43
  export declare class PAvatar {
36
44
  protected z: NgZone;
37
- protected el: HTMLElement;
45
+ protected el: HTMLPAvatarElement;
38
46
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
39
47
  static ɵfac: i0.ɵɵFactoryDeclaration<PAvatar, never>;
40
48
  static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "letters": "letters"; "size": "size"; "src": "src"; }, {}, never, ["*"], false, never>;
@@ -43,7 +51,7 @@ export declare interface PAvatar extends Components.PAvatar {
43
51
  }
44
52
  export declare class PAvatarGroup {
45
53
  protected z: NgZone;
46
- protected el: HTMLElement;
54
+ protected el: HTMLPAvatarGroupElement;
47
55
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
48
56
  static ɵfac: i0.ɵɵFactoryDeclaration<PAvatarGroup, never>;
49
57
  static ɵcmp: i0.ɵɵComponentDeclaration<PAvatarGroup, "p-avatar-group", never, { "extra": "extra"; }, {}, never, ["*"], false, never>;
@@ -52,7 +60,7 @@ export declare interface PAvatarGroup extends Components.PAvatarGroup {
52
60
  }
53
61
  export declare class PBackdrop {
54
62
  protected z: NgZone;
55
- protected el: HTMLElement;
63
+ protected el: HTMLPBackdropElement;
56
64
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
57
65
  static ɵfac: i0.ɵɵFactoryDeclaration<PBackdrop, never>;
58
66
  static ɵcmp: i0.ɵɵComponentDeclaration<PBackdrop, "p-backdrop", never, { "applyBlur": "applyBlur"; "class": "class"; "closing": "closing"; "scrollLock": "scrollLock"; "variant": "variant"; }, {}, never, ["*"], false, never>;
@@ -65,7 +73,7 @@ export declare interface PBackdrop extends Components.PBackdrop {
65
73
  }
66
74
  export declare class PBadge {
67
75
  protected z: NgZone;
68
- protected el: HTMLElement;
76
+ protected el: HTMLPBadgeElement;
69
77
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
70
78
  static ɵfac: i0.ɵɵFactoryDeclaration<PBadge, never>;
71
79
  static ɵcmp: i0.ɵɵComponentDeclaration<PBadge, "p-badge", never, {}, {}, never, ["*"], false, never>;
@@ -74,10 +82,10 @@ export declare interface PBadge extends Components.PBadge {
74
82
  }
75
83
  export declare class PButton {
76
84
  protected z: NgZone;
77
- protected el: HTMLElement;
85
+ protected el: HTMLPButtonElement;
78
86
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
79
87
  static ɵfac: i0.ɵɵFactoryDeclaration<PButton, 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>;
88
+ static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "active": "active"; "as": "as"; "buttonGroupPosition": "buttonGroupPosition"; "chevron": "chevron"; "chevronPosition": "chevronPosition"; "class": "class"; "disabled": "disabled"; "error": "error"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "label": "label"; "loading": "loading"; "size": "size"; "target": "target"; "type": "type"; "underline": "underline"; "variant": "variant"; }, {}, never, ["*"], false, never>;
81
89
  }
82
90
  export declare interface PButton extends Components.PButton {
83
91
  /**
@@ -87,7 +95,7 @@ export declare interface PButton extends Components.PButton {
87
95
  }
88
96
  export declare class PButtonGroup {
89
97
  protected z: NgZone;
90
- protected el: HTMLElement;
98
+ protected el: HTMLPButtonGroupElement;
91
99
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
92
100
  static ɵfac: i0.ɵɵFactoryDeclaration<PButtonGroup, never>;
93
101
  static ɵcmp: i0.ɵɵComponentDeclaration<PButtonGroup, "p-button-group", never, { "size": "size"; }, {}, never, ["*"], false, never>;
@@ -96,10 +104,10 @@ export declare interface PButtonGroup extends Components.PButtonGroup {
96
104
  }
97
105
  export declare class PCalendar {
98
106
  protected z: NgZone;
99
- protected el: HTMLElement;
107
+ protected el: HTMLPCalendarElement;
100
108
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
101
109
  static ɵfac: i0.ɵɵFactoryDeclaration<PCalendar, never>;
102
- static ɵcmp: i0.ɵɵComponentDeclaration<PCalendar, "p-calendar", never, { "disableWeekends": "disableWeekends"; "disabledDates": "disabledDates"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "preselectToday": "preselectToday"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
110
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCalendar, "p-calendar", never, { "disableWeekends": "disableWeekends"; "disabledDates": "disabledDates"; "enableToday": "enableToday"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "preselectToday": "preselectToday"; "todayText": "todayText"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
103
111
  }
104
112
  export declare interface PCalendar extends Components.PCalendar {
105
113
  /**
@@ -109,55 +117,63 @@ export declare interface PCalendar extends Components.PCalendar {
109
117
  }
110
118
  export declare class PCardBody {
111
119
  protected z: NgZone;
112
- protected el: HTMLElement;
120
+ protected el: HTMLPCardBodyElement;
113
121
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
114
122
  static ɵfac: i0.ɵɵFactoryDeclaration<PCardBody, never>;
115
- static ɵcmp: i0.ɵɵComponentDeclaration<PCardBody, "p-card-body", never, { "inheritText": "inheritText"; }, {}, never, ["*"], false, never>;
123
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCardBody, "p-card-body", never, {}, {}, never, ["*"], false, never>;
116
124
  }
117
125
  export declare interface PCardBody extends Components.PCardBody {
118
126
  }
119
127
  export declare class PCardContainer {
120
128
  protected z: NgZone;
121
- protected el: HTMLElement;
129
+ protected el: HTMLPCardContainerElement;
122
130
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
123
131
  static ɵfac: i0.ɵɵFactoryDeclaration<PCardContainer, never>;
124
- static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "hoverable": "hoverable"; "shadow": "shadow"; }, {}, never, ["*"], false, never>;
132
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "active": "active"; "bgClass": "bgClass"; "border": "border"; "hoverable": "hoverable"; "shadow": "shadow"; "variant": "variant"; }, {}, never, ["*"], false, never>;
125
133
  }
126
134
  export declare interface PCardContainer extends Components.PCardContainer {
127
135
  }
128
136
  export declare class PCardHeader {
129
137
  protected z: NgZone;
130
- protected el: HTMLElement;
138
+ protected el: HTMLPCardHeaderElement;
131
139
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
132
140
  static ɵfac: i0.ɵɵFactoryDeclaration<PCardHeader, never>;
133
- static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "arrow": "arrow"; "header": "header"; }, {}, never, ["*"], false, never>;
141
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "divider": "divider"; "header": "header"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
134
142
  }
135
143
  export declare interface PCardHeader extends Components.PCardHeader {
136
144
  }
137
- export declare class PContentSlider {
145
+ export declare class PCheckbox {
138
146
  protected z: NgZone;
139
- protected el: HTMLElement;
147
+ protected el: HTMLPCheckboxElement;
140
148
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
141
- static ɵfac: i0.ɵɵFactoryDeclaration<PContentSlider, never>;
142
- static ɵcmp: i0.ɵɵComponentDeclaration<PContentSlider, "p-content-slider", never, { "disableAutoCenter": "disableAutoCenter"; "disableDrag": "disableDrag"; "disableIndicatorClick": "disableIndicatorClick"; "hideMobileIndicator": "hideMobileIndicator"; }, {}, never, ["*"], false, never>;
149
+ static ɵfac: i0.ɵɵFactoryDeclaration<PCheckbox, never>;
150
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCheckbox, "p-checkbox", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "indeterminate": "indeterminate"; "name": "name"; "required": "required"; }, {}, never, ["*"], false, never>;
143
151
  }
144
- export declare interface PContentSlider extends Components.PContentSlider {
152
+ export declare interface PCheckbox extends Components.PCheckbox {
153
+ /**
154
+ * Event whenever the checked changes
155
+ */
156
+ checkedChange: EventEmitter<CustomEvent<boolean>>;
157
+ /**
158
+ * Event whenever the indeterminate changes
159
+ */
160
+ indeterminateChange: EventEmitter<CustomEvent<boolean>>;
145
161
  }
146
- export declare class PCounter {
162
+ export declare class PContentSlider {
147
163
  protected z: NgZone;
148
- protected el: HTMLElement;
164
+ protected el: HTMLPContentSliderElement;
149
165
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
150
- static ɵfac: i0.ɵɵFactoryDeclaration<PCounter, never>;
151
- static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
166
+ static ɵfac: i0.ɵɵFactoryDeclaration<PContentSlider, never>;
167
+ static ɵcmp: i0.ɵɵComponentDeclaration<PContentSlider, "p-content-slider", never, { "disableAutoCenter": "disableAutoCenter"; "disableDrag": "disableDrag"; "disableIndicatorClick": "disableIndicatorClick"; "hideMobileIndicator": "hideMobileIndicator"; }, {}, never, ["*"], false, never>;
152
168
  }
153
- export declare interface PCounter extends Components.PCounter {
169
+ export declare interface PContentSlider extends Components.PContentSlider {
154
170
  }
155
171
  export declare class PCropper {
156
172
  protected z: NgZone;
157
- protected el: HTMLElement;
173
+ protected el: HTMLPCropperElement;
158
174
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
159
175
  static ɵfac: i0.ɵɵFactoryDeclaration<PCropper, never>;
160
- static ɵcmp: i0.ɵɵComponentDeclaration<PCropper, "p-cropper", never, { "returnType": "returnType"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
176
+ static ɵcmp: i0.ɵɵComponentDeclaration<PCropper, "p-cropper", never, { "returnType": "returnType"; "value": "value"; }, {}, never, ["*"], false, never>;
161
177
  }
162
178
  export declare interface PCropper extends Components.PCropper {
163
179
  /**
@@ -167,10 +183,10 @@ export declare interface PCropper extends Components.PCropper {
167
183
  }
168
184
  export declare class PDatepicker {
169
185
  protected z: NgZone;
170
- protected el: HTMLElement;
186
+ protected el: HTMLPDatepickerElement;
171
187
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
172
188
  static ɵfac: i0.ɵɵFactoryDeclaration<PDatepicker, never>;
173
- static ɵcmp: i0.ɵɵComponentDeclaration<PDatepicker, "p-datepicker", never, { "disableWeekends": "disableWeekends"; "disabled": "disabled"; "disabledDates": "disabledDates"; "error": "error"; "format": "format"; "helper": "helper"; "hideIconWhenFilled": "hideIconWhenFilled"; "label": "label"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "placement": "placement"; "prefix": "prefix"; "preselectToday": "preselectToday"; "required": "required"; "size": "size"; "strategy": "strategy"; "value": "value"; }, {}, never, ["*"], false, never>;
189
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDatepicker, "p-datepicker", never, { "disableWeekends": "disableWeekends"; "disabled": "disabled"; "disabledDates": "disabledDates"; "enableNativePicker": "enableNativePicker"; "enableToday": "enableToday"; "error": "error"; "format": "format"; "helper": "helper"; "hideIconWhenFilled": "hideIconWhenFilled"; "label": "label"; "loading": "loading"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "placement": "placement"; "prefix": "prefix"; "preselectToday": "preselectToday"; "required": "required"; "showOptional": "showOptional"; "size": "size"; "strategy": "strategy"; "todayText": "todayText"; "value": "value"; }, {}, never, ["*"], false, never>;
174
190
  }
175
191
  export declare interface PDatepicker extends Components.PDatepicker {
176
192
  /**
@@ -180,16 +196,16 @@ export declare interface PDatepicker extends Components.PDatepicker {
180
196
  }
181
197
  export declare class PDivider {
182
198
  protected z: NgZone;
183
- protected el: HTMLElement;
199
+ protected el: HTMLPDividerElement;
184
200
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
185
201
  static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
186
- static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
202
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, { "alignContent": "alignContent"; "variant": "variant"; }, {}, never, ["*"], false, never>;
187
203
  }
188
204
  export declare interface PDivider extends Components.PDivider {
189
205
  }
190
206
  export declare class PDrawer {
191
207
  protected z: NgZone;
192
- protected el: HTMLElement;
208
+ protected el: HTMLPDrawerElement;
193
209
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
194
210
  static ɵfac: i0.ɵɵFactoryDeclaration<PDrawer, never>;
195
211
  static ɵcmp: i0.ɵɵComponentDeclaration<PDrawer, "p-drawer", never, { "applyBlur": "applyBlur"; "backdropClickClose": "backdropClickClose"; "canClose": "canClose"; "header": "header"; "scrollLock": "scrollLock"; "show": "show"; "showClose": "showClose"; }, {}, never, ["*"], false, never>;
@@ -210,16 +226,16 @@ export declare interface PDrawer extends Components.PDrawer {
210
226
  }
211
227
  export declare class PDrawerBody {
212
228
  protected z: NgZone;
213
- protected el: HTMLElement;
229
+ protected el: HTMLPDrawerBodyElement;
214
230
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
215
231
  static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerBody, never>;
216
- static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerBody, "p-drawer-body", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
232
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerBody, "p-drawer-body", never, {}, {}, never, ["*"], false, never>;
217
233
  }
218
234
  export declare interface PDrawerBody extends Components.PDrawerBody {
219
235
  }
220
236
  export declare class PDrawerContainer {
221
237
  protected z: NgZone;
222
- protected el: HTMLElement;
238
+ protected el: HTMLPDrawerContainerElement;
223
239
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
224
240
  static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerContainer, never>;
225
241
  static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerContainer, "p-drawer-container", never, { "closing": "closing"; }, {}, never, ["*"], false, never>;
@@ -228,7 +244,7 @@ export declare interface PDrawerContainer extends Components.PDrawerContainer {
228
244
  }
229
245
  export declare class PDrawerHeader {
230
246
  protected z: NgZone;
231
- protected el: HTMLElement;
247
+ protected el: HTMLPDrawerHeaderElement;
232
248
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
233
249
  static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerHeader, never>;
234
250
  static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerHeader, "p-drawer-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
@@ -241,10 +257,10 @@ export declare interface PDrawerHeader extends Components.PDrawerHeader {
241
257
  }
242
258
  export declare class PDropdown {
243
259
  protected z: NgZone;
244
- protected el: HTMLElement;
260
+ protected el: HTMLPDropdownElement;
245
261
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
246
262
  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"; "usePortal": "usePortal"; }, {}, never, ["*"], false, never>;
263
+ 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"; "variant": "variant"; }, {}, never, ["*"], false, never>;
248
264
  }
249
265
  export declare interface PDropdown extends Components.PDropdown {
250
266
  /**
@@ -254,28 +270,41 @@ export declare interface PDropdown extends Components.PDropdown {
254
270
  }
255
271
  export declare class PDropdownMenuContainer {
256
272
  protected z: NgZone;
257
- protected el: HTMLElement;
273
+ protected el: HTMLPDropdownMenuContainerElement;
258
274
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
259
275
  static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
260
- static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "allowOverflow": "allowOverflow"; "class": "class"; "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; "scrollable": "scrollable"; }, {}, never, ["*"], false, never>;
276
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "allowOverflow": "allowOverflow"; "class": "class"; "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; "scrollable": "scrollable"; "variant": "variant"; }, {}, never, ["*"], false, never>;
261
277
  }
262
278
  export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
263
279
  }
264
280
  export declare class PDropdownMenuItem {
265
281
  protected z: NgZone;
266
- protected el: HTMLElement;
282
+ protected el: HTMLPDropdownMenuItemElement;
267
283
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
268
284
  static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, 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>;
285
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "checkbox": "checkbox"; "disabled": "disabled"; "enableHover": "enableHover"; "icon": "icon"; "iconWave": "iconWave"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
270
286
  }
271
287
  export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
272
288
  }
289
+ export declare class PEmptyState {
290
+ protected z: NgZone;
291
+ protected el: HTMLPEmptyStateElement;
292
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
293
+ static ɵfac: i0.ɵɵFactoryDeclaration<PEmptyState, never>;
294
+ static ɵcmp: i0.ɵɵComponentDeclaration<PEmptyState, "p-empty-state", never, { "actionIcon": "actionIcon"; "actionIconPosition": "actionIconPosition"; "actionLoading": "actionLoading"; "actionText": "actionText"; "actionVariant": "actionVariant"; "content": "content"; "enableAction": "enableAction"; "header": "header"; "illustration": "illustration"; }, {}, never, ["*"], false, never>;
295
+ }
296
+ export declare interface PEmptyState extends Components.PEmptyState {
297
+ /**
298
+ * The text on the action button
299
+ */
300
+ action: EventEmitter<CustomEvent<MouseEvent>>;
301
+ }
273
302
  export declare class PField {
274
303
  protected z: NgZone;
275
- protected el: HTMLElement;
304
+ protected el: HTMLPFieldElement;
276
305
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
277
306
  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>;
307
+ static ɵcmp: i0.ɵɵComponentDeclaration<PField, "p-field", never, { "align": "align"; "autofocus": "autofocus"; "disabled": "disabled"; "error": "error"; "errorPlacement": "errorPlacement"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "id": "id"; "label": "label"; "loading": "loading"; "optionalTemplate": "optionalTemplate"; "placeholder": "placeholder"; "prefix": "prefix"; "properties": "properties"; "required": "required"; "selectAllOnFocus": "selectAllOnFocus"; "showOptional": "showOptional"; "size": "size"; "suffix": "suffix"; "type": "type"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
279
308
  }
280
309
  export declare interface PField extends Components.PField {
281
310
  /**
@@ -289,35 +318,39 @@ export declare interface PField extends Components.PField {
289
318
  }
290
319
  export declare class PFieldContainer {
291
320
  protected z: NgZone;
292
- protected el: HTMLElement;
321
+ protected el: HTMLPFieldContainerElement;
293
322
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
294
323
  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>;
324
+ static ɵcmp: i0.ɵɵComponentDeclaration<PFieldContainer, "p-field-container", never, { "align": "align"; "error": "error"; "errorPlacement": "errorPlacement"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "id": "id"; "label": "label"; "loading": "loading"; "loadingSize": "loadingSize"; "optionalTemplate": "optionalTemplate"; "required": "required"; "showOptional": "showOptional"; "variant": "variant"; }, {}, never, ["*"], false, never>;
296
325
  }
297
326
  export declare interface PFieldContainer extends Components.PFieldContainer {
298
327
  focus: EventEmitter<CustomEvent<void>>;
299
328
  }
300
329
  export declare class PFloatingMenuContainer {
301
330
  protected z: NgZone;
302
- protected el: HTMLElement;
331
+ protected el: HTMLPFloatingMenuContainerElement;
303
332
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
304
333
  static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuContainer, never>;
305
- static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuContainer, "p-floating-menu-container", never, { "usedInTable": "usedInTable"; }, {}, never, ["*"], false, never>;
334
+ static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuContainer, "p-floating-menu-container", never, { "amount": "amount"; "amountSelectedTemplate": "amountSelectedTemplate"; "enableAmountSelected": "enableAmountSelected"; "enableClose": "enableClose"; "usedInTable": "usedInTable"; }, {}, never, ["*"], false, never>;
306
335
  }
307
336
  export declare interface PFloatingMenuContainer extends Components.PFloatingMenuContainer {
337
+ /**
338
+ * Event whenever the close button is clicked
339
+ */
340
+ close: EventEmitter<CustomEvent<MouseEvent>>;
308
341
  }
309
342
  export declare class PFloatingMenuItem {
310
343
  protected z: NgZone;
311
- protected el: HTMLElement;
344
+ protected el: HTMLPFloatingMenuItemElement;
312
345
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
313
346
  static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuItem, never>;
314
- static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuItem, "p-floating-menu-item", never, { "disabled": "disabled"; "hover": "hover"; }, {}, never, ["*"], false, never>;
347
+ static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuItem, "p-floating-menu-item", never, { "disabled": "disabled"; "hover": "hover"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "loading": "loading"; }, {}, never, ["*"], false, never>;
315
348
  }
316
349
  export declare interface PFloatingMenuItem extends Components.PFloatingMenuItem {
317
350
  }
318
351
  export declare class PHelper {
319
352
  protected z: NgZone;
320
- protected el: HTMLElement;
353
+ protected el: HTMLPHelperElement;
321
354
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
322
355
  static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
323
356
  static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; "strategy": "strategy"; }, {}, never, ["*"], false, never>;
@@ -326,7 +359,7 @@ export declare interface PHelper extends Components.PHelper {
326
359
  }
327
360
  export declare class PIbanIcon {
328
361
  protected z: NgZone;
329
- protected el: HTMLElement;
362
+ protected el: HTMLPIbanIconElement;
330
363
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
331
364
  static ɵfac: i0.ɵɵFactoryDeclaration<PIbanIcon, never>;
332
365
  static ɵcmp: i0.ɵɵComponentDeclaration<PIbanIcon, "p-iban-icon", never, { "iban": "iban"; "variant": "variant"; }, {}, never, ["*"], false, never>;
@@ -335,34 +368,34 @@ export declare interface PIbanIcon extends Components.PIbanIcon {
335
368
  }
336
369
  export declare class PIcon {
337
370
  protected z: NgZone;
338
- protected el: HTMLElement;
371
+ protected el: HTMLPIconElement;
339
372
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
340
373
  static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
341
374
  static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
342
375
  }
343
376
  export declare interface PIcon extends Components.PIcon {
344
377
  }
345
- export declare class PIconDeprecated {
346
- protected z: NgZone;
347
- protected el: HTMLElement;
348
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
349
- static ɵfac: i0.ɵɵFactoryDeclaration<PIconDeprecated, never>;
350
- static ɵcmp: i0.ɵɵComponentDeclaration<PIconDeprecated, "p-icon-deprecated", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
351
- }
352
- export declare interface PIconDeprecated extends Components.PIconDeprecated {
353
- }
354
378
  export declare class PIllustration {
355
379
  protected z: NgZone;
356
- protected el: HTMLElement;
380
+ protected el: HTMLPIllustrationElement;
357
381
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
358
382
  static ɵfac: i0.ɵɵFactoryDeclaration<PIllustration, never>;
359
383
  static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
360
384
  }
361
385
  export declare interface PIllustration extends Components.PIllustration {
362
386
  }
387
+ export declare class PIllustrationDeprecated {
388
+ protected z: NgZone;
389
+ protected el: HTMLPIllustrationDeprecatedElement;
390
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
391
+ static ɵfac: i0.ɵɵFactoryDeclaration<PIllustrationDeprecated, never>;
392
+ static ɵcmp: i0.ɵɵComponentDeclaration<PIllustrationDeprecated, "p-illustration-deprecated", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
393
+ }
394
+ export declare interface PIllustrationDeprecated extends Components.PIllustrationDeprecated {
395
+ }
363
396
  export declare class PInfoPanel {
364
397
  protected z: NgZone;
365
- protected el: HTMLElement;
398
+ protected el: HTMLPInfoPanelElement;
366
399
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
367
400
  static ɵfac: i0.ɵɵFactoryDeclaration<PInfoPanel, never>;
368
401
  static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false, never>;
@@ -373,36 +406,58 @@ export declare interface PInfoPanel extends Components.PInfoPanel {
373
406
  */
374
407
  closed: EventEmitter<CustomEvent<void>>;
375
408
  }
376
- export declare class PInputError {
377
- protected z: NgZone;
378
- protected el: HTMLElement;
379
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
380
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputError, never>;
381
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputError, "p-input-error", never, { "error": "error"; "forceShowTooltip": "forceShowTooltip"; }, {}, never, ["*"], false, never>;
382
- }
383
- export declare interface PInputError extends Components.PInputError {
384
- }
385
409
  export declare class PLabel {
386
410
  protected z: NgZone;
387
- protected el: HTMLElement;
411
+ protected el: HTMLPLabelElement;
388
412
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
389
413
  static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, never>;
390
- static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "behavior": "behavior"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "keepMobileContent": "keepMobileContent"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
414
+ static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "keepMobileContent": "keepMobileContent"; "variant": "variant"; }, {}, never, ["*"], false, never>;
391
415
  }
392
416
  export declare interface PLabel extends Components.PLabel {
393
417
  }
394
418
  export declare class PLayout {
395
419
  protected z: NgZone;
396
- protected el: HTMLElement;
420
+ protected el: HTMLPLayoutElement;
397
421
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
398
422
  static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
399
423
  static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
400
424
  }
401
425
  export declare interface PLayout extends Components.PLayout {
426
+ /**
427
+ * Event whenever the layout is being scrolled
428
+ */
429
+ scroll: EventEmitter<CustomEvent<any>>;
430
+ }
431
+ export declare class PListing {
432
+ protected z: NgZone;
433
+ protected el: HTMLPListingElement;
434
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
435
+ static ɵfac: i0.ɵɵFactoryDeclaration<PListing, never>;
436
+ static ɵcmp: i0.ɵɵComponentDeclaration<PListing, "p-listing", never, {}, {}, never, ["*"], false, never>;
437
+ }
438
+ export declare interface PListing extends Components.PListing {
439
+ }
440
+ export declare class PListingItem {
441
+ protected z: NgZone;
442
+ protected el: HTMLPListingItemElement;
443
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
444
+ static ɵfac: i0.ɵɵFactoryDeclaration<PListingItem, never>;
445
+ static ɵcmp: i0.ɵɵComponentDeclaration<PListingItem, "p-listing-item", never, { "icon": "icon"; }, {}, never, ["*"], false, never>;
446
+ }
447
+ export declare interface PListingItem extends Components.PListingItem {
448
+ }
449
+ export declare class PListingLine {
450
+ protected z: NgZone;
451
+ protected el: HTMLPListingLineElement;
452
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
453
+ static ɵfac: i0.ɵɵFactoryDeclaration<PListingLine, never>;
454
+ static ɵcmp: i0.ɵɵComponentDeclaration<PListingLine, "p-listing-line", never, {}, {}, never, ["*"], false, never>;
455
+ }
456
+ export declare interface PListingLine extends Components.PListingLine {
402
457
  }
403
458
  export declare class PLoader {
404
459
  protected z: NgZone;
405
- protected el: HTMLElement;
460
+ protected el: HTMLPLoaderElement;
406
461
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
407
462
  static ɵfac: i0.ɵɵFactoryDeclaration<PLoader, never>;
408
463
  static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false, never>;
@@ -411,10 +466,10 @@ export declare interface PLoader extends Components.PLoader {
411
466
  }
412
467
  export declare class PModal {
413
468
  protected z: NgZone;
414
- protected el: HTMLElement;
469
+ protected el: HTMLPModalElement;
415
470
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
416
471
  static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
417
- static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "applyBlur": "applyBlur"; "backdropClickClose": "backdropClickClose"; "header": "header"; "padding": "padding"; "scrollLock": "scrollLock"; "show": "show"; "showClose": "showClose"; "showMobileFooter": "showMobileFooter"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
472
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "applyBlur": "applyBlur"; "backdropClickClose": "backdropClickClose"; "header": "header"; "scrollLock": "scrollLock"; "show": "show"; "showClose": "showClose"; "showMobileFooter": "showMobileFooter"; "size": "size"; }, {}, never, ["*"], false, never>;
418
473
  }
419
474
  export declare interface PModal extends Components.PModal {
420
475
  /**
@@ -428,16 +483,16 @@ export declare interface PModal extends Components.PModal {
428
483
  }
429
484
  export declare class PModalBody {
430
485
  protected z: NgZone;
431
- protected el: HTMLElement;
486
+ protected el: HTMLPModalBodyElement;
432
487
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
433
488
  static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
434
- static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "padding": "padding"; "roundedBottom": "roundedBottom"; "roundedTop": "roundedTop"; "variant": "variant"; }, {}, never, ["*"], false, never>;
489
+ static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "roundedBottom": "roundedBottom"; "roundedTop": "roundedTop"; }, {}, never, ["*"], false, never>;
435
490
  }
436
491
  export declare interface PModalBody extends Components.PModalBody {
437
492
  }
438
493
  export declare class PModalContainer {
439
494
  protected z: NgZone;
440
- protected el: HTMLElement;
495
+ protected el: HTMLPModalContainerElement;
441
496
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
442
497
  static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
443
498
  static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "closing": "closing"; "size": "size"; }, {}, never, ["*"], false, never>;
@@ -446,7 +501,7 @@ export declare interface PModalContainer extends Components.PModalContainer {
446
501
  }
447
502
  export declare class PModalFooter {
448
503
  protected z: NgZone;
449
- protected el: HTMLElement;
504
+ protected el: HTMLPModalFooterElement;
450
505
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
451
506
  static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
452
507
  static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, {}, {}, never, ["*"], false, never>;
@@ -455,7 +510,7 @@ export declare interface PModalFooter extends Components.PModalFooter {
455
510
  }
456
511
  export declare class PModalHeader {
457
512
  protected z: NgZone;
458
- protected el: HTMLElement;
513
+ protected el: HTMLPModalHeaderElement;
459
514
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
460
515
  static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
461
516
  static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
@@ -468,7 +523,7 @@ export declare interface PModalHeader extends Components.PModalHeader {
468
523
  }
469
524
  export declare class PNavbar {
470
525
  protected z: NgZone;
471
- protected el: HTMLElement;
526
+ protected el: HTMLPNavbarElement;
472
527
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
473
528
  static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
474
529
  static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, {}, {}, never, ["*"], false, never>;
@@ -477,16 +532,16 @@ export declare interface PNavbar extends Components.PNavbar {
477
532
  }
478
533
  export declare class PNavigationItem {
479
534
  protected z: NgZone;
480
- protected el: HTMLElement;
535
+ protected el: HTMLPNavigationItemElement;
481
536
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
482
537
  static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, 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>;
538
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "as": "as"; "class": "class"; "counter": "counter"; "href": "href"; "icon": "icon"; "loading": "loading"; "target": "target"; }, {}, never, ["*"], false, never>;
484
539
  }
485
540
  export declare interface PNavigationItem extends Components.PNavigationItem {
486
541
  }
487
542
  export declare class PNavigationSection {
488
543
  protected z: NgZone;
489
- protected el: HTMLElement;
544
+ protected el: HTMLPNavigationSectionElement;
490
545
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
491
546
  static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationSection, never>;
492
547
  static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationSection, "p-navigation-section", never, { "header": "header"; }, {}, never, ["*"], false, never>;
@@ -495,69 +550,120 @@ export declare interface PNavigationSection extends Components.PNavigationSectio
495
550
  }
496
551
  export declare class PNavigationTitle {
497
552
  protected z: NgZone;
498
- protected el: HTMLElement;
553
+ protected el: HTMLPNavigationTitleElement;
499
554
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
500
555
  static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationTitle, never>;
501
556
  static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationTitle, "p-navigation-title", never, {}, {}, never, ["*"], false, never>;
502
557
  }
503
558
  export declare interface PNavigationTitle extends Components.PNavigationTitle {
504
559
  }
505
- export declare class PPageSizeSelect {
560
+ export declare class PPagination {
506
561
  protected z: NgZone;
507
- protected el: HTMLElement;
562
+ protected el: HTMLPPaginationElement;
508
563
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
509
- static ɵfac: i0.ɵɵFactoryDeclaration<PPageSizeSelect, never>;
510
- 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, never>;
564
+ static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
565
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "enablePaginationPages": "enablePaginationPages"; "enablePaginationSize": "enablePaginationSize"; "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "total": "total"; }, {}, never, ["*"], false, never>;
511
566
  }
512
- export declare interface PPageSizeSelect extends Components.PPageSizeSelect {
567
+ export declare interface PPagination extends Components.PPagination {
513
568
  /**
514
- * Event whenever the size changes
569
+ * Event whenever the page changes
515
570
  */
516
- sizeChange: EventEmitter<CustomEvent<number>>;
571
+ pageChange: EventEmitter<CustomEvent<number>>;
572
+ /**
573
+ * Event whenever the page changes
574
+ */
575
+ pageSizeChange: EventEmitter<CustomEvent<number>>;
576
+ /**
577
+ * The pages that were generated
578
+ */
579
+ pagesChange: EventEmitter<CustomEvent<number>>;
517
580
  }
518
- export declare class PPagination {
581
+ export declare class PPaginationPages {
519
582
  protected z: NgZone;
520
- protected el: HTMLElement;
583
+ protected el: HTMLPPaginationPagesElement;
521
584
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
522
- static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
523
- static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false, never>;
585
+ static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationPages, never>;
586
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationPages, "p-pagination-pages", never, { "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false, never>;
524
587
  }
525
- export declare interface PPagination extends Components.PPagination {
588
+ export declare interface PPaginationPages extends Components.PPaginationPages {
526
589
  /**
527
590
  * Event whenever the page changes
528
591
  */
529
592
  pageChange: EventEmitter<CustomEvent<number>>;
593
+ /**
594
+ * The pages that were generated
595
+ */
596
+ pagesChange: EventEmitter<CustomEvent<number>>;
597
+ }
598
+ export declare class PPaginationPagesItem {
599
+ protected z: NgZone;
600
+ protected el: HTMLPPaginationPagesItemElement;
601
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
602
+ static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationPagesItem, never>;
603
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationPagesItem, "p-pagination-pages-item", never, { "active": "active"; "disabled": "disabled"; "hover": "hover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
530
604
  }
531
- export declare class PPaginationItem {
605
+ export declare interface PPaginationPagesItem extends Components.PPaginationPagesItem {
606
+ }
607
+ export declare class PPaginationSize {
532
608
  protected z: NgZone;
533
- protected el: HTMLElement;
609
+ protected el: HTMLPPaginationSizeElement;
534
610
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
535
- static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationItem, never>;
536
- static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationItem, "p-pagination-item", never, { "active": "active"; }, {}, never, ["*"], false, never>;
611
+ static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationSize, never>;
612
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationSize, "p-pagination-size", never, { "hidden": "hidden"; "itemTemplate": "itemTemplate"; "size": "size"; "sizeOptions": "sizeOptions"; }, {}, never, ["*"], false, never>;
537
613
  }
538
- export declare interface PPaginationItem extends Components.PPaginationItem {
614
+ export declare interface PPaginationSize extends Components.PPaginationSize {
615
+ /**
616
+ * Event whenever the size changes
617
+ */
618
+ sizeChange: EventEmitter<CustomEvent<number>>;
539
619
  }
540
620
  export declare class PPortal {
541
621
  protected z: NgZone;
542
- protected el: HTMLElement;
622
+ protected el: HTMLPPortalElement;
543
623
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
544
624
  static ɵfac: i0.ɵɵFactoryDeclaration<PPortal, never>;
545
- static ɵcmp: i0.ɵɵComponentDeclaration<PPortal, "p-portal", never, { "containerClass": "containerClass"; }, {}, never, ["*"], false, never>;
625
+ static ɵcmp: i0.ɵɵComponentDeclaration<PPortal, "p-portal", never, {}, {}, never, ["*"], false, never>;
546
626
  }
547
627
  export declare interface PPortal extends Components.PPortal {
548
628
  }
549
629
  export declare class PProfile {
550
630
  protected z: NgZone;
551
- protected el: HTMLElement;
631
+ protected el: HTMLPProfileElement;
552
632
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
553
633
  static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
554
634
  static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; }, {}, never, ["*"], false, never>;
555
635
  }
556
636
  export declare interface PProfile extends Components.PProfile {
557
637
  }
638
+ export declare class PRadio {
639
+ protected z: NgZone;
640
+ protected el: HTMLPRadioElement;
641
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
642
+ static ɵfac: i0.ɵɵFactoryDeclaration<PRadio, never>;
643
+ static ɵcmp: i0.ɵɵComponentDeclaration<PRadio, "p-radio", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; "value": "value"; }, {}, never, ["*"], false, never>;
644
+ }
645
+ export declare interface PRadio extends Components.PRadio {
646
+ /**
647
+ * Event whenever the checked changes
648
+ */
649
+ checkedChange: EventEmitter<CustomEvent<boolean>>;
650
+ }
651
+ export declare class PRange {
652
+ protected z: NgZone;
653
+ protected el: HTMLPRangeElement;
654
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
655
+ static ɵfac: i0.ɵɵFactoryDeclaration<PRange, never>;
656
+ static ɵcmp: i0.ɵɵComponentDeclaration<PRange, "p-range", never, { "max": "max"; "min": "min"; "step": "step"; "value": "value"; }, {}, never, ["*"], false, never>;
657
+ }
658
+ export declare interface PRange extends Components.PRange {
659
+ /**
660
+ * Event whenever the value changes
661
+ */
662
+ valueChange: EventEmitter<CustomEvent<string>>;
663
+ }
558
664
  export declare class PSegmentContainer {
559
665
  protected z: NgZone;
560
- protected el: HTMLElement;
666
+ protected el: HTMLPSegmentContainerElement;
561
667
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
562
668
  static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
563
669
  static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false, never>;
@@ -566,19 +672,19 @@ export declare interface PSegmentContainer extends Components.PSegmentContainer
566
672
  }
567
673
  export declare class PSegmentItem {
568
674
  protected z: NgZone;
569
- protected el: HTMLElement;
675
+ protected el: HTMLPSegmentItemElement;
570
676
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
571
677
  static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
572
- static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "size": "size"; }, {}, never, ["*"], false, never>;
678
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
573
679
  }
574
680
  export declare interface PSegmentItem extends Components.PSegmentItem {
575
681
  }
576
682
  export declare class PSelect {
577
683
  protected z: NgZone;
578
- protected el: HTMLElement;
684
+ protected el: HTMLPSelectElement;
579
685
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
580
686
  static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
581
- static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select", never, { "addItemText": "addItemText"; "applyClassOnSelectedItem": "applyClassOnSelectedItem"; "asyncFilter": "asyncFilter"; "autoSelectFirst": "autoSelectFirst"; "autocompletePlaceholder": "autocompletePlaceholder"; "avatarKey": "avatarKey"; "avatarLettersKey": "avatarLettersKey"; "classKey": "classKey"; "disabled": "disabled"; "displayKey": "displayKey"; "dropdownDisplayKey": "dropdownDisplayKey"; "emptyStateText": "emptyStateText"; "enableAutocomplete": "enableAutocomplete"; "enableSelectAll": "enableSelectAll"; "error": "error"; "helper": "helper"; "icon": "icon"; "iconKey": "iconKey"; "identifierKey": "identifierKey"; "items": "items"; "label": "label"; "loading": "loading"; "maxDisplayedItems": "maxDisplayedItems"; "multi": "multi"; "placeholder": "placeholder"; "prefix": "prefix"; "query": "query"; "queryKey": "queryKey"; "required": "required"; "selectAllIcon": "selectAllIcon"; "selectAllText": "selectAllText"; "selectionDisplayKey": "selectionDisplayKey"; "showAddItem": "showAddItem"; "showChevron": "showChevron"; "showIconInSelectedItem": "showIconInSelectedItem"; "size": "size"; "value": "value"; "valueKey": "valueKey"; }, {}, never, ["*"], false, never>;
687
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select", never, { "addItemText": "addItemText"; "applyClassOnSelectedItem": "applyClassOnSelectedItem"; "asyncFilter": "asyncFilter"; "autoSelectFirst": "autoSelectFirst"; "autocompletePlaceholder": "autocompletePlaceholder"; "avatarKey": "avatarKey"; "avatarLettersKey": "avatarLettersKey"; "classKey": "classKey"; "disabled": "disabled"; "displayKey": "displayKey"; "dropdownDisplayKey": "dropdownDisplayKey"; "emptyStateText": "emptyStateText"; "enableAutocomplete": "enableAutocomplete"; "enableSelectAll": "enableSelectAll"; "error": "error"; "helper": "helper"; "icon": "icon"; "iconKey": "iconKey"; "identifierKey": "identifierKey"; "items": "items"; "label": "label"; "loading": "loading"; "maxDisplayedItems": "maxDisplayedItems"; "multi": "multi"; "placeholder": "placeholder"; "prefix": "prefix"; "query": "query"; "queryKey": "queryKey"; "required": "required"; "selectAllIcon": "selectAllIcon"; "selectAllText": "selectAllText"; "selectionDisplayKey": "selectionDisplayKey"; "showAddItem": "showAddItem"; "showChevron": "showChevron"; "showIconOnSelectedItem": "showIconOnSelectedItem"; "showOptional": "showOptional"; "size": "size"; "strategy": "strategy"; "usePortal": "usePortal"; "value": "value"; "valueKey": "valueKey"; }, {}, never, ["*"], false, never>;
582
688
  }
583
689
  export declare interface PSelect extends Components.PSelect {
584
690
  /**
@@ -602,63 +708,54 @@ export declare interface PSelect extends Components.PSelect {
602
708
  */
603
709
  add: EventEmitter<CustomEvent<any>>;
604
710
  }
605
- export declare class PSliderIndicator {
711
+ export declare class PSmile {
606
712
  protected z: NgZone;
607
- protected el: HTMLElement;
713
+ protected el: HTMLPSmileElement;
608
714
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
609
- static ɵfac: i0.ɵɵFactoryDeclaration<PSliderIndicator, never>;
610
- static ɵcmp: i0.ɵɵComponentDeclaration<PSliderIndicator, "p-slider-indicator", never, { "active": "active"; }, {}, never, ["*"], false, never>;
715
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSmile, never>;
716
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSmile, "p-smile", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
611
717
  }
612
- export declare interface PSliderIndicator extends Components.PSliderIndicator {
613
- }
614
- export declare class PStatus {
615
- protected z: NgZone;
616
- protected el: HTMLElement;
617
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
618
- static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
619
- static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
620
- }
621
- export declare interface PStatus extends Components.PStatus {
718
+ export declare interface PSmile extends Components.PSmile {
622
719
  }
623
720
  export declare class PStepper {
624
721
  protected z: NgZone;
625
- protected el: HTMLElement;
722
+ protected el: HTMLPStepperElement;
626
723
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
627
724
  static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
628
- static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "contentPosition": "contentPosition"; "direction": "direction"; }, {}, never, ["*"], false, never>;
725
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "enableAutoStatus": "enableAutoStatus"; "steps": "steps"; }, {}, never, ["*"], false, never>;
629
726
  }
630
727
  export declare interface PStepper extends Components.PStepper {
631
728
  }
632
729
  export declare class PStepperItem {
633
730
  protected z: NgZone;
634
- protected el: HTMLElement;
731
+ protected el: HTMLPStepperItemElement;
635
732
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
636
733
  static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
637
- static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "finished": "finished"; }, {}, never, ["*"], false, never>;
734
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "finished": "finished"; "number": "number"; }, {}, never, ["*"], false, never>;
638
735
  }
639
736
  export declare interface PStepperItem extends Components.PStepperItem {
640
737
  }
641
738
  export declare class PStepperLine {
642
739
  protected z: NgZone;
643
- protected el: HTMLElement;
740
+ protected el: HTMLPStepperLineElement;
644
741
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
645
742
  static ɵfac: i0.ɵɵFactoryDeclaration<PStepperLine, never>;
646
743
  static ɵcmp: i0.ɵɵComponentDeclaration<PStepperLine, "p-stepper-line", never, { "active": "active"; "direction": "direction"; }, {}, never, ["*"], false, never>;
647
744
  }
648
745
  export declare interface PStepperLine extends Components.PStepperLine {
649
746
  }
650
- export declare class PTabGroup {
747
+ export declare class PTabContainer {
651
748
  protected z: NgZone;
652
- protected el: HTMLElement;
749
+ protected el: HTMLPTabContainerElement;
653
750
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
654
- static ɵfac: i0.ɵɵFactoryDeclaration<PTabGroup, never>;
655
- static ɵcmp: i0.ɵɵComponentDeclaration<PTabGroup, "p-tab-group", never, {}, {}, never, ["*"], false, never>;
751
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTabContainer, never>;
752
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTabContainer, "p-tab-container", never, {}, {}, never, ["*"], false, never>;
656
753
  }
657
- export declare interface PTabGroup extends Components.PTabGroup {
754
+ export declare interface PTabContainer extends Components.PTabContainer {
658
755
  }
659
756
  export declare class PTabItem {
660
757
  protected z: NgZone;
661
- protected el: HTMLElement;
758
+ protected el: HTMLPTabItemElement;
662
759
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
663
760
  static ɵfac: i0.ɵɵFactoryDeclaration<PTabItem, never>;
664
761
  static ɵcmp: i0.ɵɵComponentDeclaration<PTabItem, "p-tab-item", never, { "active": "active"; }, {}, never, ["*"], false, never>;
@@ -667,19 +764,19 @@ export declare interface PTabItem extends Components.PTabItem {
667
764
  }
668
765
  export declare class PTableContainer {
669
766
  protected z: NgZone;
670
- protected el: HTMLElement;
767
+ protected el: HTMLPTableContainerElement;
671
768
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
672
769
  static ɵfac: i0.ɵɵFactoryDeclaration<PTableContainer, never>;
673
- static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, { "shadow": "shadow"; }, {}, never, ["*"], false, never>;
770
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {}, {}, never, ["*"], false, never>;
674
771
  }
675
772
  export declare interface PTableContainer extends Components.PTableContainer {
676
773
  }
677
774
  export declare class PTableFooter {
678
775
  protected z: NgZone;
679
- protected el: HTMLElement;
776
+ protected el: HTMLPTableFooterElement;
680
777
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
681
778
  static ɵfac: i0.ɵɵFactoryDeclaration<PTableFooter, never>;
682
- static ɵcmp: i0.ɵɵComponentDeclaration<PTableFooter, "p-table-footer", never, { "enableExport": "enableExport"; "enablePageSize": "enablePageSize"; "enablePagination": "enablePagination"; "hideOnSinglePage": "hideOnSinglePage"; "loading": "loading"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "total": "total"; }, {}, never, ["*"], false, never>;
779
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableFooter, "p-table-footer", never, { "enablePaginationPages": "enablePaginationPages"; "enablePaginationSize": "enablePaginationSize"; "hideOnSinglePage": "hideOnSinglePage"; "loading": "loading"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "total": "total"; }, {}, never, ["*"], false, never>;
683
780
  }
684
781
  export declare interface PTableFooter extends Components.PTableFooter {
685
782
  /**
@@ -691,16 +788,16 @@ export declare interface PTableFooter extends Components.PTableFooter {
691
788
  */
692
789
  pageSizeChange: EventEmitter<CustomEvent<number>>;
693
790
  /**
694
- * Event whenever the page changes
791
+ * Event whenever the footer is hidden or nog
695
792
  */
696
- export: EventEmitter<CustomEvent<number>>;
793
+ hiddenChange: EventEmitter<CustomEvent<boolean>>;
697
794
  }
698
795
  export declare class PTableHeader {
699
796
  protected z: NgZone;
700
- protected el: HTMLElement;
797
+ protected el: HTMLPTableHeaderElement;
701
798
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
702
799
  static ɵfac: i0.ɵɵFactoryDeclaration<PTableHeader, never>;
703
- static ɵcmp: i0.ɵɵComponentDeclaration<PTableHeader, "p-table-header", never, { "actionButtonTemplate": "actionButtonTemplate"; "actionIcon": "actionIcon"; "actionLoading": "actionLoading"; "actionText": "actionText"; "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "canUseAction": "canUseAction"; "enableAction": "enableAction"; "enableFilter": "enableFilter"; "enableFilterDesktop": "enableFilterDesktop"; "enableSearch": "enableSearch"; "filterButtonTemplate": "filterButtonTemplate"; "itemsSelectedAmount": "itemsSelectedAmount"; "loading": "loading"; "query": "query"; "quickFilters": "quickFilters"; "selectedFiltersAmount": "selectedFiltersAmount"; }, {}, never, ["*"], false, never>;
800
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableHeader, "p-table-header", never, { "actionButtonTemplate": "actionButtonTemplate"; "actionIcon": "actionIcon"; "actionLoading": "actionLoading"; "actionText": "actionText"; "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "canUseAction": "canUseAction"; "enableAction": "enableAction"; "enableExport": "enableExport"; "enableFilter": "enableFilter"; "enableFilterDesktop": "enableFilterDesktop"; "enableSearch": "enableSearch"; "filterButtonTemplate": "filterButtonTemplate"; "itemsSelectedAmount": "itemsSelectedAmount"; "loading": "loading"; "query": "query"; "quickFilters": "quickFilters"; "selectedFiltersAmount": "selectedFiltersAmount"; }, {}, never, ["*"], false, never>;
704
801
  }
705
802
  export declare interface PTableHeader extends Components.PTableHeader {
706
803
  /**
@@ -719,19 +816,32 @@ export declare interface PTableHeader extends Components.PTableHeader {
719
816
  * Event when the action button is clicked
720
817
  */
721
818
  action: EventEmitter<CustomEvent<null>>;
819
+ /**
820
+ * Event whenever the export button is clicked
821
+ */
822
+ export: EventEmitter<CustomEvent<number>>;
722
823
  }
723
824
  export declare class PTableRow {
724
825
  protected z: NgZone;
725
- protected el: HTMLElement;
826
+ protected el: HTMLPTableRowElement;
726
827
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
727
828
  static ɵfac: i0.ɵɵFactoryDeclaration<PTableRow, never>;
728
- static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
829
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "checked": "checked"; "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
729
830
  }
730
831
  export declare interface PTableRow extends Components.PTableRow {
731
832
  }
833
+ export declare class PTableRowActionsContainer {
834
+ protected z: NgZone;
835
+ protected el: HTMLPTableRowActionsContainerElement;
836
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
837
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableRowActionsContainer, never>;
838
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableRowActionsContainer, "p-table-row-actions-container", never, {}, {}, never, ["*"], false, never>;
839
+ }
840
+ export declare interface PTableRowActionsContainer extends Components.PTableRowActionsContainer {
841
+ }
732
842
  export declare class PToast {
733
843
  protected z: NgZone;
734
- protected el: HTMLElement;
844
+ protected el: HTMLPToastElement;
735
845
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
736
846
  static ɵfac: i0.ɵɵFactoryDeclaration<PToast, never>;
737
847
  static ɵcmp: i0.ɵɵComponentDeclaration<PToast, "p-toast", never, { "actionIcon": "actionIcon"; "actionIconFlip": "actionIconFlip"; "actionIconRotate": "actionIconRotate"; "content": "content"; "enableAction": "enableAction"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false, never>;
@@ -742,9 +852,26 @@ export declare interface PToast extends Components.PToast {
742
852
  */
743
853
  action: EventEmitter<CustomEvent<MouseEvent>>;
744
854
  }
855
+ export declare class PToggle {
856
+ protected z: NgZone;
857
+ protected el: HTMLPToggleElement;
858
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
859
+ static ɵfac: i0.ɵɵFactoryDeclaration<PToggle, never>;
860
+ static ɵcmp: i0.ɵɵComponentDeclaration<PToggle, "p-toggle", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; }, {}, never, ["*"], false, never>;
861
+ }
862
+ export declare interface PToggle extends Components.PToggle {
863
+ /**
864
+ * Event whenever the checked changes
865
+ */
866
+ checkedChange: EventEmitter<CustomEvent<boolean>>;
867
+ /**
868
+ * Event whenever the indeterminate changes
869
+ */
870
+ indeterminateChange: EventEmitter<CustomEvent<boolean>>;
871
+ }
745
872
  export declare class PTooltip {
746
873
  protected z: NgZone;
747
- protected el: HTMLElement;
874
+ protected el: HTMLPTooltipElement;
748
875
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
749
876
  static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
750
877
  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>;