Browse Source

auto upgrade version to 2.0.20200915092120

es6
data 4 years ago
parent
commit
b3795fbf3a
  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. 25
      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. 25
      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. 25
      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. 25
      dist/fineui_without_jquery_polyfill.js
  26. 2
      dist/fineui_without_jquery_polyfill.js.map
  27. 2
      dist/font.css
  28. 2
      dist/utils.js
  29. 2
      dist/utils.min.js
  30. 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

25
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-14 13:02:03 */
/*! time: 2020-9-15 09:20:14 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -69747,7 +69747,22 @@ BI.AbstractValueChooser = BI.inherit(BI.Widget, {
hasNext: self._hasNextByTimes(resultItems, options.times)
});
}
},
_assertValue: function (v) {
v = v || {};
var value = v;
if (v.type === BI.Selection.Multi && 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;
},
});
/***/ }),
@ -69782,7 +69797,7 @@ BI.ValueChooserInsertCombo = BI.inherit(BI.AbstractValueChooser, {
element: this,
allowEdit: o.allowEdit,
text: o.text,
value: o.value,
value: this._assertValue(o.value),
itemsCreator: BI.bind(this._itemsCreator, this),
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
@ -69822,7 +69837,7 @@ BI.ValueChooserInsertCombo = BI.inherit(BI.AbstractValueChooser, {
},
setValue: function (v) {
this.combo.setValue(v);
this.combo.setValue(this._assertValue(v));
},
getValue: function () {
@ -69896,7 +69911,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
element: this,
allowEdit: o.allowEdit,
text: o.text,
value: o.value,
value: this._assertValue(o.value),
itemsCreator: BI.bind(this._itemsCreator, this),
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
@ -69936,7 +69951,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
},
setValue: function (v) {
this.combo.setValue(v);
this.combo.setValue(this._assertValue(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

25
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-14 13:02:03 */
/*! time: 2020-9-15 09:20:14 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -69747,7 +69747,22 @@ BI.AbstractValueChooser = BI.inherit(BI.Widget, {
hasNext: self._hasNextByTimes(resultItems, options.times)
});
}
},
_assertValue: function (v) {
v = v || {};
var value = v;
if (v.type === BI.Selection.Multi && 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;
},
});
/***/ }),
@ -69782,7 +69797,7 @@ BI.ValueChooserInsertCombo = BI.inherit(BI.AbstractValueChooser, {
element: this,
allowEdit: o.allowEdit,
text: o.text,
value: o.value,
value: this._assertValue(o.value),
itemsCreator: BI.bind(this._itemsCreator, this),
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
@ -69822,7 +69837,7 @@ BI.ValueChooserInsertCombo = BI.inherit(BI.AbstractValueChooser, {
},
setValue: function (v) {
this.combo.setValue(v);
this.combo.setValue(this._assertValue(v));
},
getValue: function () {
@ -69896,7 +69911,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
element: this,
allowEdit: o.allowEdit,
text: o.text,
value: o.value,
value: this._assertValue(o.value),
itemsCreator: BI.bind(this._itemsCreator, this),
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
@ -69936,7 +69951,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
},
setValue: function (v) {
this.combo.setValue(v);
this.combo.setValue(this._assertValue(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

25
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-14 13:02:03 */
/*! time: 2020-9-15 09:20:14 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -69747,7 +69747,22 @@ BI.AbstractValueChooser = BI.inherit(BI.Widget, {
hasNext: self._hasNextByTimes(resultItems, options.times)
});
}
},
_assertValue: function (v) {
v = v || {};
var value = v;
if (v.type === BI.Selection.Multi && 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;
},
});
/***/ }),
@ -69782,7 +69797,7 @@ BI.ValueChooserInsertCombo = BI.inherit(BI.AbstractValueChooser, {
element: this,
allowEdit: o.allowEdit,
text: o.text,
value: o.value,
value: this._assertValue(o.value),
itemsCreator: BI.bind(this._itemsCreator, this),
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
@ -69822,7 +69837,7 @@ BI.ValueChooserInsertCombo = BI.inherit(BI.AbstractValueChooser, {
},
setValue: function (v) {
this.combo.setValue(v);
this.combo.setValue(this._assertValue(v));
},
getValue: function () {
@ -69896,7 +69911,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
element: this,
allowEdit: o.allowEdit,
text: o.text,
value: o.value,
value: this._assertValue(o.value),
itemsCreator: BI.bind(this._itemsCreator, this),
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
@ -69936,7 +69951,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
},
setValue: function (v) {
this.combo.setValue(v);
this.combo.setValue(this._assertValue(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

25
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-14 13:02:03 */
/*! time: 2020-9-15 09:20:14 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -65774,7 +65774,22 @@ BI.AbstractValueChooser = BI.inherit(BI.Widget, {
hasNext: self._hasNextByTimes(resultItems, options.times)
});
}
},
_assertValue: function (v) {
v = v || {};
var value = v;
if (v.type === BI.Selection.Multi && 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;
},
});
/***/ }),
@ -65809,7 +65824,7 @@ BI.ValueChooserInsertCombo = BI.inherit(BI.AbstractValueChooser, {
element: this,
allowEdit: o.allowEdit,
text: o.text,
value: o.value,
value: this._assertValue(o.value),
itemsCreator: BI.bind(this._itemsCreator, this),
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
@ -65849,7 +65864,7 @@ BI.ValueChooserInsertCombo = BI.inherit(BI.AbstractValueChooser, {
},
setValue: function (v) {
this.combo.setValue(v);
this.combo.setValue(this._assertValue(v));
},
getValue: function () {
@ -65923,7 +65938,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
element: this,
allowEdit: o.allowEdit,
text: o.text,
value: o.value,
value: this._assertValue(o.value),
itemsCreator: BI.bind(this._itemsCreator, this),
valueFormatter: BI.bind(this._valueFormatter, this),
width: o.width,
@ -65963,7 +65978,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
},
setValue: function (v) {
this.combo.setValue(v);
this.combo.setValue(this._assertValue(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

2
dist/utils.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-14 13:02:03 */
/*! time: 2020-9-15 09:20:14 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

2
package.json

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

Loading…
Cancel
Save