isobit-ui 0.1.45 → 0.1.48
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 +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.1.
|
|
2
|
+
* isobit-ui v0.1.48
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3972,7 +3972,6 @@ var script$6 = {
|
|
|
3972
3972
|
}
|
|
3973
3973
|
},
|
|
3974
3974
|
resize: function resize(e) {
|
|
3975
|
-
console.log('form.resize');
|
|
3976
3975
|
var me = this,
|
|
3977
3976
|
el = me.$el,
|
|
3978
3977
|
h = e.height;
|
|
@@ -3991,14 +3990,15 @@ var script$6 = {
|
|
|
3991
3990
|
el.children.forEach(function (ee) {
|
|
3992
3991
|
if (!el2) {
|
|
3993
3992
|
//style2 = window.getComputedStyle(ee);
|
|
3994
|
-
if (!ee.classList.contains('v-scrollable') && ee.classList.contains('v-resize')) {
|
|
3993
|
+
if (!ee.classList.contains('v-scrollable') && !ee.classList.contains('v-resize')) {
|
|
3995
3994
|
h -= ee.offsetHeight + 2;
|
|
3996
3995
|
} else {
|
|
3997
3996
|
el2 = ee;
|
|
3998
3997
|
}
|
|
3999
3998
|
}
|
|
4000
3999
|
});
|
|
4001
|
-
el = el2;
|
|
4000
|
+
el = el2;
|
|
4001
|
+
console.log(el); //Se espera el sea una tabla
|
|
4002
4002
|
} else {
|
|
4003
4003
|
el = el.children[0];
|
|
4004
4004
|
el.style.height = h + 'px';
|