@ornikar/kitt-universal 16.1.4 → 16.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/definitions/Picker/Picker.d.ts +6 -2
- package/dist/definitions/Picker/Picker.d.ts.map +1 -1
- package/dist/definitions/native-base/utils.d.ts +12 -1
- package/dist/definitions/native-base/utils.d.ts.map +1 -1
- package/dist/definitions/typography/Typography.d.ts +1672 -11
- package/dist/definitions/typography/Typography.d.ts.map +1 -1
- package/dist/index-browser-all.es.android.js +4 -2
- package/dist/index-browser-all.es.android.js.map +1 -1
- package/dist/index-browser-all.es.ios.js +4 -2
- package/dist/index-browser-all.es.ios.js.map +1 -1
- package/dist/index-browser-all.es.js +4 -2
- package/dist/index-browser-all.es.js.map +1 -1
- package/dist/index-node-14.17.cjs.js +3 -2
- package/dist/index-node-14.17.cjs.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -8369,7 +8369,9 @@ function Picker(_ref) {
|
|
|
8369
8369
|
itemToString = _ref.itemToString,
|
|
8370
8370
|
checkSelectedItem = _ref.checkSelectedItem,
|
|
8371
8371
|
onChange = _ref.onChange,
|
|
8372
|
-
onClose = _ref.onClose
|
|
8372
|
+
onClose = _ref.onClose,
|
|
8373
|
+
_ref$shouldDisplayNat = _ref.shouldDisplayNativePickerOnIOS,
|
|
8374
|
+
shouldDisplayNativePickerOnIOS = _ref$shouldDisplayNat === void 0 ? true : _ref$shouldDisplayNat;
|
|
8373
8375
|
var _useReducer = useReducer(nativePickerReducer, {
|
|
8374
8376
|
isOpen: isInitialOpen,
|
|
8375
8377
|
currentValue: initialValue,
|
|
@@ -8436,7 +8438,7 @@ function Picker(_ref) {
|
|
|
8436
8438
|
variant: "bold",
|
|
8437
8439
|
children: title
|
|
8438
8440
|
})
|
|
8439
|
-
}), Platform.OS === 'ios' ? /*#__PURE__*/jsx(Picker$1, {
|
|
8441
|
+
}), Platform.OS === 'ios' && shouldDisplayNativePickerOnIOS ? /*#__PURE__*/jsx(Picker$1, {
|
|
8440
8442
|
testID: testID,
|
|
8441
8443
|
selectedValue: state.internalValue,
|
|
8442
8444
|
itemStyle: iosItemStyle,
|