Modal
This class provides the building blocks to implement a modal.
Use modal functions to create an instance, set up the needed Hooks or Propertys and refine the component by using the further factory methods offered by this class.
For more information refer to the official documentation
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun Modal.modalPanel(classes: String? = null, id: String? = null, internalScope: ScopeContext.() -> Unit = {}, initialize: Modal.ModalPanel<HTMLDivElement>.() -> Unit)
Factory function to create a modalPanel with a HTMLDivElement as default Tag.
fun <C : HTMLElement> Modal.modalPanel(classes: String? = null, id: String? = null, internalScope: ScopeContext.() -> Unit = {}, tag: TagFactory<Tag<C>>, initialize: Modal.ModalPanel<C>.() -> Unit)
Factory function to create a modalPanel.