@paperless/angular 0.1.0-alpha.45 → 0.1.0-alpha.450
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 +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 +681 -0
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +212 -0
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +56 -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 -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 +919 -173
- package/esm2020/lib/stencil/index.mjs +31 -2
- package/esm2020/lib/stencil.module.mjs +17 -0
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/paperless-angular.mjs +3228 -341
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +3242 -341
- 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 +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 +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 +18 -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 -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 +432 -67
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +7 -0
- package/package.json +8 -6
- package/paperless.css +492 -0
- package/public-api.d.ts +5 -0
- package/esm2020/lib/directives/pagination.directive.mjs +0 -42
- /package/{paperless-angular.d.ts → index.d.ts} +0 -0
|
@@ -1,14 +1,74 @@
|
|
|
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>>;
|
|
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>>;
|
|
5
34
|
}
|
|
6
35
|
export declare class PAvatar {
|
|
7
36
|
protected z: NgZone;
|
|
8
37
|
protected el: HTMLElement;
|
|
9
38
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
10
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<PAvatar, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "size": "size"; "src": "src"; "variant": "variant"; }, {}, 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>>;
|
|
65
|
+
}
|
|
66
|
+
export declare class PButton {
|
|
67
|
+
protected z: NgZone;
|
|
68
|
+
protected el: HTMLElement;
|
|
69
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PButton, 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>;
|
|
12
72
|
}
|
|
13
73
|
export declare interface PButton extends Components.PButton {
|
|
14
74
|
/**
|
|
@@ -16,252 +76,557 @@ export declare interface PButton extends Components.PButton {
|
|
|
16
76
|
*/
|
|
17
77
|
onClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
18
78
|
}
|
|
19
|
-
export declare class
|
|
79
|
+
export declare class PCalendar {
|
|
20
80
|
protected z: NgZone;
|
|
21
81
|
protected el: HTMLElement;
|
|
22
82
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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>;
|
|
25
85
|
}
|
|
26
|
-
export declare interface
|
|
86
|
+
export declare interface PCalendar extends Components.PCalendar {
|
|
87
|
+
/**
|
|
88
|
+
* Event when the value changes
|
|
89
|
+
*/
|
|
90
|
+
valueChange: EventEmitter<CustomEvent<any>>;
|
|
27
91
|
}
|
|
28
92
|
export declare class PCardBody {
|
|
29
93
|
protected z: NgZone;
|
|
30
94
|
protected el: HTMLElement;
|
|
31
95
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
32
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCardBody, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCardBody, "p-card-body", never, { "inheritText": "inheritText"; }, {}, never, ["*"]>;
|
|
97
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardBody, "p-card-body", never, { "inheritText": "inheritText"; }, {}, never, ["*"], false, never>;
|
|
34
98
|
}
|
|
35
|
-
export declare interface
|
|
99
|
+
export declare interface PCardBody extends Components.PCardBody {
|
|
36
100
|
}
|
|
37
101
|
export declare class PCardContainer {
|
|
38
102
|
protected z: NgZone;
|
|
39
103
|
protected el: HTMLElement;
|
|
40
104
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
41
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCardContainer, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "hoverable": "hoverable"; }, {}, never, ["*"]>;
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "hoverable": "hoverable"; "shadow": "shadow"; }, {}, never, ["*"], false, never>;
|
|
43
107
|
}
|
|
44
|
-
export declare interface
|
|
108
|
+
export declare interface PCardContainer extends Components.PCardContainer {
|
|
45
109
|
}
|
|
46
110
|
export declare class PCardHeader {
|
|
47
111
|
protected z: NgZone;
|
|
48
112
|
protected el: HTMLElement;
|
|
49
113
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
50
114
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCardHeader, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "arrow": "arrow"; "
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "arrow": "arrow"; "header": "header"; }, {}, never, ["*"], false, never>;
|
|
52
116
|
}
|
|
53
|
-
export declare interface
|
|
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 {
|
|
54
127
|
}
|
|
55
128
|
export declare class PCounter {
|
|
56
129
|
protected z: NgZone;
|
|
57
130
|
protected el: HTMLElement;
|
|
58
131
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
59
132
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCounter, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, {}, {}, never, ["*"]>;
|
|
133
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
61
134
|
}
|
|
62
|
-
export declare interface
|
|
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"; "required": "required"; "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>>;
|
|
63
149
|
}
|
|
64
150
|
export declare class PDivider {
|
|
65
151
|
protected z: NgZone;
|
|
66
152
|
protected el: HTMLElement;
|
|
67
153
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
68
154
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, {}, {}, never, ["*"]>;
|
|
155
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, {}, {}, never, ["*"], false, never>;
|
|
70
156
|
}
|
|
71
|
-
export declare interface
|
|
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 {
|
|
72
167
|
/**
|
|
73
|
-
*
|
|
168
|
+
* Close click event
|
|
74
169
|
*/
|
|
75
|
-
|
|
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>>;
|
|
76
209
|
}
|
|
77
210
|
export declare class PDropdown {
|
|
78
211
|
protected z: NgZone;
|
|
79
212
|
protected el: HTMLElement;
|
|
80
213
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
81
214
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
|
|
82
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "placement": "placement"; "show": "show"; }, {}, 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>;
|
|
83
216
|
}
|
|
84
|
-
export declare interface
|
|
217
|
+
export declare interface PDropdown extends Components.PDropdown {
|
|
218
|
+
/**
|
|
219
|
+
* Open change event
|
|
220
|
+
*/
|
|
221
|
+
isOpen: EventEmitter<CustomEvent<boolean>>;
|
|
85
222
|
}
|
|
86
223
|
export declare class PDropdownMenuContainer {
|
|
87
224
|
protected z: NgZone;
|
|
88
225
|
protected el: HTMLElement;
|
|
89
226
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
90
227
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
|
|
91
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, {}, {}, never, ["*"]>;
|
|
228
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; }, {}, never, ["*"], false, never>;
|
|
92
229
|
}
|
|
93
|
-
export declare interface
|
|
230
|
+
export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
|
|
94
231
|
}
|
|
95
232
|
export declare class PDropdownMenuItem {
|
|
96
233
|
protected z: NgZone;
|
|
97
234
|
protected el: HTMLElement;
|
|
98
235
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
99
236
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; }, {}, never, ["*"]>;
|
|
237
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "enableHover": "enableHover"; "icon": "icon"; }, {}, never, ["*"], false, never>;
|
|
101
238
|
}
|
|
102
|
-
export declare interface
|
|
239
|
+
export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
|
|
103
240
|
}
|
|
104
241
|
export declare class PHelper {
|
|
105
242
|
protected z: NgZone;
|
|
106
243
|
protected el: HTMLElement;
|
|
107
244
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
108
245
|
static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
|
|
109
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, {}, {}, never, ["*"]>;
|
|
246
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; }, {}, never, ["*"], false, never>;
|
|
110
247
|
}
|
|
111
|
-
export declare interface
|
|
248
|
+
export declare interface PHelper extends Components.PHelper {
|
|
112
249
|
}
|
|
113
250
|
export declare class PIcon {
|
|
114
251
|
protected z: NgZone;
|
|
115
252
|
protected el: HTMLElement;
|
|
116
253
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
117
254
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
|
|
118
|
-
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>;
|
|
119
256
|
}
|
|
120
|
-
export declare interface
|
|
257
|
+
export declare interface PIcon extends Components.PIcon {
|
|
121
258
|
}
|
|
122
259
|
export declare class PIllustration {
|
|
123
260
|
protected z: NgZone;
|
|
124
261
|
protected el: HTMLElement;
|
|
125
262
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
126
263
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIllustration, never>;
|
|
127
|
-
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>;
|
|
128
265
|
}
|
|
129
|
-
export declare interface
|
|
266
|
+
export declare interface PIllustration extends Components.PIllustration {
|
|
130
267
|
}
|
|
131
268
|
export declare class PInfoPanel {
|
|
132
269
|
protected z: NgZone;
|
|
133
270
|
protected el: HTMLElement;
|
|
134
271
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
135
272
|
static ɵfac: i0.ɵɵFactoryDeclaration<PInfoPanel, never>;
|
|
136
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
273
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
137
274
|
}
|
|
138
|
-
export declare interface
|
|
275
|
+
export declare interface PInfoPanel extends Components.PInfoPanel {
|
|
139
276
|
}
|
|
140
|
-
export declare class
|
|
277
|
+
export declare class PInputError {
|
|
141
278
|
protected z: NgZone;
|
|
142
279
|
protected el: HTMLElement;
|
|
143
280
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
144
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
145
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
281
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputError, never>;
|
|
282
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputError, "p-input-error", never, { "error": "error"; "forceShowTooltip": "forceShowTooltip"; }, {}, never, ["*"], false, never>;
|
|
146
283
|
}
|
|
147
|
-
export declare interface
|
|
284
|
+
export declare interface PInputError extends Components.PInputError {
|
|
148
285
|
}
|
|
149
|
-
export declare class
|
|
286
|
+
export declare class PInputGroup {
|
|
150
287
|
protected z: NgZone;
|
|
151
288
|
protected el: HTMLElement;
|
|
152
289
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
153
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
154
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
290
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
|
|
291
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputGroup, "p-input-group", never, { "disabled": "disabled"; "error": "error"; "focusMethod": "focusMethod"; "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>;
|
|
155
292
|
}
|
|
156
|
-
export declare interface
|
|
293
|
+
export declare interface PInputGroup extends Components.PInputGroup {
|
|
157
294
|
}
|
|
158
|
-
export declare class
|
|
295
|
+
export declare class PLabel {
|
|
159
296
|
protected z: NgZone;
|
|
160
297
|
protected el: HTMLElement;
|
|
161
298
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
162
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
163
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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>;
|
|
164
301
|
}
|
|
165
|
-
export declare interface
|
|
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 {
|
|
312
|
+
}
|
|
313
|
+
export declare class PLoader {
|
|
314
|
+
protected z: NgZone;
|
|
315
|
+
protected el: HTMLElement;
|
|
316
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
317
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PLoader, never>;
|
|
318
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
319
|
+
}
|
|
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>>;
|
|
166
338
|
}
|
|
167
339
|
export declare class PModalBody {
|
|
168
340
|
protected z: NgZone;
|
|
169
341
|
protected el: HTMLElement;
|
|
170
342
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
171
343
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
|
|
172
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "variant": "variant"; }, {}, never, ["*"]>;
|
|
344
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "rounded": "rounded"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
173
345
|
}
|
|
174
|
-
export declare interface
|
|
346
|
+
export declare interface PModalBody extends Components.PModalBody {
|
|
175
347
|
}
|
|
176
348
|
export declare class PModalContainer {
|
|
177
349
|
protected z: NgZone;
|
|
178
350
|
protected el: HTMLElement;
|
|
179
351
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
180
352
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
|
|
181
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "size": "size"; }, {}, never, ["*"]>;
|
|
353
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "closing": "closing"; "size": "size"; }, {}, never, ["*"], false, never>;
|
|
182
354
|
}
|
|
183
|
-
export declare interface
|
|
355
|
+
export declare interface PModalContainer extends Components.PModalContainer {
|
|
184
356
|
}
|
|
185
357
|
export declare class PModalFooter {
|
|
186
358
|
protected z: NgZone;
|
|
187
359
|
protected el: HTMLElement;
|
|
188
360
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
189
361
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
|
|
190
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, {}, {}, never, ["*"]>;
|
|
362
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, {}, {}, never, ["*"], false, never>;
|
|
191
363
|
}
|
|
192
|
-
export declare interface
|
|
364
|
+
export declare interface PModalFooter extends Components.PModalFooter {
|
|
193
365
|
}
|
|
194
366
|
export declare class PModalHeader {
|
|
195
367
|
protected z: NgZone;
|
|
196
368
|
protected el: HTMLElement;
|
|
197
369
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
198
370
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
|
|
199
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, {}, {}, never, ["*"]>;
|
|
371
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
|
|
200
372
|
}
|
|
201
|
-
export declare interface
|
|
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 {
|
|
202
387
|
}
|
|
203
388
|
export declare class PNavigationItem {
|
|
204
389
|
protected z: NgZone;
|
|
205
390
|
protected el: HTMLElement;
|
|
206
391
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
207
392
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
|
|
208
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"]>;
|
|
393
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false, never>;
|
|
209
394
|
}
|
|
210
|
-
export declare interface
|
|
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 {
|
|
211
405
|
/**
|
|
212
|
-
*
|
|
406
|
+
* Event whenever the size changes
|
|
213
407
|
*/
|
|
214
|
-
|
|
408
|
+
sizeChange: EventEmitter<CustomEvent<number>>;
|
|
215
409
|
}
|
|
216
410
|
export declare class PPagination {
|
|
217
411
|
protected z: NgZone;
|
|
218
412
|
protected el: HTMLElement;
|
|
219
413
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
220
414
|
static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
|
|
221
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"]>;
|
|
415
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false, never>;
|
|
222
416
|
}
|
|
223
|
-
export declare interface
|
|
417
|
+
export declare interface PPagination extends Components.PPagination {
|
|
418
|
+
/**
|
|
419
|
+
* Event whenever the page changes
|
|
420
|
+
*/
|
|
421
|
+
pageChange: EventEmitter<CustomEvent<number>>;
|
|
224
422
|
}
|
|
225
423
|
export declare class PPaginationItem {
|
|
226
424
|
protected z: NgZone;
|
|
227
425
|
protected el: HTMLElement;
|
|
228
426
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
229
427
|
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationItem, never>;
|
|
230
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationItem, "p-pagination-item", never, { "active": "active"; }, {}, never, ["*"]>;
|
|
428
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationItem, "p-pagination-item", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
231
429
|
}
|
|
232
|
-
export declare interface
|
|
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 {
|
|
233
440
|
}
|
|
234
441
|
export declare class PSegmentContainer {
|
|
235
442
|
protected z: NgZone;
|
|
236
443
|
protected el: HTMLElement;
|
|
237
444
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
238
445
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
|
|
239
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"]>;
|
|
446
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false, never>;
|
|
240
447
|
}
|
|
241
|
-
export declare interface
|
|
448
|
+
export declare interface PSegmentContainer extends Components.PSegmentContainer {
|
|
242
449
|
}
|
|
243
450
|
export declare class PSegmentItem {
|
|
244
451
|
protected z: NgZone;
|
|
245
452
|
protected el: HTMLElement;
|
|
246
453
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
247
454
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
|
|
248
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; }, {}, never, ["*"]>;
|
|
455
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; }, {}, never, ["*"], false, never>;
|
|
249
456
|
}
|
|
250
|
-
export declare interface
|
|
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"; "keepQuery": "keepQuery"; "label": "label"; "loading": "loading"; "maxDisplayedItems": "maxDisplayedItems"; "placeholder": "placeholder"; "prefix": "prefix"; "query": "query"; "queryKey": "queryKey"; "required": "required"; "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 {
|
|
251
488
|
}
|
|
252
489
|
export declare class PStatus {
|
|
253
490
|
protected z: NgZone;
|
|
254
491
|
protected el: HTMLElement;
|
|
255
492
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
256
493
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
|
|
257
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
494
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
258
495
|
}
|
|
259
|
-
export declare interface
|
|
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>>;
|
|
260
619
|
}
|
|
261
620
|
export declare class PTooltip {
|
|
262
621
|
protected z: NgZone;
|
|
263
622
|
protected el: HTMLElement;
|
|
264
623
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
265
624
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
|
|
266
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "placement": "placement"; "popover": "popover"; "show": "show"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
625
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "enableUserInput": "enableUserInput"; "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>>;
|
|
267
632
|
}
|