@onehat/ui 0.2.14 → 0.2.15

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/ui",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -32,6 +32,7 @@
32
32
  "react-color": "^2.19.3",
33
33
  "react-datetime": "^3.2.0",
34
34
  "react-draggable": "^4.4.5",
35
+ "react-native-draggable": "^3.3.0",
35
36
  "react-dom": "*",
36
37
  "react-native": "*"
37
38
  },
@@ -50,7 +50,8 @@ const
50
50
  setRadioes(radios);
51
51
  }, [value]);
52
52
 
53
- return <Radio.Group onChange={props.setValue} accessibilityLabel={props.name} ref={props.outerRef} {...props}>
53
+ // return <Radio.Group onChange={props.setValue} accessibilityLabel={props.name} ref={props.outerRef} {...props}> // RadioGroup from NativeBase doesn't yet allow refs
54
+ return <Radio.Group onChange={props.setValue} accessibilityLabel={props.name} {...props}>
54
55
  {radios}
55
56
  </Radio.Group>;
56
57
  },