ysny.karibu-tools.karibu-tools.0.20.source-code.DatePickers.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of karibu-tools Show documentation
Show all versions of karibu-tools Show documentation
Karibu-Tools: The Vaadin Missing Utilities
package com.github.mvysny.kaributools
import com.vaadin.flow.component.Component
import com.vaadin.flow.component.datepicker.DatePicker
/**
* Sets a component to the `prefix` slot.
*/
public var DatePicker.prefixComponent: Component?
get() = getChildComponentInSlot("prefix")
set(value) {
setChildComponentToSlot("prefix", value)
}