gatsby-core-theme 33.1.1 → 33.1.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/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [33.1.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.1...v33.1.2) (2024-06-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * removed unused styling ([9b054cd](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9b054cd636f45d89fcc55965c8918c872c666269))
7
+ * search logic ([7d59fb6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7d59fb63ef167e6273dd704936d3794d351487b4))
8
+
1
9
  ## [33.1.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.0...v33.1.1) (2024-06-25)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "33.1.1",
3
+ "version": "33.1.2",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -227,34 +227,4 @@
227
227
  }
228
228
  }
229
229
  }
230
- }
231
-
232
- button{
233
- padding: 0.4rem 1.6rem;
234
- font-weight: 700;
235
- font-size: 1.4rem;
236
- line-height: 2rem;
237
- border-width: 1.5px;
238
- @include buttonsColor(
239
- var(--primary-button-color, #6e33e5),
240
- var(--primary-button-color-hover, #331079),
241
- var(--primary-button-color-active, #998fcb),
242
- var(--primary-button-color-text, #ffffff)
243
- );
244
- white-space: nowrap;
245
- border-radius: 100px;
246
- max-width: 15rem;
247
-
248
- > svg {
249
- flex: none;
250
- height: 1.8rem;
251
- width: 1.8rem;
252
- margin-left: 1rem;
253
- padding: 0.2rem;
254
- }
255
- &:disabled{
256
- border: 1px solid #999999;
257
- background-color: #cccccc;
258
- color: #666666;
259
- }
260
230
  }
@@ -5,7 +5,7 @@ import loadSource from '~helpers/search-source';
5
5
  import { deparam } from '~helpers/strings';
6
6
 
7
7
  export async function getAPIData(page, url) {
8
- const results = await loadSource('id', ['title', 'market'], page.market);
8
+ const results = await loadSource(page.market);
9
9
  if (page.path.endsWith('/s') || page.path === 's') {
10
10
  let urlParams = null;
11
11
  if (url && url.split('?').length === 2) {