@spothero/ui 14.3.5-beta.0 → 14.4.0-beta.0

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/CHANGELOG.md CHANGED
@@ -1,11 +1,12 @@
1
- # 14.3.5-beta.0 - 04/11/2022
2
- ## Miscellaneous Updates
1
+ # 14.4.0-beta.0 - 04/21/2022
2
+
3
+ ## Dependency Updates
4
+ * [[2d872f5](https://github.com/spothero/fe-ui/commit/2d872f5)] - Upgrade to React 17 (Gru Singh)
5
+
6
+ # 14.3.5 - 04/11/2022
3
7
 
4
8
  ## Miscellaneous Updates
5
- * [[ece7932](https://github.com/spothero/fe-ui/commit/ece7932)] - 14.3.4-beta.0 (sh-devtools-bot)
6
- * [[c136546](https://github.com/spothero/fe-ui/commit/c136546)] - `fix:` Remove ImageCarousel as its failing on consumer (Gru Singh)
7
- * [[629fd70](https://github.com/spothero/fe-ui/commit/629fd70)] - `fix:` Try passing Button as prop (Gru Singh)
8
- * [[016347f](https://github.com/spothero/fe-ui/commit/016347f)] - `fix:` Use relative path for Button inorder to fix build issue in consumer (Gru Singh)
9
+ * [[af1a36c](https://github.com/spothero/fe-ui/commit/af1a36c)] - `fix:` Remove ImageCarousel from fe-ui ([#281](https://github.com/spothero/fe-ui/pull/281)) (Gru Singh)
9
10
 
10
11
  # 14.3.4 - 04/11/2022
11
12
 
package/CHANGELOG.tmp CHANGED
@@ -1,9 +1,5 @@
1
- # 14.3.5-beta.0 - 04/11/2022
2
- ## Miscellaneous Updates
1
+ # 14.4.0-beta.0 - 04/21/2022
3
2
 
4
- ## Miscellaneous Updates
5
- * [[ece7932](https://github.com/spothero/fe-ui/commit/ece7932)] - 14.3.4-beta.0 (sh-devtools-bot)
6
- * [[c136546](https://github.com/spothero/fe-ui/commit/c136546)] - `fix:` Remove ImageCarousel as its failing on consumer (Gru Singh)
7
- * [[629fd70](https://github.com/spothero/fe-ui/commit/629fd70)] - `fix:` Try passing Button as prop (Gru Singh)
8
- * [[016347f](https://github.com/spothero/fe-ui/commit/016347f)] - `fix:` Use relative path for Button inorder to fix build issue in consumer (Gru Singh)
3
+ ## Dependency Updates
4
+ * [[2d872f5](https://github.com/spothero/fe-ui/commit/2d872f5)] - Upgrade to React 17 (Gru Singh)
9
5
 
@@ -94,7 +94,9 @@ var Tooltip = /*#__PURE__*/function (_Component) {
94
94
  }
95
95
 
96
96
  if (closeOnBodyClick) {
97
- document.addEventListener('click', this._onCloseClick);
97
+ document.addEventListener('click', this._onCloseClick, {
98
+ capture: true
99
+ });
98
100
  }
99
101
  }
100
102
  }, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spothero/ui",
3
- "version": "14.3.5-beta.0",
3
+ "version": "14.4.0-beta.0",
4
4
  "description": "SpotHero's React component UI library.",
5
5
  "main": "v2/index-bundled.cjs.js",
6
6
  "module": "v2/index.js",
@@ -94,7 +94,7 @@
94
94
  "@spothero/browserslist-config": "1.0.0",
95
95
  "@spothero/commitlint-config": "3.1.1",
96
96
  "@spothero/core": "4.0.0",
97
- "@spothero/dex": "3.2.0",
97
+ "@spothero/dex": "3.2.1",
98
98
  "@spothero/eslint-config": "3.0.0",
99
99
  "@spothero/icons": "2.0.2",
100
100
  "@spothero/npm-publisher": "4.0.0",
@@ -126,11 +126,11 @@
126
126
  "msw": "0.27.0",
127
127
  "prop-types": "15.7.2",
128
128
  "push-dir": "0.4.1",
129
- "react": "16.13.1",
130
- "react-dom": "16.8.6",
129
+ "react": "17.0.2",
130
+ "react-dom": "17.0.2",
131
131
  "react-hot-loader": "4.12.21",
132
- "react-redux": "7.2.0",
133
- "redux": "4.0.5",
132
+ "react-redux": "7.2.8",
133
+ "redux": "4.1.2",
134
134
  "regenerator-runtime": "0.13.7",
135
135
  "rollup": "2.40.0",
136
136
  "rollup-plugin-babel": "4.4.0",
@@ -144,9 +144,9 @@
144
144
  "webpack-merge": "5.1.4"
145
145
  },
146
146
  "dependencies": {
147
- "@chakra-ui/react": "1.6.12",
148
- "@chakra-ui/theme": "1.7.0",
149
- "@chakra-ui/theme-tools": "1.1.0",
147
+ "@chakra-ui/react": "1.8.8",
148
+ "@chakra-ui/theme": "1.14.1",
149
+ "@chakra-ui/theme-tools": "1.3.6",
150
150
  "@emotion/react": "11.1.5",
151
151
  "@emotion/styled": "11.1.5",
152
152
  "@spothero/utils": "9.1.0",
@@ -63,7 +63,9 @@ export default class Tooltip extends Component {
63
63
  }
64
64
 
65
65
  if (closeOnBodyClick) {
66
- document.addEventListener('click', this._onCloseClick);
66
+ document.addEventListener('click', this._onCloseClick, {
67
+ capture: true,
68
+ });
67
69
  }
68
70
  }
69
71