@paperless/angular 0.1.0-alpha.8 → 0.1.0-alpha.82
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 +1 -1
- package/esm2020/lib/base/index.mjs +2 -0
- package/esm2020/lib/base/value-accessor.mjs +42 -0
- package/esm2020/lib/directives/index.mjs +4 -0
- package/esm2020/lib/directives/pagination.directive.mjs +42 -0
- package/esm2020/lib/paperless.module.mjs +9 -7
- package/esm2020/lib/stencil/components.mjs +837 -25
- package/esm2020/lib/stencil/index.mjs +34 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/paperless-angular.mjs +925 -32
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +925 -32
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/{paperless-angular.d.ts → index.d.ts} +0 -0
- package/lib/base/index.d.ts +1 -0
- package/lib/base/value-accessor.d.ts +17 -0
- package/lib/directives/index.d.ts +3 -0
- package/lib/directives/pagination.directive.d.ts +10 -0
- package/lib/paperless.module.d.ts +2 -1
- package/lib/stencil/components.d.ts +315 -6
- package/lib/stencil/index.d.ts +1 -1
- package/package.json +6 -6
- package/public-api.d.ts +1 -0
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import { Components } from '@paperless/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
export declare interface PAccordion extends Components.PAccordion {
|
|
5
|
+
/**
|
|
6
|
+
* Open change event
|
|
7
|
+
*/
|
|
8
|
+
isOpen: EventEmitter<CustomEvent<boolean>>;
|
|
9
|
+
}
|
|
10
|
+
export declare class PAccordion {
|
|
11
|
+
protected z: NgZone;
|
|
12
|
+
protected el: HTMLElement;
|
|
13
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion", never, { "closeable": "closeable"; "header": "header"; "open": "open"; "openable": "openable"; }, {}, never, ["*"], false>;
|
|
16
|
+
}
|
|
17
|
+
export declare interface PAvatar extends Components.PAvatar {
|
|
18
|
+
}
|
|
19
|
+
export declare class PAvatar {
|
|
20
|
+
protected z: NgZone;
|
|
21
|
+
protected el: HTMLElement;
|
|
22
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
23
|
+
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>;
|
|
25
|
+
}
|
|
26
|
+
export declare interface PAvatarGroup extends Components.PAvatarGroup {
|
|
27
|
+
}
|
|
28
|
+
export declare class PAvatarGroup {
|
|
29
|
+
protected z: NgZone;
|
|
30
|
+
protected el: HTMLElement;
|
|
31
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PAvatarGroup, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAvatarGroup, "p-avatar-group", never, { "extra": "extra"; }, {}, never, ["*"], false>;
|
|
34
|
+
}
|
|
4
35
|
export declare interface PButton extends Components.PButton {
|
|
5
36
|
/**
|
|
6
37
|
* Button click event
|
|
@@ -12,7 +43,83 @@ export declare class PButton {
|
|
|
12
43
|
protected el: HTMLElement;
|
|
13
44
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
14
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<PButton, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "loading": "loading"; "size": "size"; "target": "target"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "chevron": "chevron"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "loading": "loading"; "size": "size"; "target": "target"; "variant": "variant"; "width": "width"; }, {}, never, ["*"], false>;
|
|
47
|
+
}
|
|
48
|
+
export declare interface PCardBody extends Components.PCardBody {
|
|
49
|
+
}
|
|
50
|
+
export declare class PCardBody {
|
|
51
|
+
protected z: NgZone;
|
|
52
|
+
protected el: HTMLElement;
|
|
53
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCardBody, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardBody, "p-card-body", never, { "inheritText": "inheritText"; }, {}, never, ["*"], false>;
|
|
56
|
+
}
|
|
57
|
+
export declare interface PCardContainer extends Components.PCardContainer {
|
|
58
|
+
}
|
|
59
|
+
export declare class PCardContainer {
|
|
60
|
+
protected z: NgZone;
|
|
61
|
+
protected el: HTMLElement;
|
|
62
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCardContainer, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "hoverable": "hoverable"; "shadow": "shadow"; }, {}, never, ["*"], false>;
|
|
65
|
+
}
|
|
66
|
+
export declare interface PCardHeader extends Components.PCardHeader {
|
|
67
|
+
}
|
|
68
|
+
export declare class PCardHeader {
|
|
69
|
+
protected z: NgZone;
|
|
70
|
+
protected el: HTMLElement;
|
|
71
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCardHeader, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "arrow": "arrow"; "header": "header"; }, {}, never, ["*"], false>;
|
|
74
|
+
}
|
|
75
|
+
export declare interface PCounter extends Components.PCounter {
|
|
76
|
+
}
|
|
77
|
+
export declare class PCounter {
|
|
78
|
+
protected z: NgZone;
|
|
79
|
+
protected el: HTMLElement;
|
|
80
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCounter, never>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, {}, {}, never, ["*"], false>;
|
|
83
|
+
}
|
|
84
|
+
export declare interface PDivider extends Components.PDivider {
|
|
85
|
+
}
|
|
86
|
+
export declare class PDivider {
|
|
87
|
+
protected z: NgZone;
|
|
88
|
+
protected el: HTMLElement;
|
|
89
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
90
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
|
|
91
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, {}, {}, never, ["*"], false>;
|
|
92
|
+
}
|
|
93
|
+
export declare interface PDropdown extends Components.PDropdown {
|
|
94
|
+
/**
|
|
95
|
+
* Open change event
|
|
96
|
+
*/
|
|
97
|
+
isOpen: EventEmitter<CustomEvent<boolean>>;
|
|
98
|
+
}
|
|
99
|
+
export declare class PDropdown {
|
|
100
|
+
protected z: NgZone;
|
|
101
|
+
protected el: HTMLElement;
|
|
102
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
103
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
|
|
104
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "placement": "placement"; "show": "show"; }, {}, never, ["*"], false>;
|
|
105
|
+
}
|
|
106
|
+
export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
|
|
107
|
+
}
|
|
108
|
+
export declare class PDropdownMenuContainer {
|
|
109
|
+
protected z: NgZone;
|
|
110
|
+
protected el: HTMLElement;
|
|
111
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
112
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
|
|
113
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, {}, {}, never, ["*"], false>;
|
|
114
|
+
}
|
|
115
|
+
export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
|
|
116
|
+
}
|
|
117
|
+
export declare class PDropdownMenuItem {
|
|
118
|
+
protected z: NgZone;
|
|
119
|
+
protected el: HTMLElement;
|
|
120
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
121
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
|
|
122
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; }, {}, never, ["*"], false>;
|
|
16
123
|
}
|
|
17
124
|
export declare interface PHelper extends Components.PHelper {
|
|
18
125
|
}
|
|
@@ -21,7 +128,7 @@ export declare class PHelper {
|
|
|
21
128
|
protected el: HTMLElement;
|
|
22
129
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
23
130
|
static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, {}, {}, never, ["*"]>;
|
|
131
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; }, {}, never, ["*"], false>;
|
|
25
132
|
}
|
|
26
133
|
export declare interface PIcon extends Components.PIcon {
|
|
27
134
|
}
|
|
@@ -30,7 +137,7 @@ export declare class PIcon {
|
|
|
30
137
|
protected el: HTMLElement;
|
|
31
138
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
32
139
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
140
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
34
141
|
}
|
|
35
142
|
export declare interface PIllustration extends Components.PIllustration {
|
|
36
143
|
}
|
|
@@ -39,7 +146,34 @@ export declare class PIllustration {
|
|
|
39
146
|
protected el: HTMLElement;
|
|
40
147
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
41
148
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIllustration, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"]>;
|
|
149
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PIllustration, "p-illustration", never, { "variant": "variant"; }, {}, never, ["*"], false>;
|
|
150
|
+
}
|
|
151
|
+
export declare interface PInfoPanel extends Components.PInfoPanel {
|
|
152
|
+
}
|
|
153
|
+
export declare class PInfoPanel {
|
|
154
|
+
protected z: NgZone;
|
|
155
|
+
protected el: HTMLElement;
|
|
156
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
157
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInfoPanel, never>;
|
|
158
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInfoPanel, "p-info-panel", never, { "closeable": "closeable"; "content": "content"; "header": "header"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
159
|
+
}
|
|
160
|
+
export declare interface PInputGroup extends Components.PInputGroup {
|
|
161
|
+
}
|
|
162
|
+
export declare class PInputGroup {
|
|
163
|
+
protected z: NgZone;
|
|
164
|
+
protected el: HTMLElement;
|
|
165
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
166
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
|
|
167
|
+
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>;
|
|
168
|
+
}
|
|
169
|
+
export declare interface PLayout extends Components.PLayout {
|
|
170
|
+
}
|
|
171
|
+
export declare class PLayout {
|
|
172
|
+
protected z: NgZone;
|
|
173
|
+
protected el: HTMLElement;
|
|
174
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
175
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PLayout, never>;
|
|
176
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLayout, "p-layout", never, { "variant": "variant"; }, {}, never, ["*"], false>;
|
|
43
177
|
}
|
|
44
178
|
export declare interface PLoader extends Components.PLoader {
|
|
45
179
|
}
|
|
@@ -48,7 +182,182 @@ export declare class PLoader {
|
|
|
48
182
|
protected el: HTMLElement;
|
|
49
183
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
50
184
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLoader, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
185
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLoader, "p-loader", never, { "color": "color"; "modalDescription": "modalDescription"; "modalTitle": "modalTitle"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
186
|
+
}
|
|
187
|
+
export declare interface PModal extends Components.PModal {
|
|
188
|
+
}
|
|
189
|
+
export declare class PModal {
|
|
190
|
+
protected z: NgZone;
|
|
191
|
+
protected el: HTMLElement;
|
|
192
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
193
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
|
|
194
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModal, "p-modal", never, { "header": "header"; "show": "show"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
195
|
+
}
|
|
196
|
+
export declare interface PModalBackdrop extends Components.PModalBackdrop {
|
|
197
|
+
}
|
|
198
|
+
export declare class PModalBackdrop {
|
|
199
|
+
protected z: NgZone;
|
|
200
|
+
protected el: HTMLElement;
|
|
201
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
202
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalBackdrop, never>;
|
|
203
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalBackdrop, "p-modal-backdrop", never, {}, {}, never, ["*"], false>;
|
|
204
|
+
}
|
|
205
|
+
export declare interface PModalBody extends Components.PModalBody {
|
|
206
|
+
}
|
|
207
|
+
export declare class PModalBody {
|
|
208
|
+
protected z: NgZone;
|
|
209
|
+
protected el: HTMLElement;
|
|
210
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
211
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalBody, never>;
|
|
212
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalBody, "p-modal-body", never, { "variant": "variant"; }, {}, never, ["*"], false>;
|
|
213
|
+
}
|
|
214
|
+
export declare interface PModalContainer extends Components.PModalContainer {
|
|
215
|
+
}
|
|
216
|
+
export declare class PModalContainer {
|
|
217
|
+
protected z: NgZone;
|
|
218
|
+
protected el: HTMLElement;
|
|
219
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
220
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalContainer, never>;
|
|
221
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalContainer, "p-modal-container", never, { "size": "size"; }, {}, never, ["*"], false>;
|
|
222
|
+
}
|
|
223
|
+
export declare interface PModalFooter extends Components.PModalFooter {
|
|
224
|
+
}
|
|
225
|
+
export declare class PModalFooter {
|
|
226
|
+
protected z: NgZone;
|
|
227
|
+
protected el: HTMLElement;
|
|
228
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
229
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalFooter, never>;
|
|
230
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalFooter, "p-modal-footer", never, {}, {}, never, ["*"], false>;
|
|
231
|
+
}
|
|
232
|
+
export declare interface PModalHeader extends Components.PModalHeader {
|
|
233
|
+
}
|
|
234
|
+
export declare class PModalHeader {
|
|
235
|
+
protected z: NgZone;
|
|
236
|
+
protected el: HTMLElement;
|
|
237
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
238
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModalHeader, never>;
|
|
239
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModalHeader, "p-modal-header", never, {}, {}, never, ["*"], false>;
|
|
240
|
+
}
|
|
241
|
+
export declare interface PNavigationItem extends Components.PNavigationItem {
|
|
242
|
+
}
|
|
243
|
+
export declare class PNavigationItem {
|
|
244
|
+
protected z: NgZone;
|
|
245
|
+
protected el: HTMLElement;
|
|
246
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
247
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
|
|
248
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false>;
|
|
249
|
+
}
|
|
250
|
+
export declare interface PPagination extends Components.PPagination {
|
|
251
|
+
/**
|
|
252
|
+
*
|
|
253
|
+
*/
|
|
254
|
+
pageChange: EventEmitter<CustomEvent<number>>;
|
|
255
|
+
}
|
|
256
|
+
export declare class PPagination {
|
|
257
|
+
protected z: NgZone;
|
|
258
|
+
protected el: HTMLElement;
|
|
259
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
260
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
|
|
261
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false>;
|
|
262
|
+
}
|
|
263
|
+
export declare interface PPaginationItem extends Components.PPaginationItem {
|
|
264
|
+
}
|
|
265
|
+
export declare class PPaginationItem {
|
|
266
|
+
protected z: NgZone;
|
|
267
|
+
protected el: HTMLElement;
|
|
268
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
269
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationItem, never>;
|
|
270
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationItem, "p-pagination-item", never, { "active": "active"; }, {}, never, ["*"], false>;
|
|
271
|
+
}
|
|
272
|
+
export declare interface PProfile extends Components.PProfile {
|
|
273
|
+
}
|
|
274
|
+
export declare class PProfile {
|
|
275
|
+
protected z: NgZone;
|
|
276
|
+
protected el: HTMLElement;
|
|
277
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
278
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
|
|
279
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, {}, {}, never, ["*"], false>;
|
|
280
|
+
}
|
|
281
|
+
export declare interface PSegmentContainer extends Components.PSegmentContainer {
|
|
282
|
+
}
|
|
283
|
+
export declare class PSegmentContainer {
|
|
284
|
+
protected z: NgZone;
|
|
285
|
+
protected el: HTMLElement;
|
|
286
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
287
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentContainer, never>;
|
|
288
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentContainer, "p-segment-container", never, {}, {}, never, ["*"], false>;
|
|
289
|
+
}
|
|
290
|
+
export declare interface PSegmentItem extends Components.PSegmentItem {
|
|
291
|
+
}
|
|
292
|
+
export declare class PSegmentItem {
|
|
293
|
+
protected z: NgZone;
|
|
294
|
+
protected el: HTMLElement;
|
|
295
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
296
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentItem, never>;
|
|
297
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentItem, "p-segment-item", never, { "active": "active"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; }, {}, never, ["*"], false>;
|
|
298
|
+
}
|
|
299
|
+
export declare interface PStatus extends Components.PStatus {
|
|
300
|
+
}
|
|
301
|
+
export declare class PStatus {
|
|
302
|
+
protected z: NgZone;
|
|
303
|
+
protected el: HTMLElement;
|
|
304
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
305
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
|
|
306
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
307
|
+
}
|
|
308
|
+
export declare interface PStepper extends Components.PStepper {
|
|
309
|
+
}
|
|
310
|
+
export declare class PStepper {
|
|
311
|
+
protected z: NgZone;
|
|
312
|
+
protected el: HTMLElement;
|
|
313
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
314
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
|
|
315
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "direction": "direction"; }, {}, never, ["*"], false>;
|
|
316
|
+
}
|
|
317
|
+
export declare interface PStepperItem extends Components.PStepperItem {
|
|
318
|
+
}
|
|
319
|
+
export declare class PStepperItem {
|
|
320
|
+
protected z: NgZone;
|
|
321
|
+
protected el: HTMLElement;
|
|
322
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
323
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
|
|
324
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "direction": "direction"; "finished": "finished"; }, {}, never, ["*"], false>;
|
|
325
|
+
}
|
|
326
|
+
export declare interface PStepperLine extends Components.PStepperLine {
|
|
327
|
+
}
|
|
328
|
+
export declare class PStepperLine {
|
|
329
|
+
protected z: NgZone;
|
|
330
|
+
protected el: HTMLElement;
|
|
331
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
332
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperLine, never>;
|
|
333
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperLine, "p-stepper-line", never, { "active": "active"; "direction": "direction"; }, {}, never, ["*"], false>;
|
|
334
|
+
}
|
|
335
|
+
export declare interface PTabGroup extends Components.PTabGroup {
|
|
336
|
+
}
|
|
337
|
+
export declare class PTabGroup {
|
|
338
|
+
protected z: NgZone;
|
|
339
|
+
protected el: HTMLElement;
|
|
340
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
341
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTabGroup, never>;
|
|
342
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabGroup, "p-tab-group", never, {}, {}, never, ["*"], false>;
|
|
343
|
+
}
|
|
344
|
+
export declare interface PTabItem extends Components.PTabItem {
|
|
345
|
+
}
|
|
346
|
+
export declare class PTabItem {
|
|
347
|
+
protected z: NgZone;
|
|
348
|
+
protected el: HTMLElement;
|
|
349
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
350
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTabItem, never>;
|
|
351
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabItem, "p-tab-item", never, { "active": "active"; }, {}, never, ["*"], false>;
|
|
352
|
+
}
|
|
353
|
+
export declare interface PTag extends Components.PTag {
|
|
354
|
+
}
|
|
355
|
+
export declare class PTag {
|
|
356
|
+
protected z: NgZone;
|
|
357
|
+
protected el: HTMLElement;
|
|
358
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
359
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PTag, never>;
|
|
360
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTag, "p-tag", never, { "circle": "circle"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
52
361
|
}
|
|
53
362
|
export declare interface PTooltip extends Components.PTooltip {
|
|
54
363
|
}
|
|
@@ -57,5 +366,5 @@ export declare class PTooltip {
|
|
|
57
366
|
protected el: HTMLElement;
|
|
58
367
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
59
368
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "
|
|
369
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "placement": "placement"; "popover": "popover"; "show": "show"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
61
370
|
}
|
package/lib/stencil/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.PButton | typeof d.PHelper | typeof d.PIcon | typeof d.PIllustration | typeof d.PLoader | typeof d.PTooltip)[];
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PButton | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PCounter | typeof d.PDivider | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PHelper | typeof d.PIcon | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputGroup | typeof d.PLayout | typeof d.PLoader | typeof d.PModal | typeof d.PModalBackdrop | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavigationItem | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PProfile | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTag | typeof d.PTooltip)[];
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paperless/angular",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.82",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^13.3.0",
|
|
6
|
-
"@angular/core": "^13.3.0"
|
|
5
|
+
"@angular/common": "^13.3.0 || ^14.0.0",
|
|
6
|
+
"@angular/core": "^13.3.0 || ^14.0.0"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"tslib": "
|
|
9
|
+
"tslib": "2.4.0"
|
|
10
10
|
},
|
|
11
11
|
"module": "fesm2015/paperless-angular.mjs",
|
|
12
12
|
"es2020": "fesm2020/paperless-angular.mjs",
|
|
13
13
|
"esm2020": "esm2020/paperless-angular.mjs",
|
|
14
14
|
"fesm2020": "fesm2020/paperless-angular.mjs",
|
|
15
15
|
"fesm2015": "fesm2015/paperless-angular.mjs",
|
|
16
|
-
"typings": "
|
|
16
|
+
"typings": "index.d.ts",
|
|
17
17
|
"exports": {
|
|
18
18
|
"./package.json": {
|
|
19
19
|
"default": "./package.json"
|
|
20
20
|
},
|
|
21
21
|
".": {
|
|
22
|
-
"types": "./
|
|
22
|
+
"types": "./index.d.ts",
|
|
23
23
|
"esm2020": "./esm2020/paperless-angular.mjs",
|
|
24
24
|
"es2020": "./fesm2020/paperless-angular.mjs",
|
|
25
25
|
"es2015": "./fesm2015/paperless-angular.mjs",
|
package/public-api.d.ts
CHANGED