Browse Source

Merge pull request #1108 in VISUAL/fineui from ~ZHENFEI.LI/fineui:master to master

* commit '914a1ccdf4abb63903623bc22e5960e3d9cbfc57':
  CHART-10138 fix: 滑块继承BI.Single
  CHART-10138 chore: build一下
  CHART-10138 fix: 滑块需要tooltip
es6
guy 5 years ago
parent
commit
72d82fc170
  1. 9
      dist/2.0/fineui.ie.js
  2. 38
      dist/2.0/fineui.ie.min.js
  3. 9
      dist/2.0/fineui.js
  4. 38
      dist/2.0/fineui.min.js
  5. 9
      dist/bundle.ie.js
  6. 38
      dist/bundle.ie.min.js
  7. 9
      dist/bundle.js
  8. 38
      dist/bundle.min.js
  9. 9
      dist/fineui.ie.js
  10. 53
      dist/fineui.ie.min.js
  11. 9
      dist/fineui.js
  12. 41
      dist/fineui.min.js
  13. 9
      dist/fineui_without_jquery_polyfill.js
  14. 10
      dist/utils.min.js
  15. 9
      dist/widget.js
  16. 2
      src/widget/singleslider/singleslider.js
  17. 2
      src/widget/singleslider/singleslider.label.js
  18. 2
      src/widget/singleslider/singleslider.normal.js

9
dist/2.0/fineui.ie.js vendored

