@paperless/angular 2.0.1-beta.112 → 2.0.1-beta.114
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/esm2020/lib/modules/table/components/table/table.component.mjs +4 -1
- package/esm2020/lib/stencil/components.mjs +75 -129
- package/esm2020/lib/stencil/index.mjs +4 -6
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +77 -128
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +77 -128
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/stencil/components.d.ts +36 -50
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +1 -1
- package/package.json +1 -1
|
@@ -20,17 +20,21 @@ export declare class PAttachment {
|
|
|
20
20
|
protected el: HTMLPAttachmentElement;
|
|
21
21
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<PAttachment, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PAttachment, "p-attachment", never, { "
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAttachment, "p-attachment", never, { "deleteTooltip": "deleteTooltip"; "downloadTooltip": "downloadTooltip"; "error": "error"; "helper": "helper"; "label": "label"; "loading": "loading"; "mode": "mode"; "placeholder": "placeholder"; "required": "required"; "uploadTooltip": "uploadTooltip"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
24
24
|
}
|
|
25
25
|
export declare interface PAttachment extends Components.PAttachment {
|
|
26
|
+
/**
|
|
27
|
+
* Event when upload is pressed
|
|
28
|
+
*/
|
|
29
|
+
upload: EventEmitter<CustomEvent<void>>;
|
|
26
30
|
/**
|
|
27
31
|
* Event when download is pressed
|
|
28
32
|
*/
|
|
29
|
-
download: EventEmitter<CustomEvent<
|
|
33
|
+
download: EventEmitter<CustomEvent<void>>;
|
|
30
34
|
/**
|
|
31
35
|
* Event when delete is pressed
|
|
32
36
|
*/
|
|
33
|
-
delete: EventEmitter<CustomEvent<
|
|
37
|
+
delete: EventEmitter<CustomEvent<void>>;
|
|
34
38
|
}
|
|
35
39
|
export declare class PAvatar {
|
|
36
40
|
protected z: NgZone;
|
|
@@ -160,15 +164,6 @@ export declare class PContentSlider {
|
|
|
160
164
|
}
|
|
161
165
|
export declare interface PContentSlider extends Components.PContentSlider {
|
|
162
166
|
}
|
|
163
|
-
export declare class PCounter {
|
|
164
|
-
protected z: NgZone;
|
|
165
|
-
protected el: HTMLPCounterElement;
|
|
166
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
167
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PCounter, never>;
|
|
168
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
169
|
-
}
|
|
170
|
-
export declare interface PCounter extends Components.PCounter {
|
|
171
|
-
}
|
|
172
167
|
export declare class PCropper {
|
|
173
168
|
protected z: NgZone;
|
|
174
169
|
protected el: HTMLPCropperElement;
|
|
@@ -407,24 +402,6 @@ export declare interface PInfoPanel extends Components.PInfoPanel {
|
|
|
407
402
|
*/
|
|
408
403
|
closed: EventEmitter<CustomEvent<void>>;
|
|
409
404
|
}
|
|
410
|
-
export declare class PInputError {
|
|
411
|
-
protected z: NgZone;
|
|
412
|
-
protected el: HTMLPInputErrorElement;
|
|
413
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
414
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputError, never>;
|
|
415
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputError, "p-input-error", never, { "error": "error"; "forceShowTooltip": "forceShowTooltip"; }, {}, never, ["*"], false, never>;
|
|
416
|
-
}
|
|
417
|
-
export declare interface PInputError extends Components.PInputError {
|
|
418
|
-
}
|
|
419
|
-
export declare class PInputGroup {
|
|
420
|
-
protected z: NgZone;
|
|
421
|
-
protected el: HTMLPInputGroupElement;
|
|
422
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
423
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
|
|
424
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputGroup, "p-input-group", never, { "disabled": "disabled"; "error": "error"; "errorVariant": "errorVariant"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "prefix": "prefix"; "required": "required"; "size": "size"; "suffix": "suffix"; }, {}, never, ["*"], false, never>;
|
|
425
|
-
}
|
|
426
|
-
export declare interface PInputGroup extends Components.PInputGroup {
|
|
427
|
-
}
|
|
428
405
|
export declare class PLabel {
|
|
429
406
|
protected z: NgZone;
|
|
430
407
|
protected el: HTMLPLabelElement;
|
|
@@ -447,6 +424,33 @@ export declare interface PLayout extends Components.PLayout {
|
|
|
447
424
|
*/
|
|
448
425
|
scroll: EventEmitter<CustomEvent<any>>;
|
|
449
426
|
}
|
|
427
|
+
export declare class PListing {
|
|
428
|
+
protected z: NgZone;
|
|
429
|
+
protected el: HTMLPListingElement;
|
|
430
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
431
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListing, never>;
|
|
432
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListing, "p-listing", never, {}, {}, never, ["*"], false, never>;
|
|
433
|
+
}
|
|
434
|
+
export declare interface PListing extends Components.PListing {
|
|
435
|
+
}
|
|
436
|
+
export declare class PListingItem {
|
|
437
|
+
protected z: NgZone;
|
|
438
|
+
protected el: HTMLPListingItemElement;
|
|
439
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
440
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListingItem, never>;
|
|
441
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListingItem, "p-listing-item", never, { "icon": "icon"; }, {}, never, ["*"], false, never>;
|
|
442
|
+
}
|
|
443
|
+
export declare interface PListingItem extends Components.PListingItem {
|
|
444
|
+
}
|
|
445
|
+
export declare class PListingLine {
|
|
446
|
+
protected z: NgZone;
|
|
447
|
+
protected el: HTMLPListingLineElement;
|
|
448
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
449
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListingLine, never>;
|
|
450
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListingLine, "p-listing-line", never, {}, {}, never, ["*"], false, never>;
|
|
451
|
+
}
|
|
452
|
+
export declare interface PListingLine extends Components.PListingLine {
|
|
453
|
+
}
|
|
450
454
|
export declare class PLoader {
|
|
451
455
|
protected z: NgZone;
|
|
452
456
|
protected el: HTMLPLoaderElement;
|
|
@@ -687,15 +691,6 @@ export declare interface PSelect extends Components.PSelect {
|
|
|
687
691
|
*/
|
|
688
692
|
add: EventEmitter<CustomEvent<any>>;
|
|
689
693
|
}
|
|
690
|
-
export declare class PSliderIndicator {
|
|
691
|
-
protected z: NgZone;
|
|
692
|
-
protected el: HTMLPSliderIndicatorElement;
|
|
693
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
694
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PSliderIndicator, never>;
|
|
695
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSliderIndicator, "p-slider-indicator", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
696
|
-
}
|
|
697
|
-
export declare interface PSliderIndicator extends Components.PSliderIndicator {
|
|
698
|
-
}
|
|
699
694
|
export declare class PSmile {
|
|
700
695
|
protected z: NgZone;
|
|
701
696
|
protected el: HTMLPSmileElement;
|
|
@@ -705,21 +700,12 @@ export declare class PSmile {
|
|
|
705
700
|
}
|
|
706
701
|
export declare interface PSmile extends Components.PSmile {
|
|
707
702
|
}
|
|
708
|
-
export declare class PStatus {
|
|
709
|
-
protected z: NgZone;
|
|
710
|
-
protected el: HTMLPStatusElement;
|
|
711
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
712
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
|
|
713
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
714
|
-
}
|
|
715
|
-
export declare interface PStatus extends Components.PStatus {
|
|
716
|
-
}
|
|
717
703
|
export declare class PStepper {
|
|
718
704
|
protected z: NgZone;
|
|
719
705
|
protected el: HTMLPStepperElement;
|
|
720
706
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
721
707
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
|
|
722
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "contentPosition": "contentPosition"; "direction": "direction"; "enableAutoStatus": "enableAutoStatus"; }, {}, never, ["*"], false, never>;
|
|
708
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "enableAutoStatus": "enableAutoStatus"; }, {}, never, ["*"], false, never>;
|
|
723
709
|
}
|
|
724
710
|
export declare interface PStepper extends Components.PStepper {
|
|
725
711
|
}
|
|
@@ -728,7 +714,7 @@ export declare class PStepperItem {
|
|
|
728
714
|
protected el: HTMLPStepperItemElement;
|
|
729
715
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
730
716
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
|
|
731
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "
|
|
717
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "finished": "finished"; "number": "number"; }, {}, never, ["*"], false, never>;
|
|
732
718
|
}
|
|
733
719
|
export declare interface PStepperItem extends Components.PStepperItem {
|
|
734
720
|
}
|
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.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PBadge | typeof d.PButton | typeof d.PButtonGroup | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PCheckbox | typeof d.PContentSlider | typeof d.
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PBadge | typeof d.PButton | typeof d.PButtonGroup | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PCheckbox | typeof d.PContentSlider | typeof d.PCropper | typeof d.PDatepicker | typeof d.PDivider | typeof d.PDrawer | typeof d.PDrawerBody | typeof d.PDrawerContainer | typeof d.PDrawerHeader | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PEmptyState | typeof d.PField | typeof d.PFieldContainer | typeof d.PFloatingMenuContainer | typeof d.PFloatingMenuItem | typeof d.PHelper | typeof d.PIbanIcon | typeof d.PIcon | typeof d.PIllustration | typeof d.PIllustrationDeprecated | typeof d.PInfoPanel | typeof d.PLabel | typeof d.PLayout | typeof d.PListing | typeof d.PListingItem | typeof d.PListingLine | typeof d.PLoader | typeof d.PModal | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavbar | typeof d.PNavigationItem | typeof d.PNavigationSection | typeof d.PNavigationTitle | typeof d.PPagination | typeof d.PPaginationPages | typeof d.PPaginationPagesItem | typeof d.PPaginationSize | typeof d.PPortal | typeof d.PProfile | typeof d.PRadio | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PSelect | typeof d.PSmile | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabContainer | typeof d.PTabItem | typeof d.PTableContainer | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | typeof d.PTableRowActionsContainer | typeof d.PToast | typeof d.PToggle | typeof d.PTooltip)[];
|
package/lib/stencil.module.d.ts
CHANGED
|
@@ -2,6 +2,6 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./stencil/components";
|
|
3
3
|
export declare class StencilModule {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<StencilModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PCheckbox, typeof i1.PContentSlider, typeof i1.
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PCheckbox, typeof i1.PContentSlider, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PEmptyState, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PIllustrationDeprecated, typeof i1.PInfoPanel, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PListing, typeof i1.PListingItem, typeof i1.PListingLine, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPagination, typeof i1.PPaginationPages, typeof i1.PPaginationPagesItem, typeof i1.PPaginationSize, typeof i1.PPortal, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSmile, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabContainer, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PTableRowActionsContainer, typeof i1.PToast, typeof i1.PToggle, typeof i1.PTooltip], never, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PCheckbox, typeof i1.PContentSlider, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PEmptyState, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PIllustrationDeprecated, typeof i1.PInfoPanel, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PListing, typeof i1.PListingItem, typeof i1.PListingLine, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPagination, typeof i1.PPaginationPages, typeof i1.PPaginationPagesItem, typeof i1.PPaginationSize, typeof i1.PPortal, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSmile, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabContainer, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PTableRowActionsContainer, typeof i1.PToast, typeof i1.PToggle, typeof i1.PTooltip]>;
|
|
6
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<StencilModule>;
|
|
7
7
|
}
|