@fto-consult/expo-ui 6.4.3 → 6.4.5
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/package.json
CHANGED
|
@@ -254,7 +254,7 @@ const ButtonComponent = React.forwardRef((prs,ref) => {
|
|
|
254
254
|
>
|
|
255
255
|
<View testID={testID+"_Content"} {...contentProps} style={[styles.content, contentStyle,noPadding && theme.styles.noPadding,noMargin && theme.styles.noMargin]}>
|
|
256
256
|
{React.isValidElement(left)? left : typeof left =='function' ?left(leftRProps):null}
|
|
257
|
-
{icon && isLoading !== true
|
|
257
|
+
{icon && isLoading !== true ? (
|
|
258
258
|
<View style={[iconStyle,{color:textColor},iconProps.style]} testID={testID+"_IconContainer"}>
|
|
259
259
|
{React.isValidElement(icon)?icon : <Icon
|
|
260
260
|
testID={testID+"_Icon"}
|
|
@@ -5,8 +5,7 @@ import Switch from "./Switch";
|
|
|
5
5
|
import Checkbox from "./Checkbox";
|
|
6
6
|
import SelectTableData from "./SelectTableData";
|
|
7
7
|
import SelectCurrency from "./SelectCurrency";
|
|
8
|
-
|
|
9
|
-
import IDField from "./IDField";
|
|
8
|
+
import IDField from "./IdField";
|
|
10
9
|
import Slider from "./Slider";
|
|
11
10
|
import ColorPicker from "./Color";
|
|
12
11
|
import Date from "./Date";
|