gatsby-core-theme 42.0.28 → 42.0.30

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,22 @@
1
+ ## [42.0.30](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v42.0.29...v42.0.30) (2025-03-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add more keys for operator and games ([dd41975](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/dd419753f4ca5473b7db7e40d37acfbafe70d500))
7
+ * test ([ed0d3c9](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/ed0d3c910232d33df864b65e425bc62429b36d51))
8
+
9
+
10
+ * Merge branch 'tm-5103-info-grid-add-more-data' into 'master' ([131efc7](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/131efc78cff81351f2135db914c85da8d0dd188d))
11
+
12
+ ## [42.0.29](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v42.0.28...v42.0.29) (2025-03-06)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * added orientation to items ([79e0ca2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/79e0ca2a53b77f7cbc67ae3501be045243d03e8e))
18
+ * camelCase ([f88d53f](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/f88d53f37c879bff76edc929e6a79ac54a6e045c))
19
+
1
20
  ## [42.0.28](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v42.0.27...v42.0.28) (2025-03-06)
2
21
 
3
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "42.0.28",
3
+ "version": "42.0.30",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -53,7 +53,7 @@ const Items = ({ item, menuListRef, orientation = 'horizontal', gtmClass = '', l
53
53
  ref={subMenuListRef}
54
54
  className={`${styles.subMenuList || ''} ${
55
55
  itemHasChildren(item) ? styles.hasChildWithSubmenu || '' : ''
56
- } ${styles[`${orientation}_subitems`] || ''}`}
56
+ } ${styles[`${orientation}SubItems`] || ''}`}
57
57
  >
58
58
  {item.children.map((child) => (
59
59
  <Items
@@ -62,6 +62,7 @@ const Items = ({ item, menuListRef, orientation = 'horizontal', gtmClass = '', l
62
62
  menuListRef={menuListRef}
63
63
  gtmClass={gtmClass}
64
64
  canOpenAllSubMenus={canOpenAllSubMenus}
65
+ orientation={orientation}
65
66
  level={level + 1}
66
67
  currentPage={currentPage}
67
68
  />
@@ -74,7 +75,7 @@ const Items = ({ item, menuListRef, orientation = 'horizontal', gtmClass = '', l
74
75
  return (
75
76
  <li
76
77
  ref={parentMenuRef}
77
- className={`${styles.menuItem || ''} ${styles[`level${level.toString()}`] || ''}
78
+ className={`${styles.menuItem || ''} ${styles[`${orientation}MenuItems`] || ''} ${styles[`level${level.toString()}`] || ''}
78
79
  ${item.children !== undefined ? styles.hasChildren || '' : ''}
79
80
  `}
80
81
  onFocus={(e) => getPositionClass(e.target, styles)}
@@ -111,10 +111,18 @@ export const pickRelationKeys = {
111
111
  "support_email",
112
112
  "min_deposit",
113
113
  "max_withdrawal",
114
+ "min_withdrawal",
114
115
  "license_objects",
115
116
  "launch_date",
116
117
  "game_categories",
117
118
  "updated_at",
119
+ "deposit_limits",
120
+ "loss_limits",
121
+ "maximum_bet",
122
+ "session_limits",
123
+ "cooling_off_time_out_tool",
124
+ "reality_check",
125
+ "self_assessment_test",
118
126
  ],
119
127
  operator_simplified: [
120
128
  "short_name",
@@ -143,6 +151,7 @@ export const pickRelationKeys = {
143
151
  "iframe",
144
152
  "average_rating",
145
153
  "maximum_bet",
154
+ "maximum_win",
146
155
  "volatility",
147
156
  "rtp",
148
157
  "freespins",