ai.touchui-vue 1.34.0 → 1.34.1
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/lib/ai.touchui-vue.common.js +9 -9
- package/lib/index.js +1 -1
- package/lib/input.js +3 -3
- package/package.json +1 -1
- package/packages/input/src/input.vue +1 -1
- package/src/index.js +1 -1
package/lib/input.js
CHANGED
|
@@ -206,7 +206,7 @@ module.exports = require("ai.touchui-vue/lib/mixins/locale");
|
|
|
206
206
|
// ESM COMPAT FLAG
|
|
207
207
|
__webpack_require__.r(__webpack_exports__);
|
|
208
208
|
|
|
209
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/input/src/input.vue?vue&type=template&id=
|
|
209
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/input/src/input.vue?vue&type=template&id=08d01f02
|
|
210
210
|
var render = function () {
|
|
211
211
|
var _vm = this
|
|
212
212
|
var _h = _vm.$createElement
|
|
@@ -610,7 +610,7 @@ var staticRenderFns = []
|
|
|
610
610
|
render._withStripped = true
|
|
611
611
|
|
|
612
612
|
|
|
613
|
-
// CONCATENATED MODULE: ./packages/input/src/input.vue?vue&type=template&id=
|
|
613
|
+
// CONCATENATED MODULE: ./packages/input/src/input.vue?vue&type=template&id=08d01f02
|
|
614
614
|
|
|
615
615
|
// CONCATENATED MODULE: ./src/utils/string.js
|
|
616
616
|
function filter(chars, from) {
|
|
@@ -1206,7 +1206,7 @@ var tip_default = /*#__PURE__*/__webpack_require__.n(tip_);
|
|
|
1206
1206
|
this.data = 'NaN';
|
|
1207
1207
|
}
|
|
1208
1208
|
|
|
1209
|
-
if (Number(this.conversionType)) {
|
|
1209
|
+
if (Number(this.conversionType) && this.data) {
|
|
1210
1210
|
this.data = this.formatNumber(this.data, this.dot, Number(this.conversionType));
|
|
1211
1211
|
}
|
|
1212
1212
|
}
|
package/package.json
CHANGED