ms-data-grid 0.0.135 → 0.0.137
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.
|
@@ -26,6 +26,7 @@ export interface DataGridConfig {
|
|
|
26
26
|
totalCount: number;
|
|
27
27
|
rowShadingEnabled: boolean;
|
|
28
28
|
activeFilters: boolean;
|
|
29
|
+
groupedColumns?: string[];
|
|
29
30
|
}
|
|
30
31
|
export declare enum RowAnimationType {
|
|
31
32
|
None = "none",
|
|
@@ -340,7 +341,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
340
341
|
get hasLeftPinnedColumns(): boolean;
|
|
341
342
|
get dataSetLength(): number;
|
|
342
343
|
onResize(event: UIEvent): void;
|
|
343
|
-
autoSizeColumnsByRatio(): void;
|
|
344
|
+
autoSizeColumnsByRatio(shouldCheckContainerWidth?: boolean): void;
|
|
344
345
|
refreshHeaders(): Promise<void>;
|
|
345
346
|
get hasAnyVisibleColumn(): boolean;
|
|
346
347
|
get hasAnyInVisibleColumn(): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ms-data-grid",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.137",
|
|
4
4
|
"description": "A powerful, customizable Angular data grid component with advanced features like sorting, filtering, pagination, column pinning, and taskbar actions. Perfect for enterprise applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|