@paperless/angular 0.1.0-alpha.4 → 0.1.0-alpha.401
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/README.md +27 -2
- package/esm2020/lib/animations/fade.mjs +22 -0
- package/esm2020/lib/animations/index.mjs +3 -0
- package/esm2020/lib/animations/slide.mjs +20 -0
- package/esm2020/lib/base/form.component.mjs +105 -0
- package/esm2020/lib/base/index.mjs +4 -0
- package/esm2020/lib/base/upload.component.mjs +57 -0
- package/esm2020/lib/base/value-accessor.mjs +42 -0
- package/esm2020/lib/directives/index.mjs +15 -0
- package/esm2020/lib/directives/p-datepicker.directive.mjs +37 -0
- package/esm2020/lib/directives/p-page-size-select.directive.mjs +42 -0
- package/esm2020/lib/directives/p-pagination.directive.mjs +42 -0
- package/esm2020/lib/directives/p-select.directive.mjs +37 -0
- package/esm2020/lib/modules/index.mjs +8 -0
- package/esm2020/lib/modules/overlay/index.mjs +4 -0
- package/esm2020/lib/modules/overlay/overlay.module.mjs +38 -0
- package/esm2020/lib/modules/overlay/overlay.ref.mjs +12 -0
- package/esm2020/lib/modules/overlay/services/index.mjs +4 -0
- package/esm2020/lib/modules/overlay/services/overlay.service.mjs +74 -0
- package/esm2020/lib/modules/table/base/index.mjs +2 -0
- package/esm2020/lib/modules/table/base/table.component.mjs +201 -0
- package/esm2020/lib/modules/table/components/index.mjs +8 -0
- package/esm2020/lib/modules/table/components/table/constants.mjs +3 -0
- package/esm2020/lib/modules/table/components/table/table.component.mjs +679 -0
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +167 -0
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +37 -0
- package/esm2020/lib/modules/table/directives/index.mjs +21 -0
- package/esm2020/lib/modules/table/directives/p-table-custom-filter.directive.mjs +13 -0
- package/esm2020/lib/modules/table/directives/p-table-filter-modal.directive.mjs +13 -0
- package/esm2020/lib/modules/table/directives/p-table-footer.directive.mjs +52 -0
- package/esm2020/lib/modules/table/directives/p-table-header.directive.mjs +60 -0
- package/esm2020/lib/modules/table/directives/p-table-ngx.directive.mjs +121 -0
- package/esm2020/lib/modules/table/directives/p-table.directive.mjs +78 -0
- package/esm2020/lib/modules/table/index.mjs +6 -0
- package/esm2020/lib/modules/table/table.module.mjs +29 -0
- package/esm2020/lib/modules/table/utils.mjs +25 -0
- package/esm2020/lib/modules/toast/components/index.mjs +4 -0
- package/esm2020/lib/modules/toast/components/toast-container/toast-container.component.mjs +36 -0
- package/esm2020/lib/modules/toast/directives/index.mjs +4 -0
- package/esm2020/lib/modules/toast/directives/toast.directive.mjs +51 -0
- package/esm2020/lib/modules/toast/index.mjs +6 -0
- package/esm2020/lib/modules/toast/services/index.mjs +4 -0
- package/esm2020/lib/modules/toast/services/toast.service.mjs +53 -0
- package/esm2020/lib/modules/toast/toast.module.mjs +22 -0
- package/esm2020/lib/modules/toast/types.mjs +10 -0
- package/esm2020/lib/paperless.module.mjs +32 -9
- package/esm2020/lib/pipes/currency.pipe.mjs +20 -0
- package/esm2020/lib/pipes/date.pipe.mjs +20 -0
- package/esm2020/lib/pipes/index.mjs +8 -0
- package/esm2020/lib/pipes/safe.pipe.mjs +33 -0
- package/esm2020/lib/stencil/angular-component-lib/utils.mjs +6 -8
- package/esm2020/lib/stencil/components.mjs +1353 -46
- package/esm2020/lib/stencil/index.mjs +53 -1
- package/esm2020/lib/stencil.module.mjs +17 -0
- package/esm2020/public-api.mjs +7 -1
- package/fesm2015/paperless-angular.mjs +3539 -75
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +3552 -75
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/animations/fade.d.ts +2 -0
- package/lib/animations/index.d.ts +2 -0
- package/lib/animations/slide.d.ts +2 -0
- package/lib/base/form.component.d.ts +15 -0
- package/lib/base/index.d.ts +3 -0
- package/lib/base/upload.component.d.ts +16 -0
- package/lib/base/value-accessor.d.ts +17 -0
- package/lib/directives/index.d.ts +6 -0
- package/lib/directives/p-datepicker.directive.d.ts +9 -0
- package/lib/directives/p-page-size-select.directive.d.ts +10 -0
- package/lib/directives/p-pagination.directive.d.ts +10 -0
- package/lib/directives/p-select.directive.d.ts +9 -0
- package/lib/modules/index.d.ts +5 -0
- package/lib/modules/overlay/index.d.ts +3 -0
- package/lib/modules/overlay/overlay.module.d.ts +12 -0
- package/lib/modules/overlay/overlay.ref.d.ts +9 -0
- package/lib/modules/overlay/services/index.d.ts +3 -0
- package/lib/modules/overlay/services/overlay.service.d.ts +24 -0
- package/lib/modules/table/base/index.d.ts +1 -0
- package/lib/modules/table/base/table.component.d.ts +58 -0
- package/lib/modules/table/components/index.d.ts +7 -0
- package/lib/modules/table/components/table/constants.d.ts +2 -0
- package/lib/modules/table/components/table/table.component.d.ts +248 -0
- package/lib/modules/table/components/table-cell/table-cell.component.d.ts +45 -0
- package/lib/modules/table/components/table-column/table-column.component.d.ts +17 -0
- package/lib/modules/table/directives/index.d.ts +12 -0
- package/lib/modules/table/directives/p-table-custom-filter.directive.d.ts +5 -0
- package/lib/modules/table/directives/p-table-filter-modal.directive.d.ts +5 -0
- package/lib/modules/table/directives/p-table-footer.directive.d.ts +11 -0
- package/lib/modules/table/directives/p-table-header.directive.d.ts +17 -0
- package/lib/modules/table/directives/p-table-ngx.directive.d.ts +27 -0
- package/lib/modules/table/directives/p-table.directive.d.ts +22 -0
- package/lib/modules/table/index.d.ts +5 -0
- package/lib/modules/table/table.module.d.ts +17 -0
- package/lib/modules/table/utils.d.ts +10 -0
- package/lib/modules/toast/components/index.d.ts +3 -0
- package/lib/modules/toast/components/toast-container/toast-container.component.d.ts +17 -0
- package/lib/modules/toast/directives/index.d.ts +3 -0
- package/lib/modules/toast/directives/toast.directive.d.ts +16 -0
- package/lib/modules/toast/index.d.ts +5 -0
- package/lib/modules/toast/services/index.d.ts +3 -0
- package/lib/modules/toast/services/toast.service.d.ts +12 -0
- package/lib/modules/toast/toast.module.d.ts +10 -0
- package/lib/modules/toast/types.d.ts +31 -0
- package/lib/paperless.module.d.ts +15 -2
- package/lib/pipes/currency.pipe.d.ts +10 -0
- package/lib/pipes/date.pipe.d.ts +10 -0
- package/lib/pipes/index.d.ts +7 -0
- package/lib/pipes/safe.pipe.d.ts +10 -0
- package/lib/stencil/components.d.ts +592 -12
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +7 -0
- package/package.json +8 -6
- package/paperless.css +436 -0
- package/public-api.d.ts +6 -0
- /package/{paperless-angular.d.ts → index.d.ts} +0 -0
|
@@ -1,52 +1,632 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import { Components } from '@paperless/core';
|
|
3
|
+
import type { QuickFilter as IPTableHeaderQuickFilter } from '@paperless/core';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare
|
|
5
|
+
export declare class PAccordion {
|
|
6
|
+
protected z: NgZone;
|
|
7
|
+
protected el: HTMLElement;
|
|
8
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
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>;
|
|
11
|
+
}
|
|
12
|
+
export declare interface PAccordion extends Components.PAccordion {
|
|
5
13
|
/**
|
|
6
|
-
*
|
|
14
|
+
* Open change event
|
|
7
15
|
*/
|
|
8
|
-
|
|
16
|
+
isOpen: EventEmitter<CustomEvent<boolean>>;
|
|
17
|
+
}
|
|
18
|
+
export declare class PAttachment {
|
|
19
|
+
protected z: NgZone;
|
|
20
|
+
protected el: HTMLElement;
|
|
21
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PAttachment, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAttachment, "p-attachment", never, { "downloading": "downloading"; "error": "error"; "loading": "loading"; "mode": "mode"; }, {}, never, ["*"], false, never>;
|
|
24
|
+
}
|
|
25
|
+
export declare interface PAttachment extends Components.PAttachment {
|
|
26
|
+
/**
|
|
27
|
+
* Event when download is pressed
|
|
28
|
+
*/
|
|
29
|
+
download: EventEmitter<CustomEvent<any>>;
|
|
30
|
+
/**
|
|
31
|
+
* Event when delete is pressed
|
|
32
|
+
*/
|
|
33
|
+
delete: EventEmitter<CustomEvent<any>>;
|
|
34
|
+
}
|
|
35
|
+
export declare class PAvatar {
|
|
36
|
+
protected z: NgZone;
|
|
37
|
+
protected el: HTMLElement;
|
|
38
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PAvatar, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "size": "size"; "src": "src"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
41
|
+
}
|
|
42
|
+
export declare interface PAvatar extends Components.PAvatar {
|
|
43
|
+
}
|
|
44
|
+
export declare class PAvatarGroup {
|
|
45
|
+
protected z: NgZone;
|
|
46
|
+
protected el: HTMLElement;
|
|
47
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PAvatarGroup, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAvatarGroup, "p-avatar-group", never, { "extra": "extra"; }, {}, never, ["*"], false, never>;
|
|
50
|
+
}
|
|
51
|
+
export declare interface PAvatarGroup extends Components.PAvatarGroup {
|
|
52
|
+
}
|
|
53
|
+
export declare class PBackdrop {
|
|
54
|
+
protected z: NgZone;
|
|
55
|
+
protected el: HTMLElement;
|
|
56
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PBackdrop, never>;
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PBackdrop, "p-backdrop", never, { "applyBlur": "applyBlur"; "closing": "closing"; "scrollLock": "scrollLock"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
59
|
+
}
|
|
60
|
+
export declare interface PBackdrop extends Components.PBackdrop {
|
|
61
|
+
/**
|
|
62
|
+
* When the backdrop is clicked
|
|
63
|
+
*/
|
|
64
|
+
clicked: EventEmitter<CustomEvent<MouseEvent>>;
|
|
9
65
|
}
|
|
10
66
|
export declare class PButton {
|
|
11
67
|
protected z: NgZone;
|
|
12
68
|
protected el: HTMLElement;
|
|
13
69
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
14
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<PButton, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "loading": "loading"; "size": "size"; "target": "target"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "chevron": "chevron"; "chevronPosition": "chevronPosition"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "loading": "loading"; "size": "size"; "target": "target"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
16
72
|
}
|
|
17
|
-
export declare interface
|
|
73
|
+
export declare interface PButton extends Components.PButton {
|
|
74
|
+
/**
|
|
75
|
+
* Button click event
|
|
76
|
+
*/
|
|
77
|
+
onClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
78
|
+
}
|
|
79
|
+
export declare class PCalendar {
|
|
80
|
+
protected z: NgZone;
|
|
81
|
+
protected el: HTMLElement;
|
|
82
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
83
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCalendar, never>;
|
|
84
|
+
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>;
|
|
85
|
+
}
|
|
86
|
+
export declare interface PCalendar extends Components.PCalendar {
|
|
87
|
+
/**
|
|
88
|
+
* Event when the value changes
|
|
89
|
+
*/
|
|
90
|
+
valueChange: EventEmitter<CustomEvent<any>>;
|
|
91
|
+
}
|
|
92
|
+
export declare class PCardBody {
|
|
93
|
+
protected z: NgZone;
|
|
94
|
+
protected el: HTMLElement;
|
|
95
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
96
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCardBody, never>;
|
|
97
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardBody, "p-card-body", never, { "inheritText": "inheritText"; }, {}, never, ["*"], false, never>;
|
|
98
|
+
}
|
|
99
|
+
export declare interface PCardBody extends Components.PCardBody {
|
|
100
|
+
}
|
|
101
|
+
export declare class PCardContainer {
|
|
102
|
+
protected z: NgZone;
|
|
103
|
+
protected el: HTMLElement;
|
|
104
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
105
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCardContainer, never>;
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "hoverable": "hoverable"; "shadow": "shadow"; }, {}, never, ["*"], false, never>;
|
|
107
|
+
}
|
|
108
|
+
export declare interface PCardContainer extends Components.PCardContainer {
|
|
109
|
+
}
|
|
110
|
+
export declare class PCardHeader {
|
|
111
|
+
protected z: NgZone;
|
|
112
|
+
protected el: HTMLElement;
|
|
113
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCardHeader, never>;
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "arrow": "arrow"; "header": "header"; }, {}, never, ["*"], false, never>;
|
|
116
|
+
}
|
|
117
|
+
export declare interface PCardHeader extends Components.PCardHeader {
|
|
118
|
+
}
|
|
119
|
+
export declare class PContentSlider {
|
|
120
|
+
protected z: NgZone;
|
|
121
|
+
protected el: HTMLElement;
|
|
122
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
123
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PContentSlider, never>;
|
|
124
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PContentSlider, "p-content-slider", never, { "disableAutoCenter": "disableAutoCenter"; "disableDrag": "disableDrag"; "disableIndicatorClick": "disableIndicatorClick"; "hideMobileIndicator": "hideMobileIndicator"; }, {}, never, ["*"], false, never>;
|
|
125
|
+
}
|
|
126
|
+
export declare interface PContentSlider extends Components.PContentSlider {
|
|
127
|
+
}
|
|
128
|
+
export declare class PCounter {
|
|
129
|
+
protected z: NgZone;
|
|
130
|
+
protected el: HTMLElement;
|
|
131
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
132
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCounter, never>;
|
|
133
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
134
|
+
}
|
|
135
|
+
export declare interface PCounter extends Components.PCounter {
|
|
136
|
+
}
|
|
137
|
+
export declare class PDatepicker {
|
|
138
|
+
protected z: NgZone;
|
|
139
|
+
protected el: HTMLElement;
|
|
140
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
141
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDatepicker, never>;
|
|
142
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDatepicker, "p-datepicker", never, { "disableWeekends": "disableWeekends"; "disabled": "disabled"; "disabledDates": "disabledDates"; "error": "error"; "format": "format"; "helper": "helper"; "label": "label"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "prefix": "prefix"; "preselectToday": "preselectToday"; "size": "size"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
143
|
+
}
|
|
144
|
+
export declare interface PDatepicker extends Components.PDatepicker {
|
|
145
|
+
/**
|
|
146
|
+
* Event when the value changes
|
|
147
|
+
*/
|
|
148
|
+
valueChange: EventEmitter<CustomEvent<any>>;
|
|
149
|
+
}
|
|
150
|
+
export declare class PDivider {
|
|
151
|
+
protected z: NgZone;
|
|
152
|
+
protected el: HTMLElement;
|
|
153
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
154
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
|
|
155
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, {}, {}, never, ["*"], false, never>;
|
|
156
|
+
}
|
|
157
|
+
export declare interface PDivider extends Components.PDivider {
|
|
158
|
+
}
|
|
159
|
+
export declare class PDrawer {
|
|
160
|
+
protected z: NgZone;
|
|
161
|
+
protected el: HTMLElement;
|
|
162
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
163
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDrawer, never>;
|
|
164
|
+
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>;
|
|
165
|
+
}
|
|
166
|
+
export declare interface PDrawer extends Components.PDrawer {
|
|
167
|
+
/**
|
|
168
|
+
* Close click event
|
|
169
|
+
*/
|
|
170
|
+
closeClicked: EventEmitter<CustomEvent<{
|
|
171
|
+
event: MouseEvent;
|
|
172
|
+
canClose: boolean;
|
|
173
|
+
}>>;
|
|
174
|
+
/**
|
|
175
|
+
* Closed event
|
|
176
|
+
*/
|
|
177
|
+
closed: EventEmitter<CustomEvent<null>>;
|
|
178
|
+
}
|
|
179
|
+
export declare class PDrawerBody {
|
|
180
|
+
protected z: NgZone;
|
|
181
|
+
protected el: HTMLElement;
|
|
182
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
183
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerBody, never>;
|
|
184
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerBody, "p-drawer-body", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
185
|
+
}
|
|
186
|
+
export declare interface PDrawerBody extends Components.PDrawerBody {
|
|
187
|
+
}
|
|
188
|
+
export declare class PDrawerContainer {
|
|
189
|
+
protected z: NgZone;
|
|
190
|
+
protected el: HTMLElement;
|
|
191
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
192
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerContainer, never>;
|
|
193
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerContainer, "p-drawer-container", never, { "closing": "closing"; }, {}, never, ["*"], false, never>;
|
|
194
|
+
}
|
|
195
|
+
export declare interface PDrawerContainer extends Components.PDrawerContainer {
|
|
196
|
+
}
|
|
197
|
+
export declare class PDrawerHeader {
|
|
198
|
+
protected z: NgZone;
|
|
199
|
+
protected el: HTMLElement;
|
|
200
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
201
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerHeader, never>;
|
|
202
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerHeader, "p-drawer-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
|
|
203
|
+
}
|
|
204
|
+
export declare interface PDrawerHeader extends Components.PDrawerHeader {
|
|
205
|
+
/**
|
|
206
|
+
* Close click event
|
|
207
|
+
*/
|
|
208
|
+
close: EventEmitter<CustomEvent<MouseEvent>>;
|
|
209
|
+
}
|
|
210
|
+
export declare class PDropdown {
|
|
211
|
+
protected z: NgZone;
|
|
212
|
+
protected el: HTMLElement;
|
|
213
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
214
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
|
|
215
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "calculateWidth": "calculateWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "placement": "placement"; "show": "show"; "strategy": "strategy"; }, {}, never, ["*"], false, never>;
|
|
216
|
+
}
|
|
217
|
+
export declare interface PDropdown extends Components.PDropdown {
|
|
218
|
+
/**
|
|
219
|
+
* Open change event
|
|
220
|
+
*/
|
|
221
|
+
isOpen: EventEmitter<CustomEvent<boolean>>;
|
|
222
|
+
}
|
|
223
|
+
export declare class PDropdownMenuContainer {
|
|
224
|
+
protected z: NgZone;
|
|
225
|
+
protected el: HTMLElement;
|
|
226
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
227
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
|
|
228
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; }, {}, never, ["*"], false, never>;
|
|
229
|
+
}
|
|
230
|
+
export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
|
|
231
|
+
}
|
|
232
|
+
export declare class PDropdownMenuItem {
|
|
233
|
+
protected z: NgZone;
|
|
234
|
+
protected el: HTMLElement;
|
|
235
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
236
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
|
|
237
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "enableHover": "enableHover"; "icon": "icon"; }, {}, never, ["*"], false, never>;
|
|
238
|
+
}
|
|
239
|
+
export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
|
|
240
|
+
}
|
|
241
|
+
export declare class PHelper {
|
|
242
|
+
protected z: NgZone;
|
|
243
|
+
protected el: HTMLElement;
|
|
244
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
245
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
|
|
246
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; }, {}, never, ["*"], false, never>;
|
|
247
|
+
}
|
|
248
|
+
export declare interface PHelper extends Components.PHelper {
|
|
18
249
|
}
|
|
19
250
|
export declare class PIcon {
|
|
20
251
|
protected z: NgZone;
|
|
21
252
|
protected el: HTMLElement;
|
|
22
253
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
23
254
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
255
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
25
256
|
}
|
|
26
|
-
export declare interface
|
|
257
|
+
export declare interface PIcon extends Components.PIcon {
|
|
27
258
|
}
|
|
28
259
|
export declare class PIllustration {
|
|
29
260
|
protected z: NgZone;
|
|
30
261
|
protected el: HTMLElement;
|
|
31
262
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
32
263
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIllustration, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"]>;
|
|
264
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
34
265
|
}
|
|
35
|
-
export declare interface
|
|
266
|
+
export declare interface PIllustration extends Components.PIllustration {
|
|
267
|
+
}
|
|
268
|
+
export declare class PInfoPanel {
|
|
269
|
+
protected z: NgZone;
|
|
270
|
+
protected el: HTMLElement;
|
|
271
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
272
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInfoPanel, never>;
|
|
273
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
274
|
+
}
|
|
275
|
+
export declare interface PInfoPanel extends Components.PInfoPanel {
|
|
276
|
+
}
|
|
277
|
+
export declare class PInputError {
|
|
278
|
+
protected z: NgZone;
|
|
279
|
+
protected el: HTMLElement;
|
|
280
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
281
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputError, never>;
|
|
282
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputError, "p-input-error", never, { "error": "error"; "forceShowTooltip": "forceShowTooltip"; }, {}, never, ["*"], false, never>;
|
|
283
|
+
}
|
|
284
|
+
export declare interface PInputError extends Components.PInputError {
|
|
285
|
+
}
|
|
286
|
+
export declare class PInputGroup {
|
|
287
|
+
protected z: NgZone;
|
|
288
|
+
protected el: HTMLElement;
|
|
289
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
290
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
|
|
291
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputGroup, "p-input-group", never, { "disabled": "disabled"; "error": "error"; "focused": "focused"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "prefix": "prefix"; "required": "required"; "size": "size"; "suffix": "suffix"; }, {}, never, ["*"], false, never>;
|
|
292
|
+
}
|
|
293
|
+
export declare interface PInputGroup extends Components.PInputGroup {
|
|
294
|
+
}
|
|
295
|
+
export declare class PLabel {
|
|
296
|
+
protected z: NgZone;
|
|
297
|
+
protected el: HTMLElement;
|
|
298
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
299
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, never>;
|
|
300
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "behavior": "behavior"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "keepMobileContent": "keepMobileContent"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
301
|
+
}
|
|
302
|
+
export declare interface PLabel extends Components.PLabel {
|
|
303
|
+
}
|
|
304
|
+
export declare class PLayout {
|
|
305
|
+
protected z: NgZone;
|
|
306
|
+
protected el: HTMLElement;
|
|
307
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
308
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
|
|
309
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
310
|
+
}
|
|
311
|
+
export declare interface PLayout extends Components.PLayout {
|
|
36
312
|
}
|
|
37
313
|
export declare class PLoader {
|
|
38
314
|
protected z: NgZone;
|
|
39
315
|
protected el: HTMLElement;
|
|
40
316
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
41
317
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLoader, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
318
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
43
319
|
}
|
|
44
|
-
export declare interface
|
|
320
|
+
export declare interface PLoader extends Components.PLoader {
|
|
321
|
+
}
|
|
322
|
+
export declare class PModal {
|
|
323
|
+
protected z: NgZone;
|
|
324
|
+
protected el: HTMLElement;
|
|
325
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
326
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
|
|
327
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "applyBlur": "applyBlur"; "backdropClickClose": "backdropClickClose"; "header": "header"; "scrollLock": "scrollLock"; "show": "show"; "showClose": "showClose"; "showMobileFooter": "showMobileFooter"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
328
|
+
}
|
|
329
|
+
export declare interface PModal extends Components.PModal {
|
|
330
|
+
/**
|
|
331
|
+
* Close click event
|
|
332
|
+
*/
|
|
333
|
+
closeClicked: EventEmitter<CustomEvent<MouseEvent>>;
|
|
334
|
+
/**
|
|
335
|
+
* Closed event
|
|
336
|
+
*/
|
|
337
|
+
closed: EventEmitter<CustomEvent<null>>;
|
|
338
|
+
}
|
|
339
|
+
export declare class PModalBody {
|
|
340
|
+
protected z: NgZone;
|
|
341
|
+
protected el: HTMLElement;
|
|
342
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
343
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
|
|
344
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "rounded": "rounded"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
345
|
+
}
|
|
346
|
+
export declare interface PModalBody extends Components.PModalBody {
|
|
347
|
+
}
|
|
348
|
+
export declare class PModalContainer {
|
|
349
|
+
protected z: NgZone;
|
|
350
|
+
protected el: HTMLElement;
|
|
351
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
352
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
|
|
353
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "closing": "closing"; "size": "size"; }, {}, never, ["*"], false, never>;
|
|
354
|
+
}
|
|
355
|
+
export declare interface PModalContainer extends Components.PModalContainer {
|
|
356
|
+
}
|
|
357
|
+
export declare class PModalFooter {
|
|
358
|
+
protected z: NgZone;
|
|
359
|
+
protected el: HTMLElement;
|
|
360
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
361
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
|
|
362
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, {}, {}, never, ["*"], false, never>;
|
|
363
|
+
}
|
|
364
|
+
export declare interface PModalFooter extends Components.PModalFooter {
|
|
365
|
+
}
|
|
366
|
+
export declare class PModalHeader {
|
|
367
|
+
protected z: NgZone;
|
|
368
|
+
protected el: HTMLElement;
|
|
369
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
370
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
|
|
371
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
|
|
372
|
+
}
|
|
373
|
+
export declare interface PModalHeader extends Components.PModalHeader {
|
|
374
|
+
/**
|
|
375
|
+
* Close click event
|
|
376
|
+
*/
|
|
377
|
+
close: EventEmitter<CustomEvent<MouseEvent>>;
|
|
378
|
+
}
|
|
379
|
+
export declare class PNavbar {
|
|
380
|
+
protected z: NgZone;
|
|
381
|
+
protected el: HTMLElement;
|
|
382
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
383
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
|
|
384
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, { "closeText": "closeText"; "menuText": "menuText"; }, {}, never, ["*"], false, never>;
|
|
385
|
+
}
|
|
386
|
+
export declare interface PNavbar extends Components.PNavbar {
|
|
387
|
+
}
|
|
388
|
+
export declare class PNavigationItem {
|
|
389
|
+
protected z: NgZone;
|
|
390
|
+
protected el: HTMLElement;
|
|
391
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
392
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
|
|
393
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false, never>;
|
|
394
|
+
}
|
|
395
|
+
export declare interface PNavigationItem extends Components.PNavigationItem {
|
|
396
|
+
}
|
|
397
|
+
export declare class PPageSizeSelect {
|
|
398
|
+
protected z: NgZone;
|
|
399
|
+
protected el: HTMLElement;
|
|
400
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
401
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPageSizeSelect, never>;
|
|
402
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPageSizeSelect, "p-page-size-select", never, { "buttonSize": "buttonSize"; "buttonTemplate": "buttonTemplate"; "chevronPosition": "chevronPosition"; "hidden": "hidden"; "itemTemplate": "itemTemplate"; "size": "size"; "sizeOptions": "sizeOptions"; }, {}, never, ["*"], false, never>;
|
|
403
|
+
}
|
|
404
|
+
export declare interface PPageSizeSelect extends Components.PPageSizeSelect {
|
|
405
|
+
/**
|
|
406
|
+
* Event whenever the size changes
|
|
407
|
+
*/
|
|
408
|
+
sizeChange: EventEmitter<CustomEvent<number>>;
|
|
409
|
+
}
|
|
410
|
+
export declare class PPagination {
|
|
411
|
+
protected z: NgZone;
|
|
412
|
+
protected el: HTMLElement;
|
|
413
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
414
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
|
|
415
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false, never>;
|
|
416
|
+
}
|
|
417
|
+
export declare interface PPagination extends Components.PPagination {
|
|
418
|
+
/**
|
|
419
|
+
* Event whenever the page changes
|
|
420
|
+
*/
|
|
421
|
+
pageChange: EventEmitter<CustomEvent<number>>;
|
|
422
|
+
}
|
|
423
|
+
export declare class PPaginationItem {
|
|
424
|
+
protected z: NgZone;
|
|
425
|
+
protected el: HTMLElement;
|
|
426
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
427
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationItem, never>;
|
|
428
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationItem, "p-pagination-item", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
429
|
+
}
|
|
430
|
+
export declare interface PPaginationItem extends Components.PPaginationItem {
|
|
431
|
+
}
|
|
432
|
+
export declare class PProfile {
|
|
433
|
+
protected z: NgZone;
|
|
434
|
+
protected el: HTMLElement;
|
|
435
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
436
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
|
|
437
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
438
|
+
}
|
|
439
|
+
export declare interface PProfile extends Components.PProfile {
|
|
440
|
+
}
|
|
441
|
+
export declare class PSegmentContainer {
|
|
442
|
+
protected z: NgZone;
|
|
443
|
+
protected el: HTMLElement;
|
|
444
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
445
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
|
|
446
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false, never>;
|
|
447
|
+
}
|
|
448
|
+
export declare interface PSegmentContainer extends Components.PSegmentContainer {
|
|
449
|
+
}
|
|
450
|
+
export declare class PSegmentItem {
|
|
451
|
+
protected z: NgZone;
|
|
452
|
+
protected el: HTMLElement;
|
|
453
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
454
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
|
|
455
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; }, {}, never, ["*"], false, never>;
|
|
456
|
+
}
|
|
457
|
+
export declare interface PSegmentItem extends Components.PSegmentItem {
|
|
458
|
+
}
|
|
459
|
+
export declare class PSelect {
|
|
460
|
+
protected z: NgZone;
|
|
461
|
+
protected el: HTMLElement;
|
|
462
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
463
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
|
|
464
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select", never, { "asyncFilter": "asyncFilter"; "autoSelectFirst": "autoSelectFirst"; "autocompletePlaceholder": "autocompletePlaceholder"; "disabled": "disabled"; "displayKey": "displayKey"; "enableAutocomplete": "enableAutocomplete"; "error": "error"; "helper": "helper"; "icon": "icon"; "identifierKey": "identifierKey"; "items": "items"; "label": "label"; "loading": "loading"; "maxDisplayedItems": "maxDisplayedItems"; "placeholder": "placeholder"; "prefix": "prefix"; "query": "query"; "queryKey": "queryKey"; "showChevron": "showChevron"; "size": "size"; "value": "value"; "valueKey": "valueKey"; }, {}, never, ["*"], false, never>;
|
|
465
|
+
}
|
|
466
|
+
export declare interface PSelect extends Components.PSelect {
|
|
467
|
+
/**
|
|
468
|
+
* Event when the query of the autocomplete changes
|
|
469
|
+
*/
|
|
470
|
+
queryChange: EventEmitter<CustomEvent<string>>;
|
|
471
|
+
/**
|
|
472
|
+
* Event when the value changes
|
|
473
|
+
*/
|
|
474
|
+
valueChange: EventEmitter<CustomEvent<any>>;
|
|
475
|
+
/**
|
|
476
|
+
* Event when the dropdown shows
|
|
477
|
+
*/
|
|
478
|
+
dropdownShown: EventEmitter<CustomEvent<any>>;
|
|
479
|
+
}
|
|
480
|
+
export declare class PSliderIndicator {
|
|
481
|
+
protected z: NgZone;
|
|
482
|
+
protected el: HTMLElement;
|
|
483
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
484
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSliderIndicator, never>;
|
|
485
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSliderIndicator, "p-slider-indicator", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
486
|
+
}
|
|
487
|
+
export declare interface PSliderIndicator extends Components.PSliderIndicator {
|
|
488
|
+
}
|
|
489
|
+
export declare class PStatus {
|
|
490
|
+
protected z: NgZone;
|
|
491
|
+
protected el: HTMLElement;
|
|
492
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
493
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
|
|
494
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
495
|
+
}
|
|
496
|
+
export declare interface PStatus extends Components.PStatus {
|
|
497
|
+
}
|
|
498
|
+
export declare class PStepper {
|
|
499
|
+
protected z: NgZone;
|
|
500
|
+
protected el: HTMLElement;
|
|
501
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
502
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
|
|
503
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "contentPosition": "contentPosition"; "direction": "direction"; }, {}, never, ["*"], false, never>;
|
|
504
|
+
}
|
|
505
|
+
export declare interface PStepper extends Components.PStepper {
|
|
506
|
+
}
|
|
507
|
+
export declare class PStepperItem {
|
|
508
|
+
protected z: NgZone;
|
|
509
|
+
protected el: HTMLElement;
|
|
510
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
511
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
|
|
512
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "finished": "finished"; }, {}, never, ["*"], false, never>;
|
|
513
|
+
}
|
|
514
|
+
export declare interface PStepperItem extends Components.PStepperItem {
|
|
515
|
+
}
|
|
516
|
+
export declare class PStepperLine {
|
|
517
|
+
protected z: NgZone;
|
|
518
|
+
protected el: HTMLElement;
|
|
519
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
520
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperLine, never>;
|
|
521
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperLine, "p-stepper-line", never, { "active": "active"; "direction": "direction"; }, {}, never, ["*"], false, never>;
|
|
522
|
+
}
|
|
523
|
+
export declare interface PStepperLine extends Components.PStepperLine {
|
|
524
|
+
}
|
|
525
|
+
export declare class PTabGroup {
|
|
526
|
+
protected z: NgZone;
|
|
527
|
+
protected el: HTMLElement;
|
|
528
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
529
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTabGroup, never>;
|
|
530
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabGroup, "p-tab-group", never, {}, {}, never, ["*"], false, never>;
|
|
531
|
+
}
|
|
532
|
+
export declare interface PTabGroup extends Components.PTabGroup {
|
|
533
|
+
}
|
|
534
|
+
export declare class PTabItem {
|
|
535
|
+
protected z: NgZone;
|
|
536
|
+
protected el: HTMLElement;
|
|
537
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
538
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTabItem, never>;
|
|
539
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabItem, "p-tab-item", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
540
|
+
}
|
|
541
|
+
export declare interface PTabItem extends Components.PTabItem {
|
|
542
|
+
}
|
|
543
|
+
export declare class PTableContainer {
|
|
544
|
+
protected z: NgZone;
|
|
545
|
+
protected el: HTMLElement;
|
|
546
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
547
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTableContainer, never>;
|
|
548
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableContainer, "p-table-container", never, {}, {}, never, ["*"], false, never>;
|
|
549
|
+
}
|
|
550
|
+
export declare interface PTableContainer extends Components.PTableContainer {
|
|
551
|
+
}
|
|
552
|
+
export declare class PTableFooter {
|
|
553
|
+
protected z: NgZone;
|
|
554
|
+
protected el: HTMLElement;
|
|
555
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
556
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTableFooter, never>;
|
|
557
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableFooter, "p-table-footer", never, { "enableExport": "enableExport"; "enablePageSize": "enablePageSize"; "enablePagination": "enablePagination"; "hideOnSinglePage": "hideOnSinglePage"; "loading": "loading"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "total": "total"; }, {}, never, ["*"], false, never>;
|
|
558
|
+
}
|
|
559
|
+
export declare interface PTableFooter extends Components.PTableFooter {
|
|
560
|
+
/**
|
|
561
|
+
* Event whenever the page changes
|
|
562
|
+
*/
|
|
563
|
+
pageChange: EventEmitter<CustomEvent<number>>;
|
|
564
|
+
/**
|
|
565
|
+
* Event whenever the page changes
|
|
566
|
+
*/
|
|
567
|
+
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
568
|
+
/**
|
|
569
|
+
* Event whenever the page changes
|
|
570
|
+
*/
|
|
571
|
+
export: EventEmitter<CustomEvent<number>>;
|
|
572
|
+
}
|
|
573
|
+
export declare class PTableHeader {
|
|
574
|
+
protected z: NgZone;
|
|
575
|
+
protected el: HTMLElement;
|
|
576
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
577
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTableHeader, never>;
|
|
578
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableHeader, "p-table-header", never, { "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "canEdit": "canEdit"; "editButtonTemplate": "editButtonTemplate"; "editIcon": "editIcon"; "editLoading": "editLoading"; "editText": "editText"; "enableEdit": "enableEdit"; "enableFilter": "enableFilter"; "enableSearch": "enableSearch"; "filterButtonTemplate": "filterButtonTemplate"; "itemsSelectedAmount": "itemsSelectedAmount"; "loading": "loading"; "query": "query"; "quickFilters": "quickFilters"; "selectedFiltersAmount": "selectedFiltersAmount"; }, {}, never, ["*"], false, never>;
|
|
579
|
+
}
|
|
580
|
+
export declare interface PTableHeader extends Components.PTableHeader {
|
|
581
|
+
/**
|
|
582
|
+
* Event when one of the quick filters is clicked
|
|
583
|
+
*/
|
|
584
|
+
quickFilter: EventEmitter<CustomEvent<IPTableHeaderQuickFilter>>;
|
|
585
|
+
/**
|
|
586
|
+
* Event when the query changes
|
|
587
|
+
*/
|
|
588
|
+
queryChange: EventEmitter<CustomEvent<string>>;
|
|
589
|
+
/**
|
|
590
|
+
* Event when the filter button is clicked
|
|
591
|
+
*/
|
|
592
|
+
filter: EventEmitter<CustomEvent<null>>;
|
|
593
|
+
/**
|
|
594
|
+
* Event when the edit button is clicked
|
|
595
|
+
*/
|
|
596
|
+
edit: EventEmitter<CustomEvent<null>>;
|
|
597
|
+
}
|
|
598
|
+
export declare class PTableRow {
|
|
599
|
+
protected z: NgZone;
|
|
600
|
+
protected el: HTMLElement;
|
|
601
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
602
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTableRow, never>;
|
|
603
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
604
|
+
}
|
|
605
|
+
export declare interface PTableRow extends Components.PTableRow {
|
|
606
|
+
}
|
|
607
|
+
export declare class PToast {
|
|
608
|
+
protected z: NgZone;
|
|
609
|
+
protected el: HTMLElement;
|
|
610
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
611
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PToast, never>;
|
|
612
|
+
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>;
|
|
613
|
+
}
|
|
614
|
+
export declare interface PToast extends Components.PToast {
|
|
615
|
+
/**
|
|
616
|
+
* Button click event
|
|
617
|
+
*/
|
|
618
|
+
action: EventEmitter<CustomEvent<MouseEvent>>;
|
|
45
619
|
}
|
|
46
620
|
export declare class PTooltip {
|
|
47
621
|
protected z: NgZone;
|
|
48
622
|
protected el: HTMLElement;
|
|
49
623
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
50
624
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "
|
|
625
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "placement": "placement"; "popover": "popover"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
626
|
+
}
|
|
627
|
+
export declare interface PTooltip extends Components.PTooltip {
|
|
628
|
+
/**
|
|
629
|
+
* Open change event
|
|
630
|
+
*/
|
|
631
|
+
isOpen: EventEmitter<CustomEvent<boolean>>;
|
|
52
632
|
}
|
package/lib/stencil/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.PButton | typeof d.PIcon | typeof d.PIllustration | typeof d.PLoader | typeof d.PTooltip)[];
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PButton | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PContentSlider | typeof d.PCounter | typeof d.PDatepicker | typeof d.PDivider | typeof d.PDrawer | typeof d.PDrawerBody | typeof d.PDrawerContainer | typeof d.PDrawerHeader | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PHelper | typeof d.PIcon | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputError | typeof d.PInputGroup | typeof d.PLabel | typeof d.PLayout | typeof d.PLoader | typeof d.PModal | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavbar | typeof d.PNavigationItem | typeof d.PPageSizeSelect | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PProfile | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PSelect | typeof d.PSliderIndicator | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTableContainer | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | typeof d.PToast | typeof d.PTooltip)[];
|