react-components
Here are 2,733 public repositories matching this topic...
-
Updated
Jan 28, 2021
-
Updated
Jan 16, 2021 - JavaScript
-
Updated
Jan 20, 2021 - JavaScript
-
Updated
Jan 29, 2021 - JavaScript
-
Updated
Jan 29, 2021 - TypeScript
hi.
in "react semantic ui" document
search placeholder API is not documented while is implemented for component
please add
tnx
-
Updated
Jan 29, 2021 - TypeScript
-
Updated
Jan 28, 2021 - TypeScript
-
Updated
Jan 23, 2021 - JavaScript
<Select />
and <DatePicker />
don't offer the option of accessing name
, id
and other props once the onChange
handler triggers. An event
object with this information is accessible in the onChange
handler for <Input />
.
Feature description
Provide access to these variables for Select
and DatePicker
. It is needed when the component is being passed handler functions from an
-
Updated
Jan 29, 2021 - TypeScript
-
Updated
Jan 29, 2021 - TypeScript
-
Updated
Dec 30, 2020 - TypeScript
-
Updated
Jan 29, 2021 - Ruby
-
Updated
Jan 28, 2021 - JavaScript
-
Updated
Nov 20, 2020 - JavaScript
-
Updated
Jan 27, 2021 - JavaScript
Describe the bug
The following PR introduced some breaking change in typings: https://github.com/beautifulinteractions/beautiful-react-hooks/pull/156/files#diff-b52768974e6bc0faccb7d4b75b162c99R19
Argument of type '() => void' is not assignable to parameter of type 'any[]'.
Type '() => void' is missing the following properties from type 'any[]': pop, push, concat, join, and 27 more
100% code coverage
-
Updated
Jan 7, 2021 - JavaScript
-
Updated
Dec 11, 2020 - JavaScript
-
Updated
Jan 27, 2021 - TypeScript
-
Updated
Dec 11, 2020 - JavaScript
-
Updated
Aug 6, 2020 - JavaScript
-
Updated
Sep 4, 2020 - JavaScript
-
Updated
Nov 25, 2020 - JavaScript
-
Updated
Dec 23, 2020 - JavaScript
Improve this page
Add a description, image, and links to the react-components topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the react-components topic, visit your repo's landing page and select "manage topics."
In the documentation, the example for "Horizontal centering" apparently works there, but if you try it on Codesandbox or Stackblitz, the text is left-justified.
The problem can be corrected by adding
style={{display:"flex"}}
to the surroundingdiv
tag, or replacing it with<Box display="flex">
. I found that out in a [Medium p