windy 6 years ago
parent
commit
26938a06e2
  1. 84
      dist/_fineui.min.js
  2. 11
      dist/base.js
  3. 11
      dist/bundle.js
  4. 28
      dist/bundle.min.js
  5. 11
      dist/fineui.js
  6. 84
      dist/fineui.min.js
  7. 2
      dist/utils.min.js
  8. 11
      src/base/single/single.js

84
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

11
dist/base.js vendored

@ -342,9 +342,7 @@ BI.Single = BI.inherit(BI.Widget, {
warningTitle: null,
tipType: null, // success或warning
value: null,
belowMouse: false, // title是否跟随鼠标,
// 之所以默认为body,是因为transform的效果影响
container: "body"
belowMouse: false // title是否跟随鼠标,
});
},
@ -378,8 +376,7 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(o.title) || BI.isKey(o.warningTitle)
|| BI.isFunction(o.title) || BI.isFunction(o.warningTitle)) {
this.enableHover({
belowMouse: o.belowMouse,
container: o.container
belowMouse: o.belowMouse
});
}
},
@ -487,10 +484,6 @@ BI.Single = BI.inherit(BI.Widget, {
getValue: function () {
return this.options.value;
},
destroyed: function () {
BI.Tooltips.remove(this.getName());
}
});/**
* guy 表示一行数据通过position来定位位置的数据

11
dist/bundle.js vendored

@ -36257,9 +36257,7 @@ BI.Single = BI.inherit(BI.Widget, {
warningTitle: null,
tipType: null, // success或warning
value: null,
belowMouse: false, // title是否跟随鼠标,
// 之所以默认为body,是因为transform的效果影响
container: "body"
belowMouse: false // title是否跟随鼠标,
});
},
@ -36293,8 +36291,7 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(o.title) || BI.isKey(o.warningTitle)
|| BI.isFunction(o.title) || BI.isFunction(o.warningTitle)) {
this.enableHover({
belowMouse: o.belowMouse,
container: o.container
belowMouse: o.belowMouse
});
}
},
@ -36402,10 +36399,6 @@ BI.Single = BI.inherit(BI.Widget, {
getValue: function () {
return this.options.value;
},
destroyed: function () {
BI.Tooltips.remove(this.getName());
}
});/**
* guy 表示一行数据通过position来定位位置的数据

28
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

11
dist/fineui.js vendored

@ -36506,9 +36506,7 @@ BI.Single = BI.inherit(BI.Widget, {
warningTitle: null,
tipType: null, // success或warning
value: null,
belowMouse: false, // title是否跟随鼠标,
// 之所以默认为body,是因为transform的效果影响
container: "body"
belowMouse: false // title是否跟随鼠标,
});
},
@ -36542,8 +36540,7 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(o.title) || BI.isKey(o.warningTitle)
|| BI.isFunction(o.title) || BI.isFunction(o.warningTitle)) {
this.enableHover({
belowMouse: o.belowMouse,
container: o.container
belowMouse: o.belowMouse
});
}
},
@ -36651,10 +36648,6 @@ BI.Single = BI.inherit(BI.Widget, {
getValue: function () {
return this.options.value;
},
destroyed: function () {
BI.Tooltips.remove(this.getName());
}
});/**
* guy 表示一行数据通过position来定位位置的数据

84
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

11
src/base/single/single.js

@ -19,9 +19,7 @@ BI.Single = BI.inherit(BI.Widget, {
warningTitle: null,
tipType: null, // success或warning
value: null,
belowMouse: false, // title是否跟随鼠标,
// 之所以默认为body,是因为transform的效果影响
container: "body"
belowMouse: false // title是否跟随鼠标,
});
},
@ -55,8 +53,7 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(o.title) || BI.isKey(o.warningTitle)
|| BI.isFunction(o.title) || BI.isFunction(o.warningTitle)) {
this.enableHover({
belowMouse: o.belowMouse,
container: o.container
belowMouse: o.belowMouse
});
}
},
@ -164,9 +161,5 @@ BI.Single = BI.inherit(BI.Widget, {
getValue: function () {
return this.options.value;
},
destroyed: function () {
BI.Tooltips.remove(this.getName());
}
});
Loading…
Cancel
Save