declarativ icon indicating copy to clipboard operation
declarativ copied to clipboard

A declarative HTML rendering library that is definitely not JSX.

Results 9 declarativ issues
Sort by recently updated
recently updated
newest added

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

Bumps [serialize-javascript](https://github.com/yahoo/serialize-javascript) from 2.1.2 to 4.0.0. Release notes Sourced from serialize-javascript's releases. v4.0.0 Changelog Bump nyc from 15.0.1 to 15.1.0 (#85) support for bigint (#80) Behavior changes for BigInt It...

dependencies

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.1 to 6.5.3. Commits 8647803 6.5.3 856fe4d signature: prevent malleability and overflows 6048941 6.5.2 9984964 package: bump dependencies ec735ed utils: leak less information in getNAF() See full...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 Commits d7fbc52 Bump to v4.17.19 2e1c0f2 Add npm-package 1b6c282 Bump to v4.17.18 a370ac8 Bump to v4.17.17 1144918...

dependencies

A util component that allows html syntax, i.e. `html("© 2020 James Fenn")` or html-formatted text, without needing a single parent element/node to create a component wrapper

enhancement

Got this to occur in a random situation a while ago: ```js div( p("Hello"), () => button("Sign In").className("button") ).attr("style", "text-align: center;"); ``` Renders as: ```html Sign In Hello ```

bug

It'd be good to separate functionality and make the components strictly act as a data structure that can be accessed by the actual "renderer" that transforms it into HTML and...

Specifies a callback for when each element is rendered; could be called multiple times if bound to an array with `.forEach`. Useful for running functionality when a component is displayed.

enhancement

The idea here is to have different components that can be exchanged throughout different stages of the rendering process. A "loading" state would be given a custom ID and rendered...

enhancement