diff options
author | Joffrey Bion <joffrey.bion@gmail.com> | 2021-02-20 13:15:59 +0100 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@gmail.com> | 2021-02-20 13:22:04 +0100 |
commit | d0b828a4fd8eb40760864bd8e9b95a6a5114f302 (patch) | |
tree | 84423c74eb2057ffcf6ed25b4005d831049fb1e2 /sw-ui | |
parent | Use .let for non-ideal-state props (diff) | |
download | seven-wonders-d0b828a4fd8eb40760864bd8e9b95a6a5114f302.tar.gz seven-wonders-d0b828a4fd8eb40760864bd8e9b95a6a5114f302.tar.bz2 seven-wonders-d0b828a4fd8eb40760864bd8e9b95a6a5114f302.zip |
Make BpHtmlTable props extend IProps to have classNames
Diffstat (limited to 'sw-ui')
-rw-r--r-- | sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt b/sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt index a8d45145..b39aa98c 100644 --- a/sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt +++ b/sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt @@ -3,11 +3,11 @@ package com.palantir.blueprintjs import react.PureComponent -import react.RProps import react.RState import react.ReactElement -external interface IHTMLTableProps : RProps { +// in BlueprintJS, IHTMLTableProps doesn't extend IProps, and yet className works fine... +external interface IHTMLTableProps : IProps { var bordered: Boolean? get() = definedExternally set(value) = definedExternally |