Browse Source

auto upgrade version to 2.0.20200918165224

es6
data 4 years ago
parent
commit
6c744feb65
  1. 2
      dist/2.0/fineui.css
  2. 4
      dist/2.0/fineui.ie.min.js
  3. 2
      dist/2.0/fineui.ie.min.js.map
  4. 41
      dist/2.0/fineui.js
  5. 2
      dist/2.0/fineui.js.map
  6. 2
      dist/2.0/fineui.min.css
  7. 4
      dist/2.0/fineui.min.js
  8. 2
      dist/2.0/fineui.min.js.map
  9. 2
      dist/2.0/fineui_without_normalize.css
  10. 2
      dist/2.0/fineui_without_normalize.min.css
  11. 2
      dist/bundle.min.css
  12. 4
      dist/bundle.min.js
  13. 2
      dist/bundle.min.js.map
  14. 2
      dist/demo.css
  15. 41
      dist/demo.js
  16. 2
      dist/demo.js.map
  17. 2
      dist/fineui.css
  18. 4
      dist/fineui.ie.min.js
  19. 2
      dist/fineui.ie.min.js.map
  20. 41
      dist/fineui.js
  21. 2
      dist/fineui.js.map
  22. 2
      dist/fineui.min.css
  23. 4
      dist/fineui.min.js
  24. 2
      dist/fineui.min.js.map
  25. 41
      dist/fineui_without_jquery_polyfill.js
  26. 2
      dist/fineui_without_jquery_polyfill.js.map
  27. 2
      dist/font.css
  28. 7
      dist/utils.js
  29. 2
      dist/utils.js.map
  30. 4
      dist/utils.min.js
  31. 2
      dist/utils.min.js.map
  32. 2
      package.json

2
dist/2.0/fineui.css vendored

File diff suppressed because one or more lines are too long

4
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

