@paperless/angular 2.0.1-beta.22 → 2.0.1-beta.220
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 +9 -9
- 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 +16 -4
- 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/table/components/table-column/table-column.component.mjs +20 -4
- package/esm2020/lib/modules/toast/types.mjs +4 -3
- package/esm2020/lib/paperless.module.mjs +4 -4
- package/esm2020/lib/stencil/angular-component-lib/utils.mjs +9 -1
- package/esm2020/lib/stencil/components.mjs +330 -260
- package/esm2020/lib/stencil/index.mjs +13 -10
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +599 -440
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +596 -439
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/directives/index.d.ts +6 -6
- 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 +1 -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/table/components/table-column/table-column.component.d.ts +1 -1
- package/lib/modules/toast/types.d.ts +3 -2
- package/lib/paperless.module.d.ts +3 -3
- package/lib/stencil/components.d.ts +237 -166
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +1 -1
- package/package.json +1 -1
- package/paperless.css +250 -59
- 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,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:
|
|
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
|
-
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:
|
|
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"; "
|
|
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"; "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,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:
|
|
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,37 +117,37 @@ 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"; "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:
|
|
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, { "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
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
149
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCheckbox, never>;
|
|
142
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCheckbox, "p-checkbox", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "indeterminate": "indeterminate"; "name": "name"; "required": "required";
|
|
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
152
|
export declare interface PCheckbox extends Components.PCheckbox {
|
|
145
153
|
/**
|
|
@@ -153,28 +161,19 @@ export declare interface PCheckbox extends Components.PCheckbox {
|
|
|
153
161
|
}
|
|
154
162
|
export declare class PContentSlider {
|
|
155
163
|
protected z: NgZone;
|
|
156
|
-
protected el:
|
|
164
|
+
protected el: HTMLPContentSliderElement;
|
|
157
165
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
158
166
|
static ɵfac: i0.ɵɵFactoryDeclaration<PContentSlider, never>;
|
|
159
167
|
static ɵcmp: i0.ɵɵComponentDeclaration<PContentSlider, "p-content-slider", never, { "disableAutoCenter": "disableAutoCenter"; "disableDrag": "disableDrag"; "disableIndicatorClick": "disableIndicatorClick"; "hideMobileIndicator": "hideMobileIndicator"; }, {}, never, ["*"], false, never>;
|
|
160
168
|
}
|
|
161
169
|
export declare interface PContentSlider extends Components.PContentSlider {
|
|
162
170
|
}
|
|
163
|
-
export declare class PCounter {
|
|
164
|
-
protected z: NgZone;
|
|
165
|
-
protected el: HTMLElement;
|
|
166
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
167
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PCounter, never>;
|
|
168
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
169
|
-
}
|
|
170
|
-
export declare interface PCounter extends Components.PCounter {
|
|
171
|
-
}
|
|
172
171
|
export declare class PCropper {
|
|
173
172
|
protected z: NgZone;
|
|
174
|
-
protected el:
|
|
173
|
+
protected el: HTMLPCropperElement;
|
|
175
174
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
176
175
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCropper, never>;
|
|
177
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCropper, "p-cropper", never, { "returnType": "returnType"; "value": "value";
|
|
176
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCropper, "p-cropper", never, { "returnType": "returnType"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
178
177
|
}
|
|
179
178
|
export declare interface PCropper extends Components.PCropper {
|
|
180
179
|
/**
|
|
@@ -184,10 +183,10 @@ export declare interface PCropper extends Components.PCropper {
|
|
|
184
183
|
}
|
|
185
184
|
export declare class PDatepicker {
|
|
186
185
|
protected z: NgZone;
|
|
187
|
-
protected el:
|
|
186
|
+
protected el: HTMLPDatepickerElement;
|
|
188
187
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
189
188
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDatepicker, never>;
|
|
190
|
-
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>;
|
|
191
190
|
}
|
|
192
191
|
export declare interface PDatepicker extends Components.PDatepicker {
|
|
193
192
|
/**
|
|
@@ -197,16 +196,16 @@ export declare interface PDatepicker extends Components.PDatepicker {
|
|
|
197
196
|
}
|
|
198
197
|
export declare class PDivider {
|
|
199
198
|
protected z: NgZone;
|
|
200
|
-
protected el:
|
|
199
|
+
protected el: HTMLPDividerElement;
|
|
201
200
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
202
201
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
|
|
203
|
-
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>;
|
|
204
203
|
}
|
|
205
204
|
export declare interface PDivider extends Components.PDivider {
|
|
206
205
|
}
|
|
207
206
|
export declare class PDrawer {
|
|
208
207
|
protected z: NgZone;
|
|
209
|
-
protected el:
|
|
208
|
+
protected el: HTMLPDrawerElement;
|
|
210
209
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
211
210
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDrawer, never>;
|
|
212
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>;
|
|
@@ -227,16 +226,16 @@ export declare interface PDrawer extends Components.PDrawer {
|
|
|
227
226
|
}
|
|
228
227
|
export declare class PDrawerBody {
|
|
229
228
|
protected z: NgZone;
|
|
230
|
-
protected el:
|
|
229
|
+
protected el: HTMLPDrawerBodyElement;
|
|
231
230
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
232
231
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerBody, never>;
|
|
233
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerBody, "p-drawer-body", never, {
|
|
232
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerBody, "p-drawer-body", never, {}, {}, never, ["*"], false, never>;
|
|
234
233
|
}
|
|
235
234
|
export declare interface PDrawerBody extends Components.PDrawerBody {
|
|
236
235
|
}
|
|
237
236
|
export declare class PDrawerContainer {
|
|
238
237
|
protected z: NgZone;
|
|
239
|
-
protected el:
|
|
238
|
+
protected el: HTMLPDrawerContainerElement;
|
|
240
239
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
241
240
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerContainer, never>;
|
|
242
241
|
static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerContainer, "p-drawer-container", never, { "closing": "closing"; }, {}, never, ["*"], false, never>;
|
|
@@ -245,7 +244,7 @@ export declare interface PDrawerContainer extends Components.PDrawerContainer {
|
|
|
245
244
|
}
|
|
246
245
|
export declare class PDrawerHeader {
|
|
247
246
|
protected z: NgZone;
|
|
248
|
-
protected el:
|
|
247
|
+
protected el: HTMLPDrawerHeaderElement;
|
|
249
248
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
250
249
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerHeader, never>;
|
|
251
250
|
static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerHeader, "p-drawer-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
|
|
@@ -258,10 +257,10 @@ export declare interface PDrawerHeader extends Components.PDrawerHeader {
|
|
|
258
257
|
}
|
|
259
258
|
export declare class PDropdown {
|
|
260
259
|
protected z: NgZone;
|
|
261
|
-
protected el:
|
|
260
|
+
protected el: HTMLPDropdownElement;
|
|
262
261
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
263
262
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
|
|
264
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "
|
|
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"; "manual": "manual"; "offset": "offset"; "placement": "placement"; "scrollable": "scrollable"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
265
264
|
}
|
|
266
265
|
export declare interface PDropdown extends Components.PDropdown {
|
|
267
266
|
/**
|
|
@@ -271,28 +270,41 @@ export declare interface PDropdown extends Components.PDropdown {
|
|
|
271
270
|
}
|
|
272
271
|
export declare class PDropdownMenuContainer {
|
|
273
272
|
protected z: NgZone;
|
|
274
|
-
protected el:
|
|
273
|
+
protected el: HTMLPDropdownMenuContainerElement;
|
|
275
274
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
276
275
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
|
|
277
|
-
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>;
|
|
278
277
|
}
|
|
279
278
|
export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
|
|
280
279
|
}
|
|
281
280
|
export declare class PDropdownMenuItem {
|
|
282
281
|
protected z: NgZone;
|
|
283
|
-
protected el:
|
|
282
|
+
protected el: HTMLPDropdownMenuItemElement;
|
|
284
283
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
285
284
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
|
|
286
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "checkbox": "checkbox"; "disabled": "disabled"; "enableHover": "enableHover"; "icon": "icon"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
285
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "checkbox": "checkbox"; "disabled": "disabled"; "enableHover": "enableHover"; "enableTextWrap": "enableTextWrap"; "icon": "icon"; "iconWave": "iconWave"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
287
286
|
}
|
|
288
287
|
export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
|
|
289
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
|
+
}
|
|
290
302
|
export declare class PField {
|
|
291
303
|
protected z: NgZone;
|
|
292
|
-
protected el:
|
|
304
|
+
protected el: HTMLPFieldElement;
|
|
293
305
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
294
306
|
static ɵfac: i0.ɵɵFactoryDeclaration<PField, never>;
|
|
295
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PField, "p-field", never, { "disabled": "disabled"; "error": "error"; "errorPlacement": "errorPlacement"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "optionalTemplate": "optionalTemplate"; "placeholder": "placeholder"; "prefix": "prefix"; "properties": "properties"; "required": "required"; "selectAllOnFocus": "selectAllOnFocus"; "size": "size"; "suffix": "suffix"; "type": "type"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
307
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PField, "p-field", never, { "align": "align"; "autofocus": "autofocus"; "disabled": "disabled"; "error": "error"; "errorPlacement": "errorPlacement"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "id": "id"; "label": "label"; "loading": "loading"; "optionalTemplate": "optionalTemplate"; "placeholder": "placeholder"; "prefix": "prefix"; "properties": "properties"; "required": "required"; "selectAllOnFocus": "selectAllOnFocus"; "showOptional": "showOptional"; "size": "size"; "suffix": "suffix"; "type": "type"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
296
308
|
}
|
|
297
309
|
export declare interface PField extends Components.PField {
|
|
298
310
|
/**
|
|
@@ -306,35 +318,39 @@ export declare interface PField extends Components.PField {
|
|
|
306
318
|
}
|
|
307
319
|
export declare class PFieldContainer {
|
|
308
320
|
protected z: NgZone;
|
|
309
|
-
protected el:
|
|
321
|
+
protected el: HTMLPFieldContainerElement;
|
|
310
322
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
311
323
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFieldContainer, never>;
|
|
312
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFieldContainer, "p-field-container", never, { "error": "error"; "errorPlacement": "errorPlacement"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "label": "label"; "optionalTemplate": "optionalTemplate"; "required": "required"; }, {}, never, ["*"], false, never>;
|
|
324
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFieldContainer, "p-field-container", never, { "align": "align"; "error": "error"; "errorPlacement": "errorPlacement"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "id": "id"; "label": "label"; "loading": "loading"; "loadingSize": "loadingSize"; "optionalTemplate": "optionalTemplate"; "required": "required"; "showOptional": "showOptional"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
313
325
|
}
|
|
314
326
|
export declare interface PFieldContainer extends Components.PFieldContainer {
|
|
315
327
|
focus: EventEmitter<CustomEvent<void>>;
|
|
316
328
|
}
|
|
317
329
|
export declare class PFloatingMenuContainer {
|
|
318
330
|
protected z: NgZone;
|
|
319
|
-
protected el:
|
|
331
|
+
protected el: HTMLPFloatingMenuContainerElement;
|
|
320
332
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
321
333
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuContainer, never>;
|
|
322
|
-
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>;
|
|
323
335
|
}
|
|
324
336
|
export declare interface PFloatingMenuContainer extends Components.PFloatingMenuContainer {
|
|
337
|
+
/**
|
|
338
|
+
* Event whenever the close button is clicked
|
|
339
|
+
*/
|
|
340
|
+
close: EventEmitter<CustomEvent<MouseEvent>>;
|
|
325
341
|
}
|
|
326
342
|
export declare class PFloatingMenuItem {
|
|
327
343
|
protected z: NgZone;
|
|
328
|
-
protected el:
|
|
344
|
+
protected el: HTMLPFloatingMenuItemElement;
|
|
329
345
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
330
346
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuItem, never>;
|
|
331
|
-
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>;
|
|
332
348
|
}
|
|
333
349
|
export declare interface PFloatingMenuItem extends Components.PFloatingMenuItem {
|
|
334
350
|
}
|
|
335
351
|
export declare class PHelper {
|
|
336
352
|
protected z: NgZone;
|
|
337
|
-
protected el:
|
|
353
|
+
protected el: HTMLPHelperElement;
|
|
338
354
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
339
355
|
static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
|
|
340
356
|
static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; "strategy": "strategy"; }, {}, never, ["*"], false, never>;
|
|
@@ -343,7 +359,7 @@ export declare interface PHelper extends Components.PHelper {
|
|
|
343
359
|
}
|
|
344
360
|
export declare class PIbanIcon {
|
|
345
361
|
protected z: NgZone;
|
|
346
|
-
protected el:
|
|
362
|
+
protected el: HTMLPIbanIconElement;
|
|
347
363
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
348
364
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIbanIcon, never>;
|
|
349
365
|
static ɵcmp: i0.ɵɵComponentDeclaration<PIbanIcon, "p-iban-icon", never, { "iban": "iban"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
@@ -352,34 +368,34 @@ export declare interface PIbanIcon extends Components.PIbanIcon {
|
|
|
352
368
|
}
|
|
353
369
|
export declare class PIcon {
|
|
354
370
|
protected z: NgZone;
|
|
355
|
-
protected el:
|
|
371
|
+
protected el: HTMLPIconElement;
|
|
356
372
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
357
373
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
|
|
358
374
|
static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
359
375
|
}
|
|
360
376
|
export declare interface PIcon extends Components.PIcon {
|
|
361
377
|
}
|
|
362
|
-
export declare class PIconDeprecated {
|
|
363
|
-
protected z: NgZone;
|
|
364
|
-
protected el: HTMLElement;
|
|
365
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
366
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PIconDeprecated, never>;
|
|
367
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PIconDeprecated, "p-icon-deprecated", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
368
|
-
}
|
|
369
|
-
export declare interface PIconDeprecated extends Components.PIconDeprecated {
|
|
370
|
-
}
|
|
371
378
|
export declare class PIllustration {
|
|
372
379
|
protected z: NgZone;
|
|
373
|
-
protected el:
|
|
380
|
+
protected el: HTMLPIllustrationElement;
|
|
374
381
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
375
382
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIllustration, never>;
|
|
376
383
|
static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
377
384
|
}
|
|
378
385
|
export declare interface PIllustration extends Components.PIllustration {
|
|
379
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
|
+
}
|
|
380
396
|
export declare class PInfoPanel {
|
|
381
397
|
protected z: NgZone;
|
|
382
|
-
protected el:
|
|
398
|
+
protected el: HTMLPInfoPanelElement;
|
|
383
399
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
384
400
|
static ɵfac: i0.ɵɵFactoryDeclaration<PInfoPanel, never>;
|
|
385
401
|
static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
@@ -390,18 +406,9 @@ export declare interface PInfoPanel extends Components.PInfoPanel {
|
|
|
390
406
|
*/
|
|
391
407
|
closed: EventEmitter<CustomEvent<void>>;
|
|
392
408
|
}
|
|
393
|
-
export declare class PInputError {
|
|
394
|
-
protected z: NgZone;
|
|
395
|
-
protected el: HTMLElement;
|
|
396
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
397
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputError, never>;
|
|
398
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputError, "p-input-error", never, { "error": "error"; "forceShowTooltip": "forceShowTooltip"; }, {}, never, ["*"], false, never>;
|
|
399
|
-
}
|
|
400
|
-
export declare interface PInputError extends Components.PInputError {
|
|
401
|
-
}
|
|
402
409
|
export declare class PLabel {
|
|
403
410
|
protected z: NgZone;
|
|
404
|
-
protected el:
|
|
411
|
+
protected el: HTMLPLabelElement;
|
|
405
412
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
406
413
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, never>;
|
|
407
414
|
static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "keepMobileContent": "keepMobileContent"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
@@ -410,16 +417,47 @@ export declare interface PLabel extends Components.PLabel {
|
|
|
410
417
|
}
|
|
411
418
|
export declare class PLayout {
|
|
412
419
|
protected z: NgZone;
|
|
413
|
-
protected el:
|
|
420
|
+
protected el: HTMLPLayoutElement;
|
|
414
421
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
415
422
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
|
|
416
423
|
static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
417
424
|
}
|
|
418
425
|
export declare interface PLayout extends Components.PLayout {
|
|
426
|
+
/**
|
|
427
|
+
* Event whenever the layout is being scrolled
|
|
428
|
+
*/
|
|
429
|
+
scroll: EventEmitter<CustomEvent<any>>;
|
|
430
|
+
}
|
|
431
|
+
export declare class PListing {
|
|
432
|
+
protected z: NgZone;
|
|
433
|
+
protected el: HTMLPListingElement;
|
|
434
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
435
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListing, never>;
|
|
436
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListing, "p-listing", never, {}, {}, never, ["*"], false, never>;
|
|
437
|
+
}
|
|
438
|
+
export declare interface PListing extends Components.PListing {
|
|
439
|
+
}
|
|
440
|
+
export declare class PListingItem {
|
|
441
|
+
protected z: NgZone;
|
|
442
|
+
protected el: HTMLPListingItemElement;
|
|
443
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
444
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListingItem, never>;
|
|
445
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListingItem, "p-listing-item", never, { "icon": "icon"; }, {}, never, ["*"], false, never>;
|
|
446
|
+
}
|
|
447
|
+
export declare interface PListingItem extends Components.PListingItem {
|
|
448
|
+
}
|
|
449
|
+
export declare class PListingLine {
|
|
450
|
+
protected z: NgZone;
|
|
451
|
+
protected el: HTMLPListingLineElement;
|
|
452
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
453
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListingLine, never>;
|
|
454
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListingLine, "p-listing-line", never, {}, {}, never, ["*"], false, never>;
|
|
455
|
+
}
|
|
456
|
+
export declare interface PListingLine extends Components.PListingLine {
|
|
419
457
|
}
|
|
420
458
|
export declare class PLoader {
|
|
421
459
|
protected z: NgZone;
|
|
422
|
-
protected el:
|
|
460
|
+
protected el: HTMLPLoaderElement;
|
|
423
461
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
424
462
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLoader, never>;
|
|
425
463
|
static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
@@ -428,10 +466,10 @@ export declare interface PLoader extends Components.PLoader {
|
|
|
428
466
|
}
|
|
429
467
|
export declare class PModal {
|
|
430
468
|
protected z: NgZone;
|
|
431
|
-
protected el:
|
|
469
|
+
protected el: HTMLPModalElement;
|
|
432
470
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
433
471
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
|
|
434
|
-
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>;
|
|
435
473
|
}
|
|
436
474
|
export declare interface PModal extends Components.PModal {
|
|
437
475
|
/**
|
|
@@ -445,16 +483,16 @@ export declare interface PModal extends Components.PModal {
|
|
|
445
483
|
}
|
|
446
484
|
export declare class PModalBody {
|
|
447
485
|
protected z: NgZone;
|
|
448
|
-
protected el:
|
|
486
|
+
protected el: HTMLPModalBodyElement;
|
|
449
487
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
450
488
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
|
|
451
|
-
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>;
|
|
452
490
|
}
|
|
453
491
|
export declare interface PModalBody extends Components.PModalBody {
|
|
454
492
|
}
|
|
455
493
|
export declare class PModalContainer {
|
|
456
494
|
protected z: NgZone;
|
|
457
|
-
protected el:
|
|
495
|
+
protected el: HTMLPModalContainerElement;
|
|
458
496
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
459
497
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
|
|
460
498
|
static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "closing": "closing"; "size": "size"; }, {}, never, ["*"], false, never>;
|
|
@@ -463,7 +501,7 @@ export declare interface PModalContainer extends Components.PModalContainer {
|
|
|
463
501
|
}
|
|
464
502
|
export declare class PModalFooter {
|
|
465
503
|
protected z: NgZone;
|
|
466
|
-
protected el:
|
|
504
|
+
protected el: HTMLPModalFooterElement;
|
|
467
505
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
468
506
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
|
|
469
507
|
static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -472,7 +510,7 @@ export declare interface PModalFooter extends Components.PModalFooter {
|
|
|
472
510
|
}
|
|
473
511
|
export declare class PModalHeader {
|
|
474
512
|
protected z: NgZone;
|
|
475
|
-
protected el:
|
|
513
|
+
protected el: HTMLPModalHeaderElement;
|
|
476
514
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
477
515
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
|
|
478
516
|
static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
|
|
@@ -485,7 +523,7 @@ export declare interface PModalHeader extends Components.PModalHeader {
|
|
|
485
523
|
}
|
|
486
524
|
export declare class PNavbar {
|
|
487
525
|
protected z: NgZone;
|
|
488
|
-
protected el:
|
|
526
|
+
protected el: HTMLPNavbarElement;
|
|
489
527
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
490
528
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
|
|
491
529
|
static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -494,7 +532,7 @@ export declare interface PNavbar extends Components.PNavbar {
|
|
|
494
532
|
}
|
|
495
533
|
export declare class PNavigationItem {
|
|
496
534
|
protected z: NgZone;
|
|
497
|
-
protected el:
|
|
535
|
+
protected el: HTMLPNavigationItemElement;
|
|
498
536
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
499
537
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
|
|
500
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>;
|
|
@@ -503,7 +541,7 @@ export declare interface PNavigationItem extends Components.PNavigationItem {
|
|
|
503
541
|
}
|
|
504
542
|
export declare class PNavigationSection {
|
|
505
543
|
protected z: NgZone;
|
|
506
|
-
protected el:
|
|
544
|
+
protected el: HTMLPNavigationSectionElement;
|
|
507
545
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
508
546
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationSection, never>;
|
|
509
547
|
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationSection, "p-navigation-section", never, { "header": "header"; }, {}, never, ["*"], false, never>;
|
|
@@ -512,60 +550,76 @@ export declare interface PNavigationSection extends Components.PNavigationSectio
|
|
|
512
550
|
}
|
|
513
551
|
export declare class PNavigationTitle {
|
|
514
552
|
protected z: NgZone;
|
|
515
|
-
protected el:
|
|
553
|
+
protected el: HTMLPNavigationTitleElement;
|
|
516
554
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
517
555
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationTitle, never>;
|
|
518
556
|
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationTitle, "p-navigation-title", never, {}, {}, never, ["*"], false, never>;
|
|
519
557
|
}
|
|
520
558
|
export declare interface PNavigationTitle extends Components.PNavigationTitle {
|
|
521
559
|
}
|
|
522
|
-
export declare class
|
|
560
|
+
export declare class PPagination {
|
|
523
561
|
protected z: NgZone;
|
|
524
|
-
protected el:
|
|
562
|
+
protected el: HTMLPPaginationElement;
|
|
525
563
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
526
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
527
|
-
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>;
|
|
528
566
|
}
|
|
529
|
-
export declare interface
|
|
567
|
+
export declare interface PPagination extends Components.PPagination {
|
|
530
568
|
/**
|
|
531
|
-
* Event whenever the
|
|
569
|
+
* Event whenever the page changes
|
|
532
570
|
*/
|
|
533
|
-
|
|
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>>;
|
|
534
580
|
}
|
|
535
|
-
export declare class
|
|
581
|
+
export declare class PPaginationPages {
|
|
536
582
|
protected z: NgZone;
|
|
537
|
-
protected el:
|
|
583
|
+
protected el: HTMLPPaginationPagesElement;
|
|
538
584
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
539
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
540
|
-
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>;
|
|
541
587
|
}
|
|
542
|
-
export declare interface
|
|
588
|
+
export declare interface PPaginationPages extends Components.PPaginationPages {
|
|
543
589
|
/**
|
|
544
590
|
* Event whenever the page changes
|
|
545
591
|
*/
|
|
546
592
|
pageChange: EventEmitter<CustomEvent<number>>;
|
|
593
|
+
/**
|
|
594
|
+
* The pages that were generated
|
|
595
|
+
*/
|
|
596
|
+
pagesChange: EventEmitter<CustomEvent<number>>;
|
|
547
597
|
}
|
|
548
|
-
export declare class
|
|
598
|
+
export declare class PPaginationPagesItem {
|
|
549
599
|
protected z: NgZone;
|
|
550
|
-
protected el:
|
|
600
|
+
protected el: HTMLPPaginationPagesItemElement;
|
|
551
601
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
552
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
553
|
-
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>;
|
|
554
604
|
}
|
|
555
|
-
export declare interface
|
|
605
|
+
export declare interface PPaginationPagesItem extends Components.PPaginationPagesItem {
|
|
556
606
|
}
|
|
557
|
-
export declare class
|
|
607
|
+
export declare class PPaginationSize {
|
|
558
608
|
protected z: NgZone;
|
|
559
|
-
protected el:
|
|
609
|
+
protected el: HTMLPPaginationSizeElement;
|
|
560
610
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
561
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
562
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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>;
|
|
563
613
|
}
|
|
564
|
-
export declare interface
|
|
614
|
+
export declare interface PPaginationSize extends Components.PPaginationSize {
|
|
615
|
+
/**
|
|
616
|
+
* Event whenever the size changes
|
|
617
|
+
*/
|
|
618
|
+
sizeChange: EventEmitter<CustomEvent<number>>;
|
|
565
619
|
}
|
|
566
620
|
export declare class PProfile {
|
|
567
621
|
protected z: NgZone;
|
|
568
|
-
protected el:
|
|
622
|
+
protected el: HTMLPProfileElement;
|
|
569
623
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
570
624
|
static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
|
|
571
625
|
static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; }, {}, never, ["*"], false, never>;
|
|
@@ -574,10 +628,10 @@ export declare interface PProfile extends Components.PProfile {
|
|
|
574
628
|
}
|
|
575
629
|
export declare class PRadio {
|
|
576
630
|
protected z: NgZone;
|
|
577
|
-
protected el:
|
|
631
|
+
protected el: HTMLPRadioElement;
|
|
578
632
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
579
633
|
static ɵfac: i0.ɵɵFactoryDeclaration<PRadio, never>;
|
|
580
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PRadio, "p-radio", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; "
|
|
634
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PRadio, "p-radio", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
581
635
|
}
|
|
582
636
|
export declare interface PRadio extends Components.PRadio {
|
|
583
637
|
/**
|
|
@@ -585,9 +639,22 @@ export declare interface PRadio extends Components.PRadio {
|
|
|
585
639
|
*/
|
|
586
640
|
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
587
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
|
+
}
|
|
588
655
|
export declare class PSegmentContainer {
|
|
589
656
|
protected z: NgZone;
|
|
590
|
-
protected el:
|
|
657
|
+
protected el: HTMLPSegmentContainerElement;
|
|
591
658
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
592
659
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
|
|
593
660
|
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -596,19 +663,19 @@ export declare interface PSegmentContainer extends Components.PSegmentContainer
|
|
|
596
663
|
}
|
|
597
664
|
export declare class PSegmentItem {
|
|
598
665
|
protected z: NgZone;
|
|
599
|
-
protected el:
|
|
666
|
+
protected el: HTMLPSegmentItemElement;
|
|
600
667
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
601
668
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
|
|
602
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconRotate": "iconRotate"; "
|
|
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>;
|
|
603
670
|
}
|
|
604
671
|
export declare interface PSegmentItem extends Components.PSegmentItem {
|
|
605
672
|
}
|
|
606
673
|
export declare class PSelect {
|
|
607
674
|
protected z: NgZone;
|
|
608
|
-
protected el:
|
|
675
|
+
protected el: HTMLPSelectElement;
|
|
609
676
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
610
677
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
|
|
611
|
-
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"; "
|
|
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"; "enableTextWrap": "enableTextWrap"; "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>;
|
|
612
679
|
}
|
|
613
680
|
export declare interface PSelect extends Components.PSelect {
|
|
614
681
|
/**
|
|
@@ -632,63 +699,54 @@ export declare interface PSelect extends Components.PSelect {
|
|
|
632
699
|
*/
|
|
633
700
|
add: EventEmitter<CustomEvent<any>>;
|
|
634
701
|
}
|
|
635
|
-
export declare class
|
|
702
|
+
export declare class PSmile {
|
|
636
703
|
protected z: NgZone;
|
|
637
|
-
protected el:
|
|
704
|
+
protected el: HTMLPSmileElement;
|
|
638
705
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
639
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
640
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
641
|
-
}
|
|
642
|
-
export declare interface PSliderIndicator extends Components.PSliderIndicator {
|
|
706
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSmile, never>;
|
|
707
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSmile, "p-smile", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
643
708
|
}
|
|
644
|
-
export declare
|
|
645
|
-
protected z: NgZone;
|
|
646
|
-
protected el: HTMLElement;
|
|
647
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
648
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
|
|
649
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
650
|
-
}
|
|
651
|
-
export declare interface PStatus extends Components.PStatus {
|
|
709
|
+
export declare interface PSmile extends Components.PSmile {
|
|
652
710
|
}
|
|
653
711
|
export declare class PStepper {
|
|
654
712
|
protected z: NgZone;
|
|
655
|
-
protected el:
|
|
713
|
+
protected el: HTMLPStepperElement;
|
|
656
714
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
657
715
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
|
|
658
|
-
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>;
|
|
659
717
|
}
|
|
660
718
|
export declare interface PStepper extends Components.PStepper {
|
|
661
719
|
}
|
|
662
720
|
export declare class PStepperItem {
|
|
663
721
|
protected z: NgZone;
|
|
664
|
-
protected el:
|
|
722
|
+
protected el: HTMLPStepperItemElement;
|
|
665
723
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
666
724
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
|
|
667
|
-
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>;
|
|
668
726
|
}
|
|
669
727
|
export declare interface PStepperItem extends Components.PStepperItem {
|
|
670
728
|
}
|
|
671
729
|
export declare class PStepperLine {
|
|
672
730
|
protected z: NgZone;
|
|
673
|
-
protected el:
|
|
731
|
+
protected el: HTMLPStepperLineElement;
|
|
674
732
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
675
733
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperLine, never>;
|
|
676
734
|
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperLine, "p-stepper-line", never, { "active": "active"; "direction": "direction"; }, {}, never, ["*"], false, never>;
|
|
677
735
|
}
|
|
678
736
|
export declare interface PStepperLine extends Components.PStepperLine {
|
|
679
737
|
}
|
|
680
|
-
export declare class
|
|
738
|
+
export declare class PTabContainer {
|
|
681
739
|
protected z: NgZone;
|
|
682
|
-
protected el:
|
|
740
|
+
protected el: HTMLPTabContainerElement;
|
|
683
741
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
684
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
685
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
742
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTabContainer, never>;
|
|
743
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabContainer, "p-tab-container", never, {}, {}, never, ["*"], false, never>;
|
|
686
744
|
}
|
|
687
|
-
export declare interface
|
|
745
|
+
export declare interface PTabContainer extends Components.PTabContainer {
|
|
688
746
|
}
|
|
689
747
|
export declare class PTabItem {
|
|
690
748
|
protected z: NgZone;
|
|
691
|
-
protected el:
|
|
749
|
+
protected el: HTMLPTabItemElement;
|
|
692
750
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
693
751
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabItem, never>;
|
|
694
752
|
static ɵcmp: i0.ɵɵComponentDeclaration<PTabItem, "p-tab-item", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
@@ -697,19 +755,19 @@ export declare interface PTabItem extends Components.PTabItem {
|
|
|
697
755
|
}
|
|
698
756
|
export declare class PTableContainer {
|
|
699
757
|
protected z: NgZone;
|
|
700
|
-
protected el:
|
|
758
|
+
protected el: HTMLPTableContainerElement;
|
|
701
759
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
702
760
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableContainer, never>;
|
|
703
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {
|
|
761
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {}, {}, never, ["*"], false, never>;
|
|
704
762
|
}
|
|
705
763
|
export declare interface PTableContainer extends Components.PTableContainer {
|
|
706
764
|
}
|
|
707
765
|
export declare class PTableFooter {
|
|
708
766
|
protected z: NgZone;
|
|
709
|
-
protected el:
|
|
767
|
+
protected el: HTMLPTableFooterElement;
|
|
710
768
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
711
769
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableFooter, never>;
|
|
712
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableFooter, "p-table-footer", 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>;
|
|
713
771
|
}
|
|
714
772
|
export declare interface PTableFooter extends Components.PTableFooter {
|
|
715
773
|
/**
|
|
@@ -721,16 +779,16 @@ export declare interface PTableFooter extends Components.PTableFooter {
|
|
|
721
779
|
*/
|
|
722
780
|
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
723
781
|
/**
|
|
724
|
-
* Event whenever the
|
|
782
|
+
* Event whenever the footer is hidden or nog
|
|
725
783
|
*/
|
|
726
|
-
|
|
784
|
+
hiddenChange: EventEmitter<CustomEvent<boolean>>;
|
|
727
785
|
}
|
|
728
786
|
export declare class PTableHeader {
|
|
729
787
|
protected z: NgZone;
|
|
730
|
-
protected el:
|
|
788
|
+
protected el: HTMLPTableHeaderElement;
|
|
731
789
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
732
790
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableHeader, never>;
|
|
733
|
-
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>;
|
|
734
792
|
}
|
|
735
793
|
export declare interface PTableHeader extends Components.PTableHeader {
|
|
736
794
|
/**
|
|
@@ -749,19 +807,32 @@ export declare interface PTableHeader extends Components.PTableHeader {
|
|
|
749
807
|
* Event when the action button is clicked
|
|
750
808
|
*/
|
|
751
809
|
action: EventEmitter<CustomEvent<null>>;
|
|
810
|
+
/**
|
|
811
|
+
* Event whenever the export button is clicked
|
|
812
|
+
*/
|
|
813
|
+
export: EventEmitter<CustomEvent<number>>;
|
|
752
814
|
}
|
|
753
815
|
export declare class PTableRow {
|
|
754
816
|
protected z: NgZone;
|
|
755
|
-
protected el:
|
|
817
|
+
protected el: HTMLPTableRowElement;
|
|
756
818
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
757
819
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableRow, never>;
|
|
758
|
-
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"; "isLast": "isLast"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
759
821
|
}
|
|
760
822
|
export declare interface PTableRow extends Components.PTableRow {
|
|
761
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
|
+
}
|
|
762
833
|
export declare class PToast {
|
|
763
834
|
protected z: NgZone;
|
|
764
|
-
protected el:
|
|
835
|
+
protected el: HTMLPToastElement;
|
|
765
836
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
766
837
|
static ɵfac: i0.ɵɵFactoryDeclaration<PToast, never>;
|
|
767
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>;
|
|
@@ -774,10 +845,10 @@ export declare interface PToast extends Components.PToast {
|
|
|
774
845
|
}
|
|
775
846
|
export declare class PToggle {
|
|
776
847
|
protected z: NgZone;
|
|
777
|
-
protected el:
|
|
848
|
+
protected el: HTMLPToggleElement;
|
|
778
849
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
779
850
|
static ɵfac: i0.ɵɵFactoryDeclaration<PToggle, never>;
|
|
780
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PToggle, "p-toggle", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "
|
|
851
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PToggle, "p-toggle", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; }, {}, never, ["*"], false, never>;
|
|
781
852
|
}
|
|
782
853
|
export declare interface PToggle extends Components.PToggle {
|
|
783
854
|
/**
|
|
@@ -791,10 +862,10 @@ export declare interface PToggle extends Components.PToggle {
|
|
|
791
862
|
}
|
|
792
863
|
export declare class PTooltip {
|
|
793
864
|
protected z: NgZone;
|
|
794
|
-
protected el:
|
|
865
|
+
protected el: HTMLPTooltipElement;
|
|
795
866
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
796
867
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
|
|
797
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "content": "content"; "enableUserInput": "enableUserInput"; "offset": "offset"; "placement": "placement"; "show": "show"; "strategy": "strategy"; "
|
|
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>;
|
|
798
869
|
}
|
|
799
870
|
export declare interface PTooltip extends Components.PTooltip {
|
|
800
871
|
/**
|