@policystudio/policy-studio-ui-vue 1.0.70 → 1.0.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
:placeholder="placeholder"
|
|
19
19
|
:disabled="disabled"
|
|
20
20
|
:value="value"
|
|
21
|
+
:min="minValue"
|
|
22
|
+
:max="maxValue"
|
|
21
23
|
@focus="onInputFocus"
|
|
22
24
|
@blur="onInputBlur"
|
|
23
25
|
@input="$emit('input', $event)"
|
|
@@ -105,6 +107,12 @@ export default {
|
|
|
105
107
|
type: Boolean,
|
|
106
108
|
default: false
|
|
107
109
|
},
|
|
110
|
+
minValue: {
|
|
111
|
+
type: Number
|
|
112
|
+
},
|
|
113
|
+
maxValue: {
|
|
114
|
+
type: Number
|
|
115
|
+
}
|
|
108
116
|
},
|
|
109
117
|
data: () => ({
|
|
110
118
|
isFocus: false,
|