bkui-vue 1.0.3-beta.67.dialog.1 → 1.0.3-beta.67.dialog.2
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +10 -7
- package/dist/index.umd.js +1 -1
- package/lib/input/index.js +2 -1
- package/package.json +1 -1
package/lib/input/index.js
CHANGED
@@ -948,13 +948,14 @@ var inputEmitEventsType = (_inputEmitEventsType = {}, _defineProperty(_definePro
|
|
948
948
|
});
|
949
949
|
});
|
950
950
|
var tooltips = (0,external_vue_namespaceObject.computed)(function () {
|
951
|
+
var _props$modelValue2;
|
951
952
|
if (showMaxLimit.value && ceilMaxLength.value - modelValueLength.value === 0) {
|
952
953
|
return {
|
953
954
|
content: t.value.maxlengthLimitTips
|
954
955
|
};
|
955
956
|
}
|
956
957
|
return props.showOverflowTooltips && isOverflow.value && props.modelValue ? {
|
957
|
-
content: props.modelValue,
|
958
|
+
content: (_props$modelValue2 = props.modelValue) === null || _props$modelValue2 === void 0 ? void 0 : _props$modelValue2.toString(),
|
958
959
|
sameWidth: true
|
959
960
|
} : {
|
960
961
|
disabled: true
|