@paperless/angular 2.18.5 → 2.19.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 +91 -91
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +4 -2
- package/fesm2015/paperless-angular.mjs +81 -79
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +81 -79
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/components/table/table.component.d.ts +12 -12
- package/lib/modules/table/components/table-column/table-column.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef } from
|
|
2
|
-
import { Params } from
|
|
3
|
-
import { cn, QuickFilter, RowClickEvent } from
|
|
4
|
-
import { IconVariant, IllustrationVariant } from
|
|
5
|
-
import { BehaviorSubject } from
|
|
6
|
-
import { PTableRow } from
|
|
7
|
-
import { TableCustomRowDirective } from
|
|
8
|
-
import { TableCell } from
|
|
9
|
-
import { TableColumn } from
|
|
10
|
-
import { TableExtraHeader } from
|
|
11
|
-
import { AsyncItem, TableRowAction, TableRowActionQueryParams, TableRowActionRouterLink } from
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
+
import { Params } from '@angular/router';
|
|
3
|
+
import { cn, QuickFilter, RowClickEvent } from '@paperless/core';
|
|
4
|
+
import { IconVariant, IllustrationVariant } from '@paperless/core/dist/types/components';
|
|
5
|
+
import { BehaviorSubject } from 'rxjs';
|
|
6
|
+
import { PTableRow } from '../../../../stencil/components';
|
|
7
|
+
import { TableCustomRowDirective } from '../../directives/p-table-custom-row.directive';
|
|
8
|
+
import { TableCell } from '../table-cell/table-cell.component';
|
|
9
|
+
import { TableColumn } from '../table-column/table-column.component';
|
|
10
|
+
import { TableExtraHeader } from '../table-extra-header/table-extra-header.component';
|
|
11
|
+
import { AsyncItem, TableRowAction, TableRowActionQueryParams, TableRowActionRouterLink } from '../table-row-action/table-row-action.component';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
export declare class Table implements OnInit, OnChanges {
|
|
14
14
|
private _cd;
|
|
@@ -216,7 +216,7 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
216
216
|
* Wether to hide when there is only 1 page available
|
|
217
217
|
*/
|
|
218
218
|
hideOnSinglePage: boolean;
|
|
219
|
-
emptyStateType:
|
|
219
|
+
emptyStateType: 'no_filter' | 'filtered';
|
|
220
220
|
emptyStateIllustration: IllustrationVariant;
|
|
221
221
|
emptyStateHeader: string;
|
|
222
222
|
emptyStateContent: string;
|
|
@@ -13,5 +13,5 @@ export declare class TableColumn {
|
|
|
13
13
|
template: TemplateRef<any> | undefined;
|
|
14
14
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableColumn, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumn, "p-table-column", never, { "align": "align"; "flex": "flex"; "name": "name"; "path": "path"; "sizes": "sizes"; "variant": "variant"; "useSlot": "useSlot"; "hasCheckbox": "hasCheckbox"; "sticky": "sticky"; }, {}, ["template"], ["*"], false, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumn, "p-table-column", never, { "align": "align"; "headerAlign": "headerAlign"; "flex": "flex"; "name": "name"; "path": "path"; "sizes": "sizes"; "variant": "variant"; "useSlot": "useSlot"; "hasCheckbox": "hasCheckbox"; "sticky": "sticky"; }, {}, ["template"], ["*"], false, never>;
|
|
17
17
|
}
|