@paperless/angular 0.1.0-alpha.446 → 0.1.0-alpha.447
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 +6 -4
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +2 -1
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +7 -4
- package/fesm2015/paperless-angular.mjs +12 -7
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +11 -5
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/components/table-column/table-column.component.d.ts +2 -1
- package/package.json +1 -1
- package/paperless.css +8 -0
|
@@ -10,8 +10,9 @@ export declare interface PTableColumn extends Components.PTableColumn {
|
|
|
10
10
|
export declare class TableColumn {
|
|
11
11
|
protected z: NgZone;
|
|
12
12
|
protected el: HTMLElement;
|
|
13
|
+
isLast: boolean;
|
|
13
14
|
template: TemplateRef<any> | undefined;
|
|
14
15
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableColumn, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumn, "p-table-column", never, { "align": "align"; "name": "name"; "path": "path"; "sizes": "sizes"; "type": "type"; "useSlot": "useSlot"; "hasCheckbox": "hasCheckbox"; }, {}, ["template"], ["*"], false, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumn, "p-table-column", never, { "align": "align"; "name": "name"; "path": "path"; "sizes": "sizes"; "type": "type"; "useSlot": "useSlot"; "hasCheckbox": "hasCheckbox"; "isLast": "isLast"; }, {}, ["template"], ["*"], false, never>;
|
|
17
18
|
}
|
package/package.json
CHANGED
package/paperless.css
CHANGED
|
@@ -106,6 +106,10 @@
|
|
|
106
106
|
flex: 1 1 0% !important
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
+
.flex-shrink {
|
|
110
|
+
flex-shrink: 1 !important
|
|
111
|
+
}
|
|
112
|
+
|
|
109
113
|
.transform {
|
|
110
114
|
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
|
|
111
115
|
}
|
|
@@ -130,6 +134,10 @@
|
|
|
130
134
|
border-radius: 0.25rem !important
|
|
131
135
|
}
|
|
132
136
|
|
|
137
|
+
.pr-4 {
|
|
138
|
+
padding-right: 1rem !important
|
|
139
|
+
}
|
|
140
|
+
|
|
133
141
|
.font-semibold {
|
|
134
142
|
font-weight: 600 !important
|
|
135
143
|
}
|