Skip to content

Commit

Permalink
chore: fix circular imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov committed Mar 7, 2024
1 parent 603a621 commit c8106ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projects/core/src/lib/utils/content-editable.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type {MaskitoElement, TextfieldLike} from '../types';
import {getContentEditableSelection, setContentEditableSelection} from './index';
import {getContentEditableSelection} from './dom/get-content-editable-selection';
import {setContentEditableSelection} from './dom/set-content-editable-selection';

class ContentEditableAdapter implements TextfieldLike {
public maxLength = Infinity;
Expand Down

0 comments on commit c8106ad

Please sign in to comment.