Skip to content

Commit 0835b91

Browse files
committed
v3.33.0
1 parent 84a5e51 commit 0835b91

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coders-tm/vue-number-format",
3-
"version": "3.32.0",
3+
"version": "3.33.0",
44
"private": false,
55
"description": "Easy formatted numbers, currency and percentage with input/directive mask for Vue.js",
66
"author": "Dipak Sarkar <[email protected]> (https://dipaksarkar.in/)",

src/component.vue

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
type="text"
55
autocomplete="off"
66
:value="maskedValue"
7+
:readonly="readonly"
8+
:disabled="disabled"
79
class="v-number vue-number-format"
810
@change="change"
911
@input="input"
@@ -33,10 +35,9 @@ export default defineComponent({
3335
type: [Number, String],
3436
default: options.nullValue
3537
},
36-
masked: {
37-
type: Boolean,
38-
default: false
39-
},
38+
masked: Boolean,
39+
readonly: Boolean,
40+
disabled: Boolean,
4041
reverseFill: {
4142
type: Boolean,
4243
default: options.reverseFill

0 commit comments

Comments
 (0)