@times-components/ssr 2.59.14-alpha.0 → 2.59.14-alpha.3

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@times-components/ssr",
3
3
  "main": "src",
4
- "version": "2.59.14-alpha.0+491006705e",
4
+ "version": "2.59.14-alpha.3+9d347db2a7",
5
5
  "scripts": {
6
6
  "bundle:dev": "yarn cleanup-dist && webpack --config=webpack.config.js",
7
7
  "bundle:prod": "yarn cleanup-dist && NODE_ENV=production webpack --config=webpack.config.js -p",
@@ -52,8 +52,8 @@
52
52
  "webpack": "4.30.0"
53
53
  },
54
54
  "dependencies": {
55
- "@times-components/article": "^7.17.33-alpha.0+491006705e",
56
- "@times-components/author-profile": "^6.19.8-alpha.0+491006705e",
55
+ "@times-components/article": "^7.17.33-alpha.3+9d347db2a7",
56
+ "@times-components/author-profile": "^6.19.8-alpha.3+9d347db2a7",
57
57
  "@times-components/context": "^1.24.0",
58
58
  "@times-components/provider": "^1.41.4",
59
59
  "@times-components/schema": "^0.7.5",
@@ -79,5 +79,5 @@
79
79
  "publishConfig": {
80
80
  "access": "public"
81
81
  },
82
- "gitHead": "491006705e9daf3697271a3918a038a6073d57db"
82
+ "gitHead": "9d347db2a7333d720be22a424f728aad6a8d4364"
83
83
  }
@@ -20,7 +20,8 @@ if (window.nuk && window.nuk.ssr && window.nuk.article) {
20
20
  commentingFlag = true,
21
21
  showAudioPlayer,
22
22
  storefrontConfig,
23
- isEntitlementFeatureEnabled
23
+ isEntitlementFeatureEnabled,
24
+ isSharingSavingEntitlementEnabled
24
25
  } = window.nuk.article;
25
26
 
26
27
  const { getCookieValue } = window.nuk;
@@ -43,7 +44,8 @@ if (window.nuk && window.nuk.ssr && window.nuk.article) {
43
44
  commentingFlag,
44
45
  showAudioPlayer,
45
46
  storefrontConfig,
46
- isEntitlementFeatureEnabled
47
+ isEntitlementFeatureEnabled,
48
+ isSharingSavingEntitlementEnabled
47
49
  };
48
50
 
49
51
  const clientOptions = {
@@ -37,7 +37,8 @@ module.exports = (client, analyticsStream, data, helmetContext) => {
37
37
  commentingFlag,
38
38
  showAudioPlayer,
39
39
  storefrontConfig,
40
- isEntitlementFeatureEnabled
40
+ isEntitlementFeatureEnabled,
41
+ isSharingSavingEntitlementEnabled
41
42
  } = data;
42
43
 
43
44
  return React.createElement(
@@ -88,6 +89,7 @@ module.exports = (client, analyticsStream, data, helmetContext) => {
88
89
  isSharingEnabled: sharingSavingFlag,
89
90
  isCommentEnabled: commentingFlag,
90
91
  isEntitlementFeatureEnabled,
92
+ isSharingSavingEntitlementEnabled,
91
93
  isPreview
92
94
  },
93
95
  error,
@@ -29,7 +29,8 @@ module.exports = (
29
29
  commentingFlag = true,
30
30
  showAudioPlayer,
31
31
  storefrontConfig,
32
- isEntitlementFeatureEnabled = false
32
+ isEntitlementFeatureEnabled = false,
33
+ isSharingSavingEntitlementEnabled = false
33
34
  },
34
35
  userState
35
36
  ) => {
@@ -86,7 +87,8 @@ module.exports = (
86
87
  commentingFlag,
87
88
  showAudioPlayer,
88
89
  storefrontConfig,
89
- isEntitlementFeatureEnabled
90
+ isEntitlementFeatureEnabled,
91
+ isSharingSavingEntitlementEnabled
90
92
  },
91
93
  name: "article"
92
94
  };