react-components
react-components copied to clipboard
Core React components for building your own Solid components and apps
### How to reproduce 1. Install library in project with React v17 ### Version information - Node.js Version: 16.13.1 - npm Version: 8.1.2 - OS: iOS ### Additional info My...
Serving my react app with the single page application flag (serve -s buildfolder) breaks the authbutton. Once clicked it opens a window and shows the site again and not the...
### Motivation I`m looking for a alternative of solid components for react-native. ### Proposal I´m a beginner with react and solid, and I`m looking for a alternative os these components...
Using safari my app works perfectly. Using firefox or chrome I get these errors. "TypeError: o.subtle is undefined" -> Firefox "TypeError: Cannot read property 'importKey' of undefined" -> Chrome Both...
I have been able to get a queryEngine set up with local data (see #81), and now I'd like to be able to use that with some React components, similar...
```js import React from "react"; import { LoggedIn, LoggedOut } from "@solid/react"; ``` Attempting to import `LoggedIn` and `LoggedOut` in a normal way, and running the react development `start` script...
When using a fork of the demo app updated to use `solid-auth-fetcher` instead of `solid-auth-client` (available [here](https://github.com/inrupt/react-components/tree/feature/experimental-auth-upgrade) ), the demo app only works if `webpack` isn't configured to exclude `@solid/query-ldflex`....
`````` reload children components when the sender is the same, LiveUpdate should ignore updates from the same sender or have an option to disable it, this will avoid issues from...
Currently, we can call `useLDflex` with LDflex strings. For example: ```javascript const image = useLDflex('user.image'); ``` However, LDflex paths should also be possible (as is the case with the higher-order-component...
We should create a hook that listens to NSS Web Sockets (https://github.com/solid/solid-spec/blob/master/api-websockets.md) and returns the last update. For instance: ```jsx const { document, date } = useLastUpdate('http://example.org/foo', 'http://example.org/bar'); ``` and,...