@paperless/angular 0.1.0-alpha.42 → 0.1.0-alpha.421
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 +679 -0
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +167 -0
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +37 -0
- package/esm2020/lib/modules/table/directives/index.mjs +21 -0
- package/esm2020/lib/modules/table/directives/p-table-custom-filter.directive.mjs +13 -0
- package/esm2020/lib/modules/table/directives/p-table-filter-modal.directive.mjs +13 -0
- package/esm2020/lib/modules/table/directives/p-table-footer.directive.mjs +52 -0
- package/esm2020/lib/modules/table/directives/p-table-header.directive.mjs +60 -0
- package/esm2020/lib/modules/table/directives/p-table-ngx.directive.mjs +121 -0
- package/esm2020/lib/modules/table/directives/p-table.directive.mjs +78 -0
- package/esm2020/lib/modules/table/index.mjs +6 -0
- package/esm2020/lib/modules/table/table.module.mjs +29 -0
- package/esm2020/lib/modules/table/utils.mjs +25 -0
- package/esm2020/lib/modules/toast/components/index.mjs +4 -0
- package/esm2020/lib/modules/toast/components/toast-container/toast-container.component.mjs +36 -0
- package/esm2020/lib/modules/toast/directives/index.mjs +4 -0
- package/esm2020/lib/modules/toast/directives/toast.directive.mjs +51 -0
- package/esm2020/lib/modules/toast/index.mjs +6 -0
- package/esm2020/lib/modules/toast/services/index.mjs +4 -0
- package/esm2020/lib/modules/toast/services/toast.service.mjs +53 -0
- package/esm2020/lib/modules/toast/toast.module.mjs +22 -0
- package/esm2020/lib/modules/toast/types.mjs +10 -0
- package/esm2020/lib/paperless.module.mjs +32 -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 +1012 -122
- package/esm2020/lib/stencil/index.mjs +36 -1
- package/esm2020/lib/stencil.module.mjs +17 -0
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/paperless-angular.mjs +3245 -279
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +3258 -279
- 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 +17 -0
- package/lib/modules/table/directives/index.d.ts +12 -0
- package/lib/modules/table/directives/p-table-custom-filter.directive.d.ts +5 -0
- package/lib/modules/table/directives/p-table-filter-modal.directive.d.ts +5 -0
- package/lib/modules/table/directives/p-table-footer.directive.d.ts +11 -0
- package/lib/modules/table/directives/p-table-header.directive.d.ts +17 -0
- package/lib/modules/table/directives/p-table-ngx.directive.d.ts +27 -0
- package/lib/modules/table/directives/p-table.directive.d.ts +22 -0
- package/lib/modules/table/index.d.ts +5 -0
- package/lib/modules/table/table.module.d.ts +17 -0
- package/lib/modules/table/utils.d.ts +10 -0
- package/lib/modules/toast/components/index.d.ts +3 -0
- package/lib/modules/toast/components/toast-container/toast-container.component.d.ts +17 -0
- package/lib/modules/toast/directives/index.d.ts +3 -0
- package/lib/modules/toast/directives/toast.directive.d.ts +16 -0
- package/lib/modules/toast/index.d.ts +5 -0
- package/lib/modules/toast/services/index.d.ts +3 -0
- package/lib/modules/toast/services/toast.service.d.ts +12 -0
- package/lib/modules/toast/toast.module.d.ts +10 -0
- package/lib/modules/toast/types.d.ts +31 -0
- package/lib/paperless.module.d.ts +15 -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 +468 -49
- 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
- /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,198 +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"; "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 {
|
|
276
|
+
}
|
|
277
|
+
export declare class PInputError {
|
|
278
|
+
protected z: NgZone;
|
|
279
|
+
protected el: HTMLElement;
|
|
280
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
281
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputError, never>;
|
|
282
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputError, "p-input-error", never, { "error": "error"; "forceShowTooltip": "forceShowTooltip"; }, {}, never, ["*"], false, never>;
|
|
283
|
+
}
|
|
284
|
+
export declare interface PInputError extends Components.PInputError {
|
|
285
|
+
}
|
|
286
|
+
export declare class PInputGroup {
|
|
287
|
+
protected z: NgZone;
|
|
288
|
+
protected el: HTMLElement;
|
|
289
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
290
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
|
|
291
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInputGroup, "p-input-group", never, { "disabled": "disabled"; "error": "error"; "focused": "focused"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "prefix": "prefix"; "required": "required"; "size": "size"; "suffix": "suffix"; }, {}, never, ["*"], false, never>;
|
|
292
|
+
}
|
|
293
|
+
export declare interface PInputGroup extends Components.PInputGroup {
|
|
294
|
+
}
|
|
295
|
+
export declare class PLabel {
|
|
296
|
+
protected z: NgZone;
|
|
297
|
+
protected el: HTMLElement;
|
|
298
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
299
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PLabel, never>;
|
|
300
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLabel, "p-label", never, { "behavior": "behavior"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "keepMobileContent": "keepMobileContent"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
301
|
+
}
|
|
302
|
+
export declare interface PLabel extends Components.PLabel {
|
|
303
|
+
}
|
|
304
|
+
export declare class PLayout {
|
|
305
|
+
protected z: NgZone;
|
|
306
|
+
protected el: HTMLElement;
|
|
307
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
308
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
|
|
309
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
310
|
+
}
|
|
311
|
+
export declare interface PLayout extends Components.PLayout {
|
|
139
312
|
}
|
|
140
313
|
export declare class PLoader {
|
|
141
314
|
protected z: NgZone;
|
|
142
315
|
protected el: HTMLElement;
|
|
143
316
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
144
317
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLoader, never>;
|
|
145
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
318
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
146
319
|
}
|
|
147
|
-
export declare interface
|
|
320
|
+
export declare interface PLoader extends Components.PLoader {
|
|
321
|
+
}
|
|
322
|
+
export declare class PModal {
|
|
323
|
+
protected z: NgZone;
|
|
324
|
+
protected el: HTMLElement;
|
|
325
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
326
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
|
|
327
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "applyBlur": "applyBlur"; "backdropClickClose": "backdropClickClose"; "header": "header"; "scrollLock": "scrollLock"; "show": "show"; "showClose": "showClose"; "showMobileFooter": "showMobileFooter"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
328
|
+
}
|
|
329
|
+
export declare interface PModal extends Components.PModal {
|
|
330
|
+
/**
|
|
331
|
+
* Close click event
|
|
332
|
+
*/
|
|
333
|
+
closeClicked: EventEmitter<CustomEvent<MouseEvent>>;
|
|
334
|
+
/**
|
|
335
|
+
* Closed event
|
|
336
|
+
*/
|
|
337
|
+
closed: EventEmitter<CustomEvent<null>>;
|
|
338
|
+
}
|
|
339
|
+
export declare class PModalBody {
|
|
340
|
+
protected z: NgZone;
|
|
341
|
+
protected el: HTMLElement;
|
|
342
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
343
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
|
|
344
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "rounded": "rounded"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
345
|
+
}
|
|
346
|
+
export declare interface PModalBody extends Components.PModalBody {
|
|
347
|
+
}
|
|
348
|
+
export declare class PModalContainer {
|
|
349
|
+
protected z: NgZone;
|
|
350
|
+
protected el: HTMLElement;
|
|
351
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
352
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
|
|
353
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "closing": "closing"; "size": "size"; }, {}, never, ["*"], false, never>;
|
|
354
|
+
}
|
|
355
|
+
export declare interface PModalContainer extends Components.PModalContainer {
|
|
356
|
+
}
|
|
357
|
+
export declare class PModalFooter {
|
|
358
|
+
protected z: NgZone;
|
|
359
|
+
protected el: HTMLElement;
|
|
360
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
361
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
|
|
362
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, {}, {}, never, ["*"], false, never>;
|
|
363
|
+
}
|
|
364
|
+
export declare interface PModalFooter extends Components.PModalFooter {
|
|
365
|
+
}
|
|
366
|
+
export declare class PModalHeader {
|
|
367
|
+
protected z: NgZone;
|
|
368
|
+
protected el: HTMLElement;
|
|
369
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
370
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
|
|
371
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, { "showClose": "showClose"; }, {}, never, ["*"], false, never>;
|
|
372
|
+
}
|
|
373
|
+
export declare interface PModalHeader extends Components.PModalHeader {
|
|
374
|
+
/**
|
|
375
|
+
* Close click event
|
|
376
|
+
*/
|
|
377
|
+
close: EventEmitter<CustomEvent<MouseEvent>>;
|
|
378
|
+
}
|
|
379
|
+
export declare class PNavbar {
|
|
380
|
+
protected z: NgZone;
|
|
381
|
+
protected el: HTMLElement;
|
|
382
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
383
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
|
|
384
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, { "closeText": "closeText"; "menuText": "menuText"; }, {}, never, ["*"], false, never>;
|
|
385
|
+
}
|
|
386
|
+
export declare interface PNavbar extends Components.PNavbar {
|
|
148
387
|
}
|
|
149
388
|
export declare class PNavigationItem {
|
|
150
389
|
protected z: NgZone;
|
|
151
390
|
protected el: HTMLElement;
|
|
152
391
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
153
392
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
|
|
154
|
-
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>;
|
|
155
394
|
}
|
|
156
|
-
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 {
|
|
157
405
|
/**
|
|
158
|
-
*
|
|
406
|
+
* Event whenever the size changes
|
|
159
407
|
*/
|
|
160
|
-
|
|
408
|
+
sizeChange: EventEmitter<CustomEvent<number>>;
|
|
161
409
|
}
|
|
162
410
|
export declare class PPagination {
|
|
163
411
|
protected z: NgZone;
|
|
164
412
|
protected el: HTMLElement;
|
|
165
413
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
166
414
|
static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
|
|
167
|
-
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>;
|
|
168
416
|
}
|
|
169
|
-
export declare interface
|
|
417
|
+
export declare interface PPagination extends Components.PPagination {
|
|
418
|
+
/**
|
|
419
|
+
* Event whenever the page changes
|
|
420
|
+
*/
|
|
421
|
+
pageChange: EventEmitter<CustomEvent<number>>;
|
|
170
422
|
}
|
|
171
423
|
export declare class PPaginationItem {
|
|
172
424
|
protected z: NgZone;
|
|
173
425
|
protected el: HTMLElement;
|
|
174
426
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
175
427
|
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationItem, never>;
|
|
176
|
-
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>;
|
|
177
429
|
}
|
|
178
|
-
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 {
|
|
179
440
|
}
|
|
180
441
|
export declare class PSegmentContainer {
|
|
181
442
|
protected z: NgZone;
|
|
182
443
|
protected el: HTMLElement;
|
|
183
444
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
184
445
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
|
|
185
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"]>;
|
|
446
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false, never>;
|
|
186
447
|
}
|
|
187
|
-
export declare interface
|
|
448
|
+
export declare interface PSegmentContainer extends Components.PSegmentContainer {
|
|
188
449
|
}
|
|
189
450
|
export declare class PSegmentItem {
|
|
190
451
|
protected z: NgZone;
|
|
191
452
|
protected el: HTMLElement;
|
|
192
453
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
193
454
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
|
|
194
|
-
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>;
|
|
195
456
|
}
|
|
196
|
-
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"; "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 {
|
|
197
488
|
}
|
|
198
489
|
export declare class PStatus {
|
|
199
490
|
protected z: NgZone;
|
|
200
491
|
protected el: HTMLElement;
|
|
201
492
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
202
493
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
|
|
203
|
-
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>;
|
|
204
495
|
}
|
|
205
|
-
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>>;
|
|
206
619
|
}
|
|
207
620
|
export declare class PTooltip {
|
|
208
621
|
protected z: NgZone;
|
|
209
622
|
protected el: HTMLElement;
|
|
210
623
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
211
624
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
|
|
212
|
-
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"; "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>>;
|
|
213
632
|
}
|