@paperless/angular 2.0.1-beta.1 → 2.0.1-beta.3
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 +16 -4
- package/esm2020/lib/modules/table/directives/index.mjs +4 -1
- package/esm2020/lib/modules/table/directives/p-table-custom-actions.directive.mjs +13 -0
- package/esm2020/lib/modules/table/table.module.mjs +3 -2
- package/esm2020/lib/stencil/components.mjs +124 -28
- package/esm2020/lib/stencil/index.mjs +5 -1
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +152 -32
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +152 -32
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/components/table/table.component.d.ts +6 -1
- package/lib/modules/table/directives/index.d.ts +1 -0
- package/lib/modules/table/directives/p-table-custom-actions.directive.d.ts +5 -0
- package/lib/modules/table/table.module.d.ts +5 -4
- package/lib/stencil/components.d.ts +45 -9
- 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 -3
|
@@ -109,6 +109,10 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
109
109
|
* Wether to show the filter button
|
|
110
110
|
*/
|
|
111
111
|
enableFilter: boolean;
|
|
112
|
+
/**
|
|
113
|
+
* Wether to show the filter button on desktop
|
|
114
|
+
*/
|
|
115
|
+
enableFilterDesktop: boolean;
|
|
112
116
|
/**
|
|
113
117
|
* The amount of filters being selected
|
|
114
118
|
*/
|
|
@@ -225,6 +229,7 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
225
229
|
loadingRows: unknown[];
|
|
226
230
|
private _ctrlDown;
|
|
227
231
|
headerCustomFilterTemplate: TemplateRef<any> | undefined;
|
|
232
|
+
headerCustomActionsTemplate: TemplateRef<any> | undefined;
|
|
228
233
|
private _columnDefinitions;
|
|
229
234
|
set columnDefinitions(v: QueryList<TableColumn>);
|
|
230
235
|
get columnDefinitions(): QueryList<TableColumn>;
|
|
@@ -293,5 +298,5 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
293
298
|
private _parseDefinitionSizes;
|
|
294
299
|
private _parseRowActionsRowDefinition;
|
|
295
300
|
static ɵfac: i0.ɵɵFactoryDeclaration<Table, never>;
|
|
296
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Table, "p-table-ngx", never, { "items": "items"; "loading": "loading"; "headerLoading": "headerLoading"; "footerLoading": "footerLoading"; "amountOfLoadingRows": "amountOfLoadingRows"; "enableRowSelection": "enableRowSelection"; "rowSelectionLimit": "rowSelectionLimit"; "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"; "shadow": "shadow"; "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"; }, ["headerCustomFilterTemplate", "filterModalTemplate", "columnDefinitions", "rowActions"], never, false, never>;
|
|
301
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Table, "p-table-ngx", never, { "items": "items"; "loading": "loading"; "headerLoading": "headerLoading"; "footerLoading": "footerLoading"; "amountOfLoadingRows": "amountOfLoadingRows"; "enableRowSelection": "enableRowSelection"; "rowSelectionLimit": "rowSelectionLimit"; "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"; "enableFilterDesktop": "enableFilterDesktop"; "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"; "shadow": "shadow"; "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"; }, ["headerCustomFilterTemplate", "headerCustomActionsTemplate", "filterModalTemplate", "columnDefinitions", "rowActions"], never, false, never>;
|
|
297
302
|
}
|
|
@@ -4,6 +4,7 @@ export * from './p-table-footer.directive';
|
|
|
4
4
|
export * from './p-table-header.directive';
|
|
5
5
|
export * from './p-table-ngx.directive';
|
|
6
6
|
export * from './p-table.directive';
|
|
7
|
+
export * from './p-table-custom-actions.directive';
|
|
7
8
|
import { TableCustomFilterDirective } from './p-table-custom-filter.directive';
|
|
8
9
|
import { TableFooterDirective } from './p-table-footer.directive';
|
|
9
10
|
import { TableHeaderDirective } from './p-table-header.directive';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TableCustomActionsDirective {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableCustomActionsDirective, never>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableCustomActionsDirective, "[p-table-custom-actions]", never, {}, {}, never, never, false, never>;
|
|
5
|
+
}
|
|
@@ -9,11 +9,12 @@ import * as i7 from "./directives/p-table.directive";
|
|
|
9
9
|
import * as i8 from "./directives/p-table-ngx.directive";
|
|
10
10
|
import * as i9 from "./directives/p-table-filter-modal.directive";
|
|
11
11
|
import * as i10 from "./directives/p-table-custom-filter.directive";
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "@angular/
|
|
14
|
-
import * as i13 from "
|
|
12
|
+
import * as i11 from "./directives/p-table-custom-actions.directive";
|
|
13
|
+
import * as i12 from "@angular/common";
|
|
14
|
+
import * as i13 from "@angular/router";
|
|
15
|
+
import * as i14 from "../../stencil.module";
|
|
15
16
|
export declare class TableModule {
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.Table, typeof i2.TableCell, typeof i3.TableColumn, typeof i4.TableRowAction, typeof i5.TableFooterDirective, typeof i6.TableHeaderDirective, typeof i7.TableDirective, typeof i8.TableNgxDirective, typeof i9.TableFilterModalDirective, typeof i10.TableCustomFilterDirective], [typeof
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.Table, typeof i2.TableCell, typeof i3.TableColumn, typeof i4.TableRowAction, typeof i5.TableFooterDirective, typeof i6.TableHeaderDirective, typeof i7.TableDirective, typeof i8.TableNgxDirective, typeof i9.TableFilterModalDirective, typeof i10.TableCustomFilterDirective, typeof i11.TableCustomActionsDirective], [typeof i12.CommonModule, typeof i13.RouterModule, typeof i14.StencilModule], [typeof i1.Table, typeof i2.TableCell, typeof i3.TableColumn, typeof i4.TableRowAction, typeof i5.TableFooterDirective, typeof i6.TableHeaderDirective, typeof i7.TableDirective, typeof i8.TableNgxDirective, typeof i9.TableFilterModalDirective, typeof i10.TableCustomFilterDirective, typeof i11.TableCustomActionsDirective]>;
|
|
18
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<TableModule>;
|
|
19
20
|
}
|
|
@@ -37,7 +37,7 @@ export declare class PAvatar {
|
|
|
37
37
|
protected el: HTMLElement;
|
|
38
38
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<PAvatar, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "letters": "letters"; "size": "size"; "src": "src";
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "letters": "letters"; "size": "size"; "src": "src"; }, {}, never, ["*"], false, never>;
|
|
41
41
|
}
|
|
42
42
|
export declare interface PAvatar extends Components.PAvatar {
|
|
43
43
|
}
|
|
@@ -55,7 +55,7 @@ export declare class PBackdrop {
|
|
|
55
55
|
protected el: HTMLElement;
|
|
56
56
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<PBackdrop, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PBackdrop, "p-backdrop", never, { "applyBlur": "applyBlur"; "closing": "closing"; "scrollLock": "scrollLock"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PBackdrop, "p-backdrop", never, { "applyBlur": "applyBlur"; "class": "class"; "closing": "closing"; "scrollLock": "scrollLock"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
59
59
|
}
|
|
60
60
|
export declare interface PBackdrop extends Components.PBackdrop {
|
|
61
61
|
/**
|
|
@@ -63,6 +63,15 @@ export declare interface PBackdrop extends Components.PBackdrop {
|
|
|
63
63
|
*/
|
|
64
64
|
clicked: EventEmitter<CustomEvent<MouseEvent>>;
|
|
65
65
|
}
|
|
66
|
+
export declare class PBadge {
|
|
67
|
+
protected z: NgZone;
|
|
68
|
+
protected el: HTMLElement;
|
|
69
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PBadge, never>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PBadge, "p-badge", never, {}, {}, never, ["*"], false, never>;
|
|
72
|
+
}
|
|
73
|
+
export declare interface PBadge extends Components.PBadge {
|
|
74
|
+
}
|
|
66
75
|
export declare class PButton {
|
|
67
76
|
protected z: NgZone;
|
|
68
77
|
protected el: HTMLElement;
|
|
@@ -248,7 +257,7 @@ export declare class PDropdownMenuContainer {
|
|
|
248
257
|
protected el: HTMLElement;
|
|
249
258
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
250
259
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuContainer, never>;
|
|
251
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "allowOverflow": "allowOverflow"; "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; "scrollable": "scrollable"; }, {}, never, ["*"], false, never>;
|
|
260
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuContainer, "p-dropdown-menu-container", never, { "allowOverflow": "allowOverflow"; "class": "class"; "fullWidth": "fullWidth"; "maxWidth": "maxWidth"; "scrollable": "scrollable"; }, {}, never, ["*"], false, never>;
|
|
252
261
|
}
|
|
253
262
|
export declare interface PDropdownMenuContainer extends Components.PDropdownMenuContainer {
|
|
254
263
|
}
|
|
@@ -257,7 +266,7 @@ export declare class PDropdownMenuItem {
|
|
|
257
266
|
protected el: HTMLElement;
|
|
258
267
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
259
268
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
|
|
260
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "enableHover": "enableHover"; "icon": "icon"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
269
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "disabled": "disabled"; "enableHover": "enableHover"; "icon": "icon"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
261
270
|
}
|
|
262
271
|
export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
|
|
263
272
|
}
|
|
@@ -284,10 +293,19 @@ export declare class PHelper {
|
|
|
284
293
|
protected el: HTMLElement;
|
|
285
294
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
286
295
|
static ɵfac: i0.ɵɵFactoryDeclaration<PHelper, never>;
|
|
287
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; }, {}, never, ["*"], false, never>;
|
|
296
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PHelper, "p-helper", never, { "placement": "placement"; "strategy": "strategy"; }, {}, never, ["*"], false, never>;
|
|
288
297
|
}
|
|
289
298
|
export declare interface PHelper extends Components.PHelper {
|
|
290
299
|
}
|
|
300
|
+
export declare class PIbanIcon {
|
|
301
|
+
protected z: NgZone;
|
|
302
|
+
protected el: HTMLElement;
|
|
303
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
304
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PIbanIcon, never>;
|
|
305
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PIbanIcon, "p-iban-icon", never, { "iban": "iban"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
306
|
+
}
|
|
307
|
+
export declare interface PIbanIcon extends Components.PIbanIcon {
|
|
308
|
+
}
|
|
291
309
|
export declare class PIcon {
|
|
292
310
|
protected z: NgZone;
|
|
293
311
|
protected el: HTMLElement;
|
|
@@ -297,6 +315,15 @@ export declare class PIcon {
|
|
|
297
315
|
}
|
|
298
316
|
export declare interface PIcon extends Components.PIcon {
|
|
299
317
|
}
|
|
318
|
+
export declare class PIconDeprecated {
|
|
319
|
+
protected z: NgZone;
|
|
320
|
+
protected el: HTMLElement;
|
|
321
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
322
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PIconDeprecated, never>;
|
|
323
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PIconDeprecated, "p-icon-deprecated", never, { "flip": "flip"; "rotate": "rotate"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
324
|
+
}
|
|
325
|
+
export declare interface PIconDeprecated extends Components.PIconDeprecated {
|
|
326
|
+
}
|
|
300
327
|
export declare class PIllustration {
|
|
301
328
|
protected z: NgZone;
|
|
302
329
|
protected el: HTMLElement;
|
|
@@ -426,7 +453,7 @@ export declare class PNavbar {
|
|
|
426
453
|
protected el: HTMLElement;
|
|
427
454
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
428
455
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavbar, never>;
|
|
429
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, { "
|
|
456
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavbar, "p-navbar", never, { "menuText": "menuText"; }, {}, never, ["*"], false, never>;
|
|
430
457
|
}
|
|
431
458
|
export declare interface PNavbar extends Components.PNavbar {
|
|
432
459
|
}
|
|
@@ -435,10 +462,19 @@ export declare class PNavigationItem {
|
|
|
435
462
|
protected el: HTMLElement;
|
|
436
463
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
437
464
|
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationItem, never>;
|
|
438
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "
|
|
465
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationItem, "p-navigation-item", never, { "active": "active"; "as": "as"; "counter": "counter"; "href": "href"; "icon": "icon"; "target": "target"; }, {}, never, ["*"], false, never>;
|
|
439
466
|
}
|
|
440
467
|
export declare interface PNavigationItem extends Components.PNavigationItem {
|
|
441
468
|
}
|
|
469
|
+
export declare class PNavigationTitle {
|
|
470
|
+
protected z: NgZone;
|
|
471
|
+
protected el: HTMLElement;
|
|
472
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
473
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PNavigationTitle, never>;
|
|
474
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PNavigationTitle, "p-navigation-title", never, {}, {}, never, ["*"], false, never>;
|
|
475
|
+
}
|
|
476
|
+
export declare interface PNavigationTitle extends Components.PNavigationTitle {
|
|
477
|
+
}
|
|
442
478
|
export declare class PPageSizeSelect {
|
|
443
479
|
protected z: NgZone;
|
|
444
480
|
protected el: HTMLElement;
|
|
@@ -479,7 +515,7 @@ export declare class PProfile {
|
|
|
479
515
|
protected el: HTMLElement;
|
|
480
516
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
481
517
|
static ɵfac: i0.ɵɵFactoryDeclaration<PProfile, never>;
|
|
482
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "
|
|
518
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PProfile, "p-profile", never, { "dropdownLocation": "dropdownLocation"; "size": "size"; }, {}, never, ["*"], false, never>;
|
|
483
519
|
}
|
|
484
520
|
export declare interface PProfile extends Components.PProfile {
|
|
485
521
|
}
|
|
@@ -628,7 +664,7 @@ export declare class PTableHeader {
|
|
|
628
664
|
protected el: HTMLElement;
|
|
629
665
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
630
666
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableHeader, never>;
|
|
631
|
-
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>;
|
|
667
|
+
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"; "enableFilterDesktop": "enableFilterDesktop"; "enableSearch": "enableSearch"; "filterButtonTemplate": "filterButtonTemplate"; "itemsSelectedAmount": "itemsSelectedAmount"; "loading": "loading"; "query": "query"; "quickFilters": "quickFilters"; "selectedFiltersAmount": "selectedFiltersAmount"; }, {}, never, ["*"], false, never>;
|
|
632
668
|
}
|
|
633
669
|
export declare interface PTableHeader extends Components.PTableHeader {
|
|
634
670
|
/**
|
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.PButtonGroup | 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)[];
|
|
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.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.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.PNavigationTitle | 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.PButtonGroup, 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.PButtonGroup, 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]>;
|
|
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.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.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.PNavigationTitle, 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.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, 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.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.PNavigationTitle, 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
|
@@ -240,17 +240,17 @@
|
|
|
240
240
|
|
|
241
241
|
.text-storm {
|
|
242
242
|
--tw-text-opacity: 1 !important;
|
|
243
|
-
color: rgb(81 83 107 / var(--tw-text-opacity)) !important
|
|
243
|
+
color: rgb(81 83 107 / var(--tw-text-opacity, 1)) !important
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
.text-storm-dark {
|
|
247
247
|
--tw-text-opacity: 1 !important;
|
|
248
|
-
color: rgb(39 40 56 / var(--tw-text-opacity)) !important
|
|
248
|
+
color: rgb(39 40 56 / var(--tw-text-opacity, 1)) !important
|
|
249
249
|
}
|
|
250
250
|
|
|
251
251
|
.text-storm-medium {
|
|
252
252
|
--tw-text-opacity: 1 !important;
|
|
253
|
-
color: rgb(128 130 158 / var(--tw-text-opacity)) !important
|
|
253
|
+
color: rgb(128 130 158 / var(--tw-text-opacity, 1)) !important
|
|
254
254
|
}
|
|
255
255
|
|
|
256
256
|
.underline {
|
|
@@ -281,6 +281,28 @@
|
|
|
281
281
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important
|
|
282
282
|
}
|
|
283
283
|
|
|
284
|
+
@keyframes enter {
|
|
285
|
+
from {
|
|
286
|
+
opacity: var(--tw-enter-opacity, 1);
|
|
287
|
+
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0))
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
@keyframes exit {
|
|
292
|
+
to {
|
|
293
|
+
opacity: var(--tw-exit-opacity, 1);
|
|
294
|
+
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0))
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.ease-in {
|
|
299
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 1) !important
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.ease-out {
|
|
303
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1) !important
|
|
304
|
+
}
|
|
305
|
+
|
|
284
306
|
.group:hover .group-hover\:flex {
|
|
285
307
|
display: flex !important
|
|
286
308
|
}
|