| 123456789101112131415161718192021 |
- import BaseUI from './_base';
- import {addClass} from './../../../helpers/dom/element';
- const CSS_CLASSNAME = 'ht__manualRowMove--backlight';
- /**
- * @class BacklightUI
- * @util
- */
- class BacklightUI extends BaseUI {
- /**
- * Custom className on build process.
- */
- build() {
- super.build();
- addClass(this._element, CSS_CLASSNAME);
- }
- }
- export default BacklightUI;
|