@ -77539,11 +77539,10 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
errorText: o.errorText
});
this.editor.on(BI.TextEditor.EVENT_CHANGE, function () {
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CHANGE);
});
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () {
this.setValue(BI.parseFloat(this.getValue()));
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM);
});
this.topBtn = BI.createWidget({
@ -82473,7 +82472,7 @@ BI.SliderIconButton = BI.inherit(BI.Widget, {
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);/**
* Created by zcf on 2016/9/22.
*/
BI.SingleSlider = BI.inherit(BI.Widget, {
BI.SingleSlider = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 30,
@ -82807,7 +82806,7 @@ BI.SingleSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider", BI.SingleSlider);/**
* Created by Urthur on 2017/9/12.
*/
BI.SingleSliderLabel = BI.inherit(BI.Widget, {
BI.SingleSliderLabel = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20,
@ -83116,7 +83115,7 @@ BI.shortcut("bi.single_slider_label", BI.SingleSliderLabel);/**
* normal single slider
* Created by Young on 2017/6/21.
*/
BI.SingleSliderNormal = BI.inherit(BI.Widget, {
BI.SingleSliderNormal = BI.inherit(BI.Single, {
_constant: {
HEIGHT: 28,

38
dist/2.0/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/2.0/fineui.js vendored

@ -77943,11 +77943,10 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
errorText: o.errorText
});
this.editor.on(BI.TextEditor.EVENT_CHANGE, function () {
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CHANGE);
});
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () {
this.setValue(BI.parseFloat(this.getValue()));
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM);
});
this.topBtn = BI.createWidget({
@ -82877,7 +82876,7 @@ BI.SliderIconButton = BI.inherit(BI.Widget, {
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);/**
* Created by zcf on 2016/9/22.
*/
BI.SingleSlider = BI.inherit(BI.Widget, {
BI.SingleSlider = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 30,
@ -83211,7 +83210,7 @@ BI.SingleSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider", BI.SingleSlider);/**
* Created by Urthur on 2017/9/12.
*/
BI.SingleSliderLabel = BI.inherit(BI.Widget, {
BI.SingleSliderLabel = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20,
@ -83520,7 +83519,7 @@ BI.shortcut("bi.single_slider_label", BI.SingleSliderLabel);/**
* normal single slider
* Created by Young on 2017/6/21.
*/
BI.SingleSliderNormal = BI.inherit(BI.Widget, {
BI.SingleSliderNormal = BI.inherit(BI.Single, {
_constant: {
HEIGHT: 28,

38
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/bundle.ie.js vendored

@ -77539,11 +77539,10 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
errorText: o.errorText
});
this.editor.on(BI.TextEditor.EVENT_CHANGE, function () {
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CHANGE);
});
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () {
this.setValue(BI.parseFloat(this.getValue()));
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM);
});
this.topBtn = BI.createWidget({
@ -82473,7 +82472,7 @@ BI.SliderIconButton = BI.inherit(BI.Widget, {
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);/**
* Created by zcf on 2016/9/22.
*/
BI.SingleSlider = BI.inherit(BI.Widget, {
BI.SingleSlider = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 30,
@ -82807,7 +82806,7 @@ BI.SingleSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider", BI.SingleSlider);/**
* Created by Urthur on 2017/9/12.
*/
BI.SingleSliderLabel = BI.inherit(BI.Widget, {
BI.SingleSliderLabel = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20,
@ -83116,7 +83115,7 @@ BI.shortcut("bi.single_slider_label", BI.SingleSliderLabel);/**
* normal single slider
* Created by Young on 2017/6/21.
*/
BI.SingleSliderNormal = BI.inherit(BI.Widget, {
BI.SingleSliderNormal = BI.inherit(BI.Single, {
_constant: {
HEIGHT: 28,

38
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/bundle.js vendored

@ -77943,11 +77943,10 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
errorText: o.errorText
});
this.editor.on(BI.TextEditor.EVENT_CHANGE, function () {
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CHANGE);
});
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () {
this.setValue(BI.parseFloat(this.getValue()));
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM);
});
this.topBtn = BI.createWidget({
@ -82877,7 +82876,7 @@ BI.SliderIconButton = BI.inherit(BI.Widget, {
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);/**
* Created by zcf on 2016/9/22.
*/
BI.SingleSlider = BI.inherit(BI.Widget, {
BI.SingleSlider = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 30,
@ -83211,7 +83210,7 @@ BI.SingleSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider", BI.SingleSlider);/**
* Created by Urthur on 2017/9/12.
*/
BI.SingleSliderLabel = BI.inherit(BI.Widget, {
BI.SingleSliderLabel = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20,
@ -83520,7 +83519,7 @@ BI.shortcut("bi.single_slider_label", BI.SingleSliderLabel);/**
* normal single slider
* Created by Young on 2017/6/21.
*/
BI.SingleSliderNormal = BI.inherit(BI.Widget, {
BI.SingleSliderNormal = BI.inherit(BI.Single, {
_constant: {
HEIGHT: 28,

38
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/fineui.ie.js vendored

@ -77784,11 +77784,10 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
errorText: o.errorText
});
this.editor.on(BI.TextEditor.EVENT_CHANGE, function () {
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CHANGE);
});
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () {
this.setValue(BI.parseFloat(this.getValue()));
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM);
});
this.topBtn = BI.createWidget({
@ -82718,7 +82717,7 @@ BI.SliderIconButton = BI.inherit(BI.Widget, {
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);/**
* Created by zcf on 2016/9/22.
*/
BI.SingleSlider = BI.inherit(BI.Widget, {
BI.SingleSlider = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 30,
@ -83052,7 +83051,7 @@ BI.SingleSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider", BI.SingleSlider);/**
* Created by Urthur on 2017/9/12.
*/
BI.SingleSliderLabel = BI.inherit(BI.Widget, {
BI.SingleSliderLabel = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20,
@ -83361,7 +83360,7 @@ BI.shortcut("bi.single_slider_label", BI.SingleSliderLabel);/**
* normal single slider
* Created by Young on 2017/6/21.
*/
BI.SingleSliderNormal = BI.inherit(BI.Widget, {
BI.SingleSliderNormal = BI.inherit(BI.Single, {
_constant: {
HEIGHT: 28,

53
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/fineui.js vendored

@ -78188,11 +78188,10 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
errorText: o.errorText
});
this.editor.on(BI.TextEditor.EVENT_CHANGE, function () {
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CHANGE);
});
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () {
this.setValue(BI.parseFloat(this.getValue()));
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM);
});
this.topBtn = BI.createWidget({
@ -83122,7 +83121,7 @@ BI.SliderIconButton = BI.inherit(BI.Widget, {
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);/**
* Created by zcf on 2016/9/22.
*/
BI.SingleSlider = BI.inherit(BI.Widget, {
BI.SingleSlider = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 30,
@ -83456,7 +83455,7 @@ BI.SingleSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider", BI.SingleSlider);/**
* Created by Urthur on 2017/9/12.
*/
BI.SingleSliderLabel = BI.inherit(BI.Widget, {
BI.SingleSliderLabel = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20,
@ -83765,7 +83764,7 @@ BI.shortcut("bi.single_slider_label", BI.SingleSliderLabel);/**
* normal single slider
* Created by Young on 2017/6/21.
*/
BI.SingleSliderNormal = BI.inherit(BI.Widget, {
BI.SingleSliderNormal = BI.inherit(BI.Single, {
_constant: {
HEIGHT: 28,

41
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/fineui_without_jquery_polyfill.js vendored

@ -60488,11 +60488,10 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
errorText: o.errorText
});
this.editor.on(BI.TextEditor.EVENT_CHANGE, function () {
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CHANGE);
});
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () {
this.setValue(BI.parseFloat(this.getValue()));
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM);
});
this.topBtn = BI.createWidget({
@ -65422,7 +65421,7 @@ BI.SliderIconButton = BI.inherit(BI.Widget, {
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);/**
* Created by zcf on 2016/9/22.
*/
BI.SingleSlider = BI.inherit(BI.Widget, {
BI.SingleSlider = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 30,
@ -65756,7 +65755,7 @@ BI.SingleSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider", BI.SingleSlider);/**
* Created by Urthur on 2017/9/12.
*/
BI.SingleSliderLabel = BI.inherit(BI.Widget, {
BI.SingleSliderLabel = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20,
@ -66065,7 +66064,7 @@ BI.shortcut("bi.single_slider_label", BI.SingleSliderLabel);/**
* normal single slider
* Created by Young on 2017/6/21.
*/
BI.SingleSliderNormal = BI.inherit(BI.Widget, {
BI.SingleSliderNormal = BI.inherit(BI.Single, {
_constant: {
HEIGHT: 28,

10
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/widget.js vendored

@ -15599,11 +15599,10 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
errorText: o.errorText
});
this.editor.on(BI.TextEditor.EVENT_CHANGE, function () {
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CHANGE);
});
this.editor.on(BI.TextEditor.EVENT_CONFIRM, function () {
this.setValue(BI.parseFloat(this.getValue()));
o.value = BI.parseFloat(this.getValue());
self.fireEvent(BI.NumberEditor.EVENT_CONFIRM);
});
this.topBtn = BI.createWidget({
@ -20533,7 +20532,7 @@ BI.SliderIconButton = BI.inherit(BI.Widget, {
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);/**
* Created by zcf on 2016/9/22.
*/
BI.SingleSlider = BI.inherit(BI.Widget, {
BI.SingleSlider = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 30,
@ -20867,7 +20866,7 @@ BI.SingleSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider", BI.SingleSlider);/**
* Created by Urthur on 2017/9/12.
*/
BI.SingleSliderLabel = BI.inherit(BI.Widget, {
BI.SingleSliderLabel = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20,
@ -21176,7 +21175,7 @@ BI.shortcut("bi.single_slider_label", BI.SingleSliderLabel);/**
* normal single slider
* Created by Young on 2017/6/21.
*/
BI.SingleSliderNormal = BI.inherit(BI.Widget, {
BI.SingleSliderNormal = BI.inherit(BI.Single, {
_constant: {
HEIGHT: 28,

2
src/widget/singleslider/singleslider.js

@ -1,7 +1,7 @@
/**
* Created by zcf on 2016/9/22.
*/
BI.SingleSlider = BI.inherit(BI.Widget, {
BI.SingleSlider = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 30,

2
src/widget/singleslider/singleslider.label.js

@ -1,7 +1,7 @@
/**
* Created by Urthur on 2017/9/12.
*/
BI.SingleSliderLabel = BI.inherit(BI.Widget, {
BI.SingleSliderLabel = BI.inherit(BI.Single, {
_constant: {
EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20,

2
src/widget/singleslider/singleslider.normal.js

@ -2,7 +2,7 @@
* normal single slider
* Created by Young on 2017/6/21.
*/
BI.SingleSliderNormal = BI.inherit(BI.Widget, {
BI.SingleSliderNormal = BI.inherit(BI.Single, {
_constant: {
HEIGHT: 28,

Loading…
Cancel
Save