fix(field): remove unused EventMixin from FormatMixin

This commit is contained in:
Thomas Allmer 2019-07-14 21:47:38 +02:00
parent f4fb438363
commit 901fc8c503

View file

@ -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,