abstract class StyledComponent : Component
Base class for components supporting CSS styling.
inner class RefreshDelegate<T> |
|
inner class RefreshDelegateProvider<T> |
StyledComponent()
Base class for components supporting CSS styling. |
open var background: Background?
Background of the current component. |
|
open var border: Border?
Border of the current component. |
|
open var borderBottom: Border?
Bottom border of the current component. |
|
open var borderLeft: Border?
Left border of the current component. |
|
open var borderRight: Border?
Right border of the current component. |
|
open var borderTop: Border?
Top border of the current component. |
|
open var bottom: CssSize?
Bottom edge of the current component. |
|
open var clear: Clear?
CSS clear float of the current component. |
|
open var color: Color?
Text color for the current component. |
|
open var colorHex: Int?
Text color for the current component given in hex format (write only). |
|
open var colorName: Col?
Text color for the current component given with named constant (write only). |
|
open var display: Display?
CSS display of the current component. |
|
open var float: PosFloat?
CSS position float of the current component. |
|
open var fontFamily: String?
CSS font family of the current component. |
|
open var fontSize: CssSize?
CSS font size of the current component. |
|
open var fontStyle: FontStyle?
CSS font style of the current component. |
|
open var fontVariant: FontVariant?
CSS font variant of the current component. |
|
open var fontWeight: FontWeight?
CSS font weight of the current component. |
|
open var height: CssSize?
Height of the current component. |
|
open var left: CssSize?
Left edge of the current component. |
|
open var letterSpacing: CssSize?
CSS Text letter spacing of the current component. |
|
open var lineHeight: CssSize?
CSS Text line height of the current component. |
|
open var margin: CssSize?
Margin of the current component. |
|
open var marginBottom: CssSize?
Bottom margin of the current component. |
|
open var marginLeft: CssSize?
Left margin of the current component. |
|
open var marginRight: CssSize?
Right margin of the current component. |
|
open var marginTop: CssSize?
Top margin of the current component. |
|
open var maxHeight: CssSize?
Maximal height of the current component. |
|
open var maxWidth: CssSize?
Maximal width of the current component. |
|
open var minHeight: CssSize?
Minimal height of the current component. |
|
open var minWidth: CssSize?
Minimal width of the current component. |
|
open var opacity: Double?
Opacity of the current component. |
|
open var overflow: Overflow?
CSS overflow of the current component. |
|
open var padding: CssSize?
Padding of the current component. |
|
open var paddingBottom: CssSize?
Bottom padding of the current component. |
|
open var paddingLeft: CssSize?
Left padding of the current component. |
|
open var paddingRight: CssSize?
Right padding of the current component. |
|
open var paddingTop: CssSize?
Top padding of the current component. |
|
open var position: Position?
CSS position of the current component. |
|
open var resize: Resize?
CSS resize of the current component. |
|
open var right: CssSize?
Right edge of the current component. |
|
open var textAlign: TextAlign?
CSS Text align of the current component. |
|
open var textDecoration: TextDecoration?
CSS Text decoration of the current component. |
|
open var textDirection: Direction?
CSS Text direction of the current component. |
|
open var textIndent: CssSize?
CSS Text indent of the current component. |
|
open var textOverflow: TextOverflow?
CSS Text overflow of the current component. |
|
open var textShadow: TextShadow?
CSS Text shadow of the current component. |
|
open var textTransform: TextTransform?
CSS Text transform of the current component. |
|
open var top: CssSize?
Top edge of the current component. |
|
open var unicodeBidi: UnicodeBidi?
CSS Text unicode-bidi of the current component. |
|
open var verticalAlign: VerticalAlign?
CSS Text vertical align of the current component. |
|
open var whiteSpace: WhiteSpace?
CSS Text white space of the current component. |
|
open var width: CssSize?
Width of the current component. |
|
open var wordSpacing: CssSize?
CSS Text word spacing of the current component. |
|
open var zIndex: Int?
Z-index of the current component. |
abstract var parent: Container?
Parent of the current component. |
|
abstract var visible: Boolean
Visibility state of the current component. |
open fun getSnStyle(): List<StringPair>
Returns the list of String pairs defining CSS style attributes and their values. |
|
fun <T> refreshOnUpdate(refreshFunction: (T) -> Unit = { this.refresh() }): RefreshDelegateProvider<T> fun <T> refreshOnUpdate(initialValue: T, refreshFunction: (T) -> Unit = { this.refresh() }): RefreshDelegateProvider<T> |
abstract fun addCssClass(css: String): Component
Adds given value to the set of CSS classes generated in html code of current component. |
|
abstract fun addSurroundingCssClass(css: String): Component
Adds given value to the set of CSS classes generated in html code of parent component. |
|
abstract fun getElement(): Node?
Returns DOM element bound to the current component. |
|
abstract fun getElementJQuery(): JQuery?
Returns JQuery element bound to the current component. |
|
abstract fun getElementJQueryD(): dynamic
Returns JQuery element bound to the current component as a dynamic type. |
|
abstract fun removeCssClass(css: String): Component
Removes given value from the set of CSS classes generated in html code of current component. |
|
abstract fun removeSurroundingCssClass(css: String): Component
Removes given value from the set of CSS classes generated in html code of parent component. |
open class Widget : StyledComponent
Base widget class. The parent of all component classes. |