chore(input): fix linting by importing locally
This commit is contained in:
parent
cbbf0d49fb
commit
7df05820e8
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
import { storiesOf, html } from '@open-wc/storybook';
|
import { storiesOf, html } from '@open-wc/storybook';
|
||||||
import { maxLengthValidator } from '@lion/validate';
|
import { maxLengthValidator } from '@lion/validate';
|
||||||
import { localize, LocalizeMixin } from '@lion/localize';
|
import { localize, LocalizeMixin } from '@lion/localize';
|
||||||
import { LionInput } from '@lion/input';
|
import { LionInput } from '../src/LionInput.js';
|
||||||
|
|
||||||
storiesOf('Forms|<lion-input> Localize', module).add('localize', () => {
|
storiesOf('Forms|<lion-input> Localize', module).add('localize', () => {
|
||||||
class InputValidationExample extends LocalizeMixin(LionInput) {
|
class InputValidationExample extends LocalizeMixin(LionInput) {
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import {
|
||||||
isEmailValidator,
|
isEmailValidator,
|
||||||
} from '@lion/validate';
|
} from '@lion/validate';
|
||||||
import { LocalizeMixin } from '@lion/localize';
|
import { LocalizeMixin } from '@lion/localize';
|
||||||
import { LionInput } from '@lion/input';
|
import { LionInput } from '../src/LionInput.js';
|
||||||
|
|
||||||
storiesOf('Forms|<lion-input> String Validation', module)
|
storiesOf('Forms|<lion-input> String Validation', module)
|
||||||
.add(
|
.add(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue