Browse Source

Merge remote-tracking branch 'origin/master'

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

3
changelog.md

@ -1,4 +1,7 @@
# 更新日志 # 更新日志
2.0(2020-09)
- BI.Tree.traversal方法迭代函数增加父节点参数
2.0(2020-08) 2.0(2020-08)
- bi.sign_editor支持显示值居左/居中/居右显示 - bi.sign_editor支持显示值居左/居中/居右显示
- bi.iframe新增EVENT_LOADED事件 - bi.iframe新增EVENT_LOADED事件

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

9
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-9 18:00:23 */ /*! time: 2020-9-12 09:50:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -9348,21 +9348,22 @@ BI.ScalingCellSizeAndPositionManager.prototype = {
}, },
traversal: function (array, callback) { traversal: function (array, callback, pNode) {
if (BI.isNull(array)) { if (BI.isNull(array)) {
return; return;
} }
var self = this; var self = this;
BI.some(array, function (i, item) { BI.some(array, function (i, item) {
if (callback(i, item) === false) { if (callback(i, item, pNode) === false) {
return true; return true;
} }
self.traversal(item.children, callback); self.traversal(item.children, callback, item);
}); });
} }
}); });
})(); })();
/***/ }), /***/ }),
/* 121 */ /* 121 */
/***/ (function(module, exports) { /***/ (function(module, exports) {

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

9
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-9 18:00:23 */ /*! time: 2020-9-12 09:50:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -9348,21 +9348,22 @@ BI.ScalingCellSizeAndPositionManager.prototype = {
}, },
traversal: function (array, callback) { traversal: function (array, callback, pNode) {
if (BI.isNull(array)) { if (BI.isNull(array)) {
return; return;
} }
var self = this; var self = this;
BI.some(array, function (i, item) { BI.some(array, function (i, item) {
if (callback(i, item) === false) { if (callback(i, item, pNode) === false) {
return true; return true;
} }
self.traversal(item.children, callback); self.traversal(item.children, callback, item);
}); });
} }
}); });
})(); })();
/***/ }), /***/ }),
/* 121 */ /* 121 */
/***/ (function(module, exports) { /***/ (function(module, exports) {

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

9
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-9 18:00:23 */ /*! time: 2020-9-12 09:50:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -9348,21 +9348,22 @@ BI.ScalingCellSizeAndPositionManager.prototype = {
}, },
traversal: function (array, callback) { traversal: function (array, callback, pNode) {
if (BI.isNull(array)) { if (BI.isNull(array)) {
return; return;
} }
var self = this; var self = this;
BI.some(array, function (i, item) { BI.some(array, function (i, item) {
if (callback(i, item) === false) { if (callback(i, item, pNode) === false) {
return true; return true;
} }
self.traversal(item.children, callback); self.traversal(item.children, callback, item);
}); });
} }
}); });
})(); })();
/***/ }), /***/ }),
/* 121 */ /* 121 */
/***/ (function(module, exports) { /***/ (function(module, exports) {

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

9
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-9 18:00:23 */ /*! time: 2020-9-12 09:50:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -6809,21 +6809,22 @@ BI.ScalingCellSizeAndPositionManager.prototype = {
}, },
traversal: function (array, callback) { traversal: function (array, callback, pNode) {
if (BI.isNull(array)) { if (BI.isNull(array)) {
return; return;
} }
var self = this; var self = this;
BI.some(array, function (i, item) { BI.some(array, function (i, item) {
if (callback(i, item) === false) { if (callback(i, item, pNode) === false) {
return true; return true;
} }
self.traversal(item.children, callback); self.traversal(item.children, callback, item);
}); });
} }
}); });
})(); })();
/***/ }), /***/ }),
/* 121 */ /* 121 */
/***/ (function(module, exports) { /***/ (function(module, exports) {

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

9
dist/utils.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-9 18:00:23 */ /*! time: 2020-9-12 09:50:41 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -6533,21 +6533,22 @@ BI.ScalingCellSizeAndPositionManager.prototype = {
}, },
traversal: function (array, callback) { traversal: function (array, callback, pNode) {
if (BI.isNull(array)) { if (BI.isNull(array)) {
return; return;
} }
var self = this; var self = this;
BI.some(array, function (i, item) { BI.some(array, function (i, item) {
if (callback(i, item) === false) { if (callback(i, item, pNode) === false) {
return true; return true;
} }
self.traversal(item.children, callback); self.traversal(item.children, callback, item);
}); });
} }
}); });
})(); })();
/***/ }), /***/ }),
/***/ 121: /***/ 121:

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", "name": "fineui",
"version": "2.0.20200909180255", "version": "2.0.20200912095204",
"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",

6
src/core/utils/tree.js

@ -500,16 +500,16 @@
}, },
traversal: function (array, callback) { traversal: function (array, callback, pNode) {
if (BI.isNull(array)) { if (BI.isNull(array)) {
return; return;
} }
var self = this; var self = this;
BI.some(array, function (i, item) { BI.some(array, function (i, item) {
if (callback(i, item) === false) { if (callback(i, item, pNode) === false) {
return true; return true;
} }
self.traversal(item.children, callback); self.traversal(item.children, callback, item);
}); });
} }
}); });

Loading…
Cancel
Save