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

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 +476 -255
  15. package/esm2020/lib/stencil/index.mjs +19 -10
  16. package/esm2020/lib/stencil.module.mjs +1 -1
  17. package/fesm2015/paperless-angular.mjs +854 -390
  18. package/fesm2015/paperless-angular.mjs.map +1 -1
  19. package/fesm2020/paperless-angular.mjs +849 -389
  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 +315 -161
  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,33 +17,41 @@ 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
- static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "letters": "letters"; "size": "size"; "src": "src"; }, {}, never, ["*"], false, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "letters": "letters"; "size": "size"; "src": "src"; "variant": "variant"; }, {}, never, ["*"], false, never>;
41
49
  }
42
50
  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, { "as": "as"; "buttonGroupPosition": "buttonGroupPosition"; "chevron": "chevron"; "chevronPosition": "chevronPosition"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "loading": "loading"; "size": "size"; "target": "target"; "type": "type"; "underline": "underline"; "variant": "variant"; }, {}, never, ["*"], false, never>;
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"; }, {}, never, ["*"], false, never>;
263
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "offset": "offset"; "placement": "placement"; "scrollable": "scrollable"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false, never>;
248
264
  }
249
265
  export declare interface PDropdown extends Components.PDropdown {
250
266
  /**
@@ -254,43 +270,87 @@ 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"; "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
+ }
302
+ export declare class PField {
303
+ protected z: NgZone;
304
+ protected el: HTMLPFieldElement;
305
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
306
+ static ɵfac: i0.ɵɵFactoryDeclaration<PField, 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>;
308
+ }
309
+ export declare interface PField extends Components.PField {
310
+ /**
311
+ * Event whenever the value changes
312
+ */
313
+ valueChange: EventEmitter<CustomEvent<string>>;
314
+ /**
315
+ * Event whenever the input ref changes
316
+ */
317
+ inputRefChange: EventEmitter<CustomEvent<HTMLInputElement | HTMLTextAreaElement>>;
318
+ }
319
+ export declare class PFieldContainer {
320
+ protected z: NgZone;
321
+ protected el: HTMLPFieldContainerElement;
322
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
323
+ static ɵfac: i0.ɵɵFactoryDeclaration<PFieldContainer, 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>;
325
+ }
326
+ export declare interface PFieldContainer extends Components.PFieldContainer {
327
+ focus: EventEmitter<CustomEvent<void>>;
328
+ }
273
329
  export declare class PFloatingMenuContainer {
274
330
  protected z: NgZone;
275
- protected el: HTMLElement;
331
+ protected el: HTMLPFloatingMenuContainerElement;
276
332
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
277
333
  static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuContainer, never>;
278
- 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>;
279
335
  }
280
336
  export declare interface PFloatingMenuContainer extends Components.PFloatingMenuContainer {
337
+ /**
338
+ * Event whenever the close button is clicked
339
+ */
340
+ close: EventEmitter<CustomEvent<MouseEvent>>;
281
341
  }
282
342
  export declare class PFloatingMenuItem {
283
343
  protected z: NgZone;
284
- protected el: HTMLElement;
344
+ protected el: HTMLPFloatingMenuItemElement;
285
345
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
286
346
  static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuItem, never>;
287
- 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>;
288
348
  }
289
349
  export declare interface PFloatingMenuItem extends Components.PFloatingMenuItem {
290
350
  }
291
351
  export declare class PHelper {
292
352
  protected z: NgZone;
293
- protected el: HTMLElement;
353
+ protected el: HTMLPHelperElement;
294
354
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
295
355
  static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
296
356
  static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; "strategy": "strategy"; }, {}, never, ["*"], false, never>;
@@ -299,7 +359,7 @@ export declare interface PHelper extends Components.PHelper {
299
359
  }
