add Element.isOverflow

This commit is contained in:
InsanusMokrassar 2022-05-29 10:22:57 +06:00
parent 3e749d75b7
commit 7412217b0c
2 changed files with 15 additions and 0 deletions

View File

@ -2,6 +2,9 @@
## 0.10.8
* `Common`
* Add `Element.isOverflow*` extension properties
## 0.10.7
* `Pagination`:

View File

@ -0,0 +1,12 @@
package dev.inmo.micro_utils.common
import org.w3c.dom.Element
inline val Element.isOverflowWidth
get() = scrollWidth > clientWidth
inline val Element.isOverflowHeight
get() = scrollHeight > clientHeight
inline val Element.isOverflow
get() = isOverflowHeight || isOverflowWidth