@plusscommunities/pluss-newsletter-app-menu 1.3.3 → 1.3.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plusscommunities/pluss-newsletter-app-menu",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "Extension package to enable newsletter on Pluss Communities Platform",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"author": "Phillip Suh",
|
|
24
24
|
"license": "ISC",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@plusscommunities/pluss-core-app": "1.4.
|
|
26
|
+
"@plusscommunities/pluss-core-app": "1.4.9",
|
|
27
27
|
"axios": "^0.16.2",
|
|
28
28
|
"lodash": "^4.17.4",
|
|
29
29
|
"moment": "^2.18.1",
|
|
@@ -73,12 +73,6 @@ class NewsletterPost extends Component {
|
|
|
73
73
|
this.commentSection = React.createRef();
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
UNSAFE_componentWillMount() {
|
|
77
|
-
this.willBlurSubscription = this.props.navigation.addListener('willBlur', payload => {
|
|
78
|
-
if (this.imageSetRef) this.imageSetRef.closeVideo();
|
|
79
|
-
});
|
|
80
|
-
}
|
|
81
|
-
|
|
82
76
|
componentDidMount() {
|
|
83
77
|
if (this.props.update) {
|
|
84
78
|
this.checkLog(this.props.update);
|
|
@@ -102,7 +96,6 @@ class NewsletterPost extends Component {
|
|
|
102
96
|
|
|
103
97
|
componentWillUnmount() {
|
|
104
98
|
AppState.removeEventListener('change', this._handleAppStateChange);
|
|
105
|
-
// this.willBlurSubscription.remove();
|
|
106
99
|
}
|
|
107
100
|
|
|
108
101
|
onPressBack() {
|