Skip to content

Commit e079fc2

Browse files
marker-daomarker dao ®
andauthored
TextEditorMask: Remove m_ (#32732)
Co-authored-by: marker dao ® <[email protected]>
1 parent fdf822b commit e079fc2

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

packages/devextreme/js/__internal/ui/text_box/m_text_box.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import $ from '@js/core/renderer';
55
import { getOuterWidth, getWidth } from '@js/core/utils/size';
66
import { getWindow } from '@js/core/utils/window';
77
import type { OptionChanged } from '@ts/core/widget/types';
8-
import TextEditor from '@ts/ui/text_box/m_text_editor.mask';
8+
import TextEditor from '@ts/ui/text_box/text_editor.mask';
99

1010
import type { TextEditorBaseProperties } from './m_text_editor.base';
1111

packages/devextreme/js/__internal/ui/text_box/m_text_editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import registerComponent from '@js/core/component_registrator';
22

3-
import TextEditorMask from './m_text_editor.mask';
3+
import TextEditorMask from './text_editor.mask';
44

55
registerComponent('dxTextEditor', TextEditorMask);
66

packages/devextreme/js/__internal/ui/text_box/m_text_editor.mask.rule.ts renamed to packages/devextreme/js/__internal/ui/text_box/text_editor.mask.rule.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/* eslint-disable @typescript-eslint/no-unused-vars */
2-
/* eslint-disable class-methods-use-this */
32
/* eslint-disable max-classes-per-file */
43
import { extend } from '@js/core/utils/extend';
54
import { isFunction } from '@js/core/utils/type';

packages/devextreme/js/__internal/ui/text_box/m_text_editor.mask.strategy.ts renamed to packages/devextreme/js/__internal/ui/text_box/text_editor.mask.strategy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import browser from '@js/core/utils/browser';
55
import { clipboardText as getClipboardText } from '@js/core/utils/dom';
66
import type { DxEvent } from '@js/events';
77
import type { TextEditorBaseProperties } from '@ts/ui/text_box/m_text_editor.base';
8-
import type TextEditorMask from '@ts/ui/text_box/m_text_editor.mask';
9-
import type { HandlingArgs } from '@ts/ui/text_box/m_text_editor.mask.rule';
8+
import type TextEditorMask from '@ts/ui/text_box/text_editor.mask';
9+
import type { HandlingArgs } from '@ts/ui/text_box/text_editor.mask.rule';
1010
import type { CaretRange } from '@ts/ui/text_box/utils.caret';
1111

1212
const MASK_EVENT_NAMESPACE = 'dxMask';

packages/devextreme/js/__internal/ui/text_box/m_text_editor.mask.ts renamed to packages/devextreme/js/__internal/ui/text_box/text_editor.mask.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable class-methods-use-this */
21
import eventsEngine from '@js/common/core/events/core/events_engine';
32
import { name as wheelEventName } from '@js/common/core/events/core/wheel';
43
import {
@@ -19,9 +18,9 @@ import type { ValueChangedEvent } from '@ts/ui/editor/editor';
1918
import type { DxMouseWheelEvent } from '@ts/ui/scroll_view/types';
2019
import type { TextEditorBaseProperties } from '@ts/ui/text_box/m_text_editor.base';
2120
import TextEditorBase from '@ts/ui/text_box/m_text_editor.base';
22-
import type { HandlingArgs } from '@ts/ui/text_box/m_text_editor.mask.rule';
23-
import { EmptyMaskRule, MaskRule, StubMaskRule } from '@ts/ui/text_box/m_text_editor.mask.rule';
24-
import MaskStrategy from '@ts/ui/text_box/m_text_editor.mask.strategy';
21+
import type { HandlingArgs } from '@ts/ui/text_box/text_editor.mask.rule';
22+
import { EmptyMaskRule, MaskRule, StubMaskRule } from '@ts/ui/text_box/text_editor.mask.rule';
23+
import MaskStrategy from '@ts/ui/text_box/text_editor.mask.strategy';
2524
import type { CaretRange } from '@ts/ui/text_box/utils.caret';
2625
import caretUtils from '@ts/ui/text_box/utils.caret';
2726

0 commit comments

Comments
 (0)