@paperless/angular 1.14.0 → 1.16.0
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 +52 -128
- package/esm2020/lib/modules/table/directives/index.mjs +4 -1
- package/esm2020/lib/modules/table/directives/p-table-floating-menu-content.directive.mjs +16 -0
- package/esm2020/lib/modules/table/table.module.mjs +3 -2
- package/esm2020/lib/stencil/components.mjs +60 -8
- package/esm2020/lib/stencil/index.mjs +3 -1
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +127 -136
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +127 -136
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/components/table/table.component.d.ts +34 -16
- package/lib/modules/table/directives/index.d.ts +3 -1
- package/lib/modules/table/directives/p-table-floating-menu-content.directive.d.ts +8 -0
- package/lib/modules/table/table.module.d.ts +4 -3
- package/lib/stencil/components.d.ts +22 -4
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +1 -1
- package/package.json +1 -1
- package/paperless.css +25 -4
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
2
|
import { QuickFilter, RowClickEvent } from '@paperless/core';
|
|
3
3
|
import { IconVariant, IllustrationVariant } from '@paperless/core/dist/types/components';
|
|
4
4
|
import { BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { TableColumn } from '../table-column/table-column.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class Table implements OnInit, OnChanges {
|
|
8
|
+
private _elementRef;
|
|
8
9
|
/**
|
|
9
10
|
* The items to be fed to the table
|
|
10
11
|
*/
|
|
@@ -49,6 +50,19 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
49
50
|
* A key to determine if a row can be selected
|
|
50
51
|
*/
|
|
51
52
|
canSelectKey: string | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* Wether to enable the floating menu
|
|
55
|
+
*/
|
|
56
|
+
enableFloatingMenu: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* The floating menu amount item text
|
|
59
|
+
*/
|
|
60
|
+
floatingMenuAmountSelectedText: string;
|
|
61
|
+
/**
|
|
62
|
+
* The template for amount selected item in the floating menu
|
|
63
|
+
*/
|
|
64
|
+
floatingMenuAmountSelectedTemplate: any;
|
|
65
|
+
floatingMenuContentTemplate: TemplateRef<any> | undefined;
|
|
52
66
|
/**
|
|
53
67
|
* Event whenever a row is clicked
|
|
54
68
|
*/
|
|
@@ -95,25 +109,29 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
95
109
|
*/
|
|
96
110
|
filterButtonTemplate: any;
|
|
97
111
|
/**
|
|
98
|
-
* Wether to show the
|
|
112
|
+
* Wether to show the action button
|
|
113
|
+
*/
|
|
114
|
+
enableAction: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* Wether the action button is loading
|
|
99
117
|
*/
|
|
100
|
-
|
|
118
|
+
actionButtonLoading: boolean;
|
|
101
119
|
/**
|
|
102
|
-
*
|
|
120
|
+
* The action button icon
|
|
103
121
|
*/
|
|
104
|
-
|
|
122
|
+
actionButtonIcon: IconVariant;
|
|
105
123
|
/**
|
|
106
|
-
*
|
|
124
|
+
* Wether the action button is enabled
|
|
107
125
|
*/
|
|
108
|
-
|
|
126
|
+
actionButtonEnabled: boolean;
|
|
109
127
|
/**
|
|
110
|
-
* The
|
|
128
|
+
* The action button text if changed
|
|
111
129
|
*/
|
|
112
|
-
|
|
130
|
+
actionButtonText?: string;
|
|
113
131
|
/**
|
|
114
|
-
* The template for the
|
|
132
|
+
* The template for the action button text
|
|
115
133
|
*/
|
|
116
|
-
|
|
134
|
+
actionButtonTemplate: any;
|
|
117
135
|
/**
|
|
118
136
|
* Event when one of the quick filters is clicked
|
|
119
137
|
*/
|
|
@@ -127,9 +145,9 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
127
145
|
*/
|
|
128
146
|
filter: EventEmitter<null>;
|
|
129
147
|
/**
|
|
130
|
-
* Event when the
|
|
148
|
+
* Event when the action button is clicked
|
|
131
149
|
*/
|
|
132
|
-
|
|
150
|
+
action: EventEmitter<null>;
|
|
133
151
|
/** START FOOTER */
|
|
134
152
|
/**
|
|
135
153
|
* Wether to show the footer
|
|
@@ -211,7 +229,7 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
211
229
|
filterModalShow: EventEmitter<boolean>;
|
|
212
230
|
filterModalSave: EventEmitter<void>;
|
|
213
231
|
filterModalReset: EventEmitter<boolean>;
|
|
214
|
-
constructor();
|
|
232
|
+
constructor(_elementRef: ElementRef);
|
|
215
233
|
ngOnInit(): void;
|
|
216
234
|
ngOnChanges(changes: SimpleChanges): void;
|
|
217
235
|
keyDown({ key }: {
|
|
@@ -231,7 +249,7 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
231
249
|
private _parseItems;
|
|
232
250
|
private _generateColumns;
|
|
233
251
|
_checkboxDisabled(item: any): boolean | "" | undefined;
|
|
234
|
-
_selectAllChange($event: any): void;
|
|
252
|
+
_selectAllChange($event: any, forceValue?: boolean): void;
|
|
235
253
|
_checkboxChange(target: any, index: number): void;
|
|
236
254
|
private _getCheckedValue;
|
|
237
255
|
private _getSelectionValue;
|
|
@@ -242,5 +260,5 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
242
260
|
private _findRow;
|
|
243
261
|
private _findRowAction;
|
|
244
262
|
static ɵfac: i0.ɵɵFactoryDeclaration<Table, never>;
|
|
245
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Table, "p-table-ngx", never, { "items": "items"; "loading": "loading"; "headerLoading": "headerLoading"; "footerLoading": "footerLoading"; "amountOfLoadingRows": "amountOfLoadingRows"; "enableRowSelection": "enableRowSelection"; "enableRowClick": "enableRowClick"; "selectedRows": "selectedRows"; "selectionKey": "selectionKey"; "canSelectKey": "canSelectKey"; "enableHeader": "enableHeader"; "quickFilters": "quickFilters"; "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "enableSearch": "enableSearch"; "query": "query"; "enableFilter": "enableFilter"; "selectedFiltersAmount": "selectedFiltersAmount"; "filterButtonTemplate": "filterButtonTemplate"; "
|
|
263
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Table, "p-table-ngx", never, { "items": "items"; "loading": "loading"; "headerLoading": "headerLoading"; "footerLoading": "footerLoading"; "amountOfLoadingRows": "amountOfLoadingRows"; "enableRowSelection": "enableRowSelection"; "enableRowClick": "enableRowClick"; "selectedRows": "selectedRows"; "selectionKey": "selectionKey"; "canSelectKey": "canSelectKey"; "enableFloatingMenu": "enableFloatingMenu"; "floatingMenuAmountSelectedText": "floatingMenuAmountSelectedText"; "floatingMenuAmountSelectedTemplate": "floatingMenuAmountSelectedTemplate"; "enableHeader": "enableHeader"; "quickFilters": "quickFilters"; "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "enableSearch": "enableSearch"; "query": "query"; "enableFilter": "enableFilter"; "selectedFiltersAmount": "selectedFiltersAmount"; "filterButtonTemplate": "filterButtonTemplate"; "enableAction": "enableAction"; "actionButtonLoading": "actionButtonLoading"; "actionButtonIcon": "actionButtonIcon"; "actionButtonEnabled": "actionButtonEnabled"; "actionButtonText": "actionButtonText"; "actionButtonTemplate": "actionButtonTemplate"; "enableFooter": "enableFooter"; "enablePageSize": "enablePageSize"; "enablePagination": "enablePagination"; "enableExport": "enableExport"; "page": "page"; "total": "total"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "hideOnSinglePage": "hideOnSinglePage"; "emptyStateType": "emptyStateType"; "emptyStateIllustration": "emptyStateIllustration"; "emptyStateHeader": "emptyStateHeader"; "emptyStateContent": "emptyStateContent"; "emptyStateAction": "emptyStateAction"; "enableEmptyStateAction": "enableEmptyStateAction"; "emptyStateFilteredIllustration": "emptyStateFilteredIllustration"; "emptyStateFilteredHeader": "emptyStateFilteredHeader"; "emptyStateFilteredContent": "emptyStateFilteredContent"; "filterModalHeaderText": "filterModalHeaderText"; "filterModalSaveText": "filterModalSaveText"; "filterModalCancelText": "filterModalCancelText"; "filterModalResetText": "filterModalResetText"; "filterModalShowReset": "filterModalShowReset"; "filterModalShowResetMobile": "filterModalShowResetMobile"; }, { "selectedRowsChange": "selectedRowsChange"; "rowClick": "rowClick"; "rowSelected": "rowSelected"; "rowDeselected": "rowDeselected"; "quickFilter": "quickFilter"; "queryChange": "queryChange"; "filter": "filter"; "action": "action"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "export": "export"; "emptyStateActionClick": "emptyStateActionClick"; "filterModalShow": "filterModalShow"; "filterModalSave": "filterModalSave"; "filterModalReset": "filterModalReset"; }, ["floatingMenuContentTemplate", "headerCustomFilterTemplate", "filterModalTemplate", "columnDefinitions"], never, false, never>;
|
|
246
264
|
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
export * from './p-table-custom-filter.directive';
|
|
2
2
|
export * from './p-table-filter-modal.directive';
|
|
3
|
+
export * from './p-table-floating-menu-content.directive';
|
|
3
4
|
export * from './p-table-footer.directive';
|
|
4
5
|
export * from './p-table-header.directive';
|
|
5
6
|
export * from './p-table-ngx.directive';
|
|
6
7
|
export * from './p-table.directive';
|
|
7
8
|
import { TableCustomFilterDirective } from './p-table-custom-filter.directive';
|
|
9
|
+
import { TableFloatingMenuContentDirective } from './p-table-floating-menu-content.directive';
|
|
8
10
|
import { TableFooterDirective } from './p-table-footer.directive';
|
|
9
11
|
import { TableHeaderDirective } from './p-table-header.directive';
|
|
10
12
|
import { TableNgxDirective } from './p-table-ngx.directive';
|
|
11
13
|
import { TableDirective } from './p-table.directive';
|
|
12
|
-
export declare const TABLE_DIRECTIVES: (typeof TableCustomFilterDirective | typeof TableFooterDirective | typeof TableHeaderDirective | typeof TableNgxDirective | typeof TableDirective)[];
|
|
14
|
+
export declare const TABLE_DIRECTIVES: (typeof TableCustomFilterDirective | typeof TableFloatingMenuContentDirective | typeof TableFooterDirective | typeof TableHeaderDirective | typeof TableNgxDirective | typeof TableDirective)[];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TableFloatingMenuContentDirective {
|
|
4
|
+
template: TemplateRef<any>;
|
|
5
|
+
constructor(template: TemplateRef<any>);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableFloatingMenuContentDirective, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableFloatingMenuContentDirective, "[p-table-floating-menu-content]", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -8,10 +8,11 @@ import * as i6 from "./directives/p-table.directive";
|
|
|
8
8
|
import * as i7 from "./directives/p-table-ngx.directive";
|
|
9
9
|
import * as i8 from "./directives/p-table-filter-modal.directive";
|
|
10
10
|
import * as i9 from "./directives/p-table-custom-filter.directive";
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "
|
|
11
|
+
import * as i10 from "./directives/p-table-floating-menu-content.directive";
|
|
12
|
+
import * as i11 from "@angular/common";
|
|
13
|
+
import * as i12 from "../../stencil.module";
|
|
13
14
|
export declare class TableModule {
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.Table, typeof i2.TableCell, typeof i3.TableColumn, typeof i4.TableFooterDirective, typeof i5.TableHeaderDirective, typeof i6.TableDirective, typeof i7.TableNgxDirective, typeof i8.TableFilterModalDirective, typeof i9.TableCustomFilterDirective], [typeof
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.Table, typeof i2.TableCell, typeof i3.TableColumn, typeof i4.TableFooterDirective, typeof i5.TableHeaderDirective, typeof i6.TableDirective, typeof i7.TableNgxDirective, typeof i8.TableFilterModalDirective, typeof i9.TableCustomFilterDirective, typeof i10.TableFloatingMenuContentDirective], [typeof i11.CommonModule, typeof i12.StencilModule], [typeof i1.Table, typeof i2.TableCell, typeof i3.TableColumn, typeof i4.TableFooterDirective, typeof i5.TableHeaderDirective, typeof i6.TableDirective, typeof i7.TableNgxDirective, typeof i8.TableFilterModalDirective, typeof i9.TableCustomFilterDirective, typeof i10.TableFloatingMenuContentDirective]>;
|
|
16
17
|
static ɵinj: i0.ɵɵInjectorDeclaration<TableModule>;
|
|
17
18
|
}
|
|
@@ -165,7 +165,7 @@ export declare class PDivider {
|
|
|
165
165
|
protected el: HTMLElement;
|
|
166
166
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
167
167
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
|
|
168
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, {}, {}, never, ["*"], false, never>;
|
|
168
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
169
169
|
}
|
|
170
170
|
export declare interface PDivider extends Components.PDivider {
|
|
171
171
|
}
|
|
@@ -251,6 +251,24 @@ export declare class PDropdownMenuItem {
|
|
|
251
251
|
}
|
|
252
252
|
export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
|
|
253
253
|
}
|
|
254
|
+
export declare class PFloatingMenuContainer {
|
|
255
|
+
protected z: NgZone;
|
|
256
|
+
protected el: HTMLElement;
|
|
257
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
258
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuContainer, never>;
|
|
259
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuContainer, "p-floating-menu-container", never, { "usedInTable": "usedInTable"; }, {}, never, ["*"], false, never>;
|
|
260
|
+
}
|
|
261
|
+
export declare interface PFloatingMenuContainer extends Components.PFloatingMenuContainer {
|
|
262
|
+
}
|
|
263
|
+
export declare class PFloatingMenuItem {
|
|
264
|
+
protected z: NgZone;
|
|
265
|
+
protected el: HTMLElement;
|
|
266
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
267
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PFloatingMenuItem, never>;
|
|
268
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFloatingMenuItem, "p-floating-menu-item", never, { "hover": "hover"; }, {}, never, ["*"], false, never>;
|
|
269
|
+
}
|
|
270
|
+
export declare interface PFloatingMenuItem extends Components.PFloatingMenuItem {
|
|
271
|
+
}
|
|
254
272
|
export declare class PHelper {
|
|
255
273
|
protected z: NgZone;
|
|
256
274
|
protected el: HTMLElement;
|
|
@@ -588,7 +606,7 @@ export declare class PTableHeader {
|
|
|
588
606
|
protected el: HTMLElement;
|
|
589
607
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
590
608
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableHeader, never>;
|
|
591
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableHeader, "p-table-header", never, { "
|
|
609
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableHeader, "p-table-header", never, { "actionButtonTemplate": "actionButtonTemplate"; "actionIcon": "actionIcon"; "actionLoading": "actionLoading"; "actionText": "actionText"; "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "canUseAction": "canUseAction"; "enableAction": "enableAction"; "enableFilter": "enableFilter"; "enableSearch": "enableSearch"; "filterButtonTemplate": "filterButtonTemplate"; "itemsSelectedAmount": "itemsSelectedAmount"; "loading": "loading"; "query": "query"; "quickFilters": "quickFilters"; "selectedFiltersAmount": "selectedFiltersAmount"; }, {}, never, ["*"], false, never>;
|
|
592
610
|
}
|
|
593
611
|
export declare interface PTableHeader extends Components.PTableHeader {
|
|
594
612
|
/**
|
|
@@ -604,9 +622,9 @@ export declare interface PTableHeader extends Components.PTableHeader {
|
|
|
604
622
|
*/
|
|
605
623
|
filter: EventEmitter<CustomEvent<null>>;
|
|
606
624
|
/**
|
|
607
|
-
* Event when the
|
|
625
|
+
* Event when the action button is clicked
|
|
608
626
|
*/
|
|
609
|
-
|
|
627
|
+
action: EventEmitter<CustomEvent<null>>;
|
|
610
628
|
}
|
|
611
629
|
export declare class PTableRow {
|
|
612
630
|
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.PButton | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | 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.PHelper | typeof d.PIcon | 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.PPageSizeSelect | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PProfile | 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.PTooltip)[];
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PButton | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | 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.PFloatingMenuContainer | typeof d.PFloatingMenuItem | typeof d.PHelper | typeof d.PIcon | 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.PPageSizeSelect | typeof d.PPagination | typeof d.PPaginationItem | typeof d.PProfile | 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.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.PButton, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, 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.PHelper, typeof i1.PIcon, 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.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, 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.PTooltip], never, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PButton, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, 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.PHelper, typeof i1.PIcon, 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.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, 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.PTooltip]>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PButton, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, 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.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIcon, 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.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, 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.PTooltip], never, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PButton, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, 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.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIcon, 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.PPageSizeSelect, typeof i1.PPagination, typeof i1.PPaginationItem, typeof i1.PProfile, 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.PTooltip]>;
|
|
6
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<StencilModule>;
|
|
7
7
|
}
|
package/package.json
CHANGED
package/paperless.css
CHANGED
|
@@ -2,14 +2,34 @@
|
|
|
2
2
|
position: static !important
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
+
.fixed {
|
|
6
|
+
position: fixed !important
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.absolute {
|
|
10
|
+
position: absolute !important
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.relative {
|
|
14
|
+
position: relative !important
|
|
15
|
+
}
|
|
16
|
+
|
|
5
17
|
.bottom-0 {
|
|
6
18
|
bottom: 0px !important
|
|
7
19
|
}
|
|
8
20
|
|
|
21
|
+
.bottom-4 {
|
|
22
|
+
bottom: 1rem !important
|
|
23
|
+
}
|
|
24
|
+
|
|
9
25
|
.left-0 {
|
|
10
26
|
left: 0px !important
|
|
11
27
|
}
|
|
12
28
|
|
|
29
|
+
.left-1\/2 {
|
|
30
|
+
left: 50% !important
|
|
31
|
+
}
|
|
32
|
+
|
|
13
33
|
.right-0 {
|
|
14
34
|
right: 0px !important
|
|
15
35
|
}
|
|
@@ -74,10 +94,6 @@
|
|
|
74
94
|
width: 41.666667% !important
|
|
75
95
|
}
|
|
76
96
|
|
|
77
|
-
.w-6 {
|
|
78
|
-
width: 1.5rem !important
|
|
79
|
-
}
|
|
80
|
-
|
|
81
97
|
.w-6\/12 {
|
|
82
98
|
width: 50% !important
|
|
83
99
|
}
|
|
@@ -110,6 +126,11 @@
|
|
|
110
126
|
flex-shrink: 1 !important
|
|
111
127
|
}
|
|
112
128
|
|
|
129
|
+
.-translate-x-1\/2 {
|
|
130
|
+
--tw-translate-x: -50% !important;
|
|
131
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important
|
|
132
|
+
}
|
|
133
|
+
|
|
113
134
|
.transform {
|
|
114
135
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important
|
|
115
136
|
}
|