diff --git a/web/core/src/jsMain/kotlin/androidx/compose/web/css/CSS.kt b/web/core/src/jsMain/kotlin/androidx/compose/web/css/CSS.kt index be350d3c22..9902fb71c1 100644 --- a/web/core/src/jsMain/kotlin/androidx/compose/web/css/CSS.kt +++ b/web/core/src/jsMain/kotlin/androidx/compose/web/css/CSS.kt @@ -343,51 +343,51 @@ external class StylePropertyMap : StylePropertyMapReadOnly { inline fun Element.computedStyleMap(): StylePropertyMapReadOnly = this.asDynamic().computedStyleMap().unsafeCast() -external class CSS { - companion object { - fun number(value: Number): CSSUnitValue - fun percent(value: Number): CSSpercentValue - - // - fun em(value: Number): CSSemValue - fun ex(value: Number): CSSexValue - fun ch(value: Number): CSSchValue - fun rem(value: Number): CSSremValue - fun vw(value: Number): CSSvwValue - fun vh(value: Number): CSSvhValue - fun vmin(value: Number): CSSvminValue - fun vmax(value: Number): CSSvmaxValue - fun cm(value: Number): CSScmValue - fun mm(value: Number): CSSmmValue - fun Q(value: Number): CSSQValue - - fun pt(value: Number): CSSptValue - fun pc(value: Number): CSSpcValue - fun px(value: Number): CSSpxValue - - // - fun deg(value: Number): CSSdegValue - fun grad(value: Number): CSSgradValue - fun rad(value: Number): CSSradValue - fun turn(value: Number): CSSturnValue - - //