@paperless/angular 2.0.1-beta.33 → 2.0.1-beta.34
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/directives/index.mjs +9 -9
- package/esm2020/lib/directives/p-pagination-pages.directive.mjs +41 -0
- package/esm2020/lib/directives/p-pagination-size.directive.mjs +41 -0
- package/esm2020/lib/modules/table/components/table/table.component.mjs +4 -6
- package/esm2020/lib/paperless.module.mjs +4 -4
- package/esm2020/lib/stencil/components.mjs +70 -43
- package/esm2020/lib/stencil/index.mjs +4 -3
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +149 -124
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +149 -124
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/directives/index.d.ts +6 -6
- package/lib/directives/p-pagination-pages.directive.d.ts +10 -0
- package/lib/directives/{p-page-size-select.directive.d.ts → p-pagination-size.directive.d.ts} +3 -3
- package/lib/paperless.module.d.ts +3 -3
- package/lib/stencil/components.d.ts +43 -18
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +1 -1
- package/package.json +1 -1
- package/paperless.css +0 -10
- package/esm2020/lib/directives/p-page-size-select.directive.mjs +0 -41
- package/esm2020/lib/directives/p-pagination.directive.mjs +0 -41
- package/lib/directives/p-pagination.directive.d.ts +0 -10
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
export * from './p-checkbox.directive';
|
|
1
2
|
export * from './p-cropper.directive';
|
|
2
3
|
export * from './p-datepicker.directive';
|
|
3
|
-
export * from './p-page-size-select.directive';
|
|
4
|
-
export * from './p-pagination.directive';
|
|
5
|
-
export * from './p-select.directive';
|
|
6
4
|
export * from './p-field.directive';
|
|
5
|
+
export * from './p-pagination-pages.directive';
|
|
6
|
+
export * from './p-pagination-size.directive';
|
|
7
7
|
export * from './p-radio.directive';
|
|
8
|
-
export * from './p-
|
|
8
|
+
export * from './p-select.directive';
|
|
9
9
|
export * from './p-toggle.directive';
|
|
10
|
-
import {
|
|
10
|
+
import { CheckboxDirective } from './p-checkbox.directive';
|
|
11
11
|
import { RadioDirective } from './p-radio.directive';
|
|
12
|
-
export declare const DIRECTIVES: (typeof
|
|
12
|
+
export declare const DIRECTIVES: (typeof CheckboxDirective | typeof RadioDirective)[];
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { BaseValueAccessor } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PaginationPagesDirective extends BaseValueAccessor {
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
writeValue(value: any): void;
|
|
7
|
+
registerOnChange(fn: (_: number | null) => void): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationPagesDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PaginationPagesDirective, "p-pagination-pages", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
package/lib/directives/{p-page-size-select.directive.d.ts → p-pagination-size.directive.d.ts}
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { BaseValueAccessor } from '../base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class PaginationSizeDirective extends BaseValueAccessor {
|
|
5
5
|
constructor(el: ElementRef);
|
|
6
6
|
writeValue(value: any): void;
|
|
7
7
|
registerOnChange(fn: (_: number | null) => void): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationSizeDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PaginationSizeDirective, "p-pagination-size", never, {}, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./directives/p-pagination.directive";
|
|
4
|
-
import * as i2 from "./directives/p-
|
|
3
|
+
import * as i1 from "./directives/p-pagination-size.directive";
|
|
4
|
+
import * as i2 from "./directives/p-pagination-pages.directive";
|
|
5
5
|
import * as i3 from "./directives/p-select.directive";
|
|
6
6
|
import * as i4 from "./directives/p-datepicker.directive";
|
|
7
7
|
import * as i5 from "./directives/p-cropper.directive";
|
|
@@ -20,6 +20,6 @@ import * as i17 from "./modules/overlay/overlay.module";
|
|
|
20
20
|
export declare class PaperlessModule {
|
|
21
21
|
static forRoot(): ModuleWithProviders<PaperlessModule>;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaperlessModule, never>;
|
|
23
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PaperlessModule, [typeof i1.
|
|
23
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PaperlessModule, [typeof i1.PaginationSizeDirective, typeof i2.PaginationPagesDirective, typeof i3.SelectDirective, typeof i4.DatepickerDirective, typeof i5.CropperDirective, typeof i6.FieldDirective, typeof i7.RadioDirective, typeof i8.CheckboxDirective, typeof i9.ToggleDirective, typeof i10.CustomCurrencyPipe, typeof i11.CustomDatePipe, typeof i12.SafePipe], [typeof i13.CommonModule, typeof i14.StencilModule, typeof i15.TableModule, typeof i16.ToastModule, typeof i17.OverlayModule], [typeof i14.StencilModule, typeof i15.TableModule, typeof i16.ToastModule, typeof i17.OverlayModule, typeof i1.PaginationSizeDirective, typeof i2.PaginationPagesDirective, typeof i3.SelectDirective, typeof i4.DatepickerDirective, typeof i5.CropperDirective, typeof i6.FieldDirective, typeof i7.RadioDirective, typeof i8.CheckboxDirective, typeof i9.ToggleDirective, typeof i10.CustomCurrencyPipe, typeof i11.CustomDatePipe, typeof i12.SafePipe]>;
|
|
24
24
|
static ɵinj: i0.ɵɵInjectorDeclaration<PaperlessModule>;
|
|
25
25
|
}
|
|
@@ -261,7 +261,7 @@ export declare class PDropdown {
|
|
|
261
261
|
protected el: HTMLElement;
|
|
262
262
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
263
263
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
|
|
264
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "calculateWidth": "calculateWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "offset": "offset"; "placement": "placement"; "scrollable": "scrollable"; "show": "show"; "strategy": "strategy"; "usePortal": "usePortal"; }, {}, never, ["*"], false, never>;
|
|
264
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "calculateWidth": "calculateWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "offset": "offset"; "placement": "placement"; "scrollable": "scrollable"; "show": "show"; "strategy": "strategy"; "usePortal": "usePortal"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
265
265
|
}
|
|
266
266
|
export declare interface PDropdown extends Components.PDropdown {
|
|
267
267
|
/**
|
|
@@ -274,7 +274,7 @@ export declare class PDropdownMenuContainer {
|
|
|
274
274
|
protected el: HTMLElement;
|
|
275
275
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
276
276
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
|
|
277
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "allowOverflow": "allowOverflow"; "class": "class"; "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; "scrollable": "scrollable"; }, {}, never, ["*"], false, never>;
|
|
277
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "allowOverflow": "allowOverflow"; "class": "class"; "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; "scrollable": "scrollable"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
278
278
|
}
|
|
279
279
|
export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
|
|
280
280
|
}
|
|
@@ -319,16 +319,20 @@ export declare class PFloatingMenuContainer {
|
|
|
319
319
|
protected el: HTMLElement;
|
|
320
320
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
321
321
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuContainer, never>;
|
|
322
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuContainer, "p-floating-menu-container", never, { "usedInTable": "usedInTable"; }, {}, never, ["*"], false, never>;
|
|
322
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuContainer, "p-floating-menu-container", never, { "amount": "amount"; "amountSelectedTemplate": "amountSelectedTemplate"; "enableAmountSelected": "enableAmountSelected"; "enableClose": "enableClose"; "usedInTable": "usedInTable"; }, {}, never, ["*"], false, never>;
|
|
323
323
|
}
|
|
324
324
|
export declare interface PFloatingMenuContainer extends Components.PFloatingMenuContainer {
|
|
325
|
+
/**
|
|
326
|
+
* Event whenever the close button is clicked
|
|
327
|
+
*/
|
|
328
|
+
close: EventEmitter<CustomEvent<MouseEvent>>;
|
|
325
329
|
}
|
|
326
330
|
export declare class PFloatingMenuItem {
|
|
327
331
|
protected z: NgZone;
|
|
328
332
|
protected el: HTMLElement;
|
|
329
333
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
330
334
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuItem, never>;
|
|
331
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuItem, "p-floating-menu-item", never, { "disabled": "disabled"; "hover": "hover"; }, {}, never, ["*"], false, never>;
|
|
335
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuItem, "p-floating-menu-item", never, { "disabled": "disabled"; "hover": "hover"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "loading": "loading"; }, {}, never, ["*"], false, never>;
|
|
332
336
|
}
|
|
333
337
|
export declare interface PFloatingMenuItem extends Components.PFloatingMenuItem {
|
|
334
338
|
}
|
|
@@ -528,40 +532,61 @@ export declare class PNavigationTitle {
|
|
|
528
532
|
}
|
|
529
533
|
export declare interface PNavigationTitle extends Components.PNavigationTitle {
|
|
530
534
|
}
|
|
531
|
-
export declare class
|
|
535
|
+
export declare class PPagination {
|
|
532
536
|
protected z: NgZone;
|
|
533
537
|
protected el: HTMLElement;
|
|
534
538
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
535
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
536
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
539
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
|
|
540
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination", never, { "enablePaginationPages": "enablePaginationPages"; "enablePaginationSize": "enablePaginationSize"; "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "total": "total"; }, {}, never, ["*"], false, never>;
|
|
537
541
|
}
|
|
538
|
-
export declare interface
|
|
542
|
+
export declare interface PPagination extends Components.PPagination {
|
|
539
543
|
/**
|
|
540
|
-
* Event whenever the
|
|
544
|
+
* Event whenever the page changes
|
|
541
545
|
*/
|
|
542
|
-
|
|
546
|
+
pageChange: EventEmitter<CustomEvent<number>>;
|
|
547
|
+
/**
|
|
548
|
+
* Event whenever the page changes
|
|
549
|
+
*/
|
|
550
|
+
pageSizeChange: EventEmitter<CustomEvent<number>>;
|
|
543
551
|
}
|
|
544
|
-
export declare class
|
|
552
|
+
export declare class PPaginationPages {
|
|
545
553
|
protected z: NgZone;
|
|
546
554
|
protected el: HTMLElement;
|
|
547
555
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
548
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
549
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
556
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationPages, never>;
|
|
557
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationPages, "p-pagination-pages", never, { "hideOnSinglePage": "hideOnSinglePage"; "page": "page"; "pageSize": "pageSize"; "total": "total"; }, {}, never, ["*"], false, never>;
|
|
550
558
|
}
|
|
551
|
-
export declare interface
|
|
559
|
+
export declare interface PPaginationPages extends Components.PPaginationPages {
|
|
552
560
|
/**
|
|
553
561
|
* Event whenever the page changes
|
|
554
562
|
*/
|
|
555
563
|
pageChange: EventEmitter<CustomEvent<number>>;
|
|
564
|
+
/**
|
|
565
|
+
* The pages that were generated
|
|
566
|
+
*/
|
|
567
|
+
pagesChange: EventEmitter<CustomEvent<number>>;
|
|
568
|
+
}
|
|
569
|
+
export declare class PPaginationPagesItem {
|
|
570
|
+
protected z: NgZone;
|
|
571
|
+
protected el: HTMLElement;
|
|
572
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
573
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationPagesItem, never>;
|
|
574
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationPagesItem, "p-pagination-pages-item", never, { "active": "active"; "disabled": "disabled"; "hover": "hover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
556
575
|
}
|
|
557
|
-
export declare
|
|
576
|
+
export declare interface PPaginationPagesItem extends Components.PPaginationPagesItem {
|
|
577
|
+
}
|
|
578
|
+
export declare class PPaginationSize {
|
|
558
579
|
protected z: NgZone;
|
|
559
580
|
protected el: HTMLElement;
|
|
560
581
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
561
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
562
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
582
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPaginationSize, never>;
|
|
583
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPaginationSize, "p-pagination-size", never, { "hidden": "hidden"; "itemTemplate": "itemTemplate"; "size": "size"; "sizeOptions": "sizeOptions"; }, {}, never, ["*"], false, never>;
|
|
563
584
|
}
|
|
564
|
-
export declare interface
|
|
585
|
+
export declare interface PPaginationSize extends Components.PPaginationSize {
|
|
586
|
+
/**
|
|
587
|
+
* Event whenever the size changes
|
|
588
|
+
*/
|
|
589
|
+
sizeChange: EventEmitter<CustomEvent<number>>;
|
|
565
590
|
}
|
|
566
591
|
export declare class PPortal {
|
|
567
592
|
protected z: NgZone;
|
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.PCounter | 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.PField | typeof d.PFieldContainer | typeof d.PFloatingMenuContainer | typeof d.PFloatingMenuItem | typeof d.PHelper | typeof d.PIbanIcon | typeof d.PIcon | typeof d.PIconDeprecated | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputError | typeof d.PInputGroup | typeof d.PLabel | typeof d.PLayout | 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.
|
|
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.PCounter | 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.PField | typeof d.PFieldContainer | typeof d.PFloatingMenuContainer | typeof d.PFloatingMenuItem | typeof d.PHelper | typeof d.PIbanIcon | typeof d.PIcon | typeof d.PIconDeprecated | typeof d.PIllustration | typeof d.PInfoPanel | typeof d.PInputError | typeof d.PInputGroup | typeof d.PLabel | typeof d.PLayout | 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.PSliderIndicator | typeof d.PStatus | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabGroup | typeof d.PTabItem | typeof d.PTableContainer | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | 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.PCounter, 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.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PInputGroup, typeof i1.PLabel, typeof i1.PLayout, 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.
|
|
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.PCounter, 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.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PInputGroup, typeof i1.PLabel, typeof i1.PLayout, 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.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, 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.PCounter, 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.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIconDeprecated, typeof i1.PIllustration, typeof i1.PInfoPanel, typeof i1.PInputError, typeof i1.PInputGroup, typeof i1.PLabel, typeof i1.PLayout, 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.PSliderIndicator, typeof i1.PStatus, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabGroup, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PToast, typeof i1.PToggle, typeof i1.PTooltip]>;
|
|
6
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<StencilModule>;
|
|
7
7
|
}
|
package/package.json
CHANGED
package/paperless.css
CHANGED
|
@@ -38,11 +38,6 @@
|
|
|
38
38
|
top: 0px !important
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
.mx-0 {
|
|
42
|
-
margin-left: 0px !important;
|
|
43
|
-
margin-right: 0px !important
|
|
44
|
-
}
|
|
45
|
-
|
|
46
41
|
.mb-14 {
|
|
47
42
|
margin-bottom: 3.5rem !important
|
|
48
43
|
}
|
|
@@ -238,11 +233,6 @@
|
|
|
238
233
|
font-weight: 600 !important
|
|
239
234
|
}
|
|
240
235
|
|
|
241
|
-
.text-storm {
|
|
242
|
-
--tw-text-opacity: 1 !important;
|
|
243
|
-
color: rgb(81 83 107 / var(--tw-text-opacity, 1)) !important
|
|
244
|
-
}
|
|
245
|
-
|
|
246
236
|
.text-storm-dark {
|
|
247
237
|
--tw-text-opacity: 1 !important;
|
|
248
238
|
color: rgb(39 40 56 / var(--tw-text-opacity, 1)) !important
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { Directive } from '@angular/core';
|
|
2
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
|
-
import { BaseValueAccessor } from '../base';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class PageSizeSelectDirective extends BaseValueAccessor {
|
|
6
|
-
constructor(el) {
|
|
7
|
-
super(el);
|
|
8
|
-
}
|
|
9
|
-
writeValue(value) {
|
|
10
|
-
this.el.nativeElement.page = this.lastValue = value == null ? 12 : value;
|
|
11
|
-
}
|
|
12
|
-
registerOnChange(fn) {
|
|
13
|
-
super.registerOnChange(value => fn(parseInt(value, 10)));
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
PageSizeSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PageSizeSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
17
|
-
PageSizeSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: PageSizeSelectDirective, selector: "p-page-size-select", host: { listeners: { "sizeChange": "handleChangeEvent($event.detail)" } }, providers: [
|
|
18
|
-
{
|
|
19
|
-
provide: NG_VALUE_ACCESSOR,
|
|
20
|
-
useExisting: PageSizeSelectDirective,
|
|
21
|
-
multi: true,
|
|
22
|
-
},
|
|
23
|
-
], usesInheritance: true, ngImport: i0 });
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PageSizeSelectDirective, decorators: [{
|
|
25
|
-
type: Directive,
|
|
26
|
-
args: [{
|
|
27
|
-
/* tslint:disable-next-line:directive-selector */
|
|
28
|
-
selector: 'p-page-size-select',
|
|
29
|
-
host: {
|
|
30
|
-
'(sizeChange)': 'handleChangeEvent($event.detail)',
|
|
31
|
-
},
|
|
32
|
-
providers: [
|
|
33
|
-
{
|
|
34
|
-
provide: NG_VALUE_ACCESSOR,
|
|
35
|
-
useExisting: PageSizeSelectDirective,
|
|
36
|
-
multi: true,
|
|
37
|
-
},
|
|
38
|
-
],
|
|
39
|
-
}]
|
|
40
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
41
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicC1wYWdlLXNpemUtc2VsZWN0LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3BhcGVybGVzcy9zcmMvbGliL2RpcmVjdGl2ZXMvcC1wYWdlLXNpemUtc2VsZWN0LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFjLE1BQU0sZUFBZSxDQUFDO0FBQ3RELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRW5ELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLFNBQVMsQ0FBQzs7QUFnQjVDLE1BQU0sT0FBTyx1QkFBd0IsU0FBUSxpQkFBaUI7SUFDN0QsWUFBWSxFQUFjO1FBQ3pCLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUNYLENBQUM7SUFFUSxVQUFVLENBQUMsS0FBVTtRQUM3QixJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLFNBQVMsR0FBRyxLQUFLLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQztJQUMxRSxDQUFDO0lBRVEsZ0JBQWdCLENBQUMsRUFBOEI7UUFDdkQsS0FBSyxDQUFDLGdCQUFnQixDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLFFBQVEsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQzFELENBQUM7O29IQVhXLHVCQUF1Qjt3R0FBdkIsdUJBQXVCLHdIQVJ4QjtRQUNWO1lBQ0MsT0FBTyxFQUFFLGlCQUFpQjtZQUMxQixXQUFXLEVBQUUsdUJBQXVCO1lBQ3BDLEtBQUssRUFBRSxJQUFJO1NBQ1g7S0FDRDsyRkFFVyx1QkFBdUI7a0JBZG5DLFNBQVM7bUJBQUM7b0JBQ1YsaURBQWlEO29CQUNqRCxRQUFRLEVBQUUsb0JBQW9CO29CQUM5QixJQUFJLEVBQUU7d0JBQ0wsY0FBYyxFQUFFLGtDQUFrQztxQkFDbEQ7b0JBQ0QsU0FBUyxFQUFFO3dCQUNWOzRCQUNDLE9BQU8sRUFBRSxpQkFBaUI7NEJBQzFCLFdBQVcseUJBQXlCOzRCQUNwQyxLQUFLLEVBQUUsSUFBSTt5QkFDWDtxQkFDRDtpQkFDRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbmltcG9ydCB7IEJhc2VWYWx1ZUFjY2Vzc29yIH0gZnJvbSAnLi4vYmFzZSc7XG5cbkBEaXJlY3RpdmUoe1xuXHQvKiB0c2xpbnQ6ZGlzYWJsZS1uZXh0LWxpbmU6ZGlyZWN0aXZlLXNlbGVjdG9yICovXG5cdHNlbGVjdG9yOiAncC1wYWdlLXNpemUtc2VsZWN0Jyxcblx0aG9zdDoge1xuXHRcdCcoc2l6ZUNoYW5nZSknOiAnaGFuZGxlQ2hhbmdlRXZlbnQoJGV2ZW50LmRldGFpbCknLFxuXHR9LFxuXHRwcm92aWRlcnM6IFtcblx0XHR7XG5cdFx0XHRwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcblx0XHRcdHVzZUV4aXN0aW5nOiBQYWdlU2l6ZVNlbGVjdERpcmVjdGl2ZSxcblx0XHRcdG11bHRpOiB0cnVlLFxuXHRcdH0sXG5cdF0sXG59KVxuZXhwb3J0IGNsYXNzIFBhZ2VTaXplU2VsZWN0RGlyZWN0aXZlIGV4dGVuZHMgQmFzZVZhbHVlQWNjZXNzb3Ige1xuXHRjb25zdHJ1Y3RvcihlbDogRWxlbWVudFJlZikge1xuXHRcdHN1cGVyKGVsKTtcblx0fVxuXG5cdG92ZXJyaWRlIHdyaXRlVmFsdWUodmFsdWU6IGFueSkge1xuXHRcdHRoaXMuZWwubmF0aXZlRWxlbWVudC5wYWdlID0gdGhpcy5sYXN0VmFsdWUgPSB2YWx1ZSA9PSBudWxsID8gMTIgOiB2YWx1ZTtcblx0fVxuXG5cdG92ZXJyaWRlIHJlZ2lzdGVyT25DaGFuZ2UoZm46IChfOiBudW1iZXIgfCBudWxsKSA9PiB2b2lkKSB7XG5cdFx0c3VwZXIucmVnaXN0ZXJPbkNoYW5nZSh2YWx1ZSA9PiBmbihwYXJzZUludCh2YWx1ZSwgMTApKSk7XG5cdH1cbn1cbiJdfQ==
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { Directive } from '@angular/core';
|
|
2
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
|
-
import { BaseValueAccessor } from '../base';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class PaginationDirective extends BaseValueAccessor {
|
|
6
|
-
constructor(el) {
|
|
7
|
-
super(el);
|
|
8
|
-
}
|
|
9
|
-
writeValue(value) {
|
|
10
|
-
this.el.nativeElement.page = this.lastValue = value == null ? 1 : value;
|
|
11
|
-
}
|
|
12
|
-
registerOnChange(fn) {
|
|
13
|
-
super.registerOnChange(value => fn(parseInt(value, 10)));
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
PaginationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
17
|
-
PaginationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: PaginationDirective, selector: "p-pagination", host: { listeners: { "pageChange": "handleChangeEvent($event.detail)" } }, providers: [
|
|
18
|
-
{
|
|
19
|
-
provide: NG_VALUE_ACCESSOR,
|
|
20
|
-
useExisting: PaginationDirective,
|
|
21
|
-
multi: true,
|
|
22
|
-
},
|
|
23
|
-
], usesInheritance: true, ngImport: i0 });
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PaginationDirective, decorators: [{
|
|
25
|
-
type: Directive,
|
|
26
|
-
args: [{
|
|
27
|
-
/* tslint:disable-next-line:directive-selector */
|
|
28
|
-
selector: 'p-pagination',
|
|
29
|
-
host: {
|
|
30
|
-
'(pageChange)': 'handleChangeEvent($event.detail)',
|
|
31
|
-
},
|
|
32
|
-
providers: [
|
|
33
|
-
{
|
|
34
|
-
provide: NG_VALUE_ACCESSOR,
|
|
35
|
-
useExisting: PaginationDirective,
|
|
36
|
-
multi: true,
|
|
37
|
-
},
|
|
38
|
-
],
|
|
39
|
-
}]
|
|
40
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
41
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicC1wYWdpbmF0aW9uLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3BhcGVybGVzcy9zcmMvbGliL2RpcmVjdGl2ZXMvcC1wYWdpbmF0aW9uLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFjLE1BQU0sZUFBZSxDQUFDO0FBQ3RELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRW5ELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLFNBQVMsQ0FBQzs7QUFnQjVDLE1BQU0sT0FBTyxtQkFBb0IsU0FBUSxpQkFBaUI7SUFDekQsWUFBWSxFQUFjO1FBQ3pCLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUNYLENBQUM7SUFFZSxVQUFVLENBQUMsS0FBVTtRQUNwQyxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLFNBQVMsR0FBRyxLQUFLLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQztJQUN6RSxDQUFDO0lBRWUsZ0JBQWdCLENBQUMsRUFBOEI7UUFDOUQsS0FBSyxDQUFDLGdCQUFnQixDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLFFBQVEsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQzFELENBQUM7O2dIQVhXLG1CQUFtQjtvR0FBbkIsbUJBQW1CLGtIQVJwQjtRQUNWO1lBQ0MsT0FBTyxFQUFFLGlCQUFpQjtZQUMxQixXQUFXLEVBQUUsbUJBQW1CO1lBQ2hDLEtBQUssRUFBRSxJQUFJO1NBQ1g7S0FDRDsyRkFFVyxtQkFBbUI7a0JBZC9CLFNBQVM7bUJBQUM7b0JBQ1YsaURBQWlEO29CQUNqRCxRQUFRLEVBQUUsY0FBYztvQkFDeEIsSUFBSSxFQUFFO3dCQUNMLGNBQWMsRUFBRSxrQ0FBa0M7cUJBQ2xEO29CQUNELFNBQVMsRUFBRTt3QkFDVjs0QkFDQyxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLHFCQUFxQjs0QkFDaEMsS0FBSyxFQUFFLElBQUk7eUJBQ1g7cUJBQ0Q7aUJBQ0QiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEVsZW1lbnRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5pbXBvcnQgeyBCYXNlVmFsdWVBY2Nlc3NvciB9IGZyb20gJy4uL2Jhc2UnO1xuXG5ARGlyZWN0aXZlKHtcblx0LyogdHNsaW50OmRpc2FibGUtbmV4dC1saW5lOmRpcmVjdGl2ZS1zZWxlY3RvciAqL1xuXHRzZWxlY3RvcjogJ3AtcGFnaW5hdGlvbicsXG5cdGhvc3Q6IHtcblx0XHQnKHBhZ2VDaGFuZ2UpJzogJ2hhbmRsZUNoYW5nZUV2ZW50KCRldmVudC5kZXRhaWwpJyxcblx0fSxcblx0cHJvdmlkZXJzOiBbXG5cdFx0e1xuXHRcdFx0cHJvdmlkZTogTkdfVkFMVUVfQUNDRVNTT1IsXG5cdFx0XHR1c2VFeGlzdGluZzogUGFnaW5hdGlvbkRpcmVjdGl2ZSxcblx0XHRcdG11bHRpOiB0cnVlLFxuXHRcdH0sXG5cdF0sXG59KVxuZXhwb3J0IGNsYXNzIFBhZ2luYXRpb25EaXJlY3RpdmUgZXh0ZW5kcyBCYXNlVmFsdWVBY2Nlc3NvciB7XG5cdGNvbnN0cnVjdG9yKGVsOiBFbGVtZW50UmVmKSB7XG5cdFx0c3VwZXIoZWwpO1xuXHR9XG5cblx0cHVibGljIG92ZXJyaWRlIHdyaXRlVmFsdWUodmFsdWU6IGFueSkge1xuXHRcdHRoaXMuZWwubmF0aXZlRWxlbWVudC5wYWdlID0gdGhpcy5sYXN0VmFsdWUgPSB2YWx1ZSA9PSBudWxsID8gMSA6IHZhbHVlO1xuXHR9XG5cblx0cHVibGljIG92ZXJyaWRlIHJlZ2lzdGVyT25DaGFuZ2UoZm46IChfOiBudW1iZXIgfCBudWxsKSA9PiB2b2lkKSB7XG5cdFx0c3VwZXIucmVnaXN0ZXJPbkNoYW5nZSh2YWx1ZSA9PiBmbihwYXJzZUludCh2YWx1ZSwgMTApKSk7XG5cdH1cbn1cbiJdfQ==
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import { BaseValueAccessor } from '../base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class PaginationDirective extends BaseValueAccessor {
|
|
5
|
-
constructor(el: ElementRef);
|
|
6
|
-
writeValue(value: any): void;
|
|
7
|
-
registerOnChange(fn: (_: number | null) => void): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationDirective, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PaginationDirective, "p-pagination", never, {}, {}, never, never, false, never>;
|
|
10
|
-
}
|