Skip to content

Commit

Permalink
fix(lib): fix undefined variable
Browse files Browse the repository at this point in the history
fix undefined variable textFieldClasses
  • Loading branch information
yogaaccredify committed Sep 1, 2021
1 parent 8c4e6bc commit 8b592a7
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 9 deletions.
14 changes: 10 additions & 4 deletions dist/vue-tel-input-vuetify.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vue-tel-input-vuetify.min.js

Large diffs are not rendered by default.

14 changes: 10 additions & 4 deletions dist/vue-tel-input-vuetify.umd.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions lib/vue-tel-input-vuetify.vue
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,10 @@ export default {
type: [String, Array, Object],
default: () => getDefault('wrapperClasses'),
},
textFieldClasses: {
type: [String, Array, Object],
default: () => '',
},
selectClasses: {
type: [String, Array, Object],
default: () => '',
Expand Down
4 changes: 4 additions & 0 deletions src/lib/vue-tel-input-vuetify.vue
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,10 @@ export default {
type: [String, Array, Object],
default: () => getDefault('wrapperClasses'),
},
textFieldClasses: {
type: [String, Array, Object],
default: () => '',
},
selectClasses: {
type: [String, Array, Object],
default: () => '',
Expand Down

0 comments on commit 8b592a7

Please sign in to comment.