Profesor08

Results 19 comments of Profesor08

@cristianbote > So the go11 className comes from an empty style rule, which makes sense. It is ok, if you manage only style rules, and you can continue doing it...

@B-Teague > Do we need a way to cache the css "per styled call"? Yes. If some prop will change, and after that will change back, we don't need to...

@dimsemenov `Cannot find module 'photoswipe/lightbox' or its corresponding type declarations.` Version: **5.3.2** May be this will be helpfull: https://devblogs.microsoft.com/typescript/announcing-typescript-4-5-beta/#packagejson-exports-imports-and-self-referencing May be something is wrong with `rollup` configuration. Try pure `tsc`...

bump, issue is actual Current workaround is to toggle manually ```ts useEffect(() => { const { rows } = table.getRowModel(); rows.forEach((row) => { if (row.subRows.length > 0) { if (row.getIsAllSubRowsSelected()...

The only advantage of goober is it size. Class generation is wrong, it not respecting nesting of class and their relations. This is related to recently opened issues: [solidjs/solid-styled-components#7](https://github.com/solidjs/solid-styled-components/issues/7), [https://github.com/cristianbote/goober/issues/397](https://github.com/cristianbote/goober/issues/397)...

Same issue, can't keep assets path tree after build. Everithing goes into one big heap. It was broken in **v4.0.0-alpha.2**

@kuoruan I think so, because in **v4.0.0-alpha.1** it is ok.

This bug is related to this line https://github.com/googlemaps/js-api-loader/blob/main/src/index.ts#L630 Threre is no check if specific library is loaded, this check is uselles if libraries are imported one by one.

`Promise.all` will not be helpful if you load libraries on need. ```ts const { Map } = await loader.importLibrary("maps"); const showPlaces = async (places) => { const { Autocomplete }...