Skip to content

Commit

Permalink
Regenerated TextAreaWrap with corrected deprecation message
Browse files Browse the repository at this point in the history
  • Loading branch information
severn-everett committed Mar 26, 2024
1 parent 45024a0 commit 0f4019c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commonMain/kotlin/generated/gen-enums.kt
Original file line number Diff line number Diff line change
Expand Up @@ -407,9 +407,9 @@ object StyleMedia {
enum class TextAreaWrap(override val realValue : String) : AttributeEnum {
hard("hard"),
soft("soft"),
@Deprecated("values only supported in IE") virtual("virtual"),
@Deprecated("values only supported in IE") physical("physical"),
@Deprecated("values only supported in IE") off("off")
@Deprecated("value only supported in IE") virtual("virtual"),
@Deprecated("value only supported in IE") physical("physical"),
@Deprecated("value only supported in IE") off("off")
}

internal val textAreaWrapValues : Map<String, TextAreaWrap> = TextAreaWrap.values().associateBy { it.realValue }
Expand Down

0 comments on commit 0f4019c

Please sign in to comment.