@onehat/ui 0.2.11 → 0.2.12

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.11",
3
+ "version": "0.2.12",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -49,7 +49,7 @@ const
49
49
  setCheckboxes(checkboxes);
50
50
  }, [value]);
51
51
 
52
- return <Checkbox.Group onChange={props.setValue} accessibilityLabel={props.name} {...props}>
52
+ return <Checkbox.Group onChange={props.setValue} accessibilityLabel={props.name} ref={props.outerRef} {...props}>
53
53
  {checkboxes}
54
54
  </Checkbox.Group>;
55
55
  },
@@ -50,7 +50,7 @@ const
50
50
  setRadioes(radios);
51
51
  }, [value]);
52
52
 
53
- return <Radio.Group onChange={props.setValue} accessibilityLabel={props.name} {...props}>
53
+ return <Radio.Group onChange={props.setValue} accessibilityLabel={props.name} ref={props.outerRef} {...props}>
54
54
  {radios}
55
55
  </Radio.Group>;
56
56
  },