reef
reef copied to clipboard
A lightweight library for creating reactive, state-based components and UI.
Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) Commits See full diff in compare...
This library doesn't appear to have automated tests to verify that it functions as it should?
Currently only an `id` can be used. Add support for a `key`, similar to React.
Issue #200 Demo: https://codepen.io/huei90/pen/xxeNmzJ This PR fix the issue of unexpected behaviour when removing attributes while in the for loop statement, the main difference is `render.js` file
It appears that on an element having more than one event handlers (on* attributes), the second one is not correctly registered but the first and third ones are. I haven't...
Hi, just came across your project, looks interesting! **Test case:** https://codepen.io/cferdinandi/pen/wvmoPMg Your to do app seems buggy because there's no escaping of the data. Eg if I enter `" oops`...
here's the follow up from c8f8cc37e3467a1bf72315f404d145f9fa15a625
**Test case:** https://codepen.io/terrence-moore-the-bashful/pen/xxoLaVx Sorry for the late post, had to rewrite it since the other code is at the office. Having issues with component rendering and styling rendered html. I'm...
https://github.com/cferdinandi/reef/blob/c8f8cc37e3467a1bf72315f404d145f9fa15a625/src/components/signal.js#L26-L30 If the goal is to return the deleted value with the emitter, you'll need to create a copy of it before deletion. ```js deleteProperty (obj, prop) { let value...