@ -1,5 +1,6 @@
# 更新日志
2.0(2020-12)
- [视觉]editor水印间距统一与文本域水印不可选中
- 修复bi.file的url参数拼接问题
- 修复了colorChooser选择透明后, 打开更多选色面板, 直接点保存会选中自动的问题
- bi.file支持限制上传文件数
@ -84,7 +84,7 @@ BI.TextAreaEditor = BI.inherit(BI.Single, {
if (!this.watermark) {
this.watermark = BI.createWidget({
type: "bi.text_button",
cls: "bi-water-mark cursor-default textarea-watermark",
cls: "bi-water-mark cursor-default textarea-watermark bi-user-select-disable",
textAlign: "left",
whiteSpace: "normal",
text: o.watermark,
@ -52,7 +52,7 @@ BI.ShelterEditor = BI.inherit(BI.Widget, {
tipType: o.tipType,
textAlign: o.textAlign,
height: o.height,
hgap: o.hgap
hgap: o.hgap + 2
});
BI.createWidget({
type: "bi.absolute",
@ -52,7 +52,7 @@ BI.SignEditor = BI.inherit(BI.Widget, {
hgap: o.hgap,
hgap: o.hgap + 2,
handler: function () {
self._showInput();
self.editor.focus();
@ -51,7 +51,7 @@ BI.StateEditor = BI.inherit(BI.Widget, {
text: o.text,
@ -51,7 +51,7 @@ BI.SimpleStateEditor = BI.inherit(BI.Widget, {