ui-components
Here are 2,628 public repositories matching this topic...
-
Updated
Dec 22, 2021 - JavaScript
-
Updated
Jan 31, 2022 - TypeScript
What I Did
I have a <ListItem.Input> that I would like to focus() when another element is clicked. I used useRef() to create the ref.
function SampleItem(props) {
const reff = useRef(null);
return (
<ListItem>
<ListItem.Content>
<Button
title="Focus the input"
onPress={() => {
reff.current.focus();
}}
-
Updated
Jan 31, 2022 - TypeScript
-
Updated
Jan 28, 2022 - JavaScript
Marko Version: 4.18.4
Details
I use some facebook markup that I let facebook parse from DOM:
<fb:login-button
auto-logout-link="false"
button-type="continue_with"
size="large"
scope="public_profile,email"
use-continue-as="true">
</fb:login-button>
In my onMount I then let the facebook API do it's thing with th
-
Updated
Jan 30, 2022 - SCSS
-
Updated
Jan 21, 2022 - Swift
What problem does this feature solve?
Is it possible to turn off the animation, or change the animation on the form control explanation's animation that occurs here?: https://github.com/NG-ZORRO/ng-zorro-antd/blob/f80a5bbd5755477c63c5d73929bcdfd0d07f2dfd/components/form/form-control.component.ts#L60
The animation that causes the form control explanation doesn't fit in sometimes with the app
-
Updated
Jan 30, 2022 - TypeScript
-
Updated
Jan 31, 2022 - TypeScript
-
Updated
Jan 25, 2022 - Vue
-
Updated
Jul 12, 2021 - Objective-C
-
Updated
Jan 14, 2022 - JavaScript
-
Updated
Sep 21, 2021 - Java
-
Updated
Jan 26, 2022 - JavaScript
Is your feature request related to a problem? Please describe.
Right now, you can put markdown in the article but not in the description. This causes people to put links in the bottom even when logically they would be part of the description (e.g. this Space: https://huggingface.co/spaces/Epoching/3D_Photo_Inpainting)
Describe the solution you'd like
Allow markdown and/or HTML in
-
Updated
May 27, 2021 - Vue
-
Updated
Dec 15, 2021 - HTML
-
Updated
Jan 31, 2022 - JavaScript
-
Updated
Jan 31, 2022 - TypeScript
-
Updated
Oct 13, 2021 - JavaScript
Improve this page
Add a description, image, and links to the ui-components topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ui-components topic, visit your repo's landing page and select "manage topics."


Describe the bug
In Firefox, the zoom feature uses
transformstyles (see storybookjs/storybook#12845) - unfortunately this breaks positioning on elements that requireposition: fixedwhen in the "Docs" view.Normally a
position: fixedelement's position would correspond to the viewport but in Firefox it corresponds to the element with thetransformstyle.