org.http4k.datastar.Selector.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-web-datastar Show documentation
Show all versions of http4k-web-datastar Show documentation
http4k Datastar support utilities
The newest version!
package org.http4k.datastar
import dev.forkhandles.values.StringValue
import dev.forkhandles.values.StringValueFactory
import dev.forkhandles.values.regex
/**
* Selects the target element of the merge process using a CSS selector.
*/
class Selector private constructor(value: String) : StringValue(value) {
companion object : StringValueFactory(::Selector, "#.+".regex)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy