Skip to content

Commit

Permalink
fix: relative imports (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
ph-fritsche committed Mar 24, 2021
1 parent d5aa3ee commit 0882e4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/utils/edit/calculateNewValue.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {isElementType} from 'utils/misc/isElementType'
import {isElementType} from '../misc/isElementType'
import {getSelectionRange} from './selectionRange'
import {getValue} from './getValue'
import {isValidDateValue} from './isValidDateValue'
Expand Down
2 changes: 1 addition & 1 deletion src/utils/edit/hasUnreliableEmptyValue.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {isElementType} from 'utils/misc/isElementType'
import {isElementType} from '../misc/isElementType'

enum unreliableValueInputTypes {
'number' = 'number',
Expand Down
2 changes: 1 addition & 1 deletion src/utils/edit/selectionRange.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {isElementType} from 'utils/misc/isElementType'
import {isElementType} from '../misc/isElementType'

// https://github.com/jsdom/jsdom/blob/c2fb8ff94917a4d45e2398543f5dd2a8fed0bdab/lib/jsdom/living/nodes/HTMLInputElement-impl.js#L45
enum selectionSupportType {
Expand Down

0 comments on commit 0882e4d

Please sign in to comment.