gatsby-core-theme 44.0.13 → 44.0.15

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,25 @@
1
+ ## [44.0.15](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.0.14...v44.0.15) (2025-04-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * ci ([30913a8](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/30913a8a399f697be89d9554d5dcc314e0cbd8d0))
7
+ * ci ([bfdae5c](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/bfdae5c518df3ab6d8eda6a4abef1d6337d17315))
8
+ * ci ([2afbe49](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/2afbe492eeb5121d71471d03d7eaf80d446b4beb))
9
+ * ci fix ([bad7972](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/bad797230496772bafa88b34d3efb6fd0c9e16dd))
10
+ * z-index on admin bar ([bfe76e6](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/bfe76e6c3e1e9dd3ce25d74956c99d060230de84))
11
+
12
+
13
+ * Merge branch 'tm-5379-admin-bar' into 'master' ([0d8c150](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/0d8c150e838e78cdc612309222ab71a732763f0f))
14
+ * Merge branch 'tm-5379-admin-bar' into 'master' ([63c7bfc](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/63c7bfc2c381b7c10cb32026d8fa8ce4337f6e81))
15
+
16
+ ## [44.0.14](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.0.13...v44.0.14) (2025-04-09)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * page preview missing attributes ([1c0ce64](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/1c0ce644a6e2f208c47ab53bb6a256c1fc52f554))
22
+
1
23
  ## [44.0.13](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.0.12...v44.0.13) (2025-04-04)
2
24
 
3
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.0.13",
3
+ "version": "44.0.15",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -1,7 +1,9 @@
1
1
  .container {
2
2
  display: none;
3
3
  background-color: #000;
4
-
4
+ position: relative;
5
+ z-index: 9999;
6
+
5
7
  @include min(laptop){
6
8
  @include flex-direction(row);
7
9
  @include flex-align(center, flex-start);
@@ -70,9 +70,9 @@ export async function getSiteSettings(siteName) {
70
70
 
71
71
  export async function getPages(siteName, previewPath=null) {
72
72
  if(previewPath) {
73
- console.log(`v0.1/sites/pages/sorted-v2-preview/${siteName}?path=${previewPath}&non_preview_page_attributes=id,path,market_id,relation_id,relation_type,meta_title,title,type,template_id,market`);
73
+ console.log(`v0.1/sites/pages/sorted-v2-preview/${siteName}?path=${previewPath}&non_preview_page_attributes=id,path,market_id,relation_id,relation_type,meta_title,title,type,template_id,market,author_id,banner,featured_image`);
74
74
 
75
- return callAPIV2(`v0.1/sites/pages/sorted-v2-preview/${siteName}?path=${previewPath}&non_preview_page_attributes=id,path,market_id,relation_id,relation_type,meta_title,title,type,template_id,market`);
75
+ return callAPIV2(`v0.1/sites/pages/sorted-v2-preview/${siteName}?path=${previewPath}&non_preview_page_attributes=id,path,market_id,relation_id,relation_type,meta_title,title,type,template_id,market,author_id,banner,featured_image`);
76
76
  }
77
77
  return callAPIV2(`v0.1/sites/pages/sorted-v2/${siteName}`);
78
78
  }