41
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-17 21:40:27 */
/*! time: 2020-9-18 16:50:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -9854,10 +9854,11 @@ BI.Region.prototype = {
"&": "&",
"\"": """,
"<": "&lt;",
">": "&gt;"
">": "&gt;",
" ": "&nbsp;"
};
BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>", function (v) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
});
};
@ -46641,11 +46642,6 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
return (v - this.min) * 100 / (this.max - this.min);
},
_setDraggableEnable: function (enable) {
this.sliderOne.setEnable(enable);
this.sliderTwo.setEnable(enable);
},
_getPrecision: function () {
// 计算每一份值的精度(最大值和最小值的差值保留4为有效数字后的精度)
// 如果差值的整数位数大于4,toPrecision(4)得到的是科学计数法123456 => 1.235e+5
@ -46703,10 +46699,10 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
this.valueOne = minNumber;
this.valueTwo = maxNumber;
this.precision = this._getPrecision();
this._setDraggableEnable(true);
this.setEnable(true);
}
if (maxNumber === minNumber) {
this._setDraggableEnable(false);
this.setEnable(false);
}
},
@ -67933,7 +67929,22 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, {
hasNext: false
});
}
}
},
_assertValue: function (v) {
v = v || {};
var value = v;
if (BI.isNotNull(this.items)) {
var isAllSelect = BI.difference(BI.map(this.items, "value"), v.value).length === 0;
if (isAllSelect) {
value = {
type: BI.Selection.All,
value: [],
};
}
}
return value;
},
});
/***/ }),
@ -67975,10 +67986,10 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
height: o.height,
value: {
value: this._assertValue({
type: BI.Selection.Multi,
value: o.value || []
}
})
});
this.combo.on(BI.MultiSelectCombo.EVENT_CONFIRM, function () {
@ -67987,10 +67998,10 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
},
setValue: function (v) {
this.combo.setValue({
this.combo.setValue(this._assertValue({
type: BI.Selection.Multi,
value: v || []
});
}));
},
getValue: function () {

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

4
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/2.0/fineui_without_normalize.css vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui_without_normalize.min.css 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

4
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/demo.css vendored

File diff suppressed because one or more lines are too long

41
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-17 21:40:27 */
/*! time: 2020-9-18 16:50:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -9854,10 +9854,11 @@ BI.Region.prototype = {
"&": "&amp;",
"\"": "&quot;",
"<": "&lt;",
">": "&gt;"
">": "&gt;",
" ": "&nbsp;"
};
BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>", function (v) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
});
};
@ -46641,11 +46642,6 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
return (v - this.min) * 100 / (this.max - this.min);
},
_setDraggableEnable: function (enable) {
this.sliderOne.setEnable(enable);
this.sliderTwo.setEnable(enable);
},
_getPrecision: function () {
// 计算每一份值的精度(最大值和最小值的差值保留4为有效数字后的精度)
// 如果差值的整数位数大于4,toPrecision(4)得到的是科学计数法123456 => 1.235e+5
@ -46703,10 +46699,10 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
this.valueOne = minNumber;
this.valueTwo = maxNumber;
this.precision = this._getPrecision();
this._setDraggableEnable(true);
this.setEnable(true);
}
if (maxNumber === minNumber) {
this._setDraggableEnable(false);
this.setEnable(false);
}
},
@ -67933,7 +67929,22 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, {
hasNext: false
});
}
}
},
_assertValue: function (v) {
v = v || {};
var value = v;
if (BI.isNotNull(this.items)) {
var isAllSelect = BI.difference(BI.map(this.items, "value"), v.value).length === 0;
if (isAllSelect) {
value = {
type: BI.Selection.All,
value: [],
};
}
}
return value;
},
});
/***/ }),
@ -67975,10 +67986,10 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
height: o.height,
value: {
value: this._assertValue({
type: BI.Selection.Multi,
value: o.value || []
}
})
});
this.combo.on(BI.MultiSelectCombo.EVENT_CONFIRM, function () {
@ -67987,10 +67998,10 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
},
setValue: function (v) {
this.combo.setValue({
this.combo.setValue(this._assertValue({
type: BI.Selection.Multi,
value: v || []
});
}));
},
getValue: function () {

2
dist/demo.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.css vendored

File diff suppressed because one or more lines are too long

4
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

41
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-17 21:40:27 */
/*! time: 2020-9-18 16:50:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -9854,10 +9854,11 @@ BI.Region.prototype = {
"&": "&amp;",
"\"": "&quot;",
"<": "&lt;",
">": "&gt;"
">": "&gt;",
" ": "&nbsp;"
};
BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>", function (v) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
});
};
@ -46641,11 +46642,6 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
return (v - this.min) * 100 / (this.max - this.min);
},
_setDraggableEnable: function (enable) {
this.sliderOne.setEnable(enable);
this.sliderTwo.setEnable(enable);
},
_getPrecision: function () {
// 计算每一份值的精度(最大值和最小值的差值保留4为有效数字后的精度)
// 如果差值的整数位数大于4,toPrecision(4)得到的是科学计数法123456 => 1.235e+5
@ -46703,10 +46699,10 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
this.valueOne = minNumber;
this.valueTwo = maxNumber;
this.precision = this._getPrecision();
this._setDraggableEnable(true);
this.setEnable(true);
}
if (maxNumber === minNumber) {
this._setDraggableEnable(false);
this.setEnable(false);
}
},
@ -67933,7 +67929,22 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, {
hasNext: false
});
}
}
},
_assertValue: function (v) {
v = v || {};
var value = v;
if (BI.isNotNull(this.items)) {
var isAllSelect = BI.difference(BI.map(this.items, "value"), v.value).length === 0;
if (isAllSelect) {
value = {
type: BI.Selection.All,
value: [],
};
}
}
return value;
},
});
/***/ }),
@ -67975,10 +67986,10 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
height: o.height,
value: {
value: this._assertValue({
type: BI.Selection.Multi,
value: o.value || []
}
})
});
this.combo.on(BI.MultiSelectCombo.EVENT_CONFIRM, function () {
@ -67987,10 +67998,10 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
},
setValue: function (v) {
this.combo.setValue({
this.combo.setValue(this._assertValue({
type: BI.Selection.Multi,
value: v || []
});
}));
},
getValue: function () {

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

4
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

41
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-17 21:40:27 */
/*! time: 2020-9-18 16:50:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -7315,10 +7315,11 @@ BI.Region.prototype = {
"&": "&amp;",
"\"": "&quot;",
"<": "&lt;",
">": "&gt;"
">": "&gt;",
" ": "&nbsp;"
};
BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>", function (v) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
});
};
@ -42668,11 +42669,6 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
return (v - this.min) * 100 / (this.max - this.min);
},
_setDraggableEnable: function (enable) {
this.sliderOne.setEnable(enable);
this.sliderTwo.setEnable(enable);
},
_getPrecision: function () {
// 计算每一份值的精度(最大值和最小值的差值保留4为有效数字后的精度)
// 如果差值的整数位数大于4,toPrecision(4)得到的是科学计数法123456 => 1.235e+5
@ -42730,10 +42726,10 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
this.valueOne = minNumber;
this.valueTwo = maxNumber;
this.precision = this._getPrecision();
this._setDraggableEnable(true);
this.setEnable(true);
}
if (maxNumber === minNumber) {
this._setDraggableEnable(false);
this.setEnable(false);
}
},
@ -63960,7 +63956,22 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, {
hasNext: false
});
}
}
},
_assertValue: function (v) {
v = v || {};
var value = v;
if (BI.isNotNull(this.items)) {
var isAllSelect = BI.difference(BI.map(this.items, "value"), v.value).length === 0;
if (isAllSelect) {
value = {
type: BI.Selection.All,
value: [],
};
}
}
return value;
},
});
/***/ }),
@ -64002,10 +64013,10 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
height: o.height,
value: {
value: this._assertValue({
type: BI.Selection.Multi,
value: o.value || []
}
})
});
this.combo.on(BI.MultiSelectCombo.EVENT_CONFIRM, function () {
@ -64014,10 +64025,10 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
},
setValue: function (v) {
this.combo.setValue({
this.combo.setValue(this._assertValue({
type: BI.Selection.Multi,
value: v || []
});
}));
},
getValue: function () {

2
dist/fineui_without_jquery_polyfill.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/font.css vendored

File diff suppressed because one or more lines are too long

7
dist/utils.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-17 21:40:27 */
/*! time: 2020-9-18 16:50:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -7041,10 +7041,11 @@ BI.Region.prototype = {
"&": "&amp;",
"\"": "&quot;",
"<": "&lt;",
">": "&gt;"
">": "&gt;",
" ": "&nbsp;"
};
BI.htmlEncode = function (text) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>", function (v) {
return BI.isNull(text) ? "" : BI.replaceAll(text + "", "&|\"|<|>|\\s", function (v) {
return SPECIAL_TAGS[v] ? SPECIAL_TAGS[v] : "&nbsp;";
});
};

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
package.json

@ -1,6 +1,6 @@
{
"name": "fineui",
"version": "2.0.20200917214157",
"version": "2.0.20200918165224",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

Loading…
Cancel
Save