@twreporter/react-components 8.19.0 → 8.19.1-rc.1
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 +19 -0
- package/lib/button/components/link.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [8.19.1-rc.1](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/react-components@8.19.1-rc.0...@twreporter/react-components@8.19.1-rc.1) (2023-10-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* remove click effect when link disabled on mobile ([09899d9](https://github.com/twreporter/twreporter-npm-packages/commit/09899d91ae54b2a153cbff17fe860122287ffd0a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [8.19.1-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/react-components@8.19.0...@twreporter/react-components@8.19.1-rc.0) (2023-09-28)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @twreporter/react-components
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [8.19.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/react-components@8.19.0-rc.2...@twreporter/react-components@8.19.0) (2023-09-20)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @twreporter/react-components
|
|
@@ -45,7 +45,7 @@ var LinkContainer = /*#__PURE__*/(0, _styledComponents["default"])(_customizedLi
|
|
|
45
45
|
}, function (props) {
|
|
46
46
|
return style.color[props.type];
|
|
47
47
|
}, function (props) {
|
|
48
|
-
return props.disabled ? "\n opacity: 0.5;\n cursor: auto;\n " : "\n &:hover {\n text-decoration-line: underline;\n }\n
|
|
48
|
+
return props.disabled ? "\n opacity: 0.5;\n cursor: auto;\n -webkit-tap-highlight-color: transparent;\n " : "\n &:hover {\n text-decoration-line: underline;\n }\n ";
|
|
49
49
|
});
|
|
50
50
|
|
|
51
51
|
var LinkButton = function LinkButton(_ref) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twreporter/react-components",
|
|
3
|
-
"version": "8.19.
|
|
3
|
+
"version": "8.19.1-rc.1",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"repository": "https://github.com/twreporter/twreporter-npm-packages.git",
|
|
6
6
|
"author": "twreporter <developer@twreporter.org>",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"chromatic": "npx chromatic --exit-zero-on-changes"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@twreporter/core": "^1.
|
|
19
|
-
"@twreporter/redux": "^7.7.0",
|
|
18
|
+
"@twreporter/core": "^1.12.0-rc.0",
|
|
19
|
+
"@twreporter/redux": "^7.7.1-rc.0",
|
|
20
20
|
"fontfaceobserver-es": "^3.3.3",
|
|
21
21
|
"hoist-non-react-statics": "^2.3.1",
|
|
22
22
|
"lodash": "^4.0.0",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"babel-loader": "^8.2.4",
|
|
45
45
|
"chromatic": "^6.5.4"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "771c566b810d110c895a00237beb79e2e4a50271"
|
|
48
48
|
}
|