Skip to content

Commit

Permalink
Rename m_editor.ts to editor.ts (#28759)
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeniyKiyashko authored Jan 17, 2025
1 parent b730982 commit c3ae57e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/devextreme/js/__internal/ui/m_file_uploader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import Button from '@js/ui/button';
import type { Properties as PublicProperties } from '@js/ui/file_uploader';
import ProgressBar from '@js/ui/progress_bar';
import { isFluent, isMaterial } from '@js/ui/themes';
import type { EditorProperties, UnresolvedEvents } from '@ts/ui/editor/m_editor';
import Editor from '@ts/ui/editor/m_editor';
import type { EditorProperties, UnresolvedEvents } from '@ts/ui/editor/editor';
import Editor from '@ts/ui/editor/editor';

const window = getWindow();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import { extend } from '@js/core/utils/extend';
import { isDefined } from '@js/core/utils/type';
import DataExpressionMixin from '@js/ui/editor/ui.data_expression';
import type { Properties } from '@js/ui/radio_group';
import type { EditorProperties, UnresolvedEvents } from '@ts/ui/editor/m_editor';
import Editor from '@ts/ui/editor/m_editor';
import type { EditorProperties, UnresolvedEvents } from '@ts/ui/editor/editor';
import Editor from '@ts/ui/editor/editor';

import RadioCollection from './m_radio_collection';

Expand Down
2 changes: 1 addition & 1 deletion packages/devextreme/js/ui/editor/editor.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Editor from '../../__internal/ui/editor/m_editor';
import Editor from '../../__internal/ui/editor/editor';

export default Editor;

Expand Down

0 comments on commit c3ae57e

Please sign in to comment.