@kengic/core.react 0.0.2-beta.10 → 0.0.2-beta.11
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/kengic-core.react.js +3 -1
- package/package.json +1 -1
package/kengic-core.react.js
CHANGED
|
@@ -65637,7 +65637,9 @@ function useDragToResize(e) {
|
|
|
65637
65637
|
}
|
|
65638
65638
|
};
|
|
65639
65639
|
function sa() {
|
|
65640
|
-
!w || !w.clientHeight ||
|
|
65640
|
+
!w || !L || !w.clientHeight || L.clientHeight || setTimeout(() => {
|
|
65641
|
+
w.style.height = `${w.clientHeight}px`;
|
|
65642
|
+
}, 0);
|
|
65641
65643
|
}
|
|
65642
65644
|
function ga(pa, ha, xa) {
|
|
65643
65645
|
return pa.addEventListener(ha, xa), {
|