LiQuidProQuo

Results 18 comments of LiQuidProQuo

what about the case where you want to remove the attribute `undefined` probably `false` `null` maybe

> undefined and null already behave this way yes > (whereas false renders as "false"). but then isn't odd if true does this: ` | ` and false does this...

but this generalization works for any known and unknown boolean attribute ( will passing "true" to a known html attribute be considered non standard? will it not work as expected?)...

no change means ```html can drag can't drag ```

@ryansolid honestly I am just realizing that draggable is an edge case, it is not really a boolean attribute but a boolean value based. so if we look at a...

the cleanup callback has the same owner as the effect the `dispose()` was called from ![image](https://user-images.githubusercontent.com/105608035/183552575-031e2974-2440-4109-9a9f-fbb46e67dad1.png) untracked cleanup, works for that use case https://playground.solidjs.com/?hash=-371961240&version=1.4.1 or calling dispose not in the...

there is a difference between a defined property with an undefined value. (`{k:undefined}`) and an object without that property.`{}` ```js Object.keys({k:undefined}).length // 1 Object.keys({}).length // 0 ``` deleting a key...

```js export default defineConfig({ plugins: [solidPlugin(), solidSvg()], build: { target: 'esnext', polyfillDynamicImport: false, }, resolve: { dedupe: ['solid-js'],

static entry generation, does not explicitly handles the 404 status code case ( see entry.js#L26 ) as a result the request returns undefined, which then fails as a valid data...

for click outside, you can prioritize the detection handler by "capturing" the event. ```js document.addEventListener("click", handleClick, { capture: true }); ``` https://playground.solidjs.com/?hash=1020624715&version=1.4.1