ms-data-grid 0.0.62 → 0.0.63
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/esm2022/lib/data-grid/data-grid.component.mjs +65 -17
- package/esm2022/lib/data-grid.module.mjs +7 -5
- package/esm2022/lib/interfaces/data-grid-config.ts.mjs +2 -0
- package/esm2022/lib/pipes/format-currency.pipe.mjs +55 -0
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/ms-data-grid.mjs +123 -22
- package/fesm2022/ms-data-grid.mjs.map +1 -1
- package/lib/data-grid/data-grid.component.d.ts +9 -3
- package/lib/data-grid.module.d.ts +7 -6
- package/lib/interfaces/data-grid-config.ts.d.ts +97 -0
- package/lib/pipes/format-currency.pipe.d.ts +7 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -7,6 +7,7 @@ import { CopyServiceService } from '../services/copy-service.service';
|
|
|
7
7
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
8
8
|
import { ExportService } from '../services/export.service';
|
|
9
9
|
import { CellHostDirective } from '../directives/cellHost.directive';
|
|
10
|
+
import { DatePipe } from '@angular/common';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare enum RowAnimationType {
|
|
12
13
|
None = "none",
|
|
@@ -28,6 +29,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
28
29
|
private renderer;
|
|
29
30
|
private sanitizer;
|
|
30
31
|
private exportService;
|
|
32
|
+
private datePipe;
|
|
31
33
|
rowAnimation: RowAnimationType;
|
|
32
34
|
paginationConfig: any;
|
|
33
35
|
dataSet: any[];
|
|
@@ -73,7 +75,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
73
75
|
showCellDetailsBox: boolean;
|
|
74
76
|
dateFormat: string;
|
|
75
77
|
tableSearch: string;
|
|
76
|
-
currencyFormat: string;
|
|
77
78
|
actions: any[];
|
|
78
79
|
config: any;
|
|
79
80
|
showTaskbar: boolean;
|
|
@@ -101,6 +102,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
101
102
|
nestedTablerowHeight: number;
|
|
102
103
|
gridType: string;
|
|
103
104
|
currencySymbol: string;
|
|
105
|
+
currencyFormat: string;
|
|
104
106
|
leftPinnedBoxshadow: string;
|
|
105
107
|
rightPinnedBoxshadow: string;
|
|
106
108
|
selectedRowsBackgroundColor: string;
|
|
@@ -166,6 +168,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
166
168
|
searchTextPresetTable: string;
|
|
167
169
|
addFilterColumnInput: string;
|
|
168
170
|
searchInDropdown: string;
|
|
171
|
+
private secretKey;
|
|
169
172
|
addFilterDropdownSearch: string;
|
|
170
173
|
topShowHideColumns: string;
|
|
171
174
|
choseColumnsSearch: string;
|
|
@@ -176,7 +179,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
176
179
|
fontFamilies: string[];
|
|
177
180
|
fontSizes: string[];
|
|
178
181
|
hasScroll: boolean;
|
|
179
|
-
constructor(columnService: SplitColumnsService, cdr: ChangeDetectorRef, commonSevice: CommonService, elementRef: ElementRef, ngZone: NgZone, copyService: CopyServiceService, renderer: Renderer2, sanitizer: DomSanitizer, exportService: ExportService);
|
|
182
|
+
constructor(columnService: SplitColumnsService, cdr: ChangeDetectorRef, commonSevice: CommonService, elementRef: ElementRef, ngZone: NgZone, copyService: CopyServiceService, renderer: Renderer2, sanitizer: DomSanitizer, exportService: ExportService, datePipe: DatePipe);
|
|
180
183
|
cellText: any;
|
|
181
184
|
nestedHeader: ElementRef;
|
|
182
185
|
ngAfterViewInit(): void;
|
|
@@ -185,6 +188,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
185
188
|
private renderCustomCells;
|
|
186
189
|
ngAfterViewChecked(): void;
|
|
187
190
|
ngOnInit(): void;
|
|
191
|
+
dataSetLoading: boolean;
|
|
188
192
|
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
189
193
|
setColumnsColumnDropdownValus(): Promise<void>;
|
|
190
194
|
applyRowsSelectionState(): void;
|
|
@@ -566,6 +570,8 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
566
570
|
private flattenGroup;
|
|
567
571
|
selectGroupRow(e: Event, row: any): void;
|
|
568
572
|
getGroupCheckedState(row: any): boolean | undefined;
|
|
573
|
+
getCellTitle(row: any, col: any): string;
|
|
574
|
+
formatDateValue(value: any): string;
|
|
569
575
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridComponent, never>;
|
|
570
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DataGridComponent, "data-grid", never, { "rowAnimation": { "alias": "rowAnimation"; "required": false; }; "paginationConfig": { "alias": "paginationConfig"; "required": false; }; "dataSet": { "alias": "dataSet"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "headerRowHeight": { "alias": "headerRowHeight"; "required": false; }; "showVerticalBorder": { "alias": "showVerticalBorder"; "required": false; }; "evenRowsBackgroundColor": { "alias": "evenRowsBackgroundColor"; "required": false; }; "oddRowsBackgroundColor": { "alias": "oddRowsBackgroundColor"; "required": false; }; "headerBackgroundColor": { "alias": "headerBackgroundColor"; "required": false; }; "checkboxesBackgroundColor": { "alias": "checkboxesBackgroundColor"; "required": false; }; "showColumnsGrouping": { "alias": "showColumnsGrouping"; "required": false; }; "rowHoverColor": { "alias": "rowHoverColor"; "required": false; }; "leftPinnedBackgroundColor": { "alias": "leftPinnedBackgroundColor"; "required": false; }; "bodyBackgroundColor": { "alias": "bodyBackgroundColor"; "required": false; }; "rightPinnedBackgroundColor": { "alias": "rightPinnedBackgroundColor"; "required": false; }; "sidemenuBackgroundColor": { "alias": "sidemenuBackgroundColor"; "required": false; }; "bodyTextColor": { "alias": "bodyTextColor"; "required": false; }; "headerTextColor": { "alias": "headerTextColor"; "required": false; }; "checkboxesColor": { "alias": "checkboxesColor"; "required": false; }; "headerTextFontsSize": { "alias": "headerTextFontsSize"; "required": false; }; "bodyTextFontsSize": { "alias": "bodyTextFontsSize"; "required": false; }; "headerFontWeight": { "alias": "headerFontWeight"; "required": false; }; "bodyFontWeight": { "alias": "bodyFontWeight"; "required": false; }; "checkedRowBackgroundColor": { "alias": "checkedRowBackgroundColor"; "required": false; }; "dropdownsBackgroundColor": { "alias": "dropdownsBackgroundColor"; "required": false; }; "footerRowBackgroundColor": { "alias": "footerRowBackgroundColor"; "required": false; }; "footerRowHeight": { "alias": "footerRowHeight"; "required": false; }; "topGroupedBadgesBackgroundColor": { "alias": "topGroupedBadgesBackgroundColor"; "required": false; }; "showRowsGrouping": { "alias": "showRowsGrouping"; "required": false; }; "showFilterRow": { "alias": "showFilterRow"; "required": false; }; "fontFaimly": { "alias": "fontFaimly"; "required": false; }; "showSideMenu": { "alias": "showSideMenu"; "required": false; }; "footerPadding": { "alias": "footerPadding"; "required": false; }; "topFilterRowHeight": { "alias": "topFilterRowHeight"; "required": false; }; "rowShadingEnabled": { "alias": "rowShadingEnabled"; "required": false; }; "showSerialNumber": { "alias": "showSerialNumber"; "required": false; }; "singleSpaAssetsPath": { "alias": "singleSpaAssetsPath"; "required": false; }; "filtersConfig": { "alias": "filtersConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "verticalScrollbarWidth": { "alias": "verticalScrollbarWidth"; "required": false; }; "horizintalScrollbarWidth": { "alias": "horizintalScrollbarWidth"; "required": false; }; "showCellDetailsBox": { "alias": "showCellDetailsBox"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "tableSearch": { "alias": "tableSearch"; "required": false; }; "
|
|
576
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataGridComponent, "data-grid", never, { "rowAnimation": { "alias": "rowAnimation"; "required": false; }; "paginationConfig": { "alias": "paginationConfig"; "required": false; }; "dataSet": { "alias": "dataSet"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "headerRowHeight": { "alias": "headerRowHeight"; "required": false; }; "showVerticalBorder": { "alias": "showVerticalBorder"; "required": false; }; "evenRowsBackgroundColor": { "alias": "evenRowsBackgroundColor"; "required": false; }; "oddRowsBackgroundColor": { "alias": "oddRowsBackgroundColor"; "required": false; }; "headerBackgroundColor": { "alias": "headerBackgroundColor"; "required": false; }; "checkboxesBackgroundColor": { "alias": "checkboxesBackgroundColor"; "required": false; }; "showColumnsGrouping": { "alias": "showColumnsGrouping"; "required": false; }; "rowHoverColor": { "alias": "rowHoverColor"; "required": false; }; "leftPinnedBackgroundColor": { "alias": "leftPinnedBackgroundColor"; "required": false; }; "bodyBackgroundColor": { "alias": "bodyBackgroundColor"; "required": false; }; "rightPinnedBackgroundColor": { "alias": "rightPinnedBackgroundColor"; "required": false; }; "sidemenuBackgroundColor": { "alias": "sidemenuBackgroundColor"; "required": false; }; "bodyTextColor": { "alias": "bodyTextColor"; "required": false; }; "headerTextColor": { "alias": "headerTextColor"; "required": false; }; "checkboxesColor": { "alias": "checkboxesColor"; "required": false; }; "headerTextFontsSize": { "alias": "headerTextFontsSize"; "required": false; }; "bodyTextFontsSize": { "alias": "bodyTextFontsSize"; "required": false; }; "headerFontWeight": { "alias": "headerFontWeight"; "required": false; }; "bodyFontWeight": { "alias": "bodyFontWeight"; "required": false; }; "checkedRowBackgroundColor": { "alias": "checkedRowBackgroundColor"; "required": false; }; "dropdownsBackgroundColor": { "alias": "dropdownsBackgroundColor"; "required": false; }; "footerRowBackgroundColor": { "alias": "footerRowBackgroundColor"; "required": false; }; "footerRowHeight": { "alias": "footerRowHeight"; "required": false; }; "topGroupedBadgesBackgroundColor": { "alias": "topGroupedBadgesBackgroundColor"; "required": false; }; "showRowsGrouping": { "alias": "showRowsGrouping"; "required": false; }; "showFilterRow": { "alias": "showFilterRow"; "required": false; }; "fontFaimly": { "alias": "fontFaimly"; "required": false; }; "showSideMenu": { "alias": "showSideMenu"; "required": false; }; "footerPadding": { "alias": "footerPadding"; "required": false; }; "topFilterRowHeight": { "alias": "topFilterRowHeight"; "required": false; }; "rowShadingEnabled": { "alias": "rowShadingEnabled"; "required": false; }; "showSerialNumber": { "alias": "showSerialNumber"; "required": false; }; "singleSpaAssetsPath": { "alias": "singleSpaAssetsPath"; "required": false; }; "filtersConfig": { "alias": "filtersConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "verticalScrollbarWidth": { "alias": "verticalScrollbarWidth"; "required": false; }; "horizintalScrollbarWidth": { "alias": "horizintalScrollbarWidth"; "required": false; }; "showCellDetailsBox": { "alias": "showCellDetailsBox"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "tableSearch": { "alias": "tableSearch"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "config": { "alias": "config"; "required": false; }; "showTaskbar": { "alias": "showTaskbar"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "listingType": { "alias": "listingType"; "required": false; }; "checkboxState": { "alias": "checkboxState"; "required": false; }; "taskbarActions": { "alias": "taskbarActions"; "required": false; }; "sortingConfig": { "alias": "sortingConfig"; "required": false; }; "tableFilterViewId": { "alias": "tableFilterViewId"; "required": false; }; "selectedTableLayout": { "alias": "selectedTableLayout"; "required": false; }; "closeDropdown": { "alias": "closeDropdown"; "required": false; }; "globalSearchText": { "alias": "globalSearchText"; "required": false; }; "nestedTablerowFontsize": { "alias": "nestedTablerowFontsize"; "required": false; }; "nestedTableHeaderRowHeight": { "alias": "nestedTableHeaderRowHeight"; "required": false; }; "nestedTablerowHeight": { "alias": "nestedTablerowHeight"; "required": false; }; "gridType": { "alias": "gridType"; "required": false; }; "currencySymbol": { "alias": "currencySymbol"; "required": false; }; "currencyFormat": { "alias": "currencyFormat"; "required": false; }; "leftPinnedBoxshadow": { "alias": "leftPinnedBoxshadow"; "required": false; }; "rightPinnedBoxshadow": { "alias": "rightPinnedBoxshadow"; "required": false; }; "selectedRowsBackgroundColor": { "alias": "selectedRowsBackgroundColor"; "required": false; }; "nestedTableHeaderBackgroundColor": { "alias": "nestedTableHeaderBackgroundColor"; "required": false; }; "nestedTableRowBackgroundColor": { "alias": "nestedTableRowBackgroundColor"; "required": false; }; "tableView": { "alias": "tableView"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "keepMultipleExpandedDetails": { "alias": "keepMultipleExpandedDetails"; "required": false; }; "showTotalAmountRow": { "alias": "showTotalAmountRow"; "required": false; }; "enableGlobalSearch": { "alias": "enableGlobalSearch"; "required": false; }; "tableType": { "alias": "tableType"; "required": false; }; "enableExport": { "alias": "enableExport"; "required": false; }; "showFullScreenButton": { "alias": "showFullScreenButton"; "required": false; }; "enableCut": { "alias": "enableCut"; "required": false; }; "tabs": { "alias": "tabs"; "required": false; }; "showCheckboxes": { "alias": "showCheckboxes"; "required": false; }; "resetAllFilters": { "alias": "resetAllFilters"; "required": false; }; "columnThreedotsMunuConfig": { "alias": "columnThreedotsMunuConfig"; "required": false; }; }, { "changeLayout": "changeLayout"; "customCellEvent": "customCellEvent"; "filterOptions": "filterOptions"; "genericEvent": "genericEvent"; "tablePresetConfig": "tablePresetConfig"; "sortingOrderOptions": "sortingOrderOptions"; "createUpdateConfigListing": "createUpdateConfigListing"; }, never, never, false, never>;
|
|
571
577
|
}
|
|
@@ -3,13 +3,14 @@ import * as i1 from "./data-grid/data-grid.component";
|
|
|
3
3
|
import * as i2 from "./pipes/filter.pipe";
|
|
4
4
|
import * as i3 from "./directives/cellHost.directive";
|
|
5
5
|
import * as i4 from "./directives/cell-render-init.directive";
|
|
6
|
-
import * as i5 from "
|
|
7
|
-
import * as i6 from "@angular/
|
|
8
|
-
import * as i7 from "@angular/
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "
|
|
6
|
+
import * as i5 from "./pipes/format-currency.pipe";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "@angular/cdk/drag-drop";
|
|
10
|
+
import * as i9 from "ng-inline-svg";
|
|
11
|
+
import * as i10 from "@angular/cdk/scrolling";
|
|
11
12
|
export declare class DataGridModule {
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DataGridModule, [typeof i1.DataGridComponent, typeof i2.FilterPipe, typeof i3.CellHostDirective, typeof i4.CellRenderInitDirective], [typeof
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DataGridModule, [typeof i1.DataGridComponent, typeof i2.FilterPipe, typeof i3.CellHostDirective, typeof i4.CellRenderInitDirective, typeof i5.FormatCurrencyPipe], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.DragDropModule, typeof i9.InlineSVGModule, typeof i10.ScrollingModule], [typeof i1.DataGridComponent]>;
|
|
14
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<DataGridModule>;
|
|
15
16
|
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { RowAnimationType } from "../data-grid/data-grid.component";
|
|
2
|
+
export interface DataGridConfig {
|
|
3
|
+
rowAnimation?: RowAnimationType;
|
|
4
|
+
paginationConfig?: any;
|
|
5
|
+
dataSet?: any[];
|
|
6
|
+
columns?: any[];
|
|
7
|
+
rowHeight?: number;
|
|
8
|
+
headerRowHeight?: number;
|
|
9
|
+
showVerticalBorder?: boolean;
|
|
10
|
+
evenRowsBackgroundColor?: string;
|
|
11
|
+
oddRowsBackgroundColor?: string;
|
|
12
|
+
headerBackgroundColor?: string;
|
|
13
|
+
checkboxesBackgroundColor?: string;
|
|
14
|
+
showColumnsGrouping?: boolean;
|
|
15
|
+
rowHoverColor?: string;
|
|
16
|
+
leftPinnedBackgroundColor?: string;
|
|
17
|
+
bodyBackgroundColor?: string;
|
|
18
|
+
rightPinnedBackgroundColor?: string;
|
|
19
|
+
sidemenuBackgroundColor?: string;
|
|
20
|
+
bodyTextColor?: string;
|
|
21
|
+
headerTextColor?: string;
|
|
22
|
+
checkboxesColor?: string;
|
|
23
|
+
headerTextFontsSize?: number;
|
|
24
|
+
bodyTextFontsSize?: number;
|
|
25
|
+
headerFontWeight?: number;
|
|
26
|
+
bodyFontWeight?: number;
|
|
27
|
+
checkedRowBackgroundColor?: string;
|
|
28
|
+
dropdownsBackgroundColor?: string;
|
|
29
|
+
footerRowBackgroundColor?: string;
|
|
30
|
+
footerRowHeight?: number;
|
|
31
|
+
topGroupedBadgesBackgroundColor?: string;
|
|
32
|
+
showRowsGrouping?: boolean;
|
|
33
|
+
showFilterRow?: boolean;
|
|
34
|
+
fontFaimly?: string;
|
|
35
|
+
showSideMenu?: boolean;
|
|
36
|
+
footerPadding?: number;
|
|
37
|
+
topFilterRowHeight?: number;
|
|
38
|
+
rowShadingEnabled?: boolean;
|
|
39
|
+
showSerialNumber?: boolean;
|
|
40
|
+
singleSpaAssetsPath?: string;
|
|
41
|
+
filtersConfig?: any[];
|
|
42
|
+
loading?: boolean;
|
|
43
|
+
verticalScrollbarWidth?: 'auto' | 'thin';
|
|
44
|
+
horizintalScrollbarWidth?: 'auto' | 'thin';
|
|
45
|
+
showCellDetailsBox?: boolean;
|
|
46
|
+
dateFormat?: string;
|
|
47
|
+
tableSearch?: string;
|
|
48
|
+
actions?: any[];
|
|
49
|
+
config?: any;
|
|
50
|
+
showTaskbar?: boolean;
|
|
51
|
+
tableName?: boolean;
|
|
52
|
+
listingType?: string | boolean;
|
|
53
|
+
checkboxState?: {
|
|
54
|
+
reset: boolean;
|
|
55
|
+
};
|
|
56
|
+
taskbarActions?: any[];
|
|
57
|
+
sortingConfig?: {
|
|
58
|
+
field: string;
|
|
59
|
+
order_by: string;
|
|
60
|
+
} | null;
|
|
61
|
+
tableFilterViewId?: any;
|
|
62
|
+
selectedTableLayout?: any;
|
|
63
|
+
closeDropdown?: {
|
|
64
|
+
preset: {
|
|
65
|
+
closed: boolean;
|
|
66
|
+
loading: boolean;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
globalSearchText?: string;
|
|
70
|
+
nestedTablerowFontsize?: number;
|
|
71
|
+
nestedTableHeaderRowHeight?: number;
|
|
72
|
+
nestedTablerowHeight?: number;
|
|
73
|
+
gridType?: string;
|
|
74
|
+
currencySymbol?: string;
|
|
75
|
+
currencyFormat?: string;
|
|
76
|
+
leftPinnedBoxshadow?: string;
|
|
77
|
+
rightPinnedBoxshadow?: string;
|
|
78
|
+
selectedRowsBackgroundColor?: string;
|
|
79
|
+
nestedTableHeaderBackgroundColor?: string;
|
|
80
|
+
nestedTableRowBackgroundColor?: string;
|
|
81
|
+
tableView?: any[];
|
|
82
|
+
buttons?: {
|
|
83
|
+
name: string;
|
|
84
|
+
is_showIcon: boolean;
|
|
85
|
+
icon: string;
|
|
86
|
+
has_permission: boolean;
|
|
87
|
+
}[];
|
|
88
|
+
keepMultipleExpandedDetails?: boolean;
|
|
89
|
+
showTotalAmountRow?: boolean;
|
|
90
|
+
enableGlobalSearch?: boolean;
|
|
91
|
+
tableType?: string;
|
|
92
|
+
enableExport?: boolean;
|
|
93
|
+
showFullScreenButton?: boolean;
|
|
94
|
+
enableCut?: boolean;
|
|
95
|
+
tabs?: string[];
|
|
96
|
+
showCheckboxes?: boolean;
|
|
97
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FormatCurrencyPipe implements PipeTransform {
|
|
4
|
+
transform(value: number | string, currencyFormat: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormatCurrencyPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FormatCurrencyPipe, "formatCurrencies", false>;
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ms-data-grid",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.63",
|
|
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",
|
package/public-api.d.ts
CHANGED