thetarnav
thetarnav
SSolidJS
Created by McBrincie212 on 4/2/2025 in #support
Updating a signal depending on if an element is focused or not
but anyway almost alvays when you are accessing props you want to do that in () =>
66 replies
SSolidJS
Created by McBrincie212 on 4/2/2025 in #support
Updating a signal depending on if an element is focused or not
if you used the solid eslint plugin it would probably complain about it
66 replies
SSolidJS
Created by McBrincie212 on 4/2/2025 in #support
Updating a signal depending on if an element is focused or not
it doesn't track props.disabled
66 replies
SSolidJS
Created by McBrincie212 on 4/2/2025 in #support
Updating a signal depending on if an element is focused or not
but the real issue is probably this const getIsDisabled: Accessor<boolean> = getterFromReactive(props.disabled || false);
66 replies
SSolidJS
Created by McBrincie212 on 4/2/2025 in #support
Updating a signal depending on if an element is focused or not
so it might be surprising when you call then like Component()
66 replies
SSolidJS
Created by McBrincie212 on 4/2/2025 in #support
Updating a signal depending on if an element is focused or not
components are usually untracked when called like <Component/>
66 replies
SSolidJS
Created by McBrincie212 on 4/2/2025 in #support
Updating a signal depending on if an element is focused or not
o7
66 replies
SSolidJS
Created by McBrincie212 on 4/2/2025 in #support
Updating a signal depending on if an element is focused or not
you might do this
<>
{(() => {
let {inputElement} = props // props.inputElement gets tracked
return untrack(() => inputElement(inputStyles, fieldInits))
})()}
<>
<>
{(() => {
let {inputElement} = props // props.inputElement gets tracked
return untrack(() => inputElement(inputStyles, fieldInits))
})()}
<>
kinda like Dynamic component
66 replies
SSolidJS
Created by tizu on 2/23/2025 in #support
@solid-primitives/spring: obtain velocity?
yeah that’s what I mean also now you need to make velocity a separate signal
12 replies
SSolidJS
Created by tizu on 2/23/2025 in #support
@solid-primitives/spring: obtain velocity?
yeah that sounds good but it’s usually difficult to keep the api “slick” unfortunately
12 replies
SSolidJS
Created by tizu on 2/23/2025 in #support
@solid-primitives/spring: obtain velocity?
you mean access to internals?
12 replies
SSolidJS
Created by hanvalen on 1/2/2025 in #support
minified UI library package code calling undefined map
if you are makin a library only for yourself you might as well not have a built step at all and just put your source .tsx or .jsx files in package.json should save you some trouble
9 replies
SSolidJS
Created by hanvalen on 1/2/2025 in #support
minified UI library package code calling undefined map
or are you minifying the library output? im a bit confused
9 replies
SSolidJS
Created by hanvalen on 1/2/2025 in #support
minified UI library package code calling undefined map
also why is is minified? is this the code after it's being bundled by solid start? does it work fine in dev? it shouldn't minify the code in dev
9 replies
SSolidJS
Created by hanvalen on 1/2/2025 in #support
minified UI library package code calling undefined map
the "weirdness" is in the built library? how are you building it then?
9 replies
SSolidJS
Created by just_me on 1/3/2025 in #support
Solid MotionOne, how to animate presence in list (using For)
Presence only works for one element it's like Transition and TransitionGroup but there is no PresenceGroup
3 replies
SSolidJS
Created by JLarky on 10/25/2024 in #support
Uncaught Error: Failed attempt to create new DOM elements during hydration. Check that the libraries
That one I wouldn’t mind
32 replies
SSolidJS
Created by JLarky on 10/25/2024 in #support
Uncaught Error: Failed attempt to create new DOM elements during hydration. Check that the libraries
being about to change plugin options?
32 replies
SSolidJS
Created by JLarky on 10/25/2024 in #support
Uncaught Error: Failed attempt to create new DOM elements during hydration. Check that the libraries
Like even if the preset was outputting another, a hydratable entry How would you use it export conditions by default only cover server/browser not ssr/no-ssr Unless I’m missing something
32 replies
SSolidJS
Created by JLarky on 10/25/2024 in #support
Uncaught Error: Failed attempt to create new DOM elements during hydration. Check that the libraries
At some point the complexity has to be on the user to precompile the component themselves
32 replies