Skip to content
Snippets Groups Projects
Commit d9509dd1 authored by Shagen Ogandzhanian's avatar Shagen Ogandzhanian
Browse files

Remove CSSSizeOrAuto completely

Use CSSAuto or CSSSize instead (and overloading when needed)
parent 67244aec
No related branches found
No related tags found
No related merge requests found
@file:Suppress("UNUSED") @file:Suppress("UNUSED")
package org.jetbrains.compose.web.css package org.jetbrains.compose.web.css
interface CSSAutoValue : CSSSizeOrAutoValue interface CSSAutoValue : StylePropertyValue
val auto = "auto".unsafeCast<CSSAutoValue>() val auto = "auto".unsafeCast<CSSAutoValue>()
external interface CSSSizeOrAutoValue : StylePropertyValue
enum class Direction { enum class Direction {
rtl, rtl,
ltr; ltr;
......
package org.jetbrains.compose.web.css package org.jetbrains.compose.web.css
interface CSSSizeValue : CSSUnitValue, CSSSizeOrAutoValue interface CSSSizeValue : CSSUnitValue, StylePropertyValue
interface CSSRelValue : CSSSizeValue interface CSSRelValue : CSSSizeValue
interface CSSpercentValue : CSSRelValue interface CSSpercentValue : CSSRelValue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment