LiQuidProQuo

Results 8 issues of LiQuidProQuo

### Describe the bug Reactivity is tracked on the ref callback of `` element. The element re-renders, when signal count() changes. ```js function functionWithReactiveSideEffects(){ count() // read signal } ```...

bug

### Describe the bug The issue reported for **hasOwnProperty**, but it applies to other properties that are **only** defined up in the prototype chain the issue was reproduced with `createMutable`,...

bug

### Describe the bug delete key with undefined value does not trigger reactivity ```js let mutable = createMutable({a:'somevalue', b:undefined}) // reactive delete mutable.a // non reactive delete mutable.b ``` minimal...

bug

## Summary useful for more advance use cases. 1. make a prop readonly / prop guards 2. extend to support a property with get/set accessors for example(requires patching, so wont...

issue --- by default `start` will build with the 'node' adapter. Just adding an adapter package( `solid-start-*` ), will change the adapter to one of the installed adapters. with multiple...

repro steps --- ``` 1. pnpm create solid 1.1 selected options: template:bare ssr:yes typescript:yes 3. pnpm add -d solid-start-static 4. pnpm build ``` build log --- ```log solid-start build version...

bug

### Describe the bug A component function owner is different between a dev and prod build ```jsx function MyComponent(){ getOwner() //

bug
PRs Welcome

### Describe the bug `createStore` and `createMutable` proxy handlers are exclusively bound to an object reference. ```js let raw = {count:5} let [s, setS] = createStore(raw) let m = createMutable(raw)...

documentation