@twreporter/react-components 8.18.1-rc.3 → 8.18.1-rc.5
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/listing-page/components/list.js +1 -1
- package/package.json +3 -3
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.18.1-rc.5](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/react-components@8.18.1-rc.4...@twreporter/react-components@8.18.1-rc.5) (2023-07-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **react-components:** wrong url path for interactive posts ([ac4d132](https://github.com/twreporter/twreporter-npm-packages/commit/ac4d132d658037a7fc16c1eacecd7b50cce7d548))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [8.18.1-rc.4](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/react-components@8.18.1-rc.3...@twreporter/react-components@8.18.1-rc.4) (2023-07-14)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @twreporter/react-components
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [8.18.1-rc.3](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/react-components@8.18.1-rc.2...@twreporter/react-components@8.18.1-rc.3) (2023-07-04)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @twreporter/react-components
|
|
@@ -108,7 +108,7 @@ var List = /*#__PURE__*/function (_PureComponent) {
|
|
|
108
108
|
|
|
109
109
|
var slug = _.get(item, 'slug');
|
|
110
110
|
|
|
111
|
-
var isInteractiveArticle = style === _theme.ARTICLE_THEME.interactive;
|
|
111
|
+
var isInteractiveArticle = style === _theme.ARTICLE_THEME.v2.interactive;
|
|
112
112
|
var to = "".concat(isInteractiveArticle ? _entityPath["default"].interactiveArticle : _entityPath["default"].article).concat(slug);
|
|
113
113
|
|
|
114
114
|
var tags = _.map(_.get(item, 'tags'), function (tag) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twreporter/react-components",
|
|
3
|
-
"version": "8.18.1-rc.
|
|
3
|
+
"version": "8.18.1-rc.5",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"repository": "https://github.com/twreporter/twreporter-npm-packages.git",
|
|
6
6
|
"author": "twreporter <developer@twreporter.org>",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@twreporter/core": "^1.11.0-rc.2",
|
|
19
|
-
"@twreporter/redux": "^7.7.0-rc.
|
|
19
|
+
"@twreporter/redux": "^7.7.0-rc.3",
|
|
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": "81fdd49e440a653c242270bcc82c2879f8efaf20"
|
|
48
48
|
}
|