maquette
maquette copied to clipboard
Pure and simple virtual DOM library
Bumps [file-type](https://github.com/sindresorhus/file-type) from 16.5.3 to 16.5.4. Release notes Sourced from file-type's releases. v16.5.4 Fix: Malformed MKV could cause an infinite loop https://github.com/sindresorhus/file-type/commit/d86835680f4cccbee1a60628783c36700ec9e254 CVE-2022-36313 Also fixed in 17.1.3 Commits 99cb019 17.1.2...
Maquette's eventing has been working great for us, but we've come across two use cases that have issues with the existing implementation: 1. **custom elements** – from what I've seen,...
Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2. Release notes Sourced from glob-parent's releases. v5.1.2 Bug Fixes eliminate ReDoS (#36) (f923116) Changelog Sourced from glob-parent's changelog. 5.1.2 (2021-03-06) Bug Fixes eliminate ReDoS...
Hey dear friends! Do you know about this? https://www.thecssninja.com/javascript/handleevent I think it would be a nice addition if your eventhandling would accept objects like in vanilla js! ```js var app...
We received feedback from students working with maquette for the first time, that code examples would be very valuable.
IE11 has a native classList implementation for HTMLElements, but not for SVGElements. The polyfills should detect and correct this.
Right now, when I want to append a Class based Maquette component, I have to do this: `let dateInput = new DateInput(); projector.initialize(dateInput.renderMaquette.bind(dateInput));` It would be nice if `projector.initialize` would...
You can write your whole application without doing anything with the render cycle. This is part of our philosophy of keeping things pure and simple. But you do need the...