@esfaenza/es-table 11.2.124 → 11.2.126
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/bundles/esfaenza-es-table.umd.js +8 -4
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esfaenza-es-table.metadata.json +1 -1
- package/esm2015/lib/components/es-table/es_table.component.js +3 -3
- package/esm2015/lib/core/handlers/ColumnMetadataHandler.js +2 -1
- package/esm2015/lib/directives/es_th.directive.js +2 -1
- package/esm2015/lib/domain/externals/EsTableColumnsDefinition.js +4 -3
- package/fesm2015/esfaenza-es-table.js +7 -4
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/directives/es_th.directive.d.ts +2 -0
- package/lib/domain/externals/EsTableColumnsDefinition.d.ts +2 -1
- package/package.json +1 -1
|
@@ -45,6 +45,8 @@ export declare class EsThDirective {
|
|
|
45
45
|
thResizable: boolean;
|
|
46
46
|
/** Classi da applicare all'Header della colonna */
|
|
47
47
|
thClass: string;
|
|
48
|
+
/** Classi da applicare all'Header della colonna */
|
|
49
|
+
thShrink: boolean;
|
|
48
50
|
/** Classi da applicare alle righe quando rappresentano un Gruppo */
|
|
49
51
|
thGroupClass: string;
|
|
50
52
|
/** Equivalente dell'NgIf sul th */
|
|
@@ -26,6 +26,7 @@ export declare class EsTableColumnsDefinition {
|
|
|
26
26
|
PinnedWidth: number;
|
|
27
27
|
Pinnable: boolean;
|
|
28
28
|
Grouping: string;
|
|
29
|
+
Shrink: boolean;
|
|
29
30
|
/**
|
|
30
31
|
* Costruttore
|
|
31
32
|
*
|
|
@@ -50,6 +51,6 @@ export declare class EsTableColumnsDefinition {
|
|
|
50
51
|
description: string;
|
|
51
52
|
}[], EditorName?: string, RendererName?: string, EditorOptions?: {
|
|
52
53
|
[id in AvailableOptions]?: any;
|
|
53
|
-
}, Pinned?: boolean, PinnedWidth?: number, Pinnable?: boolean, Grouping?: string);
|
|
54
|
+
}, Pinned?: boolean, PinnedWidth?: number, Pinnable?: boolean, Grouping?: string, Shrink?: boolean);
|
|
54
55
|
static build(parsObj: any): EsTableColumnsDefinition;
|
|
55
56
|
}
|