isobit-ui 0.0.200 → 0.0.201
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +23 -12
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.0.
|
|
2
|
+
* isobit-ui v0.0.201
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1328,6 +1328,25 @@ var script$d = {
|
|
|
1328
1328
|
rowStyleClassFunc: null
|
|
1329
1329
|
};
|
|
1330
1330
|
},
|
|
1331
|
+
render: function render(createElement) {
|
|
1332
|
+
console.log('RENDER TABLE');
|
|
1333
|
+
console.log(this.$slots);
|
|
1334
|
+
/*return createElement(
|
|
1335
|
+
'h' + this.level, // nombre de etiqueta
|
|
1336
|
+
this.$slots.default // arreglo de hijos
|
|
1337
|
+
)*/
|
|
1338
|
+
|
|
1339
|
+
/*parser = new DOMParser();
|
|
1340
|
+
xmlDoc = parser.parseFromString(text,"text/xml");
|
|
1341
|
+
document.getElementById("demo").innerHTML =
|
|
1342
|
+
xmlDoc.getElementsByTagName("title")[0].childNodes[0].nodeValue; */
|
|
1343
|
+
|
|
1344
|
+
var el = document.createElement('html');
|
|
1345
|
+
el.innerHTML = template;
|
|
1346
|
+
console.log(el);
|
|
1347
|
+
el.parentNode.removeChild(el);
|
|
1348
|
+
return compiledTemplate.render.call(this, createElement);
|
|
1349
|
+
},
|
|
1331
1350
|
computed: {
|
|
1332
1351
|
getCheckColumnWidth: function getCheckColumnWidth() {
|
|
1333
1352
|
return 36; //18;
|
|
@@ -1712,13 +1731,6 @@ var script$d = {
|
|
|
1712
1731
|
console.log(this.$parent.$parent.row);
|
|
1713
1732
|
this.$emit('row',r);*/
|
|
1714
1733
|
},
|
|
1715
|
-
render: function render(createElement) {
|
|
1716
|
-
var el = document.createElement('html');
|
|
1717
|
-
el.innerHTML = template;
|
|
1718
|
-
console.log(el);
|
|
1719
|
-
el.parentNode.removeChild(el);
|
|
1720
|
-
return compiledTemplate.render.call(this, createElement);
|
|
1721
|
-
},
|
|
1722
1734
|
buildColumns: function buildColumns(c) {
|
|
1723
1735
|
var me = this;
|
|
1724
1736
|
|
|
@@ -4993,10 +5005,9 @@ Vue.mergeDeep = function () {
|
|
|
4993
5005
|
for (var key in source) {
|
|
4994
5006
|
//for (const key in source) {
|
|
4995
5007
|
if (isObject(source[key])) {
|
|
4996
|
-
console.log(key);
|
|
4997
|
-
console.log(source[key]);
|
|
4998
|
-
console.log(
|
|
4999
|
-
|
|
5008
|
+
/*console.log(key);
|
|
5009
|
+
console.log(source[key]);
|
|
5010
|
+
console.log(typeof source[key]);*/
|
|
5000
5011
|
if (!target[key]) {
|
|
5001
5012
|
nv = {};
|
|
5002
5013
|
nv[key] = {};
|