isobit-ui 0.0.229 → 0.0.232
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 +9 -8
- 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.232
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1287,11 +1287,11 @@ var script$d = {
|
|
|
1287
1287
|
},
|
|
1288
1288
|
render: function render(createElement) {
|
|
1289
1289
|
var me = this,
|
|
1290
|
-
columns = []
|
|
1291
|
-
|
|
1290
|
+
columns = [],
|
|
1291
|
+
def = me.$scopedSlots["default"];
|
|
1292
|
+
var children = def({
|
|
1292
1293
|
row: {}
|
|
1293
1294
|
});
|
|
1294
|
-
var ss = me.$scopedSlots["default"];
|
|
1295
1295
|
|
|
1296
1296
|
if (children) {
|
|
1297
1297
|
children.forEach(function (e, i) {
|
|
@@ -1320,8 +1320,10 @@ var script$d = {
|
|
|
1320
1320
|
}
|
|
1321
1321
|
|
|
1322
1322
|
me.$scopedSlots["default"] = function (r, r2, r3) {
|
|
1323
|
-
var
|
|
1324
|
-
|
|
1323
|
+
var item = def(r, r2, r3);
|
|
1324
|
+
item.forEach(function (e, i) {
|
|
1325
|
+
delete e.data.attrs.header;
|
|
1326
|
+
|
|
1325
1327
|
if (e.children) {
|
|
1326
1328
|
e.children.filter(function (e) {
|
|
1327
1329
|
return e.tag == 'v-filter';
|
|
@@ -1335,7 +1337,7 @@ var script$d = {
|
|
|
1335
1337
|
});
|
|
1336
1338
|
}
|
|
1337
1339
|
});
|
|
1338
|
-
return
|
|
1340
|
+
return item;
|
|
1339
1341
|
};
|
|
1340
1342
|
/*return createElement(
|
|
1341
1343
|
'h' + this.level, // nombre de etiqueta
|
|
@@ -1345,7 +1347,6 @@ var script$d = {
|
|
|
1345
1347
|
|
|
1346
1348
|
var el = new DOMParser().parseFromString(template, "text/xml");
|
|
1347
1349
|
/*
|
|
1348
|
-
|
|
1349
1350
|
document.getElementById("demo").innerHTML =
|
|
1350
1351
|
xmlDoc.getElementsByTagName("title")[0].childNodes[0].nodeValue; */
|
|
1351
1352
|
|