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