ms-data-grid 0.0.90 → 0.0.91
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/README.md +323 -323
- package/esm2022/lib/data-grid/data-grid.component.mjs +358 -200
- package/esm2022/lib/data-grid/statuses.mjs +1 -1
- package/esm2022/lib/data-grid.module.mjs +1 -1
- package/esm2022/lib/directives/cell-editor.directive.mjs +1 -1
- package/esm2022/lib/directives/cell-render-init.directive.mjs +1 -1
- package/esm2022/lib/directives/cellHost.directive.mjs +1 -1
- package/esm2022/lib/pipes/filter.pipe.mjs +1 -1
- package/esm2022/lib/pipes/format-currency.pipe.mjs +1 -1
- package/esm2022/lib/pipes/format-index.pipe.mjs +1 -1
- package/esm2022/lib/services/common.service.mjs +8 -8
- package/esm2022/lib/services/copy-service.service.mjs +1 -1
- package/esm2022/lib/services/export.service.mjs +1 -1
- package/esm2022/lib/services/split-columns.service.mjs +2 -2
- package/esm2022/public-api.mjs +1 -2
- package/fesm2022/ms-data-grid.mjs +436 -280
- package/fesm2022/ms-data-grid.mjs.map +1 -1
- package/lib/data-grid/data-grid.component.d.ts +41 -23
- package/package.json +1 -1
- package/lib/styles/font-style.css +0 -34
|
@@ -10,15 +10,6 @@ import { CellHostDirective } from '../directives/cellHost.directive';
|
|
|
10
10
|
import { DatePipe } from '@angular/common';
|
|
11
11
|
import { FormatCurrencyPipe } from '../pipes/format-currency.pipe';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
|
-
export declare enum RowAnimationType {
|
|
14
|
-
None = "none",
|
|
15
|
-
Spread = "spreadAnimation",
|
|
16
|
-
Bounce = "bounceAnimation",
|
|
17
|
-
SlideUp = "slideUpFromBottom",
|
|
18
|
-
Flip = "flipAnimation",
|
|
19
|
-
Skew = "skewAnimation",
|
|
20
|
-
SlideRight = "slideFromRight"
|
|
21
|
-
}
|
|
22
13
|
export interface DataGridConfig {
|
|
23
14
|
fontFaimly: string;
|
|
24
15
|
bodyTextFontsSize: number;
|
|
@@ -32,6 +23,15 @@ export interface DataGridConfig {
|
|
|
32
23
|
rowShadingEnabled: boolean;
|
|
33
24
|
activeFilters: boolean;
|
|
34
25
|
}
|
|
26
|
+
export declare enum RowAnimationType {
|
|
27
|
+
None = "none",
|
|
28
|
+
Spread = "spreadAnimation",
|
|
29
|
+
Bounce = "bounceAnimation",
|
|
30
|
+
SlideUp = "slideUpFromBottom",
|
|
31
|
+
Flip = "flipAnimation",
|
|
32
|
+
Skew = "skewAnimation",
|
|
33
|
+
SlideRight = "slideFromRight"
|
|
34
|
+
}
|
|
35
35
|
export declare const sortingAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
36
36
|
export declare class DataGridComponent implements OnChanges, AfterViewInit, OnInit, AfterViewChecked {
|
|
37
37
|
private columnService;
|
|
@@ -139,11 +139,11 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
139
139
|
enableCut: boolean;
|
|
140
140
|
tabs: string[];
|
|
141
141
|
showCheckboxes: boolean;
|
|
142
|
-
|
|
143
|
-
defaultConfig: DataGridConfig | null;
|
|
142
|
+
pageSizeOptions: number[];
|
|
144
143
|
resetAllFilters: {
|
|
145
144
|
resetAll: boolean;
|
|
146
145
|
};
|
|
146
|
+
defaultConfig: DataGridConfig | null;
|
|
147
147
|
columnThreedotsMunuConfig: {
|
|
148
148
|
showPinleft: boolean;
|
|
149
149
|
showPinright: boolean;
|
|
@@ -157,7 +157,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
157
157
|
showResetColumns: boolean;
|
|
158
158
|
};
|
|
159
159
|
cellHosts: QueryList<CellHostDirective>;
|
|
160
|
-
globalSearchInput: ElementRef<HTMLInputElement>;
|
|
161
160
|
changeLayout: EventEmitter<any>;
|
|
162
161
|
customCellEvent: EventEmitter<any>;
|
|
163
162
|
filterOptions: EventEmitter<any>;
|
|
@@ -165,6 +164,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
165
164
|
tablePresetConfig: EventEmitter<any>;
|
|
166
165
|
sortingOrderOptions: EventEmitter<any>;
|
|
167
166
|
createUpdateConfigListing: EventEmitter<any>;
|
|
167
|
+
storePresetName: string;
|
|
168
168
|
isFullScreen: boolean;
|
|
169
169
|
activeTab: string | null;
|
|
170
170
|
groupedColumns: any[];
|
|
@@ -182,7 +182,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
182
182
|
filterColumnsList: any[];
|
|
183
183
|
groupBoxPadding: number;
|
|
184
184
|
presetName: string;
|
|
185
|
-
storePresetName: string;
|
|
186
185
|
presetFilter: boolean;
|
|
187
186
|
searchTextPresetTable: string;
|
|
188
187
|
addFilterColumnInput: string;
|
|
@@ -205,6 +204,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
205
204
|
private injector;
|
|
206
205
|
createCellInjector(row: any, col: any): Injector;
|
|
207
206
|
private renderCustomCells;
|
|
207
|
+
shouldRestoreScroll: boolean;
|
|
208
208
|
ngAfterViewChecked(): void;
|
|
209
209
|
ngOnInit(): void;
|
|
210
210
|
dataSetLoading: boolean;
|
|
@@ -228,6 +228,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
228
228
|
leftPinnedHeader: ElementRef<HTMLDivElement>;
|
|
229
229
|
centerPinnedHeader: ElementRef<HTMLDivElement>;
|
|
230
230
|
rightPinnedHeader: ElementRef<HTMLDivElement>;
|
|
231
|
+
globalSearchInput: ElementRef<HTMLInputElement>;
|
|
231
232
|
columnsGroupedBox: ElementRef<HTMLDivElement>;
|
|
232
233
|
centerFakeScrollbar: ElementRef<HTMLDivElement>;
|
|
233
234
|
updateColumnWidthsAndGroups(columns?: any): Promise<void>;
|
|
@@ -239,6 +240,25 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
239
240
|
isNestedValueArray(obj: any, field: string): boolean;
|
|
240
241
|
onResizeGroup(event: MouseEvent, col: any, isRightPinned?: boolean): void;
|
|
241
242
|
private updateColumnWidthInSourceByField;
|
|
243
|
+
get createUpdateColumnConfig(): {
|
|
244
|
+
columns: any[];
|
|
245
|
+
filters: any[];
|
|
246
|
+
no_of_records: any;
|
|
247
|
+
table_config: {
|
|
248
|
+
rowShadingEnabled: boolean;
|
|
249
|
+
showVerticalBorder: boolean;
|
|
250
|
+
fontFaimly: string | undefined;
|
|
251
|
+
headerTextFontsSize: number;
|
|
252
|
+
selectedTableLayout: any;
|
|
253
|
+
bodyTextFontsSize: number;
|
|
254
|
+
globalSearch: string;
|
|
255
|
+
filterNames: string;
|
|
256
|
+
totalCount: number;
|
|
257
|
+
activeFilters: boolean;
|
|
258
|
+
oddRowsBackgroundColor: string;
|
|
259
|
+
};
|
|
260
|
+
type: string;
|
|
261
|
+
};
|
|
242
262
|
cleanColumns(columns: any[]): any[];
|
|
243
263
|
onResizeColumn(event: MouseEvent, col: any): void;
|
|
244
264
|
onResizeGroupBox(event: MouseEvent): void;
|
|
@@ -253,8 +273,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
253
273
|
closeFilterDropdowns(event: MouseEvent): void;
|
|
254
274
|
private hasParentWithClass;
|
|
255
275
|
isMenueHidden: boolean;
|
|
256
|
-
|
|
257
|
-
openThreeDotsMenu(event: MouseEvent, child: any, clickedOnSortIcon?: boolean): void;
|
|
276
|
+
openThreeDotsMenu(event: MouseEvent, child: any, keepOriginalPosition?: boolean): void;
|
|
258
277
|
sortAsc(col: any): void;
|
|
259
278
|
sortDesc(col: any): void;
|
|
260
279
|
resetSort(col: any): void;
|
|
@@ -382,7 +401,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
382
401
|
toggleActionsDropdown(): void;
|
|
383
402
|
changeTableLayout(event: Event, layoutType: string): Promise<void>;
|
|
384
403
|
setTableLayout(layoutType: string): void;
|
|
385
|
-
pageSizeOptions: number[];
|
|
386
404
|
get startIndexData(): number;
|
|
387
405
|
get endIndex(): number;
|
|
388
406
|
get visiblePages(): (number | string)[];
|
|
@@ -401,8 +419,8 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
401
419
|
firstValue: any;
|
|
402
420
|
firstCondition: string;
|
|
403
421
|
secondValue: any;
|
|
404
|
-
secondCondition: null;
|
|
405
|
-
condition: string;
|
|
422
|
+
secondCondition: string | null;
|
|
423
|
+
condition: string | null;
|
|
406
424
|
resetTextFilterChanges(): void;
|
|
407
425
|
toggleAllValusSelectionInDropdownFilter(column: any): void;
|
|
408
426
|
selectedFilterOptions: any[];
|
|
@@ -415,7 +433,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
415
433
|
isAllSideFilterOptionsSelected(col: any): boolean;
|
|
416
434
|
onOptionToggle(col: any, option: any): void;
|
|
417
435
|
resetSideFilter(col: any): void;
|
|
418
|
-
clearAllFilters(): void;
|
|
436
|
+
clearAllFilters(shouldUpdateConfigListing?: boolean): void;
|
|
419
437
|
applySideFilter(column: any): void;
|
|
420
438
|
removeSideFilter(column: any): void;
|
|
421
439
|
collapseAllExpandedCells(): void;
|
|
@@ -580,7 +598,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
580
598
|
hasAnyDefaultView(): boolean;
|
|
581
599
|
get isTablePresetNotChanged(): any;
|
|
582
600
|
onActionButtonClick(button: string): void;
|
|
583
|
-
createCustomColumn(): void;
|
|
584
601
|
setActiveTab(tab: string | null): void;
|
|
585
602
|
getBackgroundColor(row: any, isEven: boolean, section: 'left' | 'center' | 'right'): string | undefined;
|
|
586
603
|
hasHorizontalScrollbar(): boolean;
|
|
@@ -601,8 +618,9 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
601
618
|
selectGroupRow(e: Event, row: any): void;
|
|
602
619
|
getGroupCheckedState(row: any): boolean | undefined;
|
|
603
620
|
getCellTitle(row: any, col: any): string;
|
|
604
|
-
|
|
605
|
-
|
|
621
|
+
finishEdit(event: any): void;
|
|
622
|
+
getDynamicRight(col: any, section: string, colIndex: number, subColIndex: number): number | null;
|
|
623
|
+
blurInput(event: Event, row: any, col: any): void;
|
|
606
624
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridComponent, never>;
|
|
607
|
-
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; }; "
|
|
625
|
+
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; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "resetAllFilters": { "alias": "resetAllFilters"; "required": false; }; "defaultConfig": { "alias": "defaultConfig"; "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>;
|
|
608
626
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ms-data-grid",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.91",
|
|
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",
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "Inter";
|
|
3
|
-
src: url("../assets/fonts/Inter/static/Inter_18pt-Regular.ttf") format("truetype");
|
|
4
|
-
font-weight: 400;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
font-display: swap;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
/* medium */
|
|
10
|
-
@font-face {
|
|
11
|
-
font-family: "Inter";
|
|
12
|
-
src: url("../assets/fonts/Inter/static/Inter_18pt-Medium.ttf") format("truetype");
|
|
13
|
-
font-weight: 500;
|
|
14
|
-
font-style: normal;
|
|
15
|
-
font-display: swap;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
/* bold */
|
|
19
|
-
@font-face {
|
|
20
|
-
font-family: "Inter";
|
|
21
|
-
src: url("../assets/fonts/Inter/static/Inter_18pt-Bold.ttf") format("truetype");
|
|
22
|
-
font-weight: 700;
|
|
23
|
-
font-style: normal;
|
|
24
|
-
font-display: swap;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
/* semi bold */
|
|
28
|
-
@font-face {
|
|
29
|
-
font-family: "Inter";
|
|
30
|
-
src: url("../assets/fonts/Inter/static/Inter_18pt-SemiBold.ttf") format("truetype");
|
|
31
|
-
font-weight: 600;
|
|
32
|
-
font-style: normal;
|
|
33
|
-
font-display: swap;
|
|
34
|
-
}
|