@cloudflare/component-tooltip 2.7.99 → 2.7.103
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 +35 -0
- package/es/Tooltip.js +1 -0
- package/lib/Tooltip.js +1 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.7.103](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/component-tooltip@2.7.102...@cloudflare/component-tooltip@2.7.103) (2021-12-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @cloudflare/component-tooltip
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.7.102](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/component-tooltip@2.7.101...@cloudflare/component-tooltip@2.7.102) (2021-11-30)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @cloudflare/component-tooltip
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [2.7.101](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/component-tooltip@2.7.100...@cloudflare/component-tooltip@2.7.101) (2021-11-30)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **component-tooltip:** UI-4954 Fix text color ([d1c05e7](http://stash.cfops.it:7999/fe/stratus/commits/d1c05e7))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [2.7.100](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/component-tooltip@2.7.99...@cloudflare/component-tooltip@2.7.100) (2021-11-23)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @cloudflare/component-tooltip
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
## [2.7.99](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/component-tooltip@2.7.98...@cloudflare/component-tooltip@2.7.99) (2021-11-22)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @cloudflare/component-tooltip
|
package/es/Tooltip.js
CHANGED
package/lib/Tooltip.js
CHANGED
|
@@ -186,6 +186,7 @@ var Tooltip = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
186
186
|
onBlur: function onBlur() {
|
|
187
187
|
return _reactTooltip.default.hide(_this3.tooltipElement);
|
|
188
188
|
},
|
|
189
|
+
color: "gray.1",
|
|
189
190
|
style: {
|
|
190
191
|
cursor: 'pointer',
|
|
191
192
|
backgroundColor: 'transparent',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudflare/component-tooltip",
|
|
3
3
|
"description": "Cloudflare Tooltip Component",
|
|
4
|
-
"version": "2.7.
|
|
4
|
+
"version": "2.7.103",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
7
7
|
"author": "James Kyle <jkyle@cloudflare.com>",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@cloudflare/elements": "^1.11.
|
|
15
|
-
"@cloudflare/style-container": "^7.5.
|
|
14
|
+
"@cloudflare/elements": "^1.11.32",
|
|
15
|
+
"@cloudflare/style-container": "^7.5.21",
|
|
16
16
|
"lodash.uniqueid": "^4.0.1",
|
|
17
17
|
"prop-types": "^15.6.0",
|
|
18
18
|
"react-tooltip": "^3.6.0"
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"test-coverage": "stratus test --coverage",
|
|
32
32
|
"test-watch": "stratus test --watch"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "ceaeb1a7b750bec5b0dfc6edbba94bf2ddac31bf"
|
|
35
35
|
}
|