Compare commits

..

No commits in common. "29fe133777070f685e6b2d6616997e182287f424" and "665432cdce6d6e6c6c8e54c1ba35b76c9cea10bf" have entirely different histories.

5 changed files with 3 additions and 17 deletions

View File

@ -1,10 +1,5 @@
# Changelog
## 0.7.1
* Type of `animation` parameter in `Alert` has been changed according to docs: now it is `Boolean`
* Add tooltip `JS` part support
## 0.7.0
* `Kotlin`: `1.8.20`

View File

@ -7,4 +7,4 @@ kotlin.incremental.js=true
# Project data
group=dev.inmo
version=0.7.1
version=0.7.0

View File

@ -12,7 +12,7 @@ import org.w3c.dom.HTMLDivElement
@Composable
fun Alert(
attrs: Attrs<HTMLDivElement> = Attrs.empty(),
animation: Boolean = true,
animation: UIKitAnimation? = UIKitAnimation.Fade,
duration: Milliseconds? = null,
selClose: String? = null,
content: ContentBuilder<HTMLDivElement>
@ -22,7 +22,7 @@ fun Alert(
include(UIKitAlert)
buildAndAddAttribute("uk-alert") {
"animation" to animation
"animation" to animation ?.classes ?.firstOrNull()
"duration" to duration
"sel-close" to selClose
}

View File

@ -17,7 +17,4 @@ external interface UIKit {
fun dropdown(element: Element, options: DropdownOptions = definedExternally): Dropdown
fun dropdown(selector: String, options: DropdownOptions = definedExternally): Dropdown?
fun tooltip(element: Element): UIKitTooltip
fun tooltip(selector: String): UIKitTooltip?
}

View File

@ -1,6 +0,0 @@
package dev.inmo.jsuikit.types
external interface UIKitTooltip {
fun show()
fun hide()
}