Skip to content

Commit 54ccb00

Browse files
committed
Focus class removed in favor of method
1 parent 067eb85 commit 54ccb00

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/elements/Input.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div v-bind:class="['ui', getSlotsClasses(), getIconClasses(), getSizeClasses(),
33
{ 'fluid' : fluid }, { 'inverted' : inverted },
44
{ 'transparent' : transparent }, { 'disabled' : disabled }, 'input',
5-
{ 'focus' : focus }, { 'loading' : loading }, { 'error' : error }]">
5+
{ 'loading' : loading }, { 'error' : error }]">
66
<slot name="left-label"></slot>
77
<slot name="left-action"></slot>
88
<input
@@ -70,15 +70,14 @@
7070
import Constants from '../mixins/commons/constants.js'
7171
import Input from '../mixins/commons/input/'
7272
import RandomProp from '../mixins/commons/props/random.js'
73-
import Focus from '../mixins/commons/states/focus.js'
7473
import Loading from '../mixins/commons/states/loading.js'
7574
import Error from '../mixins/commons/states/error.js'
7675
import Icon from '../mixins/commons/icon.js'
7776
import Inverted from '../mixins/commons/inverted.js'
7877
import Size from '../mixins/commons/sizes/six.js'
7978
8079
export default {
81-
mixins: [Input, Focus, Loading, Error, Icon, Inverted, Size],
80+
mixins: [Input, Loading, Error, Icon, Inverted, Size],
8281
data() {
8382
return {
8483
dIcon: {

0 commit comments

Comments
 (0)