@times-components/ssr 2.56.1-alpha.25 → 2.56.1-alpha.27

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.56.1-alpha.25+e75304429f",
4
+ "version": "2.56.1-alpha.27+6094846034",
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,7 +52,7 @@
52
52
  "webpack": "4.30.0"
53
53
  },
54
54
  "dependencies": {
55
- "@times-components/article": "^7.16.280-alpha.28+e75304429f",
55
+ "@times-components/article": "^7.16.279",
56
56
  "@times-components/author-profile": "^6.18.13",
57
57
  "@times-components/context": "^1.24.0",
58
58
  "@times-components/provider": "^1.40.35",
@@ -79,5 +79,5 @@
79
79
  "publishConfig": {
80
80
  "access": "public"
81
81
  },
82
- "gitHead": "e75304429f1284c177f1328239e0c8476e666de8"
82
+ "gitHead": "60948460346356614768320ce31cf15ff9154db1"
83
83
  }
@@ -19,7 +19,8 @@ if (window.nuk && window.nuk.ssr && window.nuk.article) {
19
19
  sharingSavingFlag = true,
20
20
  commentingFlag = true,
21
21
  showAudioPlayer,
22
- storefrontConfig
22
+ storefrontConfig,
23
+ isEntitlementFeatureEnabled
23
24
  } = window.nuk.article;
24
25
 
25
26
  const { getCookieValue } = window.nuk;
@@ -41,7 +42,8 @@ if (window.nuk && window.nuk.ssr && window.nuk.article) {
41
42
  sharingSavingFlag,
42
43
  commentingFlag,
43
44
  showAudioPlayer,
44
- storefrontConfig
45
+ storefrontConfig,
46
+ isEntitlementFeatureEnabled
45
47
  };
46
48
 
47
49
  const clientOptions = {
@@ -36,7 +36,8 @@ module.exports = (client, analyticsStream, data, helmetContext) => {
36
36
  sharingSavingFlag,
37
37
  commentingFlag,
38
38
  showAudioPlayer,
39
- storefrontConfig
39
+ storefrontConfig,
40
+ isEntitlementFeatureEnabled
40
41
  } = data;
41
42
 
42
43
  return React.createElement(
@@ -103,7 +104,8 @@ module.exports = (client, analyticsStream, data, helmetContext) => {
103
104
  getFallbackThumbnailUrl169,
104
105
  zephrDivs,
105
106
  showAudioPlayer,
106
- storefrontConfig
107
+ storefrontConfig,
108
+ isEntitlementFeatureEnabled
107
109
  })
108
110
  );
109
111
  }
@@ -27,7 +27,8 @@ module.exports = (
27
27
  sharingSavingFlag = true,
28
28
  commentingFlag = true,
29
29
  showAudioPlayer,
30
- storefrontConfig
30
+ storefrontConfig,
31
+ isEntitlementFeatureEnabled
31
32
  },
32
33
  userState
33
34
  ) => {
@@ -82,7 +83,8 @@ module.exports = (
82
83
  sharingSavingFlag,
83
84
  commentingFlag,
84
85
  showAudioPlayer,
85
- storefrontConfig
86
+ storefrontConfig,
87
+ isEntitlementFeatureEnabled
86
88
  },
87
89
  name: "article"
88
90
  };