-
Updated
Apr 6, 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,205 public repositories matching this topic...
-
Updated
May 19, 2022
-
Updated
May 8, 2022 - JavaScript
input 支持auto-fill属性
这个特性解决了什么问题?
项目用到了微信小程序相关的城市服务快速填写组件,目前用了taro-plugin-inject 做了input 属性的注入,希望后续可以直接支持这个属性。
这个 API 长什么样?
input 支持auto-fill属性,目前编译出来input标签上没有这个属性
🚀 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
May 20, 2022 - Swift
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
May 20, 2022 - TypeScript
-
Updated
May 20, 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
May 20, 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={
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
May 17, 2022 - JavaScript
-
Updated
May 11, 2022 - JavaScript
-
Updated
May 20, 2022 - TypeScript
Fixes: #21265
move avatar border outside the image in full profile. Instead of using the border which overlap / overflow over the background content, I used outline.
Fixes: #21265
Screenshots and screen captures:
fixed



Describe the bug
The
validateArgsmethod inlib/router/src/utils.tsis usingVALIDATION_REGEXP,NUMBER_REGEXP,HEX_REGEXPorCOLOR_REGEXPpattern to determine whether thestringvalue is validated or not, but any string which not match those pattern (like something with+prefix or some character that is not in Alphabet) will not be validated and be dropped in future actions.