Browse Source

auto upgrade version to 2.0.20201229102138

es6
data 4 years ago
parent
commit
81629d6340
  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. 40
      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/core.css
  12. 40
      dist/core.js
  13. 2
      dist/core.js.map
  14. 2
      dist/demo.css
  15. 40
      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. 40
      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. 40
      dist/fineui_without_jquery_polyfill.js
  26. 2
      dist/fineui_without_jquery_polyfill.js.map
  27. 2
      dist/font.css
  28. 2
      dist/resource.css
  29. 2
      dist/utils.js
  30. 2
      dist/utils.min.js
  31. 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

40
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-28 14:20:17 */ /*! time: 2020-12-29 10:20:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -69080,19 +69080,10 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
if (!this.items) { if (!this.items) {
o.itemsCreator({}, function (items) { o.itemsCreator({}, function (items) {
self._initData(items); self._initData(items);
join();
});
} else {
join();
}
// 重新计算合并selectedValues
function join() {
self._reqAdjustTreeNode(options, function (joinedValue) {
options.selectedValues = joinedValue;
call(); call();
}); });
} else {
call();
} }
function call() { function call() {
@ -69650,11 +69641,15 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} }
function dealWithSelectedValue(parentValues, selectedValues) { function dealWithSelectedValue(parentValues, selectedValues) {
var valueMap = {}; var valueMap = {}, parents = (parentValues || []).slice(0);
BI.each(parentValues, function (i, v) { BI.each(parentValues, function (i, v) {
parents.push(v);
selectedValues = selectedValues[v] || {}; selectedValues = selectedValues[v] || {};
}); });
BI.each(selectedValues, function (value, obj) { BI.each(selectedValues, function (value, obj) {
var currentParents = BI.concat(parents, value);
if (BI.isNull(obj)) { if (BI.isNull(obj)) {
valueMap[value] = [0, 0]; valueMap[value] = [0, 0];
return; return;
@ -69667,6 +69662,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
BI.each(obj, function (t, o) { BI.each(obj, function (t, o) {
if (BI.isNull(o) || BI.isEmpty(o)) { if (BI.isNull(o) || BI.isEmpty(o)) {
nextNames[t] = true; nextNames[t] = true;
} else {
isAllSelected(o, BI.concat(currentParents, [t])) && (nextNames[t] = true);
} }
}); });
// valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在) // valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在)
@ -69675,6 +69672,20 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
return valueMap; return valueMap;
} }
function isAllSelected(selected, parents) {
if (BI.isEmpty(selected)) {
return true;
}
if (self._getChildCount(parents) !== BI.size(selected)) {
return false;
}
return BI.every(selected, function (value) {
return isAllSelected(selected[value], BI.concat(parents, value));
});
}
function getCheckState(current, parentValues, valueMap, checkState) { function getCheckState(current, parentValues, valueMap, checkState) {
// 节点本身的checked和half优先级最高 // 节点本身的checked和half优先级最高
var checked = checkState.checked, half = checkState.half; var checked = checkState.checked, half = checkState.half;
@ -69821,7 +69832,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} else { } else {
var parent = this.tree.getRoot(); var parent = this.tree.getRoot();
} }
return parent.getChildren();
return parent ? parent.getChildren() : [];
}, },
_getAllChildren: function(parentValues) { _getAllChildren: function(parentValues) {

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

File diff suppressed because one or more lines are too long

40
dist/core.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-28 14:20:17 */ /*! time: 2020-12-29 10:20:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -69080,19 +69080,10 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
if (!this.items) { if (!this.items) {
o.itemsCreator({}, function (items) { o.itemsCreator({}, function (items) {
self._initData(items); self._initData(items);
join();
});
} else {
join();
}
// 重新计算合并selectedValues
function join() {
self._reqAdjustTreeNode(options, function (joinedValue) {
options.selectedValues = joinedValue;
call(); call();
}); });
} else {
call();
} }
function call() { function call() {
@ -69650,11 +69641,15 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} }
function dealWithSelectedValue(parentValues, selectedValues) { function dealWithSelectedValue(parentValues, selectedValues) {
var valueMap = {}; var valueMap = {}, parents = (parentValues || []).slice(0);
BI.each(parentValues, function (i, v) { BI.each(parentValues, function (i, v) {
parents.push(v);
selectedValues = selectedValues[v] || {}; selectedValues = selectedValues[v] || {};
}); });
BI.each(selectedValues, function (value, obj) { BI.each(selectedValues, function (value, obj) {
var currentParents = BI.concat(parents, value);
if (BI.isNull(obj)) { if (BI.isNull(obj)) {
valueMap[value] = [0, 0]; valueMap[value] = [0, 0];
return; return;
@ -69667,6 +69662,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
BI.each(obj, function (t, o) { BI.each(obj, function (t, o) {
if (BI.isNull(o) || BI.isEmpty(o)) { if (BI.isNull(o) || BI.isEmpty(o)) {
nextNames[t] = true; nextNames[t] = true;
} else {
isAllSelected(o, BI.concat(currentParents, [t])) && (nextNames[t] = true);
} }
}); });
// valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在) // valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在)
@ -69675,6 +69672,20 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
return valueMap; return valueMap;
} }
function isAllSelected(selected, parents) {
if (BI.isEmpty(selected)) {
return true;
}
if (self._getChildCount(parents) !== BI.size(selected)) {
return false;
}
return BI.every(selected, function (value) {
return isAllSelected(selected[value], BI.concat(parents, value));
});
}
function getCheckState(current, parentValues, valueMap, checkState) { function getCheckState(current, parentValues, valueMap, checkState) {
// 节点本身的checked和half优先级最高 // 节点本身的checked和half优先级最高
var checked = checkState.checked, half = checkState.half; var checked = checkState.checked, half = checkState.half;
@ -69821,7 +69832,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} else { } else {
var parent = this.tree.getRoot(); var parent = this.tree.getRoot();
} }
return parent.getChildren();
return parent ? parent.getChildren() : [];
}, },
_getAllChildren: function(parentValues) { _getAllChildren: function(parentValues) {

2
dist/core.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

40
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-28 14:20:17 */ /*! time: 2020-12-29 10:20:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -69080,19 +69080,10 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
if (!this.items) { if (!this.items) {
o.itemsCreator({}, function (items) { o.itemsCreator({}, function (items) {
self._initData(items); self._initData(items);
join();
});
} else {
join();
}
// 重新计算合并selectedValues
function join() {
self._reqAdjustTreeNode(options, function (joinedValue) {
options.selectedValues = joinedValue;
call(); call();
}); });
} else {
call();
} }
function call() { function call() {
@ -69650,11 +69641,15 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} }
function dealWithSelectedValue(parentValues, selectedValues) { function dealWithSelectedValue(parentValues, selectedValues) {
var valueMap = {}; var valueMap = {}, parents = (parentValues || []).slice(0);
BI.each(parentValues, function (i, v) { BI.each(parentValues, function (i, v) {
parents.push(v);
selectedValues = selectedValues[v] || {}; selectedValues = selectedValues[v] || {};
}); });
BI.each(selectedValues, function (value, obj) { BI.each(selectedValues, function (value, obj) {
var currentParents = BI.concat(parents, value);
if (BI.isNull(obj)) { if (BI.isNull(obj)) {
valueMap[value] = [0, 0]; valueMap[value] = [0, 0];
return; return;
@ -69667,6 +69662,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
BI.each(obj, function (t, o) { BI.each(obj, function (t, o) {
if (BI.isNull(o) || BI.isEmpty(o)) { if (BI.isNull(o) || BI.isEmpty(o)) {
nextNames[t] = true; nextNames[t] = true;
} else {
isAllSelected(o, BI.concat(currentParents, [t])) && (nextNames[t] = true);
} }
}); });
// valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在) // valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在)
@ -69675,6 +69672,20 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
return valueMap; return valueMap;
} }
function isAllSelected(selected, parents) {
if (BI.isEmpty(selected)) {
return true;
}
if (self._getChildCount(parents) !== BI.size(selected)) {
return false;
}
return BI.every(selected, function (value) {
return isAllSelected(selected[value], BI.concat(parents, value));
});
}
function getCheckState(current, parentValues, valueMap, checkState) { function getCheckState(current, parentValues, valueMap, checkState) {
// 节点本身的checked和half优先级最高 // 节点本身的checked和half优先级最高
var checked = checkState.checked, half = checkState.half; var checked = checkState.checked, half = checkState.half;
@ -69821,7 +69832,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} else { } else {
var parent = this.tree.getRoot(); var parent = this.tree.getRoot();
} }
return parent.getChildren();
return parent ? parent.getChildren() : [];
}, },
_getAllChildren: function(parentValues) { _getAllChildren: function(parentValues) {

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

40
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-28 14:20:17 */ /*! time: 2020-12-29 10:20:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -69080,19 +69080,10 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
if (!this.items) { if (!this.items) {
o.itemsCreator({}, function (items) { o.itemsCreator({}, function (items) {
self._initData(items); self._initData(items);
join();
});
} else {
join();
}
// 重新计算合并selectedValues
function join() {
self._reqAdjustTreeNode(options, function (joinedValue) {
options.selectedValues = joinedValue;
call(); call();
}); });
} else {
call();
} }
function call() { function call() {
@ -69650,11 +69641,15 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} }
function dealWithSelectedValue(parentValues, selectedValues) { function dealWithSelectedValue(parentValues, selectedValues) {
var valueMap = {}; var valueMap = {}, parents = (parentValues || []).slice(0);
BI.each(parentValues, function (i, v) { BI.each(parentValues, function (i, v) {
parents.push(v);
selectedValues = selectedValues[v] || {}; selectedValues = selectedValues[v] || {};
}); });
BI.each(selectedValues, function (value, obj) { BI.each(selectedValues, function (value, obj) {
var currentParents = BI.concat(parents, value);
if (BI.isNull(obj)) { if (BI.isNull(obj)) {
valueMap[value] = [0, 0]; valueMap[value] = [0, 0];
return; return;
@ -69667,6 +69662,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
BI.each(obj, function (t, o) { BI.each(obj, function (t, o) {
if (BI.isNull(o) || BI.isEmpty(o)) { if (BI.isNull(o) || BI.isEmpty(o)) {
nextNames[t] = true; nextNames[t] = true;
} else {
isAllSelected(o, BI.concat(currentParents, [t])) && (nextNames[t] = true);
} }
}); });
// valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在) // valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在)
@ -69675,6 +69672,20 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
return valueMap; return valueMap;
} }
function isAllSelected(selected, parents) {
if (BI.isEmpty(selected)) {
return true;
}
if (self._getChildCount(parents) !== BI.size(selected)) {
return false;
}
return BI.every(selected, function (value) {
return isAllSelected(selected[value], BI.concat(parents, value));
});
}
function getCheckState(current, parentValues, valueMap, checkState) { function getCheckState(current, parentValues, valueMap, checkState) {
// 节点本身的checked和half优先级最高 // 节点本身的checked和half优先级最高
var checked = checkState.checked, half = checkState.half; var checked = checkState.checked, half = checkState.half;
@ -69821,7 +69832,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} else { } else {
var parent = this.tree.getRoot(); var parent = this.tree.getRoot();
} }
return parent.getChildren();
return parent ? parent.getChildren() : [];
}, },
_getAllChildren: function(parentValues) { _getAllChildren: function(parentValues) {

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

40
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-28 14:20:17 */ /*! time: 2020-12-29 10:20:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -65107,19 +65107,10 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
if (!this.items) { if (!this.items) {
o.itemsCreator({}, function (items) { o.itemsCreator({}, function (items) {
self._initData(items); self._initData(items);
join();
});
} else {
join();
}
// 重新计算合并selectedValues
function join() {
self._reqAdjustTreeNode(options, function (joinedValue) {
options.selectedValues = joinedValue;
call(); call();
}); });
} else {
call();
} }
function call() { function call() {
@ -65677,11 +65668,15 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} }
function dealWithSelectedValue(parentValues, selectedValues) { function dealWithSelectedValue(parentValues, selectedValues) {
var valueMap = {}; var valueMap = {}, parents = (parentValues || []).slice(0);
BI.each(parentValues, function (i, v) { BI.each(parentValues, function (i, v) {
parents.push(v);
selectedValues = selectedValues[v] || {}; selectedValues = selectedValues[v] || {};
}); });
BI.each(selectedValues, function (value, obj) { BI.each(selectedValues, function (value, obj) {
var currentParents = BI.concat(parents, value);
if (BI.isNull(obj)) { if (BI.isNull(obj)) {
valueMap[value] = [0, 0]; valueMap[value] = [0, 0];
return; return;
@ -65694,6 +65689,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
BI.each(obj, function (t, o) { BI.each(obj, function (t, o) {
if (BI.isNull(o) || BI.isEmpty(o)) { if (BI.isNull(o) || BI.isEmpty(o)) {
nextNames[t] = true; nextNames[t] = true;
} else {
isAllSelected(o, BI.concat(currentParents, [t])) && (nextNames[t] = true);
} }
}); });
// valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在) // valueMap的数组第一个参数为不选: 0, 半选: 1, 全选:2, 第二个参数为改节点下选中的子节点个数(子节点全选或者不存在)
@ -65702,6 +65699,20 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
return valueMap; return valueMap;
} }
function isAllSelected(selected, parents) {
if (BI.isEmpty(selected)) {
return true;
}
if (self._getChildCount(parents) !== BI.size(selected)) {
return false;
}
return BI.every(selected, function (value) {
return isAllSelected(selected[value], BI.concat(parents, value));
});
}
function getCheckState(current, parentValues, valueMap, checkState) { function getCheckState(current, parentValues, valueMap, checkState) {
// 节点本身的checked和half优先级最高 // 节点本身的checked和half优先级最高
var checked = checkState.checked, half = checkState.half; var checked = checkState.checked, half = checkState.half;
@ -65848,7 +65859,8 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, {
} else { } else {
var parent = this.tree.getRoot(); var parent = this.tree.getRoot();
} }
return parent.getChildren();
return parent ? parent.getChildren() : [];
}, },
_getAllChildren: function(parentValues) { _getAllChildren: function(parentValues) {

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

File diff suppressed because one or more lines are too long

2
dist/utils.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-28 14:20:17 */ /*! time: 2020-12-29 10:20:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ 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", "name": "fineui",
"version": "2.0.20201228142201", "version": "2.0.20201229102138",
"description": "fineui", "description": "fineui",
"main": "dist/fineui.min.js", "main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts", "types": "dist/lib/index.d.ts",

Loading…
Cancel
Save