300
360
  export declare class PIbanIcon {
301
361
  protected z: NgZone;
302
- protected el: HTMLElement;
362
+ protected el: HTMLPIbanIconElement;
303
363
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
304
364
  static ɵfac: i0.ɵɵFactoryDeclaration<PIbanIcon, never>;
305
365
  static ɵcmp: i0.ɵɵComponentDeclaration<PIbanIcon, "p-iban-icon", never, { "iban": "iban"; "variant": "variant"; }, {}, never, ["*"], false, never>;
@@ -308,34 +368,34 @@ export declare interface PIbanIcon extends Components.PIbanIcon {
308
368
  }
309
369
  export declare class PIcon {
310
370
  protected z: NgZone;
311
- protected el: HTMLElement;
371
+ protected el: HTMLPIconElement;
312
372
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
313
373
  static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
314
374
  static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
315
375
  }
316
376
  export declare interface PIcon extends Components.PIcon {
317
377
  }
318
- export declare class PIconDeprecated {
319
- protected z: NgZone;
320
- protected el: HTMLElement;
321
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
322
- static ɵfac: i0.ɵɵFactoryDeclaration<PIconDeprecated, never>;
323
- static ɵcmp: i0.ɵɵComponentDeclaration<PIconDeprecated, "p-icon-deprecated", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
324
- }
325
- export declare interface PIconDeprecated extends Components.PIconDeprecated {
326
- }
327
378
  export declare class PIllustration {
328
379
  protected z: NgZone;
329
- protected el: HTMLElement;
380
+ protected el: HTMLPIllustrationElement;
330
381
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
331
382
  static ɵfac: i0.ɵɵFactoryDeclaration<PIllustration, never>;
332
383
  static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
333
384
  }
334
385
  export declare interface PIllustration extends Components.PIllustration {
335
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
+ }
336
396
  export declare class PInfoPanel {
337
397
  protected z: NgZone;
338
- protected el: HTMLElement;
398
+ protected el: HTMLPInfoPanelElement;
339
399
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
340
400
  static ɵfac: i0.ɵɵFactoryDeclaration<PInfoPanel, never>;
341
401
  static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false, never>;
@@ -346,45 +406,58 @@ export declare interface PInfoPanel extends Components.PInfoPanel {
346
406
  */
347
407
  closed: EventEmitter<CustomEvent<void>>;
348
408
  }
349
- export declare class PInputError {
409
+ export declare class PLabel {
350
410
  protected z: NgZone;
351
- protected el: HTMLElement;
411
+ protected el: HTMLPLabelElement;
352
412
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
353
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputError, never>;
354
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputError, "p-input-error", never, { "error": "error"; "forceShowTooltip": "forceShowTooltip"; }, {}, never, ["*"], false, never>;
413
+ static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, 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>;
355
415
  }
356
- export declare interface PInputError extends Components.PInputError {
416
+ export declare interface PLabel extends Components.PLabel {
357
417
  }
358
- export declare class PInputGroup {
418
+ export declare class PLayout {
359
419
  protected z: NgZone;
360
- protected el: HTMLElement;
420
+ protected el: HTMLPLayoutElement;
361
421
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
362
- static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
363
- static ɵcmp: i0.ɵɵComponentDeclaration<PInputGroup, "p-input-group", never, { "disabled": "disabled"; "error": "error"; "errorVariant": "errorVariant"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "prefix": "prefix"; "required": "required"; "size": "size"; "suffix": "suffix"; }, {}, never, ["*"], false, never>;
422
+ static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
423
+ static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
364
424
  }
365
- export declare interface PInputGroup extends Components.PInputGroup {
425
+ export declare interface PLayout extends Components.PLayout {
426
+ /**
427
+ * Event whenever the layout is being scrolled
428
+ */
429
+ scroll: EventEmitter<CustomEvent<any>>;
366
430
  }
367
- export declare class PLabel {
431
+ export declare class PListing {
368
432
  protected z: NgZone;
369
- protected el: HTMLElement;
433
+ protected el: HTMLPListingElement;
370
434
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
371
- static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, never>;
372
- 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>;
435
+ static ɵfac: i0.ɵɵFactoryDeclaration<PListing, never>;
436
+ static ɵcmp: i0.ɵɵComponentDeclaration<PListing, "p-listing", never, {}, {}, never, ["*"], false, never>;
373
437
  }
374
- export declare interface PLabel extends Components.PLabel {
438
+ export declare interface PListing extends Components.PListing {
375
439
  }
376
- export declare class PLayout {
440
+ export declare class PListingItem {
377
441
  protected z: NgZone;
378
- protected el: HTMLElement;
442
+ protected el: HTMLPListingItemElement;
379
443
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
380
- static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
381
- static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
444
+ static ɵfac: i0.ɵɵFactoryDeclaration<PListingItem, never>;
445
+ static ɵcmp: i0.ɵɵComponentDeclaration<PListingItem, "p-listing-item", never, { "icon": "icon"; }, {}, never, ["*"], false, never>;
382
446
  }
383
- export declare interface PLayout extends Components.PLayout {
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 {
384
457
  }
385
458
  export declare class PLoader {
386
459
  protected z: NgZone;
387
- protected el: HTMLElement;
460
+ protected el: HTMLPLoaderElement;
388
461
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
389
462
  static ɵfac: i0.ɵɵFactoryDeclaration<PLoader, never>;
390
463
  static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false, never>;
@@ -393,10 +466,10 @@ export declare interface PLoader extends Components.PLoader {
393
466
  }
394
467
  export declare class PModal {
395
468
  protected z: NgZone;
396
- protected el: HTMLElement;
469
+ protected el: HTMLPModalElement;
397
470
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
398
471
  static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
399
- 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>;
400
473
  }
401
474
  export declare interface PModal extends Components.PModal {
402
475
  /**
@@ -410,16 +483,16 @@ export declare interface PModal extends Components.PModal {
410
483
  }
411
484
  export declare class PModalBody {
412
485
  protected z: NgZone;
413
- protected el: HTMLElement;
486
+ protected el: HTMLPModalBodyElement;
414
487
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
415
488
  static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
416
- 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>;
417
490
  }
418
491
  export declare interface PModalBody extends Components.PModalBody {
419
492
  }
420
493
  export declare class PModalContainer {
421
494
  protected z: NgZone;
422
- protected el: HTMLElement;
495
+ protected el: HTMLPModalContainerElement;
423
496
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
424
497
  static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
425
498
  static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "closing": "closing"; "size": "size"; }, {}, never, ["*"], false, never>;
@@ -428,7 +501,7 @@ export declare interface PModalContainer extends Components.PModalContainer {
428
501
  }
429
502
  export declare class PModalFooter {
430
503
  protected z: NgZone;
431
- protected el: HTMLElement;
504
+ protected el: HTMLPModalFooterElement;
432
505
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
433
506
  static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
434
507
  static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, {}, {}, never, ["*"], false, never>;
@@ -437,7 +510,7 @@ export declare interface PModalFooter extends Components.PModalFooter {
437
510
  }
438
511
  export declare class PModalHeader {
439
512
  protected z: NgZone;
440
- protected el: HTMLElement;
513
+ protected el: HTMLPModalHeaderElement;
441
514
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
442
515
  static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
443
516
  static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
@@ -450,78 +523,138 @@ export declare interface PModalHeader extends Components.PModalHeader {
450
523
  }
451
524
  export declare class PNavbar {
452
525
  protected z: NgZone;
453
- protected el: HTMLElement;
526
+ protected el: HTMLPNavbarElement;
454
527
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
455
528
  static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
456
- static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, { "menuText": "menuText"; }, {}, never, ["*"], false, never>;
529
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, {}, {}, never, ["*"], false, never>;
457
530
  }
458
531
  export declare interface PNavbar extends Components.PNavbar {
459
532
  }
460
533
  export declare class PNavigationItem {
461
534
  protected z: NgZone;
462
- protected el: HTMLElement;
535
+ protected el: HTMLPNavigationItemElement;
463
536
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
464
537
  static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
465
- static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "as": "as"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false, never>;
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>;
466
539
  }
467
540
  export declare interface PNavigationItem extends Components.PNavigationItem {
468
541
  }
542
+ export declare class PNavigationSection {
543
+ protected z: NgZone;
544
+ protected el: HTMLPNavigationSectionElement;
545
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
546
+ static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationSection, never>;
547
+ static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationSection, "p-navigation-section", never, { "header": "header"; }, {}, never, ["*"], false, never>;
548
+ }
549
+ export declare interface PNavigationSection extends Components.PNavigationSection {
550
+ }
469
551
  export declare class PNavigationTitle {
470
552
  protected z: NgZone;
471
- protected el: HTMLElement;
553
+ protected el: HTMLPNavigationTitleElement;
472
554
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
473
555
  static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationTitle, never>;
474
556
  static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationTitle, "p-navigation-title", never, {}, {}, never, ["*"], false, never>;
475
557
  }
476
558
  export declare interface PNavigationTitle extends Components.PNavigationTitle {
477
559
  }
478
- export declare class PPageSizeSelect {
560
+ export declare class PPagination {
479
561
  protected z: NgZone;
480
- protected el: HTMLElement;
562
+ protected el: HTMLPPaginationElement;
481
563
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
482
- static ɵfac: i0.ɵɵFactoryDeclaration<PPageSizeSelect, never>;
483
- 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>;
484
566
  }
485
- export declare interface PPageSizeSelect extends Components.PPageSizeSelect {
567
+ export declare interface PPagination extends Components.PPagination {
486
568
  /**
487
- * Event whenever the size changes
569
+ * Event whenever the page changes
488
570
  */
489
- 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>>;
490
580
  }
491
- export declare class PPagination {
581
+ export declare class PPaginationPages {
492
582
  protected z: NgZone;
493
- protected el: HTMLElement;
583
+ protected el: HTMLPPaginationPagesElement;
494
584
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
495
- static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
496
- 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>;
497
587
  }
498
- export declare interface PPagination extends Components.PPagination {
588
+ export declare interface PPaginationPages extends Components.PPaginationPages {
499
589
  /**
500
590
  * Event whenever the page changes
501
591
  */
502
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>;
503
604
  }
504
- export declare class PPaginationItem {
605
+ export declare interface PPaginationPagesItem extends Components.PPaginationPagesItem {
606
+ }
607
+ export declare class PPaginationSize {
505
608
  protected z: NgZone;
506
- protected el: HTMLElement;
609
+ protected el: HTMLPPaginationSizeElement;
507
610
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
508
- static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationItem, never>;
509
- 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>;
510
613
  }
511
- 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>>;
512
619
  }
513
620
  export declare class PProfile {
514
621
  protected z: NgZone;
515
- protected el: HTMLElement;
622
+ protected el: HTMLPProfileElement;
516
623
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
517
624
  static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
518
- static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; "size": "size"; }, {}, never, ["*"], false, never>;
625
+ static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; }, {}, never, ["*"], false, never>;
519
626
  }
520
627
  export declare interface PProfile extends Components.PProfile {
521
628
  }
629
+ export declare class PRadio {
630
+ protected z: NgZone;
631
+ protected el: HTMLPRadioElement;
632
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
633
+ static ɵfac: i0.ɵɵFactoryDeclaration<PRadio, never>;
634
+ static ɵcmp: i0.ɵɵComponentDeclaration<PRadio, "p-radio", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; "value": "value"; }, {}, never, ["*"], false, never>;
635
+ }
636
+ export declare interface PRadio extends Components.PRadio {
637
+ /**
638
+ * Event whenever the checked changes
639
+ */
640
+ checkedChange: EventEmitter<CustomEvent<boolean>>;
641
+ }
642
+ export declare class PRange {
643
+ protected z: NgZone;
644
+ protected el: HTMLPRangeElement;
645
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
646
+ static ɵfac: i0.ɵɵFactoryDeclaration<PRange, never>;
647
+ static ɵcmp: i0.ɵɵComponentDeclaration<PRange, "p-range", never, { "max": "max"; "min": "min"; "step": "step"; "value": "value"; }, {}, never, ["*"], false, never>;
648
+ }
649
+ export declare interface PRange extends Components.PRange {
650
+ /**
651
+ * Event whenever the value changes
652
+ */
653
+ valueChange: EventEmitter<CustomEvent<string>>;
654
+ }
522
655
  export declare class PSegmentContainer {
523
656
  protected z: NgZone;
524
- protected el: HTMLElement;
657
+ protected el: HTMLPSegmentContainerElement;
525
658
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
526
659
  static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
527
660
  static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false, never>;
@@ -530,19 +663,19 @@ export declare interface PSegmentContainer extends Components.PSegmentContainer
530
663
  }
531
664
  export declare class PSegmentItem {
532
665
  protected z: NgZone;
533
- protected el: HTMLElement;
666
+ protected el: HTMLPSegmentItemElement;
534
667
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
535
668
  static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
536
- static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "size": "size"; }, {}, never, ["*"], false, never>;
669
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
537
670
  }
538
671
  export declare interface PSegmentItem extends Components.PSegmentItem {
539
672
  }
540
673
  export declare class PSelect {
541
674
  protected z: NgZone;
542
- protected el: HTMLElement;
675
+ protected el: HTMLPSelectElement;
543
676
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
544
677
  static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
545
- 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>;
678
+ 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"; "value": "value"; "valueKey": "valueKey"; }, {}, never, ["*"], false, never>;
546
679
  }
547
680
  export declare interface PSelect extends Components.PSelect {
548
681
  /**
@@ -566,63 +699,54 @@ export declare interface PSelect extends Components.PSelect {
566
699
  */
567
700
  add: EventEmitter<CustomEvent<any>>;
568
701
  }
569
- export declare class PSliderIndicator {
570
- protected z: NgZone;
571
- protected el: HTMLElement;
572
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
573
- static ɵfac: i0.ɵɵFactoryDeclaration<PSliderIndicator, never>;
574
- static ɵcmp: i0.ɵɵComponentDeclaration<PSliderIndicator, "p-slider-indicator", never, { "active": "active"; }, {}, never, ["*"], false, never>;
575
- }
576
- export declare interface PSliderIndicator extends Components.PSliderIndicator {
577
- }
578
- export declare class PStatus {
702
+ export declare class PSmile {
579
703
  protected z: NgZone;
580
- protected el: HTMLElement;
704
+ protected el: HTMLPSmileElement;
581
705
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
582
- static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
583
- static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
706
+ static ɵfac: i0.ɵɵFactoryDeclaration<PSmile, never>;
707
+ static ɵcmp: i0.ɵɵComponentDeclaration<PSmile, "p-smile", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
584
708
  }
585
- export declare interface PStatus extends Components.PStatus {
709
+ export declare interface PSmile extends Components.PSmile {
586
710
  }
587
711
  export declare class PStepper {
588
712
  protected z: NgZone;
589
- protected el: HTMLElement;
713
+ protected el: HTMLPStepperElement;
590
714
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
591
715
  static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
592
- static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "contentPosition": "contentPosition"; "direction": "direction"; }, {}, never, ["*"], false, never>;
716
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "enableAutoStatus": "enableAutoStatus"; "steps": "steps"; }, {}, never, ["*"], false, never>;
593
717
  }
594
718
  export declare interface PStepper extends Components.PStepper {
595
719
  }
596
720
  export declare class PStepperItem {
597
721
  protected z: NgZone;
598
- protected el: HTMLElement;
722
+ protected el: HTMLPStepperItemElement;
599
723
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
600
724
  static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
601
- static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "finished": "finished"; }, {}, never, ["*"], false, never>;
725
+ static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "finished": "finished"; "number": "number"; }, {}, never, ["*"], false, never>;
602
726
  }
603
727
  export declare interface PStepperItem extends Components.PStepperItem {
604
728
  }
605
729
  export declare class PStepperLine {
606
730
  protected z: NgZone;
607
- protected el: HTMLElement;
731
+ protected el: HTMLPStepperLineElement;
608
732
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
609
733
  static ɵfac: i0.ɵɵFactoryDeclaration<PStepperLine, never>;
610
734
  static ɵcmp: i0.ɵɵComponentDeclaration<PStepperLine, "p-stepper-line", never, { "active": "active"; "direction": "direction"; }, {}, never, ["*"], false, never>;
611
735
  }
612
736
  export declare interface PStepperLine extends Components.PStepperLine {
613
737
  }
614
- export declare class PTabGroup {
738
+ export declare class PTabContainer {
615
739
  protected z: NgZone;
616
- protected el: HTMLElement;
740
+ protected el: HTMLPTabContainerElement;
617
741
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
618
- static ɵfac: i0.ɵɵFactoryDeclaration<PTabGroup, never>;
619
- static ɵcmp: i0.ɵɵComponentDeclaration<PTabGroup, "p-tab-group", never, {}, {}, never, ["*"], false, never>;
742
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTabContainer, never>;
743
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTabContainer, "p-tab-container", never, {}, {}, never, ["*"], false, never>;
620
744
  }
621
- export declare interface PTabGroup extends Components.PTabGroup {
745
+ export declare interface PTabContainer extends Components.PTabContainer {
622
746
  }
623
747
  export declare class PTabItem {
624
748
  protected z: NgZone;
625
- protected el: HTMLElement;
749
+ protected el: HTMLPTabItemElement;
626
750
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
627
751
  static ɵfac: i0.ɵɵFactoryDeclaration<PTabItem, never>;
628
752
  static ɵcmp: i0.ɵɵComponentDeclaration<PTabItem, "p-tab-item", never, { "active": "active"; }, {}, never, ["*"], false, never>;
@@ -631,19 +755,19 @@ export declare interface PTabItem extends Components.PTabItem {
631
755
  }
632
756
  export declare class PTableContainer {
633
757
  protected z: NgZone;
634
- protected el: HTMLElement;
758
+ protected el: HTMLPTableContainerElement;
635
759
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
636
760
  static ɵfac: i0.ɵɵFactoryDeclaration<PTableContainer, never>;
637
- static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, { "shadow": "shadow"; }, {}, never, ["*"], false, never>;
761
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {}, {}, never, ["*"], false, never>;
638
762
  }
639
763
  export declare interface PTableContainer extends Components.PTableContainer {
640
764
  }
641
765
  export declare class PTableFooter {
642
766
  protected z: NgZone;
643
- protected el: HTMLElement;
767
+ protected el: HTMLPTableFooterElement;
644
768
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
645
769
  static ɵfac: i0.ɵɵFactoryDeclaration<PTableFooter, never>;
646
- 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>;
770
+ 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>;
647
771
  }
648
772
  export declare interface PTableFooter extends Components.PTableFooter {
649
773
  /**
@@ -655,16 +779,16 @@ export declare interface PTableFooter extends Components.PTableFooter {
655
779
  */
656
780
  pageSizeChange: EventEmitter<CustomEvent<number>>;
657
781
  /**
658
- * Event whenever the page changes
782
+ * Event whenever the footer is hidden or nog
659
783
  */
660
- export: EventEmitter<CustomEvent<number>>;
784
+ hiddenChange: EventEmitter<CustomEvent<boolean>>;
661
785
  }
662
786
  export declare class PTableHeader {
663
787
  protected z: NgZone;
664
- protected el: HTMLElement;
788
+ protected el: HTMLPTableHeaderElement;
665
789
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
666
790
  static ɵfac: i0.ɵɵFactoryDeclaration<PTableHeader, never>;
667
- 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>;
791
+ 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>;
668
792
  }
669
793
  export declare interface PTableHeader extends Components.PTableHeader {
670
794
  /**
@@ -683,19 +807,32 @@ export declare interface PTableHeader extends Components.PTableHeader {
683
807
  * Event when the action button is clicked
684
808
  */
685
809
  action: EventEmitter<CustomEvent<null>>;
810
+ /**
811
+ * Event whenever the export button is clicked
812
+ */
813
+ export: EventEmitter<CustomEvent<number>>;
686
814
  }
687
815
  export declare class PTableRow {
688
816
  protected z: NgZone;
689
- protected el: HTMLElement;
817
+ protected el: HTMLPTableRowElement;
690
818
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
691
819
  static ɵfac: i0.ɵɵFactoryDeclaration<PTableRow, never>;
692
- static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
820
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "checked": "checked"; "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
693
821
  }
694
822
  export declare interface PTableRow extends Components.PTableRow {
695
823
  }
824
+ export declare class PTableRowActionsContainer {
825
+ protected z: NgZone;
826
+ protected el: HTMLPTableRowActionsContainerElement;
827
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
828
+ static ɵfac: i0.ɵɵFactoryDeclaration<PTableRowActionsContainer, never>;
829
+ static ɵcmp: i0.ɵɵComponentDeclaration<PTableRowActionsContainer, "p-table-row-actions-container", never, {}, {}, never, ["*"], false, never>;
830
+ }
831
+ export declare interface PTableRowActionsContainer extends Components.PTableRowActionsContainer {
832
+ }
696
833
  export declare class PToast {
697
834
  protected z: NgZone;
698
- protected el: HTMLElement;
835
+ protected el: HTMLPToastElement;
699
836
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
700
837
  static ɵfac: i0.ɵɵFactoryDeclaration<PToast, never>;
701
838
  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>;
@@ -706,9 +843,26 @@ export declare interface PToast extends Components.PToast {
706
843
  */
707
844
  action: EventEmitter<CustomEvent<MouseEvent>>;
708
845
  }
846
+ export declare class PToggle {
847
+ protected z: NgZone;
848
+ protected el: HTMLPToggleElement;
849
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
850
+ static ɵfac: i0.ɵɵFactoryDeclaration<PToggle, never>;
851
+ static ɵcmp: i0.ɵɵComponentDeclaration<PToggle, "p-toggle", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; }, {}, never, ["*"], false, never>;
852
+ }
853
+ export declare interface PToggle extends Components.PToggle {
854
+ /**
855
+ * Event whenever the checked changes
856
+ */
857
+ checkedChange: EventEmitter<CustomEvent<boolean>>;
858
+ /**
859
+ * Event whenever the indeterminate changes
860
+ */
861
+ indeterminateChange: EventEmitter<CustomEvent<boolean>>;
862
+ }
709
863
  export declare class PTooltip {
710
864
  protected z: NgZone;
711
- protected el: HTMLElement;
865
+ protected el: HTMLPTooltipElement;
712
866
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
713
867
  static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
714
868
  static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "content": "content"; "enableUserInput": "enableUserInput"; "offset": "offset"; "placement": "placement"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false, never>;