Browse Source

Merge pull request #1260 in VISUAL/fineui from ~DAILER/fineui:master to master

* commit 'e8d88139d87a3fc95a9184a593ccfa415c9cbdf8':
  无JIRA for ... in ... 数组在ie下会取到prototype上的属性
es6
parent
commit
05951a30db
  1. 2
      dist/2.0/fineui.css.map
  2. 110
      dist/2.0/fineui.ie.js
  3. 2
      dist/2.0/fineui.ie.js.map
  4. 44
      dist/2.0/fineui.ie.min.js
  5. 2
      dist/2.0/fineui.ie.min.js.map
  6. 44
      dist/2.0/fineui.js
  7. 2
      dist/2.0/fineui.js.map
  8. 2
      dist/2.0/fineui.min.css
  9. 86
      dist/2.0/fineui.min.js
  10. 2
      dist/2.0/fineui.min.js.map
  11. 2
      dist/base.css.map
  12. 2
      dist/base.js.map
  13. 2
      dist/bundle.css.map
  14. 110
      dist/bundle.ie.js
  15. 2
      dist/bundle.ie.js.map
  16. 44
      dist/bundle.ie.min.js
  17. 2
      dist/bundle.ie.min.js.map
  18. 44
      dist/bundle.js
  19. 2
      dist/bundle.js.map
  20. 2
      dist/bundle.min.css
  21. 86
      dist/bundle.min.js
  22. 2
      dist/bundle.min.js.map
  23. 2
      dist/case.js.map
  24. 2
      dist/config.js.map
  25. 2
      dist/core.css.map
  26. 4
      dist/core.js
  27. 2
      dist/core.js.map
  28. 2
      dist/core_without_normalize.css.map
  29. 2
      dist/demo.js.map
  30. 2
      dist/es5.fineui.js.map
  31. 2
      dist/fineui.css.map
  32. 110
      dist/fineui.ie.js
  33. 2
      dist/fineui.ie.js.map
  34. 68
      dist/fineui.ie.min.js
  35. 2
      dist/fineui.ie.min.js.map
  36. 44
      dist/fineui.js
  37. 2
      dist/fineui.js.map
  38. 2
      dist/fineui.min.css
  39. 32
      dist/fineui.min.js
  40. 2
      dist/fineui.min.js.map
  41. 42
      dist/fineui_without_jquery_polyfill.js
  42. 2
      dist/fineui_without_jquery_polyfill.js.map
  43. 2
      dist/ie.fineui.js.map
  44. 2
      dist/polyfill.js.map
  45. 2
      dist/router.js.map
  46. 2
      dist/utils.js
  47. 2
      dist/utils.js.map
  48. 4
      dist/utils.min.js
  49. 2
      dist/utils.min.js.map
  50. 2
      dist/widget.css.map
  51. 40
      dist/widget.js
  52. 2
      dist/widget.js.map
  53. 2
      src/core/platform/web/function.js

2
dist/2.0/fineui.css.map vendored

File diff suppressed because one or more lines are too long

110
dist/2.0/fineui.ie.js vendored

@ -10902,7 +10902,7 @@ if (!_global.BI) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
};
} else if (!BI.isIE() && typeof MutationObserver !== "undefined") {
} else if (typeof MutationObserver !== "undefined") {
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
@ -22819,7 +22819,7 @@ _.extend(BI, {
});
};
for (i in prefix) {
for ( i = 0; i < prefix.length; i++) {
humpString.push(_toHumb(prefix[i] + "-" + style));
}
humpString.push(_toHumb(style));
@ -37130,55 +37130,37 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
}
}
// Here we have async deferring wrappers using microtasks.
// In 2.5 we used (macro) tasks (in combination with microtasks).
// However, it has subtle problems when state is changed right before repaint
// (e.g. #6813, out-in transitions).
// Also, using (macro) tasks in event handler would cause some weird behaviors
// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).
// So we now use microtasks everywhere, again.
// A major drawback of this tradeoff is that there are some scenarios
// where microtasks have too high a priority and fire in between supposedly
// sequential events (e.g. #4521, #6690, which have workarounds)
// or even between bubbling of the same event (#6566).
// The nextTick behavior leverages the microtask queue, which can be accessed
// via either native Promise.then or MutationObserver.
// MutationObserver has wider support, however it is seriously bugged in
// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It
// completely stops working after triggering a few times... so, if native
// Promise is available, we will use it:
/* istanbul ignore next, $flow-disable-line */
if (typeof Promise !== 'undefined' && isNative(Promise)) {
var p = Promise.resolve();
// An asynchronous deferring mechanism.
// In pre 2.4, we used to use microtasks (Promise/MutationObserver)
// but microtasks actually has too high a priority and fires in between
// supposedly sequential events (e.g. #4521, #6690) or even between
// bubbling of the same event (#6566). Technically setImmediate should be
// the ideal choice, but it's not available everywhere; and the only polyfill
// that consistently queues the callback after all DOM events triggered in the
// same loop is by using MessageChannel.
/* istanbul ignore if */
if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
setImmediate(nextTickHandler);
};
} else if (!isIE && typeof MutationObserver !== 'undefined' && (isNative(MutationObserver) ||
// PhantomJS and iOS 7.x
MutationObserver.toString() === '[object MutationObserverConstructor]')) {
// Use MutationObserver where native Promise is not available,
// e.g. PhantomJS, iOS7, Android 4.4
// (#6466 MutationObserver is unreliable in IE11)
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
observer.observe(textNode, {
characterData: true
});
} else if (typeof MessageChannel !== 'undefined' && (isNative(MessageChannel) ||
// PhantomJS
MessageChannel.toString() === '[object MessageChannelConstructor]')) {
var channel = new MessageChannel();
var port = channel.port2;
channel.port1.onmessage = nextTickHandler;
timerFunc = function timerFunc() {
counter = (counter + 1) % 2;
textNode.data = String(counter);
port.postMessage(1);
};
} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
// Fallback to setImmediate.
// Technically it leverages the (macro) task queue,
// but it is still a better choice than setTimeout.
/* istanbul ignore next */
} else if (typeof Promise !== 'undefined' && isNative(Promise)) {
// use microtask in non-DOM environments, e.g. Weex
var p = Promise.resolve();
timerFunc = function timerFunc() {
setImmediate(nextTickHandler);
p.then(nextTickHandler);
};
} else {
// Fallback to setTimeout.
// fallback to setTimeout
timerFunc = function timerFunc() {
setTimeout(nextTickHandler, 0);
};
@ -72023,7 +72005,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -72461,7 +72443,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -72920,7 +72902,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73376,7 +73358,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -75274,6 +75256,10 @@ BI.MultiSelectCheckSelectedSwitcher = BI.inherit(BI.Widget, {
populate: function (items) {
this.switcher.populate.apply(this.switcher, arguments);
},
populateSwitcher: function () {
this.button.populate.apply(this.button, arguments);
}
});
@ -78624,8 +78610,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.max,
level: "warning",
tipType: "success",
title: function () {
return self.bigEditor && self.bigEditor.getValue();
},
@ -78657,22 +78641,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
right: 5
}]
});
// this.smallCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-small-combo",
// height: o.height,
// value: o.closemin ? 1 : 0,
// offsetStyle: "left"
// });
//
// this.bigCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-big-combo",
// height: o.height,
// value: o.closemax ? 1 : 0,
// offsetStyle: "left"
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
@ -78845,10 +78813,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
},
_setTitle: function (v) {
var self = this;
self.bigEditor.setTitle(v);
self.smallEditor.setTitle(v);
self.label.setTitle(v);
this.label.setTitle(v);
},
_setFocusEvent: function (w) {
@ -79126,7 +79091,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.value,
level: o.level,
quitChecker: o.quitChecker,
validationChecker: o.validationChecker,
listeners: [{
@ -79177,10 +79141,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {
return this.editor.setValue(v);
}

2
dist/2.0/fineui.ie.js.map vendored

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.ie.min.js.map vendored

File diff suppressed because one or more lines are too long

44
dist/2.0/fineui.js vendored

@ -10902,7 +10902,7 @@ if (!_global.BI) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
};
} else if (!BI.isIE() && typeof MutationObserver !== "undefined") {
} else if (typeof MutationObserver !== "undefined") {
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
@ -22819,7 +22819,7 @@ _.extend(BI, {
});
};
for (i in prefix) {
for ( i = 0; i < prefix.length; i++) {
humpString.push(_toHumb(prefix[i] + "-" + style));
}
humpString.push(_toHumb(style));
@ -72398,7 +72398,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -72836,7 +72836,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73295,7 +73295,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73751,7 +73751,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -75649,6 +75649,10 @@ BI.MultiSelectCheckSelectedSwitcher = BI.inherit(BI.Widget, {
populate: function (items) {
this.switcher.populate.apply(this.switcher, arguments);
},
populateSwitcher: function () {
this.button.populate.apply(this.button, arguments);
}
});
@ -78999,8 +79003,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.max,
level: "warning",
tipType: "success",
title: function () {
return self.bigEditor && self.bigEditor.getValue();
},
@ -79032,22 +79034,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
right: 5
}]
});
// this.smallCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-small-combo",
// height: o.height,
// value: o.closemin ? 1 : 0,
// offsetStyle: "left"
// });
//
// this.bigCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-big-combo",
// height: o.height,
// value: o.closemax ? 1 : 0,
// offsetStyle: "left"
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
@ -79220,10 +79206,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
},
_setTitle: function (v) {
var self = this;
self.bigEditor.setTitle(v);
self.smallEditor.setTitle(v);
self.label.setTitle(v);
this.label.setTitle(v);
},
_setFocusEvent: function (w) {
@ -79501,7 +79484,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.value,
level: o.level,
quitChecker: o.quitChecker,
validationChecker: o.validationChecker,
listeners: [{
@ -79552,10 +79534,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {
return this.editor.setValue(v);
}

2
dist/2.0/fineui.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.min.css vendored

File diff suppressed because one or more lines are too long

86
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.min.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/base.css.map vendored

File diff suppressed because one or more lines are too long

2
dist/base.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.css.map vendored

File diff suppressed because one or more lines are too long

110
dist/bundle.ie.js vendored

@ -10902,7 +10902,7 @@ if (!_global.BI) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
};
} else if (!BI.isIE() && typeof MutationObserver !== "undefined") {
} else if (typeof MutationObserver !== "undefined") {
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
@ -22819,7 +22819,7 @@ _.extend(BI, {
});
};
for (i in prefix) {
for ( i = 0; i < prefix.length; i++) {
humpString.push(_toHumb(prefix[i] + "-" + style));
}
humpString.push(_toHumb(style));
@ -37130,55 +37130,37 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
}
}
// Here we have async deferring wrappers using microtasks.
// In 2.5 we used (macro) tasks (in combination with microtasks).
// However, it has subtle problems when state is changed right before repaint
// (e.g. #6813, out-in transitions).
// Also, using (macro) tasks in event handler would cause some weird behaviors
// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).
// So we now use microtasks everywhere, again.
// A major drawback of this tradeoff is that there are some scenarios
// where microtasks have too high a priority and fire in between supposedly
// sequential events (e.g. #4521, #6690, which have workarounds)
// or even between bubbling of the same event (#6566).
// The nextTick behavior leverages the microtask queue, which can be accessed
// via either native Promise.then or MutationObserver.
// MutationObserver has wider support, however it is seriously bugged in
// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It
// completely stops working after triggering a few times... so, if native
// Promise is available, we will use it:
/* istanbul ignore next, $flow-disable-line */
if (typeof Promise !== 'undefined' && isNative(Promise)) {
var p = Promise.resolve();
// An asynchronous deferring mechanism.
// In pre 2.4, we used to use microtasks (Promise/MutationObserver)
// but microtasks actually has too high a priority and fires in between
// supposedly sequential events (e.g. #4521, #6690) or even between
// bubbling of the same event (#6566). Technically setImmediate should be
// the ideal choice, but it's not available everywhere; and the only polyfill
// that consistently queues the callback after all DOM events triggered in the
// same loop is by using MessageChannel.
/* istanbul ignore if */
if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
setImmediate(nextTickHandler);
};
} else if (!isIE && typeof MutationObserver !== 'undefined' && (isNative(MutationObserver) ||
// PhantomJS and iOS 7.x
MutationObserver.toString() === '[object MutationObserverConstructor]')) {
// Use MutationObserver where native Promise is not available,
// e.g. PhantomJS, iOS7, Android 4.4
// (#6466 MutationObserver is unreliable in IE11)
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
observer.observe(textNode, {
characterData: true
});
} else if (typeof MessageChannel !== 'undefined' && (isNative(MessageChannel) ||
// PhantomJS
MessageChannel.toString() === '[object MessageChannelConstructor]')) {
var channel = new MessageChannel();
var port = channel.port2;
channel.port1.onmessage = nextTickHandler;
timerFunc = function timerFunc() {
counter = (counter + 1) % 2;
textNode.data = String(counter);
port.postMessage(1);
};
} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
// Fallback to setImmediate.
// Technically it leverages the (macro) task queue,
// but it is still a better choice than setTimeout.
/* istanbul ignore next */
} else if (typeof Promise !== 'undefined' && isNative(Promise)) {
// use microtask in non-DOM environments, e.g. Weex
var p = Promise.resolve();
timerFunc = function timerFunc() {
setImmediate(nextTickHandler);
p.then(nextTickHandler);
};
} else {
// Fallback to setTimeout.
// fallback to setTimeout
timerFunc = function timerFunc() {
setTimeout(nextTickHandler, 0);
};
@ -72023,7 +72005,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -72461,7 +72443,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -72920,7 +72902,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73376,7 +73358,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -75274,6 +75256,10 @@ BI.MultiSelectCheckSelectedSwitcher = BI.inherit(BI.Widget, {
populate: function (items) {
this.switcher.populate.apply(this.switcher, arguments);
},
populateSwitcher: function () {
this.button.populate.apply(this.button, arguments);
}
});
@ -78624,8 +78610,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.max,
level: "warning",
tipType: "success",
title: function () {
return self.bigEditor && self.bigEditor.getValue();
},
@ -78657,22 +78641,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
right: 5
}]
});
// this.smallCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-small-combo",
// height: o.height,
// value: o.closemin ? 1 : 0,
// offsetStyle: "left"
// });
//
// this.bigCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-big-combo",
// height: o.height,
// value: o.closemax ? 1 : 0,
// offsetStyle: "left"
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
@ -78845,10 +78813,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
},
_setTitle: function (v) {
var self = this;
self.bigEditor.setTitle(v);
self.smallEditor.setTitle(v);
self.label.setTitle(v);
this.label.setTitle(v);
},
_setFocusEvent: function (w) {
@ -79126,7 +79091,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.value,
level: o.level,
quitChecker: o.quitChecker,
validationChecker: o.validationChecker,
listeners: [{
@ -79177,10 +79141,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {
return this.editor.setValue(v);
}

2
dist/bundle.ie.js.map vendored

File diff suppressed because one or more lines are too long

44
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.ie.min.js.map vendored

File diff suppressed because one or more lines are too long

44
dist/bundle.js vendored

@ -10902,7 +10902,7 @@ if (!_global.BI) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
};
} else if (!BI.isIE() && typeof MutationObserver !== "undefined") {
} else if (typeof MutationObserver !== "undefined") {
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
@ -22819,7 +22819,7 @@ _.extend(BI, {
});
};
for (i in prefix) {
for ( i = 0; i < prefix.length; i++) {
humpString.push(_toHumb(prefix[i] + "-" + style));
}
humpString.push(_toHumb(style));
@ -72398,7 +72398,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -72836,7 +72836,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73295,7 +73295,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73751,7 +73751,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -75649,6 +75649,10 @@ BI.MultiSelectCheckSelectedSwitcher = BI.inherit(BI.Widget, {
populate: function (items) {
this.switcher.populate.apply(this.switcher, arguments);
},
populateSwitcher: function () {
this.button.populate.apply(this.button, arguments);
}
});
@ -78999,8 +79003,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.max,
level: "warning",
tipType: "success",
title: function () {
return self.bigEditor && self.bigEditor.getValue();
},
@ -79032,22 +79034,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
right: 5
}]
});
// this.smallCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-small-combo",
// height: o.height,
// value: o.closemin ? 1 : 0,
// offsetStyle: "left"
// });
//
// this.bigCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-big-combo",
// height: o.height,
// value: o.closemax ? 1 : 0,
// offsetStyle: "left"
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
@ -79220,10 +79206,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
},
_setTitle: function (v) {
var self = this;
self.bigEditor.setTitle(v);
self.smallEditor.setTitle(v);
self.label.setTitle(v);
this.label.setTitle(v);
},
_setFocusEvent: function (w) {
@ -79501,7 +79484,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.value,
level: o.level,
quitChecker: o.quitChecker,
validationChecker: o.validationChecker,
listeners: [{
@ -79552,10 +79534,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {
return this.editor.setValue(v);
}

2
dist/bundle.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.min.css vendored

File diff suppressed because one or more lines are too long

86
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.min.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/case.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/config.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/core.css.map vendored

File diff suppressed because one or more lines are too long

4
dist/core.js vendored

@ -10902,7 +10902,7 @@ if (!_global.BI) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
};
} else if (!BI.isIE() && typeof MutationObserver !== "undefined") {
} else if (typeof MutationObserver !== "undefined") {
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
@ -22819,7 +22819,7 @@ _.extend(BI, {
});
};
for (i in prefix) {
for ( i = 0; i < prefix.length; i++) {
humpString.push(_toHumb(prefix[i] + "-" + style));
}
humpString.push(_toHumb(style));

2
dist/core.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/core_without_normalize.css.map vendored

File diff suppressed because one or more lines are too long

2
dist/demo.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/es5.fineui.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.css.map vendored

File diff suppressed because one or more lines are too long

110
dist/fineui.ie.js vendored

@ -11149,7 +11149,7 @@ if (!_global.BI) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
};
} else if (!BI.isIE() && typeof MutationObserver !== "undefined") {
} else if (typeof MutationObserver !== "undefined") {
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
@ -23066,7 +23066,7 @@ _.extend(BI, {
});
};
for (i in prefix) {
for ( i = 0; i < prefix.length; i++) {
humpString.push(_toHumb(prefix[i] + "-" + style));
}
humpString.push(_toHumb(style));
@ -37377,55 +37377,37 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
}
}
// Here we have async deferring wrappers using microtasks.
// In 2.5 we used (macro) tasks (in combination with microtasks).
// However, it has subtle problems when state is changed right before repaint
// (e.g. #6813, out-in transitions).
// Also, using (macro) tasks in event handler would cause some weird behaviors
// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).
// So we now use microtasks everywhere, again.
// A major drawback of this tradeoff is that there are some scenarios
// where microtasks have too high a priority and fire in between supposedly
// sequential events (e.g. #4521, #6690, which have workarounds)
// or even between bubbling of the same event (#6566).
// The nextTick behavior leverages the microtask queue, which can be accessed
// via either native Promise.then or MutationObserver.
// MutationObserver has wider support, however it is seriously bugged in
// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It
// completely stops working after triggering a few times... so, if native
// Promise is available, we will use it:
/* istanbul ignore next, $flow-disable-line */
if (typeof Promise !== 'undefined' && isNative(Promise)) {
var p = Promise.resolve();
// An asynchronous deferring mechanism.
// In pre 2.4, we used to use microtasks (Promise/MutationObserver)
// but microtasks actually has too high a priority and fires in between
// supposedly sequential events (e.g. #4521, #6690) or even between
// bubbling of the same event (#6566). Technically setImmediate should be
// the ideal choice, but it's not available everywhere; and the only polyfill
// that consistently queues the callback after all DOM events triggered in the
// same loop is by using MessageChannel.
/* istanbul ignore if */
if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
setImmediate(nextTickHandler);
};
} else if (!isIE && typeof MutationObserver !== 'undefined' && (isNative(MutationObserver) ||
// PhantomJS and iOS 7.x
MutationObserver.toString() === '[object MutationObserverConstructor]')) {
// Use MutationObserver where native Promise is not available,
// e.g. PhantomJS, iOS7, Android 4.4
// (#6466 MutationObserver is unreliable in IE11)
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
observer.observe(textNode, {
characterData: true
});
} else if (typeof MessageChannel !== 'undefined' && (isNative(MessageChannel) ||
// PhantomJS
MessageChannel.toString() === '[object MessageChannelConstructor]')) {
var channel = new MessageChannel();
var port = channel.port2;
channel.port1.onmessage = nextTickHandler;
timerFunc = function timerFunc() {
counter = (counter + 1) % 2;
textNode.data = String(counter);
port.postMessage(1);
};
} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
// Fallback to setImmediate.
// Technically it leverages the (macro) task queue,
// but it is still a better choice than setTimeout.
/* istanbul ignore next */
} else if (typeof Promise !== 'undefined' && isNative(Promise)) {
// use microtask in non-DOM environments, e.g. Weex
var p = Promise.resolve();
timerFunc = function timerFunc() {
setImmediate(nextTickHandler);
p.then(nextTickHandler);
};
} else {
// Fallback to setTimeout.
// fallback to setTimeout
timerFunc = function timerFunc() {
setTimeout(nextTickHandler, 0);
};
@ -72270,7 +72252,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -72708,7 +72690,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73167,7 +73149,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73623,7 +73605,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -75521,6 +75503,10 @@ BI.MultiSelectCheckSelectedSwitcher = BI.inherit(BI.Widget, {
populate: function (items) {
this.switcher.populate.apply(this.switcher, arguments);
},
populateSwitcher: function () {
this.button.populate.apply(this.button, arguments);
}
});
@ -78871,8 +78857,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.max,
level: "warning",
tipType: "success",
title: function () {
return self.bigEditor && self.bigEditor.getValue();
},
@ -78904,22 +78888,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
right: 5
}]
});
// this.smallCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-small-combo",
// height: o.height,
// value: o.closemin ? 1 : 0,
// offsetStyle: "left"
// });
//
// this.bigCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-big-combo",
// height: o.height,
// value: o.closemax ? 1 : 0,
// offsetStyle: "left"
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
@ -79092,10 +79060,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
},
_setTitle: function (v) {
var self = this;
self.bigEditor.setTitle(v);
self.smallEditor.setTitle(v);
self.label.setTitle(v);
this.label.setTitle(v);
},
_setFocusEvent: function (w) {
@ -79373,7 +79338,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.value,
level: o.level,
quitChecker: o.quitChecker,
validationChecker: o.validationChecker,
listeners: [{
@ -79424,10 +79388,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {
return this.editor.setValue(v);
}

2
dist/fineui.ie.js.map vendored

File diff suppressed because one or more lines are too long

68
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.ie.min.js.map vendored

File diff suppressed because one or more lines are too long

44
dist/fineui.js vendored

@ -11149,7 +11149,7 @@ if (!_global.BI) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
};
} else if (!BI.isIE() && typeof MutationObserver !== "undefined") {
} else if (typeof MutationObserver !== "undefined") {
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
@ -23066,7 +23066,7 @@ _.extend(BI, {
});
};
for (i in prefix) {
for ( i = 0; i < prefix.length; i++) {
humpString.push(_toHumb(prefix[i] + "-" + style));
}
humpString.push(_toHumb(style));
@ -72645,7 +72645,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73083,7 +73083,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73542,7 +73542,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -73998,7 +73998,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -75896,6 +75896,10 @@ BI.MultiSelectCheckSelectedSwitcher = BI.inherit(BI.Widget, {
populate: function (items) {
this.switcher.populate.apply(this.switcher, arguments);
},
populateSwitcher: function () {
this.button.populate.apply(this.button, arguments);
}
});
@ -79246,8 +79250,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.max,
level: "warning",
tipType: "success",
title: function () {
return self.bigEditor && self.bigEditor.getValue();
},
@ -79279,22 +79281,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
right: 5
}]
});
// this.smallCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-small-combo",
// height: o.height,
// value: o.closemin ? 1 : 0,
// offsetStyle: "left"
// });
//
// this.bigCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-big-combo",
// height: o.height,
// value: o.closemax ? 1 : 0,
// offsetStyle: "left"
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
@ -79467,10 +79453,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
},
_setTitle: function (v) {
var self = this;
self.bigEditor.setTitle(v);
self.smallEditor.setTitle(v);
self.label.setTitle(v);
this.label.setTitle(v);
},
_setFocusEvent: function (w) {
@ -79748,7 +79731,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.value,
level: o.level,
quitChecker: o.quitChecker,
validationChecker: o.validationChecker,
listeners: [{
@ -79799,10 +79781,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {
return this.editor.setValue(v);
}

2
dist/fineui.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.min.css vendored

File diff suppressed because one or more lines are too long

32
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.min.js.map vendored

File diff suppressed because one or more lines are too long

42
dist/fineui_without_jquery_polyfill.js vendored

@ -10902,7 +10902,7 @@ if (!_global.BI) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
};
} else if (!BI.isIE() && typeof MutationObserver !== "undefined") {
} else if (typeof MutationObserver !== "undefined") {
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));
@ -54925,7 +54925,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -55363,7 +55363,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -55822,7 +55822,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -56278,7 +56278,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -58176,6 +58176,10 @@ BI.MultiSelectCheckSelectedSwitcher = BI.inherit(BI.Widget, {
populate: function (items) {
this.switcher.populate.apply(this.switcher, arguments);
},
populateSwitcher: function () {
this.button.populate.apply(this.button, arguments);
}
});
@ -61526,8 +61530,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.max,
level: "warning",
tipType: "success",
title: function () {
return self.bigEditor && self.bigEditor.getValue();
},
@ -61559,22 +61561,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
right: 5
}]
});
// this.smallCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-small-combo",
// height: o.height,
// value: o.closemin ? 1 : 0,
// offsetStyle: "left"
// });
//
// this.bigCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-big-combo",
// height: o.height,
// value: o.closemax ? 1 : 0,
// offsetStyle: "left"
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
@ -61747,10 +61733,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
},
_setTitle: function (v) {
var self = this;
self.bigEditor.setTitle(v);
self.smallEditor.setTitle(v);
self.label.setTitle(v);
this.label.setTitle(v);
},
_setFocusEvent: function (w) {
@ -62028,7 +62011,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.value,
level: o.level,
quitChecker: o.quitChecker,
validationChecker: o.validationChecker,
listeners: [{
@ -62079,10 +62061,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {
return this.editor.setValue(v);
}

2
dist/fineui_without_jquery_polyfill.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/ie.fineui.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/polyfill.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/router.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/utils.js vendored

@ -11700,7 +11700,7 @@ if (!_global.BI) {
timerFunc = function timerFunc() {
p.then(nextTickHandler);
};
} else if (!BI.isIE() && typeof MutationObserver !== "undefined") {
} else if (typeof MutationObserver !== "undefined") {
var counter = 1;
var observer = new MutationObserver(nextTickHandler);
var textNode = document.createTextNode(String(counter));

2
dist/utils.js.map vendored

File diff suppressed because one or more lines are too long

4
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/utils.min.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/widget.css.map vendored

File diff suppressed because one or more lines are too long

40
dist/widget.js vendored

@ -9954,7 +9954,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -10392,7 +10392,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -10851,7 +10851,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -11307,7 +11307,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
populate: function () {
this.combo.populate.apply(this.combo, arguments);
this.numberCounter.populate.apply(this.numberCounter, arguments);
this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments);
}
});
@ -13205,6 +13205,10 @@ BI.MultiSelectCheckSelectedSwitcher = BI.inherit(BI.Widget, {
populate: function (items) {
this.switcher.populate.apply(this.switcher, arguments);
},
populateSwitcher: function () {
this.button.populate.apply(this.button, arguments);
}
});
@ -16555,8 +16559,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.max,
level: "warning",
tipType: "success",
title: function () {
return self.bigEditor && self.bigEditor.getValue();
},
@ -16588,22 +16590,6 @@ BI.NumberInterval = BI.inherit(BI.Single, {
right: 5
}]
});
// this.smallCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-small-combo",
// height: o.height,
// value: o.closemin ? 1 : 0,
// offsetStyle: "left"
// });
//
// this.bigCombo = BI.createWidget({
// type: "bi.number_interval_combo",
// cls: "number-interval-big-combo",
// height: o.height,
// value: o.closemax ? 1 : 0,
// offsetStyle: "left"
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
@ -16776,10 +16762,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
},
_setTitle: function (v) {
var self = this;
self.bigEditor.setTitle(v);
self.smallEditor.setTitle(v);
self.label.setTitle(v);
this.label.setTitle(v);
},
_setFocusEvent: function (w) {
@ -17057,7 +17040,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
watermark: o.watermark,
allowBlank: o.allowBlank,
value: o.value,
level: o.level,
quitChecker: o.quitChecker,
validationChecker: o.validationChecker,
listeners: [{
@ -17108,10 +17090,6 @@ BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidt
return this.editor.getValue();
},
setTitle: function (v) {
return this.editor.setTitle(v);
},
setValue: function (v) {
return this.editor.setValue(v);
}

2
dist/widget.js.map vendored

File diff suppressed because one or more lines are too long

2
src/core/platform/web/function.js

@ -114,7 +114,7 @@ _.extend(BI, {
});
};
for (i in prefix) {
for ( i = 0; i < prefix.length; i++) {
humpString.push(_toHumb(prefix[i] + "-" + style));
}
humpString.push(_toHumb(style));

Loading…
Cancel
Save