We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4ae160 commit baa27aeCopy full SHA for baa27ae
generatedTypes/index.d.ts
@@ -99,6 +99,7 @@ export {
99
WheelPickerProps,
100
ColorPicker,
101
Picker,
102
+ PickerItemValue,
103
PickerProps
104
} from '../typings';
105
src/components/picker/index.js
@@ -186,6 +186,10 @@ class Picker extends Component {
186
value: nextProps.value
187
};
188
}
189
+ } else if (_.isFunction(nextProps.renderPicker) && prevState.value !== nextProps.value) {
190
+ return {
191
+ value: nextProps.value
192
+ };
193
194
return null;
195
0 commit comments