mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-10 18:33:49 +00:00
commit
1af5faa440
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.10.8
|
||||||
|
|
||||||
|
* `Common`
|
||||||
|
* Add `Element.isOverflow*` extension properties
|
||||||
|
|
||||||
## 0.10.7
|
## 0.10.7
|
||||||
|
|
||||||
* `Pagination`:
|
* `Pagination`:
|
||||||
|
@ -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
|
@ -14,5 +14,5 @@ crypto_js_version=4.1.1
|
|||||||
# Project data
|
# Project data
|
||||||
|
|
||||||
group=dev.inmo
|
group=dev.inmo
|
||||||
version=0.10.7
|
version=0.10.8
|
||||||
android_code_version=122
|
android_code_version=123
|
||||||
|
Loading…
Reference in New Issue
Block a user