UNPKG

@quantlab/handsontable

Version:

Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs

22 lines (17 loc) 404 B
import BaseUI from './_base'; import {addClass} from './../../../helpers/dom/element'; const CSS_CLASSNAME = 'ht__manualColumnMove--backlight'; /** * @class BacklightUI * @util */ class BacklightUI extends BaseUI { /** * Custom className on build process. */ build() { super.build(); addClass(this._element, CSS_CLASSNAME); } } export default BacklightUI;