@paperless/angular 2.19.0 → 2.19.2
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-cell/table-cell.component.mjs +29 -14
- package/fesm2015/paperless-angular.mjs +26 -10
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +26 -11
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/components/table-cell/table-cell.component.d.ts +4 -3
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { TemplateRef } from
|
|
2
|
-
import { cn, TableDefinitionData } from
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { cn, TableDefinitionData } from '@paperless/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TableCell {
|
|
5
5
|
/**
|
|
6
6
|
* The variant of the column
|
|
7
7
|
*/
|
|
8
|
-
variant:
|
|
8
|
+
variant: 'default' | 'loading' | 'header' | 'header-secondary';
|
|
9
9
|
/**
|
|
10
10
|
* The index of the column
|
|
11
11
|
*/
|
|
@@ -47,6 +47,7 @@ export declare class TableCell {
|
|
|
47
47
|
get data(): TableDefinitionData | {
|
|
48
48
|
value: string;
|
|
49
49
|
};
|
|
50
|
+
get contentClass(): string;
|
|
50
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableCell, never>;
|
|
51
52
|
static ɵcmp: i0.ɵɵComponentDeclaration<TableCell, "p-table-cell-ngx", never, { "variant": "variant"; "index": "index"; "rowIndex": "rowIndex"; "definition": "definition"; "item": "item"; "value": "value"; "checkbox": "checkbox"; "checkboxOffset": "checkboxOffset"; "template": "template"; "scrollable": "scrollable"; }, {}, never, ["*"], false, never>;
|
|
52
53
|
}
|