More properties, val i.o. fun

This commit is contained in:
2020-03-22 16:40:18 +01:00
parent 7a92e53006
commit 2bf19fd647
75 changed files with 1121 additions and 614 deletions

View File

@@ -5,13 +5,13 @@ class PageBreak(
) : CssProperty(value) {
companion object {
fun auto() = PageBreak("auto")
fun always() = PageBreak("always")
fun avoid() = PageBreak("avoid")
fun left() = PageBreak("left")
fun right() = PageBreak("right")
fun initial() = PageBreak("initial")
fun inherit() = PageBreak("inherit")
val auto = PageBreak("auto")
val always = PageBreak("always")
val avoid = PageBreak("avoid")
val left = PageBreak("left")
val right = PageBreak("right")
val initial = PageBreak("initial")
val inherit = PageBreak("inherit")
}
}