File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/devextreme/js/__internal Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const FOCUSED_STATE_CLASS = 'dx-state-focused';
3131export const HOVER_STATE_CLASS = 'dx-state-hover' ;
3232const INVISIBLE_STATE_CLASS = 'dx-state-invisible' ;
3333
34- const EMPTY_ACTIVE_STATE_UNIT = '' ;
34+ export const EMPTY_ACTIVE_STATE_UNIT = '' ;
3535const DEFAULT_FEEDBACK_HIDE_TIMEOUT = 400 ;
3636const DEFAULT_FEEDBACK_SHOW_TIMEOUT = 30 ;
3737
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import dateUtils from '@js/core/utils/date';
88import { extend } from '@js/core/utils/extend' ;
99import { each } from '@js/core/utils/iterator' ;
1010import { setHeight , setOuterHeight } from '@js/core/utils/size' ;
11+ import { EMPTY_ACTIVE_STATE_UNIT } from '@ts/core/widget/widget' ;
1112
1213import {
1314 DATE_TABLE_CLASS ,
@@ -49,7 +50,7 @@ class SchedulerAgenda extends WorkSpace {
4950
5051 // eslint-disable-next-line class-methods-use-this
5152 protected _activeStateUnit ( ) : string {
52- return '' ;
53+ return EMPTY_ACTIVE_STATE_UNIT ;
5354 }
5455
5556 get type ( ) { return VIEWS . AGENDA ; }
You can’t perform that action at this time.
0 commit comments