sfc-utils 1.4.70 → 1.4.71

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.
@@ -47,8 +47,9 @@ const ImageSlideshow = ({ wcmData, imageList, altList, topperStyle, isLayoutInve
47
47
  const getContainerClass = () => {
48
48
  switch (topperStyle) {
49
49
  case "stacked":
50
- case "full-screen":
51
50
  return styles.containerStacked;
51
+ case "full-screen":
52
+ return styles.containerFullscreen;
52
53
  case "small-visual":
53
54
  return styles.containerSmallVisual;
54
55
  default:
@@ -2,20 +2,18 @@
2
2
  "_comment": "The possible paywall values are 'meter' (hit the paywall after a certain number of free stories), 'paywall' (paywall immediately), 'free' (no wall), or 'meter-no-paywall' (count this against the reader's meter, but never show the paywall on this page)",
3
3
  "PAYWALL_SETTING": "meter",
4
4
  "EMBEDDED": false,
5
- "GOOGLE_SHEETS": ["1DUvYnFdxtBv1AXcDI9X00s_opUSu4uHJmd5LNemCN9E"],
5
+ "GOOGLE_SHEETS": [
6
+ "1DUvYnFdxtBv1AXcDI9X00s_opUSu4uHJmd5LNemCN9E"
7
+ ],
6
8
  "GOOGLE_DOCS": [],
7
-
8
9
  "_domain_explainer": "NOTE: MAIN_DOMAIN will get swapped out based on the MARKEY_KEY when deployed on the server. If you are building it locally for a repo push, you need to set the domain manually here.",
9
10
  "MAIN_DOMAIN": "https://projects.sfchronicle.com",
10
-
11
11
  "PROJECT": {
12
12
  "_key_explainer": "NOTE: Change MARKET_KEY to deploy to other markets using their domain and settings. Accepted markets include: SFC, Houston, SanAntonio, Albany, CT",
13
13
  "MARKET_KEY": "SFC",
14
-
15
14
  "_comment": "IMPORTANT: SUBFOLDER and SLUG for used for file pathing and the deploy script! Take care with your edits to them! NOTE: Stage deploys will automatically go to 'projects/test-proj'",
16
15
  "SUBFOLDER": "{%= subfolder_path %}",
17
16
  "SLUG": "{%= app_slug %}",
18
-
19
17
  "TITLE": "",
20
18
  "DISPLAY_TITLE": "",
21
19
  "SOCIAL_TITLE": "",
@@ -27,15 +25,13 @@
27
25
  "HEARST_CATEGORY": "Bay Area",
28
26
  "KEY_SUBJECTS": "Data",
29
27
  "DATE": "January 1, 1970 6:00 PM",
30
-
31
28
  "NEWSLETTER_ID": "SFC_NL_TopStories",
32
29
  "NEWSLETTER_PROMO": "Get the Bay Area's best journalism delivered to my inbox daily",
33
30
  "NEWSLETTER_LEGAL": "By subscribing, you agree to our <a href=\"https://www.sfchronicle.com/terms_of_use/\">Terms of Use</a> and acknowledge that your information will be used as described in our <a href=\"https://www.sfchronicle.com/privacy_policy/\"> Privacy Notice</a>.",
34
-
35
31
  "AUTHORS": [
36
32
  {
37
- "AUTHOR_NAME": "",
38
- "AUTHOR_PAGE": ""
33
+ "AUTHOR_NAME": "Lesley Huang",
34
+ "AUTHOR_PAGE": "www.google.com"
39
35
  }
40
36
  ]
41
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sfc-utils",
3
- "version": "1.4.70",
3
+ "version": "1.4.71",
4
4
  "author": "ewagstaff <evanjwagstaff@gmail.com>",
5
5
  "dependencies": {
6
6
  "archieml": "^0.4.2",
@@ -14,4 +14,4 @@
14
14
  "react-transition-group": "^4.4.5",
15
15
  "write": "^2.0.0"
16
16
  }
17
- }
17
+ }
@@ -15,12 +15,11 @@
15
15
  }
16
16
 
17
17
  .container-fullscreen {
18
- padding-bottom: calc(100vh - 37px);
19
- width: 100%;
18
+ margin: 0 auto;
19
+ white-space: nowrap;
20
+ padding-bottom: 0;
20
21
 
21
22
  @media @tablet {
22
- margin: 0 auto;
23
- white-space: nowrap;
24
23
  padding-bottom: calc(100vw * (2/3));
25
24
  }
26
25
  }