We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4fb438 commit 901fc8cCopy full SHA for 901fc8c
packages/field/src/FormatMixin.js
@@ -1,7 +1,6 @@
1
/* eslint-disable class-methods-use-this */
2
3
import { dedupeMixin } from '@lion/core';
4
-import { EventMixin } from '@lion/core/src/EventMixin.js';
5
import { ObserverMixin } from '@lion/core/src/ObserverMixin.js';
6
import { Unparseable } from '@lion/validate';
7
@@ -21,7 +20,7 @@ import { Unparseable } from '@lion/validate';
21
20
export const FormatMixin = dedupeMixin(
22
superclass =>
23
// eslint-disable-next-line no-unused-vars, no-shadow
24
- class FormatMixin extends EventMixin(ObserverMixin(superclass)) {
+ class FormatMixin extends ObserverMixin(superclass) {
25
static get properties() {
26
return {
27
...super.properties,
0 commit comments