mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Force WithDefault not to be an optional value
Summary: `WithDefault` appears not to be required to be prefixed with `?` because it's option value per se. Fixed tests, removed `?` where needed, updated snapshots and review them. Added mechanism fro throwing error when `?WithDefault` found. Add tests for it. Reviewed By: rubennorte Differential Revision: D16048463 fbshipit-source-id: f55ed7454aacf0b8c42944a9b5c1037ad1b360fe
This commit is contained in:
committed by
Facebook Github Bot
parent
b476ad78b5
commit
61e95e5cbf
@@ -37,9 +37,9 @@ type NativeProps = $ReadOnly<{|
|
||||
|
||||
// Props
|
||||
color?: ?ColorValue,
|
||||
enabled?: ?WithDefault<boolean, true>,
|
||||
enabled?: WithDefault<boolean, true>,
|
||||
items: $ReadOnlyArray<PickerItem>,
|
||||
prompt?: ?WithDefault<string, ''>,
|
||||
prompt?: WithDefault<string, ''>,
|
||||
selected: Int32,
|
||||
|
||||
// Events
|
||||
|
||||
Reference in New Issue
Block a user