isobit-ui 0.0.228 → 0.0.231
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 +10 -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.231
|
|
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,11 @@ 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
|
+
delete e.data.attrs.width;
|
|
1327
|
+
|
|
1325
1328
|
if (e.children) {
|
|
1326
1329
|
e.children.filter(function (e) {
|
|
1327
1330
|
return e.tag == 'v-filter';
|
|
@@ -1335,7 +1338,7 @@ var script$d = {
|
|
|
1335
1338
|
});
|
|
1336
1339
|
}
|
|
1337
1340
|
});
|
|
1338
|
-
return
|
|
1341
|
+
return item;
|
|
1339
1342
|
};
|
|
1340
1343
|
/*return createElement(
|
|
1341
1344
|
'h' + this.level, // nombre de etiqueta
|
|
@@ -1345,7 +1348,6 @@ var script$d = {
|
|
|
1345
1348
|
|
|
1346
1349
|
var el = new DOMParser().parseFromString(template, "text/xml");
|
|
1347
1350
|
/*
|
|
1348
|
-
|
|
1349
1351
|
document.getElementById("demo").innerHTML =
|
|
1350
1352
|
xmlDoc.getElementsByTagName("title")[0].childNodes[0].nodeValue; */
|
|
1351
1353
|
|