@pareto-engineering/design-system 2.0.0-alpha.66 → 2.0.0-alpha.67

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.
@@ -119,7 +119,7 @@ Popover.propTypes = {
119
119
  * The reference to the parent element
120
120
  */
121
121
  parentRef: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.shape({
122
- current: _propTypes.default.instanceOf(Element)
122
+ current: _propTypes.default.instanceOf(String)
123
123
  })])
124
124
  };
125
125
  Popover.defaultProps = {
@@ -104,7 +104,7 @@ Popover.propTypes = {
104
104
  * The reference to the parent element
105
105
  */
106
106
  parentRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
107
- current: PropTypes.instanceOf(Element)
107
+ current: PropTypes.instanceOf(String)
108
108
  })])
109
109
  };
110
110
  Popover.defaultProps = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pareto-engineering/design-system",
3
- "version": "2.0.0-alpha.66",
3
+ "version": "2.0.0-alpha.67",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/es/index.js",
@@ -141,7 +141,7 @@ Popover.propTypes = {
141
141
  */
142
142
  parentRef:PropTypes.oneOfType([
143
143
  PropTypes.func,
144
- PropTypes.shape({ current: PropTypes.instanceOf(Element) }),
144
+ PropTypes.shape({ current: PropTypes.instanceOf(String) }),
145
145
  ]),
146
146
  }
147
147