@red-hat-developer-hub/backstage-plugin-global-header 1.11.0 → 1.11.1

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,5 +1,11 @@
1
1
  # @red-hat-developer-hub/backstage-plugin-global-header
2
2
 
3
+ ## 1.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ce4ffa7: Update config.d.ts to expect the updated app-config schema
8
+
3
9
  ## 1.11.0
4
10
 
5
11
  ### Minor Changes
package/config.d.ts CHANGED
@@ -21,10 +21,17 @@ declare module '@backstage/config' {
21
21
  app?: {
22
22
  branding?: {
23
23
  /**
24
- * Base64 URI for the full logo
25
- * @visibility frontend
24
+ * Base64 URI for the full logo. If the value is a string, it is used as the logo for both themes.
25
+ * @deepVisibility frontend
26
26
  */
27
- fullLogo?: string;
27
+ fullLogo?:
28
+ | string
29
+ | {
30
+ /** Base64 URI for the logo in light theme */
31
+ light: string;
32
+ /** Base64 URI for the logo in dark theme */
33
+ dark: string;
34
+ };
28
35
  };
29
36
  };
30
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@red-hat-developer-hub/backstage-plugin-global-header",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "main": "dist/index.esm.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -68,7 +68,7 @@
68
68
  "@backstage/plugin-search-common": "^1.2.18",
69
69
  "@backstage/test-utils": "^1.7.8",
70
70
  "@openshift/dynamic-plugin-sdk": "^5.0.1",
71
- "@red-hat-developer-hub/backstage-plugin-theme": "^0.9.0",
71
+ "@red-hat-developer-hub/backstage-plugin-theme": "^0.9.1",
72
72
  "@testing-library/jest-dom": "^6.0.0",
73
73
  "@testing-library/react": "^14.0.0",
74
74
  "@testing-library/user-event": "^14.0.0",