Feliz icon indicating copy to clipboard operation
Feliz copied to clipboard

A fresh retake of the React API in Fable and a collection of high-quality components to build React applications in F#, optimized for happiness

Results 70 Feliz issues
Sort by recently updated
recently updated
newest added

I know you have said before that for the native DOM surfaced in Feliz, it makes sense to have all props be accessible in `props`. But I have been looking...

Fix #481 This PR updates UseElmish to use `useSyncExternalStore`, which seems to be [the recommended hook for this use case](https://beta.reactjs.org/learn/you-might-not-need-an-effect#subscribing-to-an-external-store) in React 18. The code is greatly simplified, we don't...

In #456 the borderSpacing functions were introduced. Unfortunately I forgot a space between the horizontal and vertical spacing. This PR fixes this.

Because of the usage of `React.useCancellationToken()` when an HMR call has been triggered the async call is never triggered again. https://github.com/Zaid-Ajaj/Feliz/blob/52907b11f64c758282f2986f1aed0c91d46481b0/Feliz.UseDeferred/UseDeferred.fs#L62-L81

@Zaid-Ajaj @JordanMarr I've checked the PR #480 and I wonder if that code is correct when **not** using strict mode: ```fsharp if renderAfterCalled.current then destroyFunc.current else None ``` I'm asking...

I have two components, `GenericInputWithForwardRef` and `GenericInputWithoutForwardRef`. Both these components have generic type parameters in the F# function definition. The first component also uses `React.forwardRef` in its definition. Here is...

Hello! I am currently using Feliz.Rechart and added some more properties (for example for sector) and would like to add an addtional chart to the examples. Is this something you...

According to their changelog, `react-markdown` have removed the `escapeHtml` property in favor of using rehype plugins: https://github.com/remarkjs/react-markdown/blob/main/changelog.md#remove-buggy-html-in-markdown-parser In their example, they use jsx to include the rehype plugins. I'm not...

Hi, I did not find any contributing policy and this is my first time contributing to this project – I hope it is ok to just open a PR without...

Hello @Zaid-Ajaj, **Important:** This PR is not to be merged into master but should instead go into a feliz1 branch. In theory, I created this branch on the latest commit...