UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

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