sfc-utils 1.4.0 → 1.4.2

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/brands.js CHANGED
@@ -161,7 +161,23 @@ let getBrands = function(market){
161
161
  "subscribeLink": "/subproject"
162
162
  }
163
163
  },
164
-
164
+ Conroe: {
165
+ styles: {
166
+ "@brand": "#900900",
167
+ "@brand-secondary": "#189196"
168
+ },
169
+ attributes: {
170
+ "marketPrefix": "conroe",
171
+ "siteName": "Conroe Courier",
172
+ "twitter": "ConroeCourier",
173
+ "invert": true,
174
+ "gaAccount": "UA-1616916-99",
175
+ "subscribeLink": "https://www.yourconroenews.com/subproject",
176
+ "sailCustomer": "4a181de0b63a131cf27f8ea9485e5e1c",
177
+ "sailSiteName": "the-courier-of-montgomery-county",
178
+ "siteId": 68
179
+ }
180
+ },
165
181
  /* Misc */
166
182
  TK: {
167
183
  styles: {
@@ -0,0 +1,14 @@
1
+ import React from "react"
2
+
3
+ const DevHubCredit = () => {
4
+ return (
5
+ <>
6
+ <span className="devhub-credit">
7
+ Powered by the <a target="_blank" href="https://www.poynter.org/business-work/2022/coming-off-big-digital-subscription-growth-hearst-newspapers-plan-a-new-data-and-product-hub-for-2022/">Hearst Newspapers DevHub</a>.
8
+ <svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"/></svg>
9
+ </span>
10
+ </>
11
+ )
12
+ }
13
+
14
+ export default DevHubCredit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sfc-utils",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "author": "ewagstaff <evanjwagstaff@gmail.com>",
5
5
  "dependencies": {
6
6
  "archieml": "^0.4.2",
@@ -146,4 +146,14 @@ a {
146
146
 
147
147
  .og-pub-date {
148
148
  color: @grey-75;
149
+ }
150
+
151
+ .devhub-credit {
152
+ a {
153
+ text-decoration-color: @grey-75;
154
+ }
155
+ svg {
156
+ height: 0.75rem;
157
+ margin-left: @s4;
158
+ }
149
159
  }