Skip to content

Commit

Permalink
v3.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dipaksarkar committed Oct 25, 2023
1 parent 84a5e51 commit 0835b91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coders-tm/vue-number-format",
"version": "3.32.0",
"version": "3.33.0",
"private": false,
"description": "Easy formatted numbers, currency and percentage with input/directive mask for Vue.js",
"author": "Dipak Sarkar <[email protected]> (https://dipaksarkar.in/)",
Expand Down
9 changes: 5 additions & 4 deletions src/component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
type="text"
autocomplete="off"
:value="maskedValue"
:readonly="readonly"
:disabled="disabled"
class="v-number vue-number-format"
@change="change"
@input="input"
Expand Down Expand Up @@ -33,10 +35,9 @@ export default defineComponent({
type: [Number, String],
default: options.nullValue
},
masked: {
type: Boolean,
default: false
},
masked: Boolean,
readonly: Boolean,
disabled: Boolean,
reverseFill: {
type: Boolean,
default: options.reverseFill
Expand Down

0 comments on commit 0835b91

Please sign in to comment.