@twreporter/redux 7.6.0-rc.2 → 7.6.1-rc.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 +16 -0
- package/lib/constants/redux-state-field-names.js +1 -17
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
## [7.6.1-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/redux@7.6.0...@twreporter/redux@7.6.1-rc.0) (2023-06-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @twreporter/redux
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [7.6.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/redux@7.6.0-rc.2...@twreporter/redux@7.6.0) (2023-06-21)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @twreporter/redux
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [7.6.0-rc.2](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/redux@7.6.0-rc.1...@twreporter/redux@7.6.0-rc.2) (2023-06-15)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @twreporter/redux
|
|
@@ -5,8 +5,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
|
|
8
|
-
var _featureFlag = require("@twreporter/core/lib/constants/feature-flag");
|
|
9
|
-
|
|
10
8
|
var _categorySet = require("@twreporter/core/lib/constants/category-set");
|
|
11
9
|
|
|
12
10
|
var entities = 'entities';
|
|
@@ -33,14 +31,7 @@ var photosSection = 'photos_section';
|
|
|
33
31
|
var reviewsSection = 'reviews_section';
|
|
34
32
|
var topicsSection = 'topics_section'; // categories in index_page
|
|
35
33
|
|
|
36
|
-
var
|
|
37
|
-
var environmentAndEducation = 'environment_and_education';
|
|
38
|
-
var politicsAndEconomy = 'politics_and_economy';
|
|
39
|
-
var cultureAndArt = 'culture_and_art';
|
|
40
|
-
var international = 'international';
|
|
41
|
-
var livingAndMedicalCare = 'living_and_medical_care'; // feature toggle
|
|
42
|
-
|
|
43
|
-
var categories = _featureFlag.ENABLE_NEW_INFO_ARCH ? {
|
|
34
|
+
var categories = {
|
|
44
35
|
world: _categorySet.CATEGORY_PATH.world,
|
|
45
36
|
humanrights: _categorySet.CATEGORY_PATH.humanrights,
|
|
46
37
|
politicsAndSociety: _categorySet.CATEGORY_PATH.politicsAndSociety,
|
|
@@ -49,13 +40,6 @@ var categories = _featureFlag.ENABLE_NEW_INFO_ARCH ? {
|
|
|
49
40
|
econ: _categorySet.CATEGORY_PATH.econ,
|
|
50
41
|
culture: _categorySet.CATEGORY_PATH.culture,
|
|
51
42
|
education: _categorySet.CATEGORY_PATH.education
|
|
52
|
-
} : {
|
|
53
|
-
humanRightsAndSociety: humanRightsAndSociety,
|
|
54
|
-
environmentAndEducation: environmentAndEducation,
|
|
55
|
-
politicsAndEconomy: politicsAndEconomy,
|
|
56
|
-
cultureAndArt: cultureAndArt,
|
|
57
|
-
international: international,
|
|
58
|
-
livingAndMedicalCare: livingAndMedicalCare
|
|
59
43
|
}; // time stamp for next popup
|
|
60
44
|
|
|
61
45
|
var nextNotifyPopupTS = 'nextNotifyPopupTS';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twreporter/redux",
|
|
3
|
-
"version": "7.6.
|
|
3
|
+
"version": "7.6.1-rc.0",
|
|
4
4
|
"description": "redux actions and reducers for twreporter website",
|
|
5
5
|
"repository": "https://github.com/twreporter/twreporter-npm-packages.git",
|
|
6
6
|
"author": "twreporter <developer@twreporter.org>",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/twreporter/twreporter-redux/#readme",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@twreporter/core": "^1.10.
|
|
28
|
+
"@twreporter/core": "^1.10.1-rc.0",
|
|
29
29
|
"axios": "^0.19.0",
|
|
30
30
|
"es6-error": "^4.0.2",
|
|
31
31
|
"humps": "^0.6.0",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"files": [
|
|
45
45
|
"lib"
|
|
46
46
|
],
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "d0cdc973332d7c8b7e8d8bd4370e6b789961a1a0"
|
|
48
48
|
}
|