Browse Source

CSSSizeValue child interfaces are not external

pull/756/head
Shagen Ogandzhanian 3 years ago
parent
commit
7022ab225a
  1. 96
      web/core/src/jsMain/kotlin/androidx/compose/web/css/CSSUnits.kt

96
web/core/src/jsMain/kotlin/androidx/compose/web/css/CSSUnits.kt

@ -1,52 +1,52 @@
package org.jetbrains.compose.web.css package org.jetbrains.compose.web.css
external interface CSSSizeValue : CSSUnitValue, CSSSizeOrAutoValue
interface CSSSizeValue : CSSUnitValue, CSSSizeOrAutoValue
// fake interfaces to distinguish units
external interface CSSRelValue : CSSSizeValue interface CSSRelValue : CSSSizeValue
external interface CSSpercentValue : CSSRelValue interface CSSpercentValue : CSSRelValue
external interface CSSemValue : CSSRelValue interface CSSemValue : CSSRelValue
external interface CSSexValue : CSSRelValue interface CSSexValue : CSSRelValue
external interface CSSchValue : CSSRelValue interface CSSchValue : CSSRelValue
external interface CSSicValue : CSSRelValue interface CSSicValue : CSSRelValue
external interface CSSremValue : CSSRelValue interface CSSremValue : CSSRelValue
external interface CSSlhValue : CSSRelValue interface CSSlhValue : CSSRelValue
external interface CSSrlhValue : CSSRelValue interface CSSrlhValue : CSSRelValue
external interface CSSvwValue : CSSRelValue interface CSSvwValue : CSSRelValue
external interface CSSvhValue : CSSRelValue interface CSSvhValue : CSSRelValue
external interface CSSviValue : CSSRelValue interface CSSviValue : CSSRelValue
external interface CSSvbValue : CSSRelValue interface CSSvbValue : CSSRelValue
external interface CSSvminValue : CSSRelValue interface CSSvminValue : CSSRelValue
external interface CSSvmaxValue : CSSRelValue interface CSSvmaxValue : CSSRelValue
external interface CSScmValue : CSSRelValue interface CSScmValue : CSSRelValue
external interface CSSmmValue : CSSRelValue interface CSSmmValue : CSSRelValue
external interface CSSQValue : CSSRelValue interface CSSQValue : CSSRelValue
external interface CSSAbsValue : CSSSizeValue interface CSSAbsValue : CSSSizeValue
external interface CSSptValue : CSSAbsValue interface CSSptValue : CSSAbsValue
external interface CSSpcValue : CSSAbsValue interface CSSpcValue : CSSAbsValue
external interface CSSpxValue : CSSAbsValue interface CSSpxValue : CSSAbsValue
external interface CSSangleValue : CSSUnitValue interface CSSangleValue : CSSUnitValue
external interface CSSdegValue : CSSangleValue interface CSSdegValue : CSSangleValue
external interface CSSgradValue : CSSangleValue interface CSSgradValue : CSSangleValue
external interface CSSradValue : CSSangleValue interface CSSradValue : CSSangleValue
external interface CSSturnValue : CSSangleValue interface CSSturnValue : CSSangleValue
external interface CSSTimeValue : CSSUnitValue interface CSSTimeValue : CSSUnitValue
external interface CSSsValue : CSSTimeValue interface CSSsValue : CSSTimeValue
external interface CSSmsValue : CSSTimeValue interface CSSmsValue : CSSTimeValue
external interface CSSFrequencyValue : CSSUnitValue interface CSSFrequencyValue : CSSUnitValue
external interface CSSHzValue : CSSFrequencyValue interface CSSHzValue : CSSFrequencyValue
external interface CSSkHzValue : CSSFrequencyValue interface CSSkHzValue : CSSFrequencyValue
external interface CSSResolutionValue : CSSUnitValue interface CSSResolutionValue : CSSUnitValue
external interface CSSdpiValue : CSSResolutionValue interface CSSdpiValue : CSSResolutionValue
external interface CSSdpcmValue : CSSResolutionValue interface CSSdpcmValue : CSSResolutionValue
external interface CSSdppxValue : CSSResolutionValue interface CSSdppxValue : CSSResolutionValue
external interface CSSFlexValue : CSSUnitValue interface CSSFlexValue : CSSUnitValue
external interface CSSfrValue : CSSFlexValue interface CSSfrValue : CSSFlexValue
val Number.number val Number.number
get(): CSSUnitValue = CSS.number(this) get(): CSSUnitValue = CSS.number(this)

Loading…
Cancel
Save