dhre-ui-kit 0.0.280 → 0.0.281
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/lib/index.js +4 -5
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -5
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -3,7 +3,6 @@ import { useSelector } from 'react-redux';
|
|
|
3
3
|
import { Dimensions, StyleSheet, Text, Pressable, View, KeyboardAvoidingView, Platform, TextInput, ScrollView, Animated, FlatList, TouchableOpacity, Modal as Modal$1, Alert, Linking, PanResponder } from 'react-native';
|
|
4
4
|
import { BlurView } from '@react-native-community/blur';
|
|
5
5
|
import Modal from 'react-native-modal';
|
|
6
|
-
import { moderateScale as moderateScale$1 } from 'src/utils/stylehelper';
|
|
7
6
|
import LottieView from 'lottie-react-native';
|
|
8
7
|
import Tooltip from 'react-native-walkthrough-tooltip';
|
|
9
8
|
import Pdf from 'react-native-pdf';
|
|
@@ -683,8 +682,8 @@ const BottomDrawer = ({
|
|
|
683
682
|
blurAmount
|
|
684
683
|
}
|
|
685
684
|
) : null, /* @__PURE__ */ React.createElement(View, { style: [styles$z.modalContainer, modalContainerStyle] }, showHeader && /* @__PURE__ */ React.createElement(React.Fragment, null, showSeparator && /* @__PURE__ */ React.createElement(View, { style: styles$z.separator }), /* @__PURE__ */ React.createElement(View, { style: styles$z.headerContainer }, showLeftIcon && leftIcon ? React.cloneElement(leftIcon, {
|
|
686
|
-
width: moderateScale
|
|
687
|
-
height: moderateScale
|
|
685
|
+
width: moderateScale(24),
|
|
686
|
+
height: moderateScale(24),
|
|
688
687
|
style: styles$z.leftIconStyle,
|
|
689
688
|
onPress: onLeftIconPress
|
|
690
689
|
}) : null, /* @__PURE__ */ React.createElement(
|
|
@@ -695,8 +694,8 @@ const BottomDrawer = ({
|
|
|
695
694
|
style: { ...styles$z.title, ...titleStyle }
|
|
696
695
|
}
|
|
697
696
|
), showRightIcon && rightIcon ? React.cloneElement(rightIcon, {
|
|
698
|
-
width: moderateScale
|
|
699
|
-
height: moderateScale
|
|
697
|
+
width: moderateScale(24),
|
|
698
|
+
height: moderateScale(24),
|
|
700
699
|
style: styles$z.rightIconStyle,
|
|
701
700
|
onPress: toggleModal
|
|
702
701
|
}) : null)), children))
|