@paperless/angular 2.0.1-beta.15 → 2.0.1-beta.151
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.
- package/esm2020/lib/directives/index.mjs +19 -7
- package/esm2020/lib/directives/p-checkbox.directive.mjs +39 -0
- package/esm2020/lib/directives/p-field.directive.mjs +38 -0
- package/esm2020/lib/directives/p-pagination-pages.directive.mjs +41 -0
- package/esm2020/lib/directives/p-pagination-size.directive.mjs +41 -0
- package/esm2020/lib/directives/p-radio.directive.mjs +60 -0
- package/esm2020/lib/directives/p-toggle.directive.mjs +38 -0
- package/esm2020/lib/modules/table/components/table/table.component.mjs +146 -80
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +5 -19
- package/esm2020/lib/modules/toast/types.mjs +4 -3
- package/esm2020/lib/paperless.module.mjs +15 -11
- package/esm2020/lib/stencil/angular-component-lib/utils.mjs +9 -1
- package/esm2020/lib/stencil/components.mjs +413 -243
- package/esm2020/lib/stencil/index.mjs +17 -10
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +772 -375
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +767 -374
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/directives/index.d.ts +9 -4
- package/lib/directives/p-checkbox.directive.d.ts +9 -0
- package/lib/directives/p-field.directive.d.ts +9 -0
- package/lib/directives/p-pagination-pages.directive.d.ts +10 -0
- package/lib/directives/{p-page-size-select.directive.d.ts → p-pagination-size.directive.d.ts} +3 -3
- package/lib/directives/p-radio.directive.d.ts +18 -0
- package/lib/directives/p-toggle.directive.d.ts +9 -0
- package/lib/modules/table/components/table/table.component.d.ts +40 -14
- package/lib/modules/table/components/table-cell/table-cell.component.d.ts +2 -6
- package/lib/modules/toast/types.d.ts +3 -2
- package/lib/paperless.module.d.ts +15 -11
- package/lib/stencil/components.d.ts +291 -159
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +1 -1
- package/package.json +1 -1
- package/paperless.css +248 -57
- package/esm2020/lib/directives/p-page-size-select.directive.mjs +0 -41
- package/esm2020/lib/directives/p-pagination.directive.mjs +0 -41
- 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:
|
|
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:
|
|
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, { "
|
|
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<
|
|
37
|
+
download: EventEmitter<CustomEvent<void>>;
|
|
30
38
|
/**
|
|
31
39
|
* Event when delete is pressed
|
|
32
40
|
*/
|
|
33
|
-
delete: EventEmitter<CustomEvent<
|
|
41
|
+
delete: EventEmitter<CustomEvent<void>>;
|
|
34
42
|
}
|
|
35
43
|
export declare class PAvatar {
|
|
36
44
|
protected z: NgZone;
|
|
37
|
-
protected el:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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,7 +104,7 @@ export declare interface PButtonGroup extends Components.PButtonGroup {
|
|
|
96
104
|
}
|
|
97
105
|
export declare class PCalendar {
|
|
98
106
|
protected z: NgZone;
|
|
99
|
-
protected el:
|
|
107
|
+
protected el: HTMLPCalendarElement;
|
|
100
108
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
101
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCalendar, never>;
|
|
102
110
|
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>;
|
|
@@ -109,52 +117,60 @@ export declare interface PCalendar extends Components.PCalendar {
|
|
|
109
117
|
}
|
|
110
118
|
export declare class PCardBody {
|
|
111
119
|
protected z: NgZone;
|
|
112
|
-
protected el:
|
|
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, {
|
|
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:
|
|
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"; "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:
|
|
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, { "
|
|
141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "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
|
|
145
|
+
export declare class PCheckbox {
|
|
138
146
|
protected z: NgZone;
|
|
139
|
-
protected el:
|
|
147
|
+
protected el: HTMLPCheckboxElement;
|
|
140
148
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
141
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
142
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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
|
|
162
|
+
export declare class PContentSlider {
|
|
147
163
|
protected z: NgZone;
|
|
148
|
-
protected el:
|
|
164
|
+
protected el: HTMLPContentSliderElement;
|
|
149
165
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
150
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
151
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
169
|
+
export declare interface PContentSlider extends Components.PContentSlider {
|
|
154
170
|
}
|
|
155
171
|
export declare class PCropper {
|
|
156
172
|
protected z: NgZone;
|
|
157
|
-
protected el:
|
|
173
|
+
protected el: HTMLPCropperElement;
|
|
158
174
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
159
175
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCropper, never>;
|
|
160
176
|
static ɵcmp: i0.ɵɵComponentDeclaration<PCropper, "p-cropper", never, { "returnType": "returnType"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
@@ -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:
|
|
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"; "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"; "size": "size"; "strategy": "strategy"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
174
190
|
}
|
|
175
191
|
export declare interface PDatepicker extends Components.PDatepicker {
|
|
176
192
|
/**
|
|
@@ -180,7 +196,7 @@ export declare interface PDatepicker extends Components.PDatepicker {
|
|
|
180
196
|
}
|
|
181
197
|
export declare class PDivider {
|
|
182
198
|
protected z: NgZone;
|
|
183
|
-
protected el:
|
|
199
|
+
protected el: HTMLPDividerElement;
|
|
184
200
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
185
201
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
|
|
186
202
|
static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
@@ -189,7 +205,7 @@ export declare interface PDivider extends Components.PDivider {
|
|
|
189
205
|
}
|
|
190
206
|
export declare class PDrawer {
|
|
191
207
|
protected z: NgZone;
|
|
192
|
-
protected el:
|
|
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:
|
|
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, {
|
|
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:
|
|
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:
|
|
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:
|
|
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,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:
|
|
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:
|
|
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"; "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"; "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"; "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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
|
409
|
+
export declare class PLabel {
|
|
350
410
|
protected z: NgZone;
|
|
351
|
-
protected el:
|
|
411
|
+
protected el: HTMLPLabelElement;
|
|
352
412
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
353
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
354
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
416
|
+
export declare interface PLabel extends Components.PLabel {
|
|
357
417
|
}
|
|
358
|
-
export declare class
|
|
418
|
+
export declare class PLayout {
|
|
359
419
|
protected z: NgZone;
|
|
360
|
-
protected el:
|
|
420
|
+
protected el: HTMLPLayoutElement;
|
|
361
421
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
362
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
363
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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
|
|
431
|
+
export declare class PListing {
|
|
368
432
|
protected z: NgZone;
|
|
369
|
-
protected el:
|
|
433
|
+
protected el: HTMLPListingElement;
|
|
370
434
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
371
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
372
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
438
|
+
export declare interface PListing extends Components.PListing {
|
|
375
439
|
}
|
|
376
|
-
export declare class
|
|
440
|
+
export declare class PListingItem {
|
|
377
441
|
protected z: NgZone;
|
|
378
|
-
protected el:
|
|
442
|
+
protected el: HTMLPListingItemElement;
|
|
379
443
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
380
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
381
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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:
|
|
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:
|
|
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"; "
|
|
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:
|
|
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, { "
|
|
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:
|
|
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:
|
|
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:
|
|
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,7 +523,7 @@ export declare interface PModalHeader extends Components.PModalHeader {
|
|
|
450
523
|
}
|
|
451
524
|
export declare class PNavbar {
|
|
452
525
|
protected z: NgZone;
|
|
453
|
-
protected el:
|
|
526
|
+
protected el: HTMLPNavbarElement;
|
|
454
527
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
455
528
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
|
|
456
529
|
static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -459,16 +532,16 @@ export declare interface PNavbar extends Components.PNavbar {
|
|
|
459
532
|
}
|
|
460
533
|
export declare class PNavigationItem {
|
|
461
534
|
protected z: NgZone;
|
|
462
|
-
protected el:
|
|
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"; "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>;
|
|
466
539
|
}
|
|
467
540
|
export declare interface PNavigationItem extends Components.PNavigationItem {
|
|
468
541
|
}
|
|
469
542
|
export declare class PNavigationSection {
|
|
470
543
|
protected z: NgZone;
|
|
471
|
-
protected el:
|
|
544
|
+
protected el: HTMLPNavigationSectionElement;
|
|
472
545
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
473
546
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationSection, never>;
|
|
474
547
|
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationSection, "p-navigation-section", never, { "header": "header"; }, {}, never, ["*"], false, never>;
|
|
@@ -477,69 +550,107 @@ export declare interface PNavigationSection extends Components.PNavigationSectio
|
|
|
477
550
|
}
|
|
478
551
|
export declare class PNavigationTitle {
|
|
479
552
|
protected z: NgZone;
|
|
480
|
-
protected el:
|
|
553
|
+
protected el: HTMLPNavigationTitleElement;
|
|
481
554
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
482
555
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationTitle, never>;
|
|
483
556
|
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationTitle, "p-navigation-title", never, {}, {}, never, ["*"], false, never>;
|
|
484
557
|
}
|
|
485
558
|
export declare interface PNavigationTitle extends Components.PNavigationTitle {
|
|
486
559
|
}
|
|
487
|
-
export declare class
|
|
560
|
+
export declare class PPagination {
|
|
488
561
|
protected z: NgZone;
|
|
489
|
-
protected el:
|
|
562
|
+
protected el: HTMLPPaginationElement;
|
|
490
563
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
491
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
492
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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>;
|
|
493
566
|
}
|
|
494
|
-
export declare interface
|
|
567
|
+
export declare interface PPagination extends Components.PPagination {
|
|
495
568
|
/**
|
|
496
|
-
* Event whenever the
|
|
569
|
+
* Event whenever the page changes
|
|
497
570
|
*/
|
|
498
|
-
|
|
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>>;
|
|
499
580
|
}
|
|
500
|
-
export declare class
|
|
581
|
+
export declare class PPaginationPages {
|
|
501
582
|
protected z: NgZone;
|
|
502
|
-
protected el:
|
|
583
|
+
protected el: HTMLPPaginationPagesElement;
|
|
503
584
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
504
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
505
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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>;
|
|
506
587
|
}
|
|
507
|
-
export declare interface
|
|
588
|
+
export declare interface PPaginationPages extends Components.PPaginationPages {
|
|
508
589
|
/**
|
|
509
590
|
* Event whenever the page changes
|
|
510
591
|
*/
|
|
511
592
|
pageChange: EventEmitter<CustomEvent<number>>;
|
|
593
|
+
/**
|
|
594
|
+
* The pages that were generated
|
|
595
|
+
*/
|
|
596
|
+
pagesChange: EventEmitter<CustomEvent<number>>;
|
|
512
597
|
}
|
|
513
|
-
export declare class
|
|
598
|
+
export declare class PPaginationPagesItem {
|
|
514
599
|
protected z: NgZone;
|
|
515
|
-
protected el:
|
|
600
|
+
protected el: HTMLPPaginationPagesItemElement;
|
|
516
601
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
517
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
518
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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>;
|
|
604
|
+
}
|
|
605
|
+
export declare interface PPaginationPagesItem extends Components.PPaginationPagesItem {
|
|
519
606
|
}
|
|
520
|
-
export declare
|
|
607
|
+
export declare class PPaginationSize {
|
|
608
|
+
protected z: NgZone;
|
|
609
|
+
protected el: HTMLPPaginationSizeElement;
|
|
610
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
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>;
|
|
613
|
+
}
|
|
614
|
+
export declare interface PPaginationSize extends Components.PPaginationSize {
|
|
615
|
+
/**
|
|
616
|
+
* Event whenever the size changes
|
|
617
|
+
*/
|
|
618
|
+
sizeChange: EventEmitter<CustomEvent<number>>;
|
|
521
619
|
}
|
|
522
620
|
export declare class PPortal {
|
|
523
621
|
protected z: NgZone;
|
|
524
|
-
protected el:
|
|
622
|
+
protected el: HTMLPPortalElement;
|
|
525
623
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
526
624
|
static ɵfac: i0.ɵɵFactoryDeclaration<PPortal, never>;
|
|
527
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PPortal, "p-portal", never, {
|
|
625
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPortal, "p-portal", never, {}, {}, never, ["*"], false, never>;
|
|
528
626
|
}
|
|
529
627
|
export declare interface PPortal extends Components.PPortal {
|
|
530
628
|
}
|
|
531
629
|
export declare class PProfile {
|
|
532
630
|
protected z: NgZone;
|
|
533
|
-
protected el:
|
|
631
|
+
protected el: HTMLPProfileElement;
|
|
534
632
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
535
633
|
static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
|
|
536
634
|
static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; }, {}, never, ["*"], false, never>;
|
|
537
635
|
}
|
|
538
636
|
export declare interface PProfile extends Components.PProfile {
|
|
539
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
|
+
}
|
|
540
651
|
export declare class PSegmentContainer {
|
|
541
652
|
protected z: NgZone;
|
|
542
|
-
protected el:
|
|
653
|
+
protected el: HTMLPSegmentContainerElement;
|
|
543
654
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
544
655
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
|
|
545
656
|
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -548,19 +659,19 @@ export declare interface PSegmentContainer extends Components.PSegmentContainer
|
|
|
548
659
|
}
|
|
549
660
|
export declare class PSegmentItem {
|
|
550
661
|
protected z: NgZone;
|
|
551
|
-
protected el:
|
|
662
|
+
protected el: HTMLPSegmentItemElement;
|
|
552
663
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
553
664
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
|
|
554
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "
|
|
665
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
555
666
|
}
|
|
556
667
|
export declare interface PSegmentItem extends Components.PSegmentItem {
|
|
557
668
|
}
|
|
558
669
|
export declare class PSelect {
|
|
559
670
|
protected z: NgZone;
|
|
560
|
-
protected el:
|
|
671
|
+
protected el: HTMLPSelectElement;
|
|
561
672
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
562
673
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
|
|
563
|
-
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"; "
|
|
674
|
+
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"; "size": "size"; "strategy": "strategy"; "usePortal": "usePortal"; "value": "value"; "valueKey": "valueKey"; }, {}, never, ["*"], false, never>;
|
|
564
675
|
}
|
|
565
676
|
export declare interface PSelect extends Components.PSelect {
|
|
566
677
|
/**
|
|
@@ -584,63 +695,54 @@ export declare interface PSelect extends Components.PSelect {
|
|
|
584
695
|
*/
|
|
585
696
|
add: EventEmitter<CustomEvent<any>>;
|
|
586
697
|
}
|
|
587
|
-
export declare class
|
|
698
|
+
export declare class PSmile {
|
|
588
699
|
protected z: NgZone;
|
|
589
|
-
protected el:
|
|
700
|
+
protected el: HTMLPSmileElement;
|
|
590
701
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
591
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
592
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
702
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSmile, never>;
|
|
703
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSmile, "p-smile", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
593
704
|
}
|
|
594
|
-
export declare interface
|
|
595
|
-
}
|
|
596
|
-
export declare class PStatus {
|
|
597
|
-
protected z: NgZone;
|
|
598
|
-
protected el: HTMLElement;
|
|
599
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
600
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
|
|
601
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
602
|
-
}
|
|
603
|
-
export declare interface PStatus extends Components.PStatus {
|
|
705
|
+
export declare interface PSmile extends Components.PSmile {
|
|
604
706
|
}
|
|
605
707
|
export declare class PStepper {
|
|
606
708
|
protected z: NgZone;
|
|
607
|
-
protected el:
|
|
709
|
+
protected el: HTMLPStepperElement;
|
|
608
710
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
609
711
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
|
|
610
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "contentPosition": "contentPosition"; "direction": "direction"; }, {}, never, ["*"], false, never>;
|
|
712
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "enableAutoStatus": "enableAutoStatus"; "steps": "steps"; }, {}, never, ["*"], false, never>;
|
|
611
713
|
}
|
|
612
714
|
export declare interface PStepper extends Components.PStepper {
|
|
613
715
|
}
|
|
614
716
|
export declare class PStepperItem {
|
|
615
717
|
protected z: NgZone;
|
|
616
|
-
protected el:
|
|
718
|
+
protected el: HTMLPStepperItemElement;
|
|
617
719
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
618
720
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
|
|
619
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "
|
|
721
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "finished": "finished"; "number": "number"; }, {}, never, ["*"], false, never>;
|
|
620
722
|
}
|
|
621
723
|
export declare interface PStepperItem extends Components.PStepperItem {
|
|
622
724
|
}
|
|
623
725
|
export declare class PStepperLine {
|
|
624
726
|
protected z: NgZone;
|
|
625
|
-
protected el:
|
|
727
|
+
protected el: HTMLPStepperLineElement;
|
|
626
728
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
627
729
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperLine, never>;
|
|
628
730
|
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperLine, "p-stepper-line", never, { "active": "active"; "direction": "direction"; }, {}, never, ["*"], false, never>;
|
|
629
731
|
}
|
|
630
732
|
export declare interface PStepperLine extends Components.PStepperLine {
|
|
631
733
|
}
|
|
632
|
-
export declare class
|
|
734
|
+
export declare class PTabContainer {
|
|
633
735
|
protected z: NgZone;
|
|
634
|
-
protected el:
|
|
736
|
+
protected el: HTMLPTabContainerElement;
|
|
635
737
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
636
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
637
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
738
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTabContainer, never>;
|
|
739
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabContainer, "p-tab-container", never, {}, {}, never, ["*"], false, never>;
|
|
638
740
|
}
|
|
639
|
-
export declare interface
|
|
741
|
+
export declare interface PTabContainer extends Components.PTabContainer {
|
|
640
742
|
}
|
|
641
743
|
export declare class PTabItem {
|
|
642
744
|
protected z: NgZone;
|
|
643
|
-
protected el:
|
|
745
|
+
protected el: HTMLPTabItemElement;
|
|
644
746
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
645
747
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabItem, never>;
|
|
646
748
|
static ɵcmp: i0.ɵɵComponentDeclaration<PTabItem, "p-tab-item", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
@@ -649,19 +751,19 @@ export declare interface PTabItem extends Components.PTabItem {
|
|
|
649
751
|
}
|
|
650
752
|
export declare class PTableContainer {
|
|
651
753
|
protected z: NgZone;
|
|
652
|
-
protected el:
|
|
754
|
+
protected el: HTMLPTableContainerElement;
|
|
653
755
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
654
756
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableContainer, never>;
|
|
655
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {
|
|
757
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {}, {}, never, ["*"], false, never>;
|
|
656
758
|
}
|
|
657
759
|
export declare interface PTableContainer extends Components.PTableContainer {
|
|
658
760
|
}
|
|
659
761
|
export declare class PTableFooter {
|
|
660
762
|
protected z: NgZone;
|
|
661
|
-
protected el:
|
|
763
|
+
protected el: HTMLPTableFooterElement;
|
|
662
764
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
663
765
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableFooter, never>;
|
|
664
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableFooter, "p-table-footer", never, { "
|
|
766
|
+
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>;
|
|
665
767
|
}
|
|
666
768
|
export declare interface PTableFooter extends Components.PTableFooter {
|
|
667
769
|
/**
|
|
@@ -673,16 +775,16 @@ export declare interface PTableFooter extends Components.PTableFooter {
|
|
|
673
775
|
*/
|
|
674
776
|
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
675
777
|
/**
|
|
676
|
-
* Event whenever the
|
|
778
|
+
* Event whenever the footer is hidden or nog
|
|
677
779
|
*/
|
|
678
|
-
|
|
780
|
+
hiddenChange: EventEmitter<CustomEvent<boolean>>;
|
|
679
781
|
}
|
|
680
782
|
export declare class PTableHeader {
|
|
681
783
|
protected z: NgZone;
|
|
682
|
-
protected el:
|
|
784
|
+
protected el: HTMLPTableHeaderElement;
|
|
683
785
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
684
786
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableHeader, never>;
|
|
685
|
-
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>;
|
|
787
|
+
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>;
|
|
686
788
|
}
|
|
687
789
|
export declare interface PTableHeader extends Components.PTableHeader {
|
|
688
790
|
/**
|
|
@@ -701,19 +803,32 @@ export declare interface PTableHeader extends Components.PTableHeader {
|
|
|
701
803
|
* Event when the action button is clicked
|
|
702
804
|
*/
|
|
703
805
|
action: EventEmitter<CustomEvent<null>>;
|
|
806
|
+
/**
|
|
807
|
+
* Event whenever the export button is clicked
|
|
808
|
+
*/
|
|
809
|
+
export: EventEmitter<CustomEvent<number>>;
|
|
704
810
|
}
|
|
705
811
|
export declare class PTableRow {
|
|
706
812
|
protected z: NgZone;
|
|
707
|
-
protected el:
|
|
813
|
+
protected el: HTMLPTableRowElement;
|
|
708
814
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
709
815
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableRow, never>;
|
|
710
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
816
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "checked": "checked"; "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
711
817
|
}
|
|
712
818
|
export declare interface PTableRow extends Components.PTableRow {
|
|
713
819
|
}
|
|
820
|
+
export declare class PTableRowActionsContainer {
|
|
821
|
+
protected z: NgZone;
|
|
822
|
+
protected el: HTMLPTableRowActionsContainerElement;
|
|
823
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
824
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTableRowActionsContainer, never>;
|
|
825
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRowActionsContainer, "p-table-row-actions-container", never, {}, {}, never, ["*"], false, never>;
|
|
826
|
+
}
|
|
827
|
+
export declare interface PTableRowActionsContainer extends Components.PTableRowActionsContainer {
|
|
828
|
+
}
|
|
714
829
|
export declare class PToast {
|
|
715
830
|
protected z: NgZone;
|
|
716
|
-
protected el:
|
|
831
|
+
protected el: HTMLPToastElement;
|
|
717
832
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
718
833
|
static ɵfac: i0.ɵɵFactoryDeclaration<PToast, never>;
|
|
719
834
|
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>;
|
|
@@ -724,12 +839,29 @@ export declare interface PToast extends Components.PToast {
|
|
|
724
839
|
*/
|
|
725
840
|
action: EventEmitter<CustomEvent<MouseEvent>>;
|
|
726
841
|
}
|
|
842
|
+
export declare class PToggle {
|
|
843
|
+
protected z: NgZone;
|
|
844
|
+
protected el: HTMLPToggleElement;
|
|
845
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
846
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PToggle, never>;
|
|
847
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PToggle, "p-toggle", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; }, {}, never, ["*"], false, never>;
|
|
848
|
+
}
|
|
849
|
+
export declare interface PToggle extends Components.PToggle {
|
|
850
|
+
/**
|
|
851
|
+
* Event whenever the checked changes
|
|
852
|
+
*/
|
|
853
|
+
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
854
|
+
/**
|
|
855
|
+
* Event whenever the indeterminate changes
|
|
856
|
+
*/
|
|
857
|
+
indeterminateChange: EventEmitter<CustomEvent<boolean>>;
|
|
858
|
+
}
|
|
727
859
|
export declare class PTooltip {
|
|
728
860
|
protected z: NgZone;
|
|
729
|
-
protected el:
|
|
861
|
+
protected el: HTMLPTooltipElement;
|
|
730
862
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
731
863
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
|
|
732
|
-
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>;
|
|
864
|
+
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>;
|
|
733
865
|
}
|
|
734
866
|
export declare interface PTooltip extends Components.PTooltip {
|
|
735
867
|
/**
|