isobit-ui 0.2.28 → 0.2.30
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 +8 -7
- 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.29
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1182,9 +1182,9 @@ var script$j = {
|
|
|
1182
1182
|
} else {
|
|
1183
1183
|
el = el.children[0];
|
|
1184
1184
|
el.style.height = h + "px";
|
|
1185
|
-
}
|
|
1185
|
+
} //h = h - 20;
|
|
1186
|
+
|
|
1186
1187
|
|
|
1187
|
-
h = h - 20;
|
|
1188
1188
|
el.style.overflowY = "auto";
|
|
1189
1189
|
el.style.height = h + "px";
|
|
1190
1190
|
var event = new Event("parentResize", {
|
|
@@ -5787,12 +5787,13 @@ var resize = function resize() {
|
|
|
5787
5787
|
return;
|
|
5788
5788
|
} else if (pc[0].nodeName == "DIV") {
|
|
5789
5789
|
p = pc[0];
|
|
5790
|
-
console.log("========");
|
|
5791
|
-
console.log(p);
|
|
5792
|
-
h = h - ph.offsetHeight - 0;
|
|
5793
5790
|
p.style.height = h + 'px';
|
|
5794
5791
|
p.style.overflowY = 'auto';
|
|
5795
|
-
|
|
5792
|
+
h = h - ph.offsetHeight - 0;
|
|
5793
|
+
|
|
5794
|
+
if (p.classList.contains('ui-panel')) ; else {
|
|
5795
|
+
p = p.children[0];
|
|
5796
|
+
}
|
|
5796
5797
|
|
|
5797
5798
|
var event = new Event("parentResize", {
|
|
5798
5799
|
bubbles: true
|