Migrating from 4.7.1 to 5.1.0 (and still using legacy compiler). All seems to work, except that the table definitions are not applied. I have a table type definition as:
setOf(TableType.BORDERED, TableType.SMALL, TableType.STRIPED, TableType.HOVER)
But it is rendered as a plain table without borders, stripes etc.
When I use Intellij to check the documentation of BORDERED I see:
io.kvision.table.TableType
enum entry BORDERED
Enum constant ordinal: 1
Gradle: io.kvision:kvision-bootstrap:5.1.0
If I check to the table definition i Showcase/BasicTab (which renders correctly) it says:
io.kvision.table.TableType
enum entry BORDERED
Enum constant ordinal: 1
Gradle: io.kvision:kvision-bootstrap:klib:5.1.0
I seem to be missing a
klib. How can I fix this?