Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 378762c

Browse files
Ghislain BeaulacGhislain Beaulac
authored andcommitted
prepare release 0.16.3
1 parent 21072c2 commit 378762c

21 files changed

+221
-160
lines changed

dist.tgz

635 KB
Binary file not shown.

dist/angular-slickgrid.metadata.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/app/modules/angular-slickgrid/models/exportOption.interface.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { DelimiterType } from './delimiterType.enum';
2-
import { FileType } from './fileType.enum';
1+
import { DelimiterType, FileType } from './../models/index';
32
export interface ExportOption {
43
/** export delimiter, can be (comma, tab, ... or even custom string). */
54
delimiter?: DelimiterType | string;

dist/app/modules/angular-slickgrid/services/controlAndPlugin.service.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export declare class ControlAndPluginService {
1515
private _gridOptions;
1616
private _columnDefinitions;
1717
visibleColumns: Column[];
18+
areVisibleColumnDifferent: boolean;
1819
autoTooltipPlugin: any;
1920
checkboxSelectorPlugin: any;
2021
columnPickerControl: any;

dist/app/modules/angular-slickgrid/services/gridExtra.service.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@ export declare class GridExtraService {
2424
* @param object dataItem: item object holding all properties of that row
2525
*/
2626
addItemToDatagrid(item: any): void;
27+
/**
28+
* Delete an existing item from the datagrid (dataView)
29+
* @param object item: item object holding all properties of that row
30+
*/
31+
deleteDataGridItem(item: any): void;
32+
/**
33+
* Delete an existing item from the datagrid (dataView)
34+
* @param object item: item object holding all properties of that row
35+
*/
36+
deleteDataGridItemById(id: string | number): void;
2737
/**
2838
* Update an existing item with new properties inside the datagrid
2939
* @param object item: item object holding all properties of that row

dist/bundles/angular-slickgrid.umd.js

Lines changed: 23 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)