7cfd6d73f99ec317856d9f53004cc097cce0f3246b1a9678be043226bcd657eb80b73cd4fab33ced4a0366440041675e90930518f5b11c971ebd0f5a25cb36 380 B

123456789101112131415161718192021
  1. import BaseUI from './_base';
  2. import {addClass} from './../../../helpers/dom/element';
  3. const CSS_CLASSNAME = 'ht__manualRowMove--backlight';
  4. /**
  5. * @class BacklightUI
  6. * @util
  7. */
  8. class BacklightUI extends BaseUI {
  9. /**
  10. * Custom className on build process.
  11. */
  12. build() {
  13. super.build();
  14. addClass(this._element, CSS_CLASSNAME);
  15. }
  16. }
  17. export default BacklightUI;