@paperless/angular 2.0.1-beta.22 → 2.0.1-beta.221
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 +331 -261
- package/esm2020/lib/stencil/index.mjs +13 -10
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +600 -441
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +597 -440
- 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 +241 -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, { "addText": "addText"; "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"; "showAddOnEmpty": "showAddOnEmpty"; "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
|
/**
|
|
@@ -303,38 +315,46 @@ export declare interface PField extends Components.PField {
|
|
|
303
315
|
* Event whenever the input ref changes
|
|
304
316
|
*/
|
|
305
317
|
inputRefChange: EventEmitter<CustomEvent<HTMLInputElement | HTMLTextAreaElement>>;
|
|
318
|
+
/**
|
|
319
|
+
* Event whenever the value changes
|
|
320
|
+
*/
|
|
321
|
+
add: EventEmitter<CustomEvent<void>>;
|
|
306
322
|
}
|
|
307
323
|
export declare class PFieldContainer {
|
|
308
324
|
protected z: NgZone;
|
|
309
|
-
protected el:
|
|
325
|
+
protected el: HTMLPFieldContainerElement;
|
|
310
326
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
311
327
|
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>;
|
|
328
|
+
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
329
|
}
|
|
314
330
|
export declare interface PFieldContainer extends Components.PFieldContainer {
|
|
315
331
|
focus: EventEmitter<CustomEvent<void>>;
|
|
316
332
|
}
|
|
317
333
|
export declare class PFloatingMenuContainer {
|
|
318
334
|
protected z: NgZone;
|
|
319
|
-
protected el:
|
|
335
|
+
protected el: HTMLPFloatingMenuContainerElement;
|
|
320
336
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
321
337
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuContainer, never>;
|
|
322
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuContainer, "p-floating-menu-container", never, { "usedInTable": "usedInTable"; }, {}, never, ["*"], false, never>;
|
|
338
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuContainer, "p-floating-menu-container", never, { "amount": "amount"; "amountSelectedTemplate": "amountSelectedTemplate"; "enableAmountSelected": "enableAmountSelected"; "enableClose": "enableClose"; "usedInTable": "usedInTable"; }, {}, never, ["*"], false, never>;
|
|
323
339
|
}
|
|
324
340
|
export declare interface PFloatingMenuContainer extends Components.PFloatingMenuContainer {
|
|
341
|
+
/**
|
|
342
|
+
* Event whenever the close button is clicked
|
|
343
|
+
*/
|
|
344
|
+
close: EventEmitter<CustomEvent<MouseEvent>>;
|
|
325
345
|
}
|
|
326
346
|
export declare class PFloatingMenuItem {
|
|
327
347
|
protected z: NgZone;
|
|
328
|
-
protected el:
|
|
348
|
+
protected el: HTMLPFloatingMenuItemElement;
|
|
329
349
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
330
350
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuItem, never>;
|
|
331
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuItem, "p-floating-menu-item", never, { "disabled": "disabled"; "hover": "hover"; }, {}, never, ["*"], false, never>;
|
|
351
|
+
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
352
|
}
|
|
333
353
|
export declare interface PFloatingMenuItem extends Components.PFloatingMenuItem {
|
|
334
354
|
}
|
|
335
355
|
export declare class PHelper {
|
|
336
356
|
protected z: NgZone;
|
|
337
|
-
protected el:
|
|
357
|
+
protected el: HTMLPHelperElement;
|
|
338
358
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
339
359
|
static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
|
|
340
360
|
static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; "strategy": "strategy"; }, {}, never, ["*"], false, never>;
|
|
@@ -343,7 +363,7 @@ export declare interface PHelper extends Components.PHelper {
|
|
|
343
363
|
}
|
|
344
364
|
export declare class PIbanIcon {
|
|
345
365
|
protected z: NgZone;
|
|
346
|
-
protected el:
|
|
366
|
+
protected el: HTMLPIbanIconElement;
|
|
347
367
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
348
368
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIbanIcon, never>;
|
|
349
369
|
static ɵcmp: i0.ɵɵComponentDeclaration<PIbanIcon, "p-iban-icon", never, { "iban": "iban"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
@@ -352,34 +372,34 @@ export declare interface PIbanIcon extends Components.PIbanIcon {
|
|
|
352
372
|
}
|
|
353
373
|
export declare class PIcon {
|
|
354
374
|
protected z: NgZone;
|
|
355
|
-
protected el:
|
|
375
|
+
protected el: HTMLPIconElement;
|
|
356
376
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
357
377
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
|
|
358
378
|
static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
359
379
|
}
|
|
360
380
|
export declare interface PIcon extends Components.PIcon {
|
|
361
381
|
}
|
|
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
382
|
export declare class PIllustration {
|
|
372
383
|
protected z: NgZone;
|
|
373
|
-
protected el:
|
|
384
|
+
protected el: HTMLPIllustrationElement;
|
|
374
385
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
375
386
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIllustration, never>;
|
|
376
387
|
static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
377
388
|
}
|
|
378
389
|
export declare interface PIllustration extends Components.PIllustration {
|
|
379
390
|
}
|
|
391
|
+
export declare class PIllustrationDeprecated {
|
|
392
|
+
protected z: NgZone;
|
|
393
|
+
protected el: HTMLPIllustrationDeprecatedElement;
|
|
394
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
395
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PIllustrationDeprecated, never>;
|
|
396
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PIllustrationDeprecated, "p-illustration-deprecated", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
397
|
+
}
|
|
398
|
+
export declare interface PIllustrationDeprecated extends Components.PIllustrationDeprecated {
|
|
399
|
+
}
|
|
380
400
|
export declare class PInfoPanel {
|
|
381
401
|
protected z: NgZone;
|
|
382
|
-
protected el:
|
|
402
|
+
protected el: HTMLPInfoPanelElement;
|
|
383
403
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
384
404
|
static ɵfac: i0.ɵɵFactoryDeclaration<PInfoPanel, never>;
|
|
385
405
|
static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
@@ -390,18 +410,9 @@ export declare interface PInfoPanel extends Components.PInfoPanel {
|
|
|
390
410
|
*/
|
|
391
411
|
closed: EventEmitter<CustomEvent<void>>;
|
|
392
412
|
}
|
|
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
413
|
export declare class PLabel {
|
|
403
414
|
protected z: NgZone;
|
|
404
|
-
protected el:
|
|
415
|
+
protected el: HTMLPLabelElement;
|
|
405
416
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
406
417
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, never>;
|
|
407
418
|
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 +421,47 @@ export declare interface PLabel extends Components.PLabel {
|
|
|
410
421
|
}
|
|
411
422
|
export declare class PLayout {
|
|
412
423
|
protected z: NgZone;
|
|
413
|
-
protected el:
|
|
424
|
+
protected el: HTMLPLayoutElement;
|
|
414
425
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
415
426
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
|
|
416
427
|
static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
417
428
|
}
|
|
418
429
|
export declare interface PLayout extends Components.PLayout {
|
|
430
|
+
/**
|
|
431
|
+
* Event whenever the layout is being scrolled
|
|
432
|
+
*/
|
|
433
|
+
scroll: EventEmitter<CustomEvent<any>>;
|
|
434
|
+
}
|
|
435
|
+
export declare class PListing {
|
|
436
|
+
protected z: NgZone;
|
|
437
|
+
protected el: HTMLPListingElement;
|
|
438
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
439
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListing, never>;
|
|
440
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListing, "p-listing", never, {}, {}, never, ["*"], false, never>;
|
|
441
|
+
}
|
|
442
|
+
export declare interface PListing extends Components.PListing {
|
|
443
|
+
}
|
|
444
|
+
export declare class PListingItem {
|
|
445
|
+
protected z: NgZone;
|
|
446
|
+
protected el: HTMLPListingItemElement;
|
|
447
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
448
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListingItem, never>;
|
|
449
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListingItem, "p-listing-item", never, { "icon": "icon"; }, {}, never, ["*"], false, never>;
|
|
450
|
+
}
|
|
451
|
+
export declare interface PListingItem extends Components.PListingItem {
|
|
452
|
+
}
|
|
453
|
+
export declare class PListingLine {
|
|
454
|
+
protected z: NgZone;
|
|
455
|
+
protected el: HTMLPListingLineElement;
|
|
456
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
457
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListingLine, never>;
|
|
458
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListingLine, "p-listing-line", never, {}, {}, never, ["*"], false, never>;
|
|
459
|
+
}
|
|
460
|
+
export declare interface PListingLine extends Components.PListingLine {
|
|
419
461
|
}
|
|
420
462
|
export declare class PLoader {
|
|
421
463
|
protected z: NgZone;
|
|
422
|
-
protected el:
|
|
464
|
+
protected el: HTMLPLoaderElement;
|
|
423
465
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
424
466
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLoader, never>;
|
|
425
467
|
static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
@@ -428,10 +470,10 @@ export declare interface PLoader extends Components.PLoader {
|
|
|
428
470
|
}
|
|
429
471
|
export declare class PModal {
|
|
430
472
|
protected z: NgZone;
|
|
431
|
-
protected el:
|
|
473
|
+
protected el: HTMLPModalElement;
|
|
432
474
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
433
475
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
|
|
434
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "applyBlur": "applyBlur"; "backdropClickClose": "backdropClickClose"; "header": "header"; "
|
|
476
|
+
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
477
|
}
|
|
436
478
|
export declare interface PModal extends Components.PModal {
|
|
437
479
|
/**
|
|
@@ -445,16 +487,16 @@ export declare interface PModal extends Components.PModal {
|
|
|
445
487
|
}
|
|
446
488
|
export declare class PModalBody {
|
|
447
489
|
protected z: NgZone;
|
|
448
|
-
protected el:
|
|
490
|
+
protected el: HTMLPModalBodyElement;
|
|
449
491
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
450
492
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
|
|
451
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "
|
|
493
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "roundedBottom": "roundedBottom"; "roundedTop": "roundedTop"; }, {}, never, ["*"], false, never>;
|
|
452
494
|
}
|
|
453
495
|
export declare interface PModalBody extends Components.PModalBody {
|
|
454
496
|
}
|
|
455
497
|
export declare class PModalContainer {
|
|
456
498
|
protected z: NgZone;
|
|
457
|
-
protected el:
|
|
499
|
+
protected el: HTMLPModalContainerElement;
|
|
458
500
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
459
501
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
|
|
460
502
|
static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "closing": "closing"; "size": "size"; }, {}, never, ["*"], false, never>;
|
|
@@ -463,7 +505,7 @@ export declare interface PModalContainer extends Components.PModalContainer {
|
|
|
463
505
|
}
|
|
464
506
|
export declare class PModalFooter {
|
|
465
507
|
protected z: NgZone;
|
|
466
|
-
protected el:
|
|
508
|
+
protected el: HTMLPModalFooterElement;
|
|
467
509
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
468
510
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
|
|
469
511
|
static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -472,7 +514,7 @@ export declare interface PModalFooter extends Components.PModalFooter {
|
|
|
472
514
|
}
|
|
473
515
|
export declare class PModalHeader {
|
|
474
516
|
protected z: NgZone;
|
|
475
|
-
protected el:
|
|
517
|
+
protected el: HTMLPModalHeaderElement;
|
|
476
518
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
477
519
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
|
|
478
520
|
static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
|
|
@@ -485,7 +527,7 @@ export declare interface PModalHeader extends Components.PModalHeader {
|
|
|
485
527
|
}
|
|
486
528
|
export declare class PNavbar {
|
|
487
529
|
protected z: NgZone;
|
|
488
|
-
protected el:
|
|
530
|
+
protected el: HTMLPNavbarElement;
|
|
489
531
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
490
532
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
|
|
491
533
|
static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -494,7 +536,7 @@ export declare interface PNavbar extends Components.PNavbar {
|
|
|
494
536
|
}
|
|
495
537
|
export declare class PNavigationItem {
|
|
496
538
|
protected z: NgZone;
|
|
497
|
-
protected el:
|
|
539
|
+
protected el: HTMLPNavigationItemElement;
|
|
498
540
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
499
541
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
|
|
500
542
|
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 +545,7 @@ export declare interface PNavigationItem extends Components.PNavigationItem {
|
|
|
503
545
|
}
|
|
504
546
|
export declare class PNavigationSection {
|
|
505
547
|
protected z: NgZone;
|
|
506
|
-
protected el:
|
|
548
|
+
protected el: HTMLPNavigationSectionElement;
|
|
507
549
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
508
550
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationSection, never>;
|
|
509
551
|
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationSection, "p-navigation-section", never, { "header": "header"; }, {}, never, ["*"], false, never>;
|
|
@@ -512,60 +554,76 @@ export declare interface PNavigationSection extends Components.PNavigationSectio
|
|
|
512
554
|
}
|
|
513
555
|
export declare class PNavigationTitle {
|
|
514
556
|
protected z: NgZone;
|
|
515
|
-
protected el:
|
|
557
|
+
protected el: HTMLPNavigationTitleElement;
|
|
516
558
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
517
559
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationTitle, never>;
|
|
518
560
|
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationTitle, "p-navigation-title", never, {}, {}, never, ["*"], false, never>;
|
|
519
561
|
}
|
|
520
562
|
export declare interface PNavigationTitle extends Components.PNavigationTitle {
|
|
521
563
|
}
|
|
522
|
-
export declare class
|
|
564
|
+
export declare class PPagination {
|
|
523
565
|
protected z: NgZone;
|
|
524
|
-
protected el:
|
|
566
|
+
protected el: HTMLPPaginationElement;
|
|
525
567
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
526
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
527
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
568
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
|
|
569
|
+
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
570
|
}
|
|
529
|
-
export declare interface
|
|
571
|
+
export declare interface PPagination extends Components.PPagination {
|
|
530
572
|
/**
|
|
531
|
-
* Event whenever the
|
|
573
|
+
* Event whenever the page changes
|
|
532
574
|
*/
|
|
533
|
-
|
|
575
|
+
pageChange: EventEmitter<CustomEvent<number>>;
|
|
576
|
+
/**
|
|
577
|
+
* Event whenever the page changes
|
|
578
|
+
*/
|
|
579
|
+
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
580
|
+
/**
|
|
581
|
+
* The pages that were generated
|
|
582
|
+
*/
|
|
583
|
+
pagesChange: EventEmitter<CustomEvent<number>>;
|
|
534
584
|
}
|
|
535
|
-
export declare class
|
|
585
|
+
export declare class PPaginationPages {
|
|
536
586
|
protected z: NgZone;
|
|
537
|
-
protected el:
|
|
587
|
+
protected el: HTMLPPaginationPagesElement;
|
|
538
588
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
539
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
540
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
589
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationPages, never>;
|
|
590
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationPages, "p-pagination-pages", never, { "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false, never>;
|
|
541
591
|
}
|
|
542
|
-
export declare interface
|
|
592
|
+
export declare interface PPaginationPages extends Components.PPaginationPages {
|
|
543
593
|
/**
|
|
544
594
|
* Event whenever the page changes
|
|
545
595
|
*/
|
|
546
596
|
pageChange: EventEmitter<CustomEvent<number>>;
|
|
597
|
+
/**
|
|
598
|
+
* The pages that were generated
|
|
599
|
+
*/
|
|
600
|
+
pagesChange: EventEmitter<CustomEvent<number>>;
|
|
547
601
|
}
|
|
548
|
-
export declare class
|
|
602
|
+
export declare class PPaginationPagesItem {
|
|
549
603
|
protected z: NgZone;
|
|
550
|
-
protected el:
|
|
604
|
+
protected el: HTMLPPaginationPagesItemElement;
|
|
551
605
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
552
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
553
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
606
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationPagesItem, never>;
|
|
607
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationPagesItem, "p-pagination-pages-item", never, { "active": "active"; "disabled": "disabled"; "hover": "hover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
554
608
|
}
|
|
555
|
-
export declare interface
|
|
609
|
+
export declare interface PPaginationPagesItem extends Components.PPaginationPagesItem {
|
|
556
610
|
}
|
|
557
|
-
export declare class
|
|
611
|
+
export declare class PPaginationSize {
|
|
558
612
|
protected z: NgZone;
|
|
559
|
-
protected el:
|
|
613
|
+
protected el: HTMLPPaginationSizeElement;
|
|
560
614
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
561
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
562
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
615
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationSize, never>;
|
|
616
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationSize, "p-pagination-size", never, { "hidden": "hidden"; "itemTemplate": "itemTemplate"; "size": "size"; "sizeOptions": "sizeOptions"; }, {}, never, ["*"], false, never>;
|
|
563
617
|
}
|
|
564
|
-
export declare interface
|
|
618
|
+
export declare interface PPaginationSize extends Components.PPaginationSize {
|
|
619
|
+
/**
|
|
620
|
+
* Event whenever the size changes
|
|
621
|
+
*/
|
|
622
|
+
sizeChange: EventEmitter<CustomEvent<number>>;
|
|
565
623
|
}
|
|
566
624
|
export declare class PProfile {
|
|
567
625
|
protected z: NgZone;
|
|
568
|
-
protected el:
|
|
626
|
+
protected el: HTMLPProfileElement;
|
|
569
627
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
570
628
|
static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
|
|
571
629
|
static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; }, {}, never, ["*"], false, never>;
|
|
@@ -574,10 +632,10 @@ export declare interface PProfile extends Components.PProfile {
|
|
|
574
632
|
}
|
|
575
633
|
export declare class PRadio {
|
|
576
634
|
protected z: NgZone;
|
|
577
|
-
protected el:
|
|
635
|
+
protected el: HTMLPRadioElement;
|
|
578
636
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
579
637
|
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"; "
|
|
638
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PRadio, "p-radio", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
581
639
|
}
|
|
582
640
|
export declare interface PRadio extends Components.PRadio {
|
|
583
641
|
/**
|
|
@@ -585,9 +643,22 @@ export declare interface PRadio extends Components.PRadio {
|
|
|
585
643
|
*/
|
|
586
644
|
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
587
645
|
}
|
|
646
|
+
export declare class PRange {
|
|
647
|
+
protected z: NgZone;
|
|
648
|
+
protected el: HTMLPRangeElement;
|
|
649
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
650
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PRange, never>;
|
|
651
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PRange, "p-range", never, { "max": "max"; "min": "min"; "step": "step"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
652
|
+
}
|
|
653
|
+
export declare interface PRange extends Components.PRange {
|
|
654
|
+
/**
|
|
655
|
+
* Event whenever the value changes
|
|
656
|
+
*/
|
|
657
|
+
valueChange: EventEmitter<CustomEvent<string>>;
|
|
658
|
+
}
|
|
588
659
|
export declare class PSegmentContainer {
|
|
589
660
|
protected z: NgZone;
|
|
590
|
-
protected el:
|
|
661
|
+
protected el: HTMLPSegmentContainerElement;
|
|
591
662
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
592
663
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
|
|
593
664
|
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -596,19 +667,19 @@ export declare interface PSegmentContainer extends Components.PSegmentContainer
|
|
|
596
667
|
}
|
|
597
668
|
export declare class PSegmentItem {
|
|
598
669
|
protected z: NgZone;
|
|
599
|
-
protected el:
|
|
670
|
+
protected el: HTMLPSegmentItemElement;
|
|
600
671
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
601
672
|
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"; "
|
|
673
|
+
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
674
|
}
|
|
604
675
|
export declare interface PSegmentItem extends Components.PSegmentItem {
|
|
605
676
|
}
|
|
606
677
|
export declare class PSelect {
|
|
607
678
|
protected z: NgZone;
|
|
608
|
-
protected el:
|
|
679
|
+
protected el: HTMLPSelectElement;
|
|
609
680
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
610
681
|
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"; "
|
|
682
|
+
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
683
|
}
|
|
613
684
|
export declare interface PSelect extends Components.PSelect {
|
|
614
685
|
/**
|
|
@@ -632,63 +703,54 @@ export declare interface PSelect extends Components.PSelect {
|
|
|
632
703
|
*/
|
|
633
704
|
add: EventEmitter<CustomEvent<any>>;
|
|
634
705
|
}
|
|
635
|
-
export declare class
|
|
636
|
-
protected z: NgZone;
|
|
637
|
-
protected el: HTMLElement;
|
|
638
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
639
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PSliderIndicator, never>;
|
|
640
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSliderIndicator, "p-slider-indicator", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
641
|
-
}
|
|
642
|
-
export declare interface PSliderIndicator extends Components.PSliderIndicator {
|
|
643
|
-
}
|
|
644
|
-
export declare class PStatus {
|
|
706
|
+
export declare class PSmile {
|
|
645
707
|
protected z: NgZone;
|
|
646
|
-
protected el:
|
|
708
|
+
protected el: HTMLPSmileElement;
|
|
647
709
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
648
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
649
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
710
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSmile, never>;
|
|
711
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSmile, "p-smile", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
650
712
|
}
|
|
651
|
-
export declare interface
|
|
713
|
+
export declare interface PSmile extends Components.PSmile {
|
|
652
714
|
}
|
|
653
715
|
export declare class PStepper {
|
|
654
716
|
protected z: NgZone;
|
|
655
|
-
protected el:
|
|
717
|
+
protected el: HTMLPStepperElement;
|
|
656
718
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
657
719
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
|
|
658
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "contentPosition": "contentPosition"; "direction": "direction"; }, {}, never, ["*"], false, never>;
|
|
720
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "enableAutoStatus": "enableAutoStatus"; "steps": "steps"; }, {}, never, ["*"], false, never>;
|
|
659
721
|
}
|
|
660
722
|
export declare interface PStepper extends Components.PStepper {
|
|
661
723
|
}
|
|
662
724
|
export declare class PStepperItem {
|
|
663
725
|
protected z: NgZone;
|
|
664
|
-
protected el:
|
|
726
|
+
protected el: HTMLPStepperItemElement;
|
|
665
727
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
666
728
|
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>;
|
|
729
|
+
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
730
|
}
|
|
669
731
|
export declare interface PStepperItem extends Components.PStepperItem {
|
|
670
732
|
}
|
|
671
733
|
export declare class PStepperLine {
|
|
672
734
|
protected z: NgZone;
|
|
673
|
-
protected el:
|
|
735
|
+
protected el: HTMLPStepperLineElement;
|
|
674
736
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
675
737
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperLine, never>;
|
|
676
738
|
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperLine, "p-stepper-line", never, { "active": "active"; "direction": "direction"; }, {}, never, ["*"], false, never>;
|
|
677
739
|
}
|
|
678
740
|
export declare interface PStepperLine extends Components.PStepperLine {
|
|
679
741
|
}
|
|
680
|
-
export declare class
|
|
742
|
+
export declare class PTabContainer {
|
|
681
743
|
protected z: NgZone;
|
|
682
|
-
protected el:
|
|
744
|
+
protected el: HTMLPTabContainerElement;
|
|
683
745
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
684
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
685
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
746
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTabContainer, never>;
|
|
747
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabContainer, "p-tab-container", never, {}, {}, never, ["*"], false, never>;
|
|
686
748
|
}
|
|
687
|
-
export declare interface
|
|
749
|
+
export declare interface PTabContainer extends Components.PTabContainer {
|
|
688
750
|
}
|
|
689
751
|
export declare class PTabItem {
|
|
690
752
|
protected z: NgZone;
|
|
691
|
-
protected el:
|
|
753
|
+
protected el: HTMLPTabItemElement;
|
|
692
754
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
693
755
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabItem, never>;
|
|
694
756
|
static ɵcmp: i0.ɵɵComponentDeclaration<PTabItem, "p-tab-item", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
@@ -697,19 +759,19 @@ export declare interface PTabItem extends Components.PTabItem {
|
|
|
697
759
|
}
|
|
698
760
|
export declare class PTableContainer {
|
|
699
761
|
protected z: NgZone;
|
|
700
|
-
protected el:
|
|
762
|
+
protected el: HTMLPTableContainerElement;
|
|
701
763
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
702
764
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableContainer, never>;
|
|
703
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {
|
|
765
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {}, {}, never, ["*"], false, never>;
|
|
704
766
|
}
|
|
705
767
|
export declare interface PTableContainer extends Components.PTableContainer {
|
|
706
768
|
}
|
|
707
769
|
export declare class PTableFooter {
|
|
708
770
|
protected z: NgZone;
|
|
709
|
-
protected el:
|
|
771
|
+
protected el: HTMLPTableFooterElement;
|
|
710
772
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
711
773
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableFooter, never>;
|
|
712
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableFooter, "p-table-footer", never, { "
|
|
774
|
+
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
775
|
}
|
|
714
776
|
export declare interface PTableFooter extends Components.PTableFooter {
|
|
715
777
|
/**
|
|
@@ -721,16 +783,16 @@ export declare interface PTableFooter extends Components.PTableFooter {
|
|
|
721
783
|
*/
|
|
722
784
|
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
723
785
|
/**
|
|
724
|
-
* Event whenever the
|
|
786
|
+
* Event whenever the footer is hidden or nog
|
|
725
787
|
*/
|
|
726
|
-
|
|
788
|
+
hiddenChange: EventEmitter<CustomEvent<boolean>>;
|
|
727
789
|
}
|
|
728
790
|
export declare class PTableHeader {
|
|
729
791
|
protected z: NgZone;
|
|
730
|
-
protected el:
|
|
792
|
+
protected el: HTMLPTableHeaderElement;
|
|
731
793
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
732
794
|
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>;
|
|
795
|
+
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
796
|
}
|
|
735
797
|
export declare interface PTableHeader extends Components.PTableHeader {
|
|
736
798
|
/**
|
|
@@ -749,19 +811,32 @@ export declare interface PTableHeader extends Components.PTableHeader {
|
|
|
749
811
|
* Event when the action button is clicked
|
|
750
812
|
*/
|
|
751
813
|
action: EventEmitter<CustomEvent<null>>;
|
|
814
|
+
/**
|
|
815
|
+
* Event whenever the export button is clicked
|
|
816
|
+
*/
|
|
817
|
+
export: EventEmitter<CustomEvent<number>>;
|
|
752
818
|
}
|
|
753
819
|
export declare class PTableRow {
|
|
754
820
|
protected z: NgZone;
|
|
755
|
-
protected el:
|
|
821
|
+
protected el: HTMLPTableRowElement;
|
|
756
822
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
757
823
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableRow, never>;
|
|
758
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
824
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "checked": "checked"; "enableHover": "enableHover"; "isLast": "isLast"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
759
825
|
}
|
|
760
826
|
export declare interface PTableRow extends Components.PTableRow {
|
|
761
827
|
}
|
|
828
|
+
export declare class PTableRowActionsContainer {
|
|
829
|
+
protected z: NgZone;
|
|
830
|
+
protected el: HTMLPTableRowActionsContainerElement;
|
|
831
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
832
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTableRowActionsContainer, never>;
|
|
833
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRowActionsContainer, "p-table-row-actions-container", never, {}, {}, never, ["*"], false, never>;
|
|
834
|
+
}
|
|
835
|
+
export declare interface PTableRowActionsContainer extends Components.PTableRowActionsContainer {
|
|
836
|
+
}
|
|
762
837
|
export declare class PToast {
|
|
763
838
|
protected z: NgZone;
|
|
764
|
-
protected el:
|
|
839
|
+
protected el: HTMLPToastElement;
|
|
765
840
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
766
841
|
static ɵfac: i0.ɵɵFactoryDeclaration<PToast, never>;
|
|
767
842
|
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 +849,10 @@ export declare interface PToast extends Components.PToast {
|
|
|
774
849
|
}
|
|
775
850
|
export declare class PToggle {
|
|
776
851
|
protected z: NgZone;
|
|
777
|
-
protected el:
|
|
852
|
+
protected el: HTMLPToggleElement;
|
|
778
853
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
779
854
|
static ɵfac: i0.ɵɵFactoryDeclaration<PToggle, never>;
|
|
780
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PToggle, "p-toggle", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "
|
|
855
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PToggle, "p-toggle", never, { "checked": "checked"; "disabled": "disabled"; "id": "id"; "name": "name"; "required": "required"; }, {}, never, ["*"], false, never>;
|
|
781
856
|
}
|
|
782
857
|
export declare interface PToggle extends Components.PToggle {
|
|
783
858
|
/**
|
|
@@ -791,10 +866,10 @@ export declare interface PToggle extends Components.PToggle {
|
|
|
791
866
|
}
|
|
792
867
|
export declare class PTooltip {
|
|
793
868
|
protected z: NgZone;
|
|
794
|
-
protected el:
|
|
869
|
+
protected el: HTMLPTooltipElement;
|
|
795
870
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
796
871
|
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"; "
|
|
872
|
+
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
873
|
}
|
|
799
874
|
export declare interface PTooltip extends Components.PTooltip {
|
|
800
875
|
/**
|