Why does ConfigSelect has missing properties (toggleable, headerCheckbox)?
Why does ConfigSelect has missing properties (toggleable, headerCheckbox)?

With datatables.net-select v3.1.1 installed, ConfigSelect is defined as
interface ConfigSelect {
/**
* Indicate if the selected items will be removed when clicking outside of the table
*/
blurable?: boolean;
/**
* Set the class name that will be applied to selected items
*/
className?: string;
/**
* Enable / disable the display for item selection information in the table summary
*/
info?: boolean;
/**
* Set which table items to select (rows, columns or cells)
*/
items?: string;
/** Set keyboard accessability (tab and arrow keys) */
keys?: boolean;
/**
* Set the element selector used for mouse event capture to select items
*/
selector?: string;
/**
* Set the selection style for end user interaction with the table
*/
style?: StyleType;
}
which does not include certains properties that should be available (see https://datatables.net/reference/option/?extn=select ) such as headerCheckbox, toggleable, keysWrap.
How can these become available?
Answers
Good point - many thanks for pointing out that I missed them. I've added them now and it will be in the next release.
Allan
Thank you very much!