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

I needed to use the SVG "text" and I thought it could be useful to other people too

pinning the dotenv version should resolve #222

There is no easy way to use custom tags (like dialog). Is it possible to add it somehow? my workaround: ```nim verbatim """""" .... verbatim """""" ``` ps: dialog is...

enhancement

After installing this with Nimble we get this warning: ``` Warning: Package 'karax' has an incorrect structure. It should contain a single directory hierarchy for source files, named 'karax', but...

I've tried without success: ``` proc createDom(): VNode = result = buildHtml(tdiv): svg(width = "100", height="100"): circle(cx="50", cy="50", r="40", stroke="green", stroke-width="4", fill="yellow") text "Doesn't Support SVG" ``` Everything compiles fine...

bug

Shouldn't clicking the button in the example below change the text color? ``` import karax / [kbase, vdom, kdom, vstyles, karax, karaxdsl, jdict, jstrutils, jjson] var s1 = style(StyleAttr.color, "blue")...

bug

Example: ```nim include karax / prelude proc createDom(): VNode = result = buildHtml(tdiv): p(contenteditable="true"): proc onKeydown = discard setRenderer createDom ``` The code is compiled to JS and typing anything...

bug