isobit-ui 0.2.13 → 0.2.15
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 +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.2.
|
|
2
|
+
* isobit-ui v0.2.14
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -5808,10 +5808,12 @@ var resize = function resize() {
|
|
|
5808
5808
|
p = pc[0].querySelector(".ui-panel");
|
|
5809
5809
|
|
|
5810
5810
|
if (p) {
|
|
5811
|
+
console.log(p);
|
|
5811
5812
|
pc = p.children;
|
|
5812
5813
|
if (ph) h -= ph.offsetHeight + pc[0].offsetHeight + 2;
|
|
5813
5814
|
|
|
5814
5815
|
if (pc[1]) {
|
|
5816
|
+
console.log(pc[1]);
|
|
5815
5817
|
pc[1].style.height = h + 'px';
|
|
5816
5818
|
var e = pc[1].querySelectorAll(".v-resize,.v-datatable");
|
|
5817
5819
|
|
|
@@ -5827,8 +5829,9 @@ var resize = function resize() {
|
|
|
5827
5829
|
var f = function f(el) {
|
|
5828
5830
|
var style = window.getComputedStyle(el);
|
|
5829
5831
|
return style.display === 'none';
|
|
5830
|
-
};
|
|
5832
|
+
};
|
|
5831
5833
|
|
|
5834
|
+
console.log(pc[0]); //function isHidden(el) {return (el.offsetParent === null)}
|
|
5832
5835
|
|
|
5833
5836
|
if (!pc[0].children[0]) return;
|
|
5834
5837
|
console.log(h);
|