observer-util icon indicating copy to clipboard operation
observer-util copied to clipboard

Transparent reactivity with 100% language coverage. Made with ❤️ and ES6 Proxies.

Results 28 observer-util issues
Sort by recently updated
recently updated
newest added

Bumps [karma](https://github.com/karma-runner/karma) from 2.0.2 to 6.3.16. Release notes Sourced from karma's releases. v6.3.16 6.3.16 (2022-02-10) Bug Fixes security: mitigate the "Open Redirect Vulnerability" (ff7edbb) v6.3.15 6.3.15 (2022-02-05) Bug Fixes helper:...

dependencies

I came across a problem using react-easy-state that feels like a limitation in observer-util. To make sure that React re-renders when an object assignment changes, the object needs to be...

I would like to be able to observe for any change in a deep object.

The following scenario doesn't work (explicitly deleting items by modifying array.length) ``` it("should observe explicit array length changes", () => { let dummy; const list = observable(["Hello", "World"]); observe(() =>...

In this code, "this.items" is an observable array, that contains items that are observables themselves. When I run this code: ``` moveItem(from, to) { if (from === to) return; //...

Hi! Thanks so much for the library, it's been great to use. We've been trying 4.3.0-alpha.2 to get the react-easy-state fix https://github.com/RisingStack/react-easy-state/issues/184, and ran into a problem using constructors that...

Setting a new `value` or a new `get` function using `Object.defineProperty` should trigger reactions on the relevant key. This should support reacting to both modifying existing keys of and adding...

We use observable and observer from your library. After this fix library started working on IE11.

Hi, I'm just wondering on how one can integrate this into Angular 7. Like a simple component where I just a field in a text field and it updates the...

@solkimicreb, would it be difficult to expose an `ignore` function that operates identically to `raw` within an observer but without exposing the actual raw object? this would allow me to...