Everything about Slinky -- issues, ideas for features, where it's being used, and more
shadaj on master
Update sbt-sonatype to 3.9.5 (#… (compare)
shadaj on master
Update sbt to 1.4.7 (#462) (compare)
shadaj on v0.6.7
shadaj on master
Release v0.6.7 (compare)
shadaj on master
Add dependency on Java IntelliJ… (compare)
import Modeler from 'bpmn-js/lib/Modeler';
const modeler = new Modeler({
container: $modelerContainer,
moddleExtensions: {
custom: customModdleExtension
},
keyboard: {
bindTo: document.body
}
});
type mismatch;
found : slinky.core.AttrPair[slinky.web.html._aria_attr.type]
required: slinky.core.TagMod[slinky.web.svg.svg.tag.type]
svg
you're using, you can copy/paste and customize one of the implicits to explicitly allow it in your code
role
and it prefixed it all with slinky.web.svg
and I thought, maybe there's an aria one for that
value apply is not a member of slinky.core.facade.ReactElement
@JSImport("resources/scss/card/style.scss", JSImport.Default)
@js.native
object Style extends js.Object
@react
object Card {
private val css = Style
case class Props(title: String, className: String, children: ReactElement)
val component = FunctionalComponent[Props] { props =>
Grid(className := s"{props.className} cardWrapper")(
Grid(className := "cardHeader")(
div(className := "cardHeaderLeft")(
h3(props.title)
)
), props.children
)
}
}