Browse Source

BI-33222 改BI-27490导致的问题

es6
windy 6 years ago
parent
commit
3807432fca
  1. 4
      dist/bundle.ie.js
  2. 26
      dist/bundle.ie.min.js
  3. 4
      dist/bundle.js
  4. 8
      dist/bundle.min.js
  5. 25
      dist/demo.js
  6. 4
      dist/fineui.ie.js
  7. 26
      dist/fineui.ie.min.js
  8. 4
      dist/fineui.js
  9. 8
      dist/fineui.min.js
  10. 4
      dist/fineui_without_jquery_polyfill.js
  11. 2
      dist/utils.min.js
  12. 4
      dist/widget.js
  13. 2
      src/widget/dynamicdatetime/dynamicdatetime.timeselect.js

4
dist/bundle.ie.js vendored

@ -62568,7 +62568,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
_autoSwitch: function (v, type) {
var limit = 0;
var value = v;
var value = v + "";
switch (type) {
case BI.DynamicDateTimeSelect.HOUR:
limit = 2;
@ -71729,7 +71729,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
// 微调
_finetuning: function (add) {
var v = BI.parseFloat(this.getValue());
this.setValue(v.add(add));
this.setValue(BI.add(v, add));
},
setUpEnable: function (v) {

26
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -63107,7 +63107,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
_autoSwitch: function (v, type) {
var limit = 0;
var value = v;
var value = v + "";
switch (type) {
case BI.DynamicDateTimeSelect.HOUR:
limit = 2;
@ -72268,7 +72268,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
// 微调
_finetuning: function (add) {
var v = BI.parseFloat(this.getValue());
this.setValue(v.add(add));
this.setValue(BI.add(v, add));
},
setUpEnable: function (v) {

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

25
dist/demo.js vendored

@ -6044,7 +6044,30 @@ Demo.HtapeLayout = BI.inherit(BI.Widget, {
};
}
});
BI.shortcut("demo.htape", Demo.HtapeLayout);/**
BI.shortcut("demo.htape", Demo.HtapeLayout);Demo.InlineVerticalLayout = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-absolute"
},
render: function () {
return {
type: "bi.inline_vertical_adapt",
items: [{
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 200
}, {
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 100
}]
};
}
});
BI.shortcut("demo.inline_vertical", Demo.InlineVerticalLayout);/**
* Created by User on 2017/3/22.
*/
Demo.LeftRightVerticalAdaptLayout = BI.inherit(BI.Widget, {

4
dist/fineui.ie.js vendored

@ -62810,7 +62810,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
_autoSwitch: function (v, type) {
var limit = 0;
var value = v;
var value = v + "";
switch (type) {
case BI.DynamicDateTimeSelect.HOUR:
limit = 2;
@ -71971,7 +71971,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
// 微调
_finetuning: function (add) {
var v = BI.parseFloat(this.getValue());
this.setValue(v.add(add));
this.setValue(BI.add(v, add));
},
setUpEnable: function (v) {

26
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.js vendored

@ -63349,7 +63349,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
_autoSwitch: function (v, type) {
var limit = 0;
var value = v;
var value = v + "";
switch (type) {
case BI.DynamicDateTimeSelect.HOUR:
limit = 2;
@ -72510,7 +72510,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
// 微调
_finetuning: function (add) {
var v = BI.parseFloat(this.getValue());
this.setValue(v.add(add));
this.setValue(BI.add(v, add));
},
setUpEnable: function (v) {

8
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui_without_jquery_polyfill.js vendored

@ -46232,7 +46232,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
_autoSwitch: function (v, type) {
var limit = 0;
var value = v;
var value = v + "";
switch (type) {
case BI.DynamicDateTimeSelect.HOUR:
limit = 2;
@ -55393,7 +55393,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
// 微调
_finetuning: function (add) {
var v = BI.parseFloat(this.getValue());
this.setValue(v.add(add));
this.setValue(BI.add(v, add));
},
setUpEnable: function (v) {

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/widget.js vendored

@ -4424,7 +4424,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
_autoSwitch: function (v, type) {
var limit = 0;
var value = v;
var value = v + "";
switch (type) {
case BI.DynamicDateTimeSelect.HOUR:
limit = 2;
@ -13585,7 +13585,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
// 微调
_finetuning: function (add) {
var v = BI.parseFloat(this.getValue());
this.setValue(v.add(add));
this.setValue(BI.add(v, add));
},
setUpEnable: function (v) {

2
src/widget/dynamicdatetime/dynamicdatetime.timeselect.js

@ -137,7 +137,7 @@ BI.DynamicDateTimeSelect = BI.inherit(BI.Widget, {
_autoSwitch: function (v, type) {
var limit = 0;
var value = v;
var value = v + "";
switch (type) {
case BI.DynamicDateTimeSelect.HOUR:
limit = 2;

Loading…
Cancel
Save