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