-
Updated
Jun 13, 2022
React Native
React Native is a JavaScript mobile framework developed by Facebook. It allows developers to build Android and iOS mobile apps using JavaScript and reuse code across web and mobile applications.
Here are 32,716 public repositories matching this topic...
-
Updated
May 29, 2022
-
Updated
Jun 11, 2022 - JavaScript
相关平台
微信小程序
小程序基础库: 2.23.3
使用框架: React
复现步骤
const Container = styled(View)position: fixed; background-color: #3578e5; right: 0; bottom: 24rpx; border-radius: 50%; display: flex; justify-content: center; align-items: center;
<Container
onTouchStart={onTouchStart}
c
🚀 Feature request
Current Behavior
The type ErrorMessage doesn't have an id property.
Desired Behavior
It'd be nice id?: string would be added to the type ErrorMessage and set on the outermost component that serves as error message.
Suggested Solution
Add id={this.props.id} to the outer component in ErrorMessage.
Who does this impact? Who is this
-
Updated
Jun 14, 2022
The desktop app allows free customisation of the basic layout via the toggleLayoutMoveMode command (bound to View > Change application layout toolbar menu) which allows movement of the various panels and can permit vertical, horizontal or mixed layouts. The application also supports toggling the visibility of the notebook list and notelist.
The terminal app is otherwise relatively static, the
-
Updated
Jun 15, 2022 - TypeScript
-
Updated
Jun 14, 2022 - TypeScript
Repro: Paste a channel ID in the search input field in the System Console > User Management > Channels page
Observed: no results
Expected: allow returning results based on the channel ID (currently it only matches on the channel name)
If you're interested please comment here and come [join our "Contributors" community channel]
-
Updated
Jun 14, 2022 - TypeScript
Is your feature request related to a problem? Please Describe.
Add accessibilityHint and accessibilityLabel support to ButtonGroup buttons. Currently when I try to pass in a custom button component like this to the ButtonGroup buttons prop:
const buttons = [
(
<Text
accessibilityHint={translate('ARIA HINT - Tap to search by podcast title')}
accessibilityLabel={
-
Updated
Jun 12, 2022 - JavaScript
Current Behavior
the current DrawerItem passes accessibilityState to Link. this is an invalid attribute for role="link"
Expected Behavior
also exclude accessibilityState from Link in the default DrawerItem
all that really needs to be done is add a line under [this line](https://github.com/react-navigation/react-navigation/blob/0fce8eb2a1e682194d574c65f3366f72e23f2
-
Updated
Jun 14, 2022 - JavaScript
-
Updated
Jun 15, 2022 - TypeScript
-
Updated
Jun 15, 2022 - TypeScript
At present, while the left sidebar "Drafts" link tooltip includes the keyboard shortcut, the compose box "Drafts" link tooltip does not. We should fix this.
The compose box "Drafts" tooltip should thus be "Drafts (d)", with the same styling as the compose box x button tooltip:


aria-expanded is meant to be used with button, or some other role. It is currently be added to the parent div with no role making the attribute ineffective.
https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-expanded#associated_roles
Moving the aria-expanded to the button that does the expanding will provide better accessibility to those using screen readers.