mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-04 17:20:09 +00:00
tabulator-tables 4.4.3 (#38702)
* 4.4.3 * test update * fix version(patch version not allowed)
This commit is contained in:
2
types/tabulator-tables/index.d.ts
vendored
2
types/tabulator-tables/index.d.ts
vendored
@@ -1175,7 +1175,7 @@ You can pass an optional additional property with sorter, sorterParams that shou
|
||||
| ((
|
||||
cell: CellComponent,
|
||||
onRendered: EmptyCallback,
|
||||
success: ValueVoidCallback,
|
||||
success: ValueBooleanCallback,
|
||||
cancel: ValueVoidCallback,
|
||||
editorParams: {},
|
||||
) => HTMLElement | false);
|
||||
|
||||
@@ -519,3 +519,9 @@ options.headerSortTristate = true;
|
||||
colDef.formatter = 'rowSelection';
|
||||
|
||||
options.invalidOptionWarnings = false;
|
||||
|
||||
colDef.editor = (cell, onRendered, success, cancel, editorParams) => {
|
||||
const editor = document.createElement('input');
|
||||
const successful: boolean = success('test');
|
||||
return editor;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user