karax icon indicating copy to clipboard operation
karax copied to clipboard

Karax. Single page applications for Nim.

Results 35 karax issues
Sort by recently updated
recently updated
newest added

Using `verbatim` shouldn't cause a wrapper div to be created, it isn't always the desired behavior. https://github.com/karaxnim/karax/pull/160 tries addressing this with a new `verbatimRaw`, but I would suggest just not...

bug

/cc @Araq after e422087 (avoid exponential DOM diffing) the following minimal example fails before that it was working. ## example 1 ```nim import karax / [kbase, vdom, kdom, vstyles, karax,...

bug
regression
high priority

When I use StyleAttr.cssFloat the resulting CSS style name is css-float when it should be float.

bug

Using ``&`` is a strange choice and is [confusing](https://irclogs.nim-lang.org/27-01-2018.html#12:48:00)

enhancement

Using nim devel, karax 1.1.2: ```nim import strutils import karax / [vdom, karaxdsl, karax] var v = 1 proc createDom(): VNode = buildHtml(tdiv): input( `type`="number", placeholder = $v, value =...

bug

Not sure if this is by design, but having multiple top level elements in `buildHtml` does not seem to work: ``` proc createDom(): VNode = result = buildHtml(): tdiv(): text...

enhancement

Have you considered publishing the jdict and jstrutils modules as separate nimble packages? I think they are very universal and I would like to import them in other projects.

enhancement

I'm considering to add a "refs" system to Karax at some point, similar to solutions in React/Vue. It's probably best to write down the idea for now, to see if...

enhancement

I made a VComponent which has a child VComponent when child vcomponent calls markDirty(self) redraw() it doesn't redraw the child component. I can see the change when the parent component...

bug