windy 6 years ago
parent
commit
ff9c28669a
  1. 26
      dist/_fineui.min.js
  2. 4
      dist/bundle.js
  3. 28
      dist/bundle.min.js
  4. 2
      dist/core.js
  5. 4
      dist/fineui.js
  6. 26
      dist/fineui.min.js
  7. 2
      src/core/alias.js
  8. 2
      utils/utils.js

26
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -26161,7 +26161,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
cv = new Date(cv);
} else {
// 字符串类型,如yyyyMMdd、MMddyyyy等这样无分隔符的结构
cv = Date.parseDateTime(cv + "", Date.patterns.ISO8601Long);
cv = Date.parseDate(cv + "", Date.patterns.ISO8601Long);
}
}
if (!BI.isNull(cv)) {
@ -54528,7 +54528,7 @@ BI.TextAreaEditor = BI.inherit(BI.Single, {
height: "100%",
cls: "bi-textarea textarea-editor-content display-block"
});
this.content.element.css({resize: "none"});
this.content.element.css({resize: "none", whiteSpace: "normal"});
BI.createWidget({
type: "bi.absolute",
element: this,

28
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/core.js vendored

@ -26161,7 +26161,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
cv = new Date(cv);
} else {
// 字符串类型,如yyyyMMdd、MMddyyyy等这样无分隔符的结构
cv = Date.parseDateTime(cv + "", Date.patterns.ISO8601Long);
cv = Date.parseDate(cv + "", Date.patterns.ISO8601Long);
}
}
if (!BI.isNull(cv)) {

4
dist/fineui.js vendored

@ -26410,7 +26410,7 @@ BI.ShowAction = BI.inherit(BI.Action, {
cv = new Date(cv);
} else {
// 字符串类型,如yyyyMMdd、MMddyyyy等这样无分隔符的结构
cv = Date.parseDateTime(cv + "", Date.patterns.ISO8601Long);
cv = Date.parseDate(cv + "", Date.patterns.ISO8601Long);
}
}
if (!BI.isNull(cv)) {
@ -54777,7 +54777,7 @@ BI.TextAreaEditor = BI.inherit(BI.Single, {
height: "100%",
cls: "bi-textarea textarea-editor-content display-block"
});
this.content.element.css({resize: "none"});
this.content.element.css({resize: "none", whiteSpace: "normal"});
BI.createWidget({
type: "bi.absolute",
element: this,

26
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/core/alias.js

@ -486,7 +486,7 @@
cv = new Date(cv);
} else {
// 字符串类型,如yyyyMMdd、MMddyyyy等这样无分隔符的结构
cv = Date.parseDateTime(cv + "", Date.patterns.ISO8601Long);
cv = Date.parseDate(cv + "", Date.patterns.ISO8601Long);
}
}
if (!BI.isNull(cv)) {

2
utils/utils.js

@ -12958,7 +12958,7 @@ _.extend(BI.OB.prototype, {
cv = new Date(cv);
} else {
// 字符串类型,如yyyyMMdd、MMddyyyy等这样无分隔符的结构
cv = Date.parseDateTime(cv + "", Date.patterns.ISO8601Long);
cv = Date.parseDate(cv + "", Date.patterns.ISO8601Long);
}
}
if (!BI.isNull(cv)) {

Loading…
Cancel
Save