Browse Source

auto upgrade version to 2.0.20210711143338

es6
data 3 years ago
parent
commit
896bca8077
  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. 51
      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. 51
      dist/core.js
  13. 2
      dist/core.js.map
  14. 2
      dist/demo.css
  15. 51
      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. 51
      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. 2
      dist/fineui.proxy.css
  26. 51
      dist/fineui.proxy.js
  27. 2
      dist/fineui.proxy.js.map
  28. 2
      dist/fineui.proxy.min.css
  29. 4
      dist/fineui.proxy.min.js
  30. 2
      dist/fineui.proxy.min.js.map
  31. 51
      dist/fineui_without_jquery_polyfill.js
  32. 2
      dist/fineui_without_jquery_polyfill.js.map
  33. 2
      dist/font.css
  34. 2
      dist/resource.css
  35. 2
      dist/utils.js
  36. 2
      dist/utils.min.js
  37. 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

51
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-7-10 17:40:40 */
/*! time: 2021-7-11 14:31:21 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -9225,7 +9225,9 @@ module.exports = !__webpack_require__(915)(function () {
this.element = BI.Widget._renderEngine.createElement(this);
}
this.element._isWidget = true;
(this.element[0]._Widgets = this.element[0]._Widgets || []).push(this);
var widgets = this.element.data("_Widgets") || [];
widgets.push(this);
this.element.data("_Widgets", widgets);
this._initCurrent();
},
@ -9278,11 +9280,19 @@ module.exports = !__webpack_require__(915)(function () {
}
if (BI.isArray(els)) {
if (this.options.vdom) {
this.vnode = this._renderVNode();
var div = document.createElement("div");
this.element.append(div);
var element = this.element;
element.append(div);
this.vnode = this._renderVNode();
BI.patchVNode(div, this.vnode);
// this.element = $(div);
// 去除这个临时的div
BI.DOM.hang([div]);
element.attr("style", self.vnode.elm.getAttribute("style"));
element.addClass(self.vnode.elm.getAttribute("class"));
element.empty();
BI.each(BI.jQuery(self.vnode.elm).children(), function (i, node) {
element.append(node);
})
} else {
BI.each(els, function (i, el) {
if (el) {
@ -9319,7 +9329,7 @@ module.exports = !__webpack_require__(915)(function () {
}
});
}
return BI.Element2Snabbdom(container);
return BI.Element2Vnode(container);
},
_setParent: function (parent) {
@ -12303,9 +12313,9 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
!function () {
var patch = BI.Snabbdom.init([BI.Snabbdom.attributesModule, BI.Snabbdom.classModule, BI.Snabbdom.datasetModule, BI.Snabbdom.propsModule, BI.Snabbdom.styleModule, BI.Snabbdom.eventListenersModule]);
BI.Element2Snabbdom = function (parentNode) {
BI.Element2Vnode = function (parentNode) {
if (parentNode.nodeType === 3) {
return parentNode.textContent;
return BI.Snabbdom.vnode(undefined, undefined, undefined, parentNode.textContent, parentNode);
}
var data = BI.jQuery._data(parentNode);
var on = {};
@ -12317,26 +12327,31 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
});
};
});
var style = parentNode.getAttribute("style");
var attrs = {};
var elmAttrs = parentNode.attributes;
var elmChildren = parentNode.childNodes;
var key = parentNode.getAttribute("key");
// var claz = parentNode.getAttribute("class");
var vnode = BI.Snabbdom.h(parentNode.nodeName, {
for (i = 0, n = elmAttrs.length; i < n; i++) {
var name = elmAttrs[i].nodeName;
if (name !== "id" && name !== "class") {
attrs[name] = elmAttrs[i].nodeValue;
}
}
var vnode = BI.Snabbdom.vnode(parentNode.nodeName, {
class: BI.makeObject(parentNode.classList),
props: {
style: style
},
attrs: attrs,
key: key,
on: on,
hook: {
create: function () {
BI.each(parentNode._Widgets, function (i, w) {
BI.each(BI.Widget._renderEngine.createElement(parentNode).data("_Widgets"), function (i, w) {
w.element = BI.Widget._renderEngine.createElement(vnode.elm);
});
}
}
}, BI.map(parentNode.childNodes, function (i, childNode) {
return BI.Element2Snabbdom(childNode);
}));
}, BI.map(elmChildren, function (i, childNode) {
return BI.Element2Vnode(childNode);
}), undefined, parentNode);
return vnode;
};

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

51
dist/core.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-7-10 17:40:40 */
/*! time: 2021-7-11 14:31:21 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -9225,7 +9225,9 @@ module.exports = !__webpack_require__(915)(function () {
this.element = BI.Widget._renderEngine.createElement(this);
}
this.element._isWidget = true;
(this.element[0]._Widgets = this.element[0]._Widgets || []).push(this);
var widgets = this.element.data("_Widgets") || [];
widgets.push(this);
this.element.data("_Widgets", widgets);
this._initCurrent();
},
@ -9278,11 +9280,19 @@ module.exports = !__webpack_require__(915)(function () {
}
if (BI.isArray(els)) {
if (this.options.vdom) {
this.vnode = this._renderVNode();
var div = document.createElement("div");
this.element.append(div);
var element = this.element;
element.append(div);
this.vnode = this._renderVNode();
BI.patchVNode(div, this.vnode);
// this.element = $(div);
// 去除这个临时的div
BI.DOM.hang([div]);
element.attr("style", self.vnode.elm.getAttribute("style"));
element.addClass(self.vnode.elm.getAttribute("class"));
element.empty();
BI.each(BI.jQuery(self.vnode.elm).children(), function (i, node) {
element.append(node);
})
} else {
BI.each(els, function (i, el) {
if (el) {
@ -9319,7 +9329,7 @@ module.exports = !__webpack_require__(915)(function () {
}
});
}
return BI.Element2Snabbdom(container);
return BI.Element2Vnode(container);
},
_setParent: function (parent) {
@ -12303,9 +12313,9 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
!function () {
var patch = BI.Snabbdom.init([BI.Snabbdom.attributesModule, BI.Snabbdom.classModule, BI.Snabbdom.datasetModule, BI.Snabbdom.propsModule, BI.Snabbdom.styleModule, BI.Snabbdom.eventListenersModule]);
BI.Element2Snabbdom = function (parentNode) {
BI.Element2Vnode = function (parentNode) {
if (parentNode.nodeType === 3) {
return parentNode.textContent;
return BI.Snabbdom.vnode(undefined, undefined, undefined, parentNode.textContent, parentNode);
}
var data = BI.jQuery._data(parentNode);
var on = {};
@ -12317,26 +12327,31 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
});
};
});
var style = parentNode.getAttribute("style");
var attrs = {};
var elmAttrs = parentNode.attributes;
var elmChildren = parentNode.childNodes;
var key = parentNode.getAttribute("key");
// var claz = parentNode.getAttribute("class");
var vnode = BI.Snabbdom.h(parentNode.nodeName, {
for (i = 0, n = elmAttrs.length; i < n; i++) {
var name = elmAttrs[i].nodeName;
if (name !== "id" && name !== "class") {
attrs[name] = elmAttrs[i].nodeValue;
}
}
var vnode = BI.Snabbdom.vnode(parentNode.nodeName, {
class: BI.makeObject(parentNode.classList),
props: {
style: style
},
attrs: attrs,
key: key,
on: on,
hook: {
create: function () {
BI.each(parentNode._Widgets, function (i, w) {
BI.each(BI.Widget._renderEngine.createElement(parentNode).data("_Widgets"), function (i, w) {
w.element = BI.Widget._renderEngine.createElement(vnode.elm);
});
}
}
}, BI.map(parentNode.childNodes, function (i, childNode) {
return BI.Element2Snabbdom(childNode);
}));
}, BI.map(elmChildren, function (i, childNode) {
return BI.Element2Vnode(childNode);
}), undefined, parentNode);
return vnode;
};

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

51
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-7-10 17:40:40 */
/*! time: 2021-7-11 14:31:21 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -9225,7 +9225,9 @@ module.exports = !__webpack_require__(915)(function () {
this.element = BI.Widget._renderEngine.createElement(this);
}
this.element._isWidget = true;
(this.element[0]._Widgets = this.element[0]._Widgets || []).push(this);
var widgets = this.element.data("_Widgets") || [];
widgets.push(this);
this.element.data("_Widgets", widgets);
this._initCurrent();
},
@ -9278,11 +9280,19 @@ module.exports = !__webpack_require__(915)(function () {
}
if (BI.isArray(els)) {
if (this.options.vdom) {
this.vnode = this._renderVNode();
var div = document.createElement("div");
this.element.append(div);
var element = this.element;
element.append(div);
this.vnode = this._renderVNode();
BI.patchVNode(div, this.vnode);
// this.element = $(div);
// 去除这个临时的div
BI.DOM.hang([div]);
element.attr("style", self.vnode.elm.getAttribute("style"));
element.addClass(self.vnode.elm.getAttribute("class"));
element.empty();
BI.each(BI.jQuery(self.vnode.elm).children(), function (i, node) {
element.append(node);
})
} else {
BI.each(els, function (i, el) {
if (el) {
@ -9319,7 +9329,7 @@ module.exports = !__webpack_require__(915)(function () {
}
});
}
return BI.Element2Snabbdom(container);
return BI.Element2Vnode(container);
},
_setParent: function (parent) {
@ -12303,9 +12313,9 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
!function () {
var patch = BI.Snabbdom.init([BI.Snabbdom.attributesModule, BI.Snabbdom.classModule, BI.Snabbdom.datasetModule, BI.Snabbdom.propsModule, BI.Snabbdom.styleModule, BI.Snabbdom.eventListenersModule]);
BI.Element2Snabbdom = function (parentNode) {
BI.Element2Vnode = function (parentNode) {
if (parentNode.nodeType === 3) {
return parentNode.textContent;
return BI.Snabbdom.vnode(undefined, undefined, undefined, parentNode.textContent, parentNode);
}
var data = BI.jQuery._data(parentNode);
var on = {};
@ -12317,26 +12327,31 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
});
};
});
var style = parentNode.getAttribute("style");
var attrs = {};
var elmAttrs = parentNode.attributes;
var elmChildren = parentNode.childNodes;
var key = parentNode.getAttribute("key");
// var claz = parentNode.getAttribute("class");
var vnode = BI.Snabbdom.h(parentNode.nodeName, {
for (i = 0, n = elmAttrs.length; i < n; i++) {
var name = elmAttrs[i].nodeName;
if (name !== "id" && name !== "class") {
attrs[name] = elmAttrs[i].nodeValue;
}
}
var vnode = BI.Snabbdom.vnode(parentNode.nodeName, {
class: BI.makeObject(parentNode.classList),
props: {
style: style
},
attrs: attrs,
key: key,
on: on,
hook: {
create: function () {
BI.each(parentNode._Widgets, function (i, w) {
BI.each(BI.Widget._renderEngine.createElement(parentNode).data("_Widgets"), function (i, w) {
w.element = BI.Widget._renderEngine.createElement(vnode.elm);
});
}
}
}, BI.map(parentNode.childNodes, function (i, childNode) {
return BI.Element2Snabbdom(childNode);
}));
}, BI.map(elmChildren, function (i, childNode) {
return BI.Element2Vnode(childNode);
}), undefined, parentNode);
return vnode;
};

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

51
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-7-10 17:40:40 */
/*! time: 2021-7-11 14:31:21 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -9225,7 +9225,9 @@ module.exports = !__webpack_require__(915)(function () {
this.element = BI.Widget._renderEngine.createElement(this);
}
this.element._isWidget = true;
(this.element[0]._Widgets = this.element[0]._Widgets || []).push(this);
var widgets = this.element.data("_Widgets") || [];
widgets.push(this);
this.element.data("_Widgets", widgets);
this._initCurrent();
},
@ -9278,11 +9280,19 @@ module.exports = !__webpack_require__(915)(function () {
}
if (BI.isArray(els)) {
if (this.options.vdom) {
this.vnode = this._renderVNode();
var div = document.createElement("div");
this.element.append(div);
var element = this.element;
element.append(div);
this.vnode = this._renderVNode();
BI.patchVNode(div, this.vnode);
// this.element = $(div);
// 去除这个临时的div
BI.DOM.hang([div]);
element.attr("style", self.vnode.elm.getAttribute("style"));
element.addClass(self.vnode.elm.getAttribute("class"));
element.empty();
BI.each(BI.jQuery(self.vnode.elm).children(), function (i, node) {
element.append(node);
})
} else {
BI.each(els, function (i, el) {
if (el) {
@ -9319,7 +9329,7 @@ module.exports = !__webpack_require__(915)(function () {
}
});
}
return BI.Element2Snabbdom(container);
return BI.Element2Vnode(container);
},
_setParent: function (parent) {
@ -12303,9 +12313,9 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
!function () {
var patch = BI.Snabbdom.init([BI.Snabbdom.attributesModule, BI.Snabbdom.classModule, BI.Snabbdom.datasetModule, BI.Snabbdom.propsModule, BI.Snabbdom.styleModule, BI.Snabbdom.eventListenersModule]);
BI.Element2Snabbdom = function (parentNode) {
BI.Element2Vnode = function (parentNode) {
if (parentNode.nodeType === 3) {
return parentNode.textContent;
return BI.Snabbdom.vnode(undefined, undefined, undefined, parentNode.textContent, parentNode);
}
var data = BI.jQuery._data(parentNode);
var on = {};
@ -12317,26 +12327,31 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
});
};
});
var style = parentNode.getAttribute("style");
var attrs = {};
var elmAttrs = parentNode.attributes;
var elmChildren = parentNode.childNodes;
var key = parentNode.getAttribute("key");
// var claz = parentNode.getAttribute("class");
var vnode = BI.Snabbdom.h(parentNode.nodeName, {
for (i = 0, n = elmAttrs.length; i < n; i++) {
var name = elmAttrs[i].nodeName;
if (name !== "id" && name !== "class") {
attrs[name] = elmAttrs[i].nodeValue;
}
}
var vnode = BI.Snabbdom.vnode(parentNode.nodeName, {
class: BI.makeObject(parentNode.classList),
props: {
style: style
},
attrs: attrs,
key: key,
on: on,
hook: {
create: function () {
BI.each(parentNode._Widgets, function (i, w) {
BI.each(BI.Widget._renderEngine.createElement(parentNode).data("_Widgets"), function (i, w) {
w.element = BI.Widget._renderEngine.createElement(vnode.elm);
});
}
}
}, BI.map(parentNode.childNodes, function (i, childNode) {
return BI.Element2Snabbdom(childNode);
}));
}, BI.map(elmChildren, function (i, childNode) {
return BI.Element2Vnode(childNode);
}), undefined, parentNode);
return vnode;
};

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

2
dist/fineui.proxy.css vendored

File diff suppressed because one or more lines are too long

51
dist/fineui.proxy.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-7-10 17:40:40 */
/*! time: 2021-7-11 14:31:21 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -6686,7 +6686,9 @@ BI.Req = {
this.element = BI.Widget._renderEngine.createElement(this);
}
this.element._isWidget = true;
(this.element[0]._Widgets = this.element[0]._Widgets || []).push(this);
var widgets = this.element.data("_Widgets") || [];
widgets.push(this);
this.element.data("_Widgets", widgets);
this._initCurrent();
},
@ -6739,11 +6741,19 @@ BI.Req = {
}
if (BI.isArray(els)) {
if (this.options.vdom) {
this.vnode = this._renderVNode();
var div = document.createElement("div");
this.element.append(div);
var element = this.element;
element.append(div);
this.vnode = this._renderVNode();
BI.patchVNode(div, this.vnode);
// this.element = $(div);
// 去除这个临时的div
BI.DOM.hang([div]);
element.attr("style", self.vnode.elm.getAttribute("style"));
element.addClass(self.vnode.elm.getAttribute("class"));
element.empty();
BI.each(BI.jQuery(self.vnode.elm).children(), function (i, node) {
element.append(node);
})
} else {
BI.each(els, function (i, el) {
if (el) {
@ -6780,7 +6790,7 @@ BI.Req = {
}
});
}
return BI.Element2Snabbdom(container);
return BI.Element2Vnode(container);
},
_setParent: function (parent) {
@ -9764,9 +9774,9 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
!function () {
var patch = BI.Snabbdom.init([BI.Snabbdom.attributesModule, BI.Snabbdom.classModule, BI.Snabbdom.datasetModule, BI.Snabbdom.propsModule, BI.Snabbdom.styleModule, BI.Snabbdom.eventListenersModule]);
BI.Element2Snabbdom = function (parentNode) {
BI.Element2Vnode = function (parentNode) {
if (parentNode.nodeType === 3) {
return parentNode.textContent;
return BI.Snabbdom.vnode(undefined, undefined, undefined, parentNode.textContent, parentNode);
}
var data = BI.jQuery._data(parentNode);
var on = {};
@ -9778,26 +9788,31 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
});
};
});
var style = parentNode.getAttribute("style");
var attrs = {};
var elmAttrs = parentNode.attributes;
var elmChildren = parentNode.childNodes;
var key = parentNode.getAttribute("key");
// var claz = parentNode.getAttribute("class");
var vnode = BI.Snabbdom.h(parentNode.nodeName, {
for (i = 0, n = elmAttrs.length; i < n; i++) {
var name = elmAttrs[i].nodeName;
if (name !== "id" && name !== "class") {
attrs[name] = elmAttrs[i].nodeValue;
}
}
var vnode = BI.Snabbdom.vnode(parentNode.nodeName, {
class: BI.makeObject(parentNode.classList),
props: {
style: style
},
attrs: attrs,
key: key,
on: on,
hook: {
create: function () {
BI.each(parentNode._Widgets, function (i, w) {
BI.each(BI.Widget._renderEngine.createElement(parentNode).data("_Widgets"), function (i, w) {
w.element = BI.Widget._renderEngine.createElement(vnode.elm);
});
}
}
}, BI.map(parentNode.childNodes, function (i, childNode) {
return BI.Element2Snabbdom(childNode);
}));
}, BI.map(elmChildren, function (i, childNode) {
return BI.Element2Vnode(childNode);
}), undefined, parentNode);
return vnode;
};

2
dist/fineui.proxy.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.proxy.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.proxy.min.js vendored

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long

51
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-7-10 17:40:40 */
/*! time: 2021-7-11 14:31:21 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -6296,7 +6296,9 @@ BI.Req = {
this.element = BI.Widget._renderEngine.createElement(this);
}
this.element._isWidget = true;
(this.element[0]._Widgets = this.element[0]._Widgets || []).push(this);
var widgets = this.element.data("_Widgets") || [];
widgets.push(this);
this.element.data("_Widgets", widgets);
this._initCurrent();
},
@ -6349,11 +6351,19 @@ BI.Req = {
}
if (BI.isArray(els)) {
if (this.options.vdom) {
this.vnode = this._renderVNode();
var div = document.createElement("div");
this.element.append(div);
var element = this.element;
element.append(div);
this.vnode = this._renderVNode();
BI.patchVNode(div, this.vnode);
// this.element = $(div);
// 去除这个临时的div
BI.DOM.hang([div]);
element.attr("style", self.vnode.elm.getAttribute("style"));
element.addClass(self.vnode.elm.getAttribute("class"));
element.empty();
BI.each(BI.jQuery(self.vnode.elm).children(), function (i, node) {
element.append(node);
})
} else {
BI.each(els, function (i, el) {
if (el) {
@ -6390,7 +6400,7 @@ BI.Req = {
}
});
}
return BI.Element2Snabbdom(container);
return BI.Element2Vnode(container);
},
_setParent: function (parent) {
@ -9374,9 +9384,9 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
!function () {
var patch = BI.Snabbdom.init([BI.Snabbdom.attributesModule, BI.Snabbdom.classModule, BI.Snabbdom.datasetModule, BI.Snabbdom.propsModule, BI.Snabbdom.styleModule, BI.Snabbdom.eventListenersModule]);
BI.Element2Snabbdom = function (parentNode) {
BI.Element2Vnode = function (parentNode) {
if (parentNode.nodeType === 3) {
return parentNode.textContent;
return BI.Snabbdom.vnode(undefined, undefined, undefined, parentNode.textContent, parentNode);
}
var data = BI.jQuery._data(parentNode);
var on = {};
@ -9388,26 +9398,31 @@ BI.TooltipsController = BI.inherit(BI.Controller, {
});
};
});
var style = parentNode.getAttribute("style");
var attrs = {};
var elmAttrs = parentNode.attributes;
var elmChildren = parentNode.childNodes;
var key = parentNode.getAttribute("key");
// var claz = parentNode.getAttribute("class");
var vnode = BI.Snabbdom.h(parentNode.nodeName, {
for (i = 0, n = elmAttrs.length; i < n; i++) {
var name = elmAttrs[i].nodeName;
if (name !== "id" && name !== "class") {
attrs[name] = elmAttrs[i].nodeValue;
}
}
var vnode = BI.Snabbdom.vnode(parentNode.nodeName, {
class: BI.makeObject(parentNode.classList),
props: {
style: style
},
attrs: attrs,
key: key,
on: on,
hook: {
create: function () {
BI.each(parentNode._Widgets, function (i, w) {
BI.each(BI.Widget._renderEngine.createElement(parentNode).data("_Widgets"), function (i, w) {
w.element = BI.Widget._renderEngine.createElement(vnode.elm);
});
}
}
}, BI.map(parentNode.childNodes, function (i, childNode) {
return BI.Element2Snabbdom(childNode);
}));
}, BI.map(elmChildren, function (i, childNode) {
return BI.Element2Vnode(childNode);
}), undefined, parentNode);
return vnode;
};

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: 2021-7-10 17:40:40 */
/*! time: 2021-7-11 14:31:21 */
/******/ (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.20210710174207",
"version": "2.0.20210711143338",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

Loading…
Cancel
Save