gatsby-core-theme 2.0.8 → 2.0.9
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [2.0.9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v2.0.8...v2.0.9) (2022-01-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added translatable text in author ([8a3c5e5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8a3c5e5491f45077f7e97e869097cadbd30c719b))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Tests
|
|
10
|
+
|
|
11
|
+
* added sample data ([6d930cf](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/6d930cfa577cd58a583594f64e7658a77ad4d6af))
|
|
12
|
+
|
|
1
13
|
## [2.0.8](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v2.0.7...v2.0.8) (2022-01-03)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
|
@@ -38,7 +38,7 @@ export default function AuthorBox({ author }) {
|
|
|
38
38
|
target="_blank"
|
|
39
39
|
rel="noreferrer"
|
|
40
40
|
>
|
|
41
|
-
Email
|
|
41
|
+
{translate(translations, 'email', 'Email')}
|
|
42
42
|
</a>
|
|
43
43
|
)}
|
|
44
44
|
{author.personal_website && (
|
|
@@ -48,7 +48,7 @@ export default function AuthorBox({ author }) {
|
|
|
48
48
|
target="_blank"
|
|
49
49
|
rel="noreferrer"
|
|
50
50
|
>
|
|
51
|
-
Website
|
|
51
|
+
{translate(translations, 'website', 'Website')}
|
|
52
52
|
</a>
|
|
53
53
|
)}
|
|
54
54
|
{author.additional_url && (
|
|
@@ -58,7 +58,7 @@ export default function AuthorBox({ author }) {
|
|
|
58
58
|
target="_blank"
|
|
59
59
|
rel="noreferrer"
|
|
60
60
|
>
|
|
61
|
-
Contact
|
|
61
|
+
{translate(translations, 'contact', 'Contact')}
|
|
62
62
|
</a>
|
|
63
63
|
)}
|
|
64
64
|
</p>
|
|
@@ -183,6 +183,32 @@ export function getSampleOperatorCards(type) {
|
|
|
183
183
|
'Great website and app design',
|
|
184
184
|
'Wager-free free spins',
|
|
185
185
|
],
|
|
186
|
+
bonus: {
|
|
187
|
+
deposit_methods: [
|
|
188
|
+
{
|
|
189
|
+
logo_filename: 'apple.png',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
logo_filename: 'visapng339205421f-original.png',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
logo_filename: 'mastercard-logo.png',
|
|
196
|
+
},
|
|
197
|
+
],
|
|
198
|
+
license_objects: [
|
|
199
|
+
{
|
|
200
|
+
logo_filename: 'mga-6.png',
|
|
201
|
+
},
|
|
202
|
+
],
|
|
203
|
+
currencies: [
|
|
204
|
+
{
|
|
205
|
+
iso_code: 'ZAR',
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
iso_code: 'EUR',
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
},
|
|
186
212
|
},
|
|
187
213
|
extra_fields: {
|
|
188
214
|
card_background_image: '2831afbf54038c1266f8c7fbcff20857.png',
|
|
@@ -203,6 +229,26 @@ export function getSampleOperatorCards(type) {
|
|
|
203
229
|
ribbon_color: '#FFC740',
|
|
204
230
|
ribbon_text: 'Exclusive Bonus',
|
|
205
231
|
},
|
|
232
|
+
bonus: {
|
|
233
|
+
deposit_methods: [
|
|
234
|
+
{
|
|
235
|
+
logo_filename: 'visapng339205421f-original.png',
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
logo_filename: 'mastercard-logo.png',
|
|
239
|
+
},
|
|
240
|
+
],
|
|
241
|
+
license_objects: [
|
|
242
|
+
{
|
|
243
|
+
logo_filename: 'curacao-casino-license.png',
|
|
244
|
+
},
|
|
245
|
+
],
|
|
246
|
+
currencies: [
|
|
247
|
+
{
|
|
248
|
+
iso_code: 'EUR',
|
|
249
|
+
},
|
|
250
|
+
],
|
|
251
|
+
},
|
|
206
252
|
selling_points: ['Over 1000 games', 'Loyalty Programme', 'Wager-free free spins'],
|
|
207
253
|
},
|
|
208
254
|
},
|
|
@@ -217,6 +263,32 @@ export function getSampleOperatorCards(type) {
|
|
|
217
263
|
one_liner: '100% up to €500 + 400 spins',
|
|
218
264
|
},
|
|
219
265
|
},
|
|
266
|
+
bonus: {
|
|
267
|
+
deposit_methods: [
|
|
268
|
+
{
|
|
269
|
+
logo_filename: 'apple.png',
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
logo_filename: 'visapng339205421f-original.png',
|
|
273
|
+
},
|
|
274
|
+
],
|
|
275
|
+
license_objects: [
|
|
276
|
+
{
|
|
277
|
+
logo_filename: 'mga-6.png',
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
logo_filename: 'curacao-casino-license.png',
|
|
281
|
+
},
|
|
282
|
+
],
|
|
283
|
+
currencies: [
|
|
284
|
+
{
|
|
285
|
+
iso_code: 'GBP',
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
iso_code: 'EUR',
|
|
289
|
+
},
|
|
290
|
+
],
|
|
291
|
+
},
|
|
220
292
|
selling_points: ['Over 1000 games', 'Slick, modern interface'],
|
|
221
293
|
},
|
|
222
294
|
},
|