mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
8f45db3b9e
Summary: This completes the Picker stack. Use a handwritten view config to avoid calling `requireNativeComponent` in Bridgeless mode. Differential Revision: D23663596 fbshipit-source-id: 5d0811014fd6f66956803a1db5fee8fd1119d5bc
42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import ReactNativeViewViewConfig from '../../Components/View/ReactNativeViewViewConfig';
|
|
import type {ReactNativeBaseComponentViewConfig} from '../../Renderer/shims/ReactNativeTypes';
|
|
|
|
const RCTPickerViewConfig = {
|
|
uiViewClassName: 'RCTPicker',
|
|
bubblingEventTypes: {
|
|
topChange: {
|
|
phasedRegistrationNames: {
|
|
bubbled: 'onChange',
|
|
captured: 'onChangeCapture',
|
|
},
|
|
},
|
|
},
|
|
directEventTypes: {},
|
|
validAttributes: {
|
|
...ReactNativeViewViewConfig.validAttributes,
|
|
color: {process: require('../../StyleSheet/processColor')},
|
|
fontFamily: true,
|
|
fontSize: true,
|
|
fontStyle: true,
|
|
fontWeight: true,
|
|
items: true,
|
|
onChange: true,
|
|
selectedIndex: true,
|
|
textAlign: true,
|
|
},
|
|
};
|
|
|
|
module.exports = (RCTPickerViewConfig: ReactNativeBaseComponentViewConfig<>);
|