fix(field): remove unused EventMixin from FormatMixin
This commit is contained in:
parent
f4fb438363
commit
901fc8c503
1 changed files with 1 additions and 2 deletions
|
|
@ -1,7 +1,6 @@
|
||||||
/* eslint-disable class-methods-use-this */
|
/* eslint-disable class-methods-use-this */
|
||||||
|
|
||||||
import { dedupeMixin } from '@lion/core';
|
import { dedupeMixin } from '@lion/core';
|
||||||
import { EventMixin } from '@lion/core/src/EventMixin.js';
|
|
||||||
import { ObserverMixin } from '@lion/core/src/ObserverMixin.js';
|
import { ObserverMixin } from '@lion/core/src/ObserverMixin.js';
|
||||||
import { Unparseable } from '@lion/validate';
|
import { Unparseable } from '@lion/validate';
|
||||||
|
|
||||||
|
|
@ -21,7 +20,7 @@ import { Unparseable } from '@lion/validate';
|
||||||
export const FormatMixin = dedupeMixin(
|
export const FormatMixin = dedupeMixin(
|
||||||
superclass =>
|
superclass =>
|
||||||
// eslint-disable-next-line no-unused-vars, no-shadow
|
// eslint-disable-next-line no-unused-vars, no-shadow
|
||||||
class FormatMixin extends EventMixin(ObserverMixin(superclass)) {
|
class FormatMixin extends ObserverMixin(superclass) {
|
||||||
static get properties() {
|
static get properties() {
|
||||||
return {
|
return {
|
||||||
...super.properties,
|
...super.properties,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue