@boldvideo/bold-js 1.2.0 → 1.3.0

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
  # @boldvideo/bold-js
2
2
 
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 57c4de2: Add missing fields to PortalTheme type: `logo_dark_url` for dark mode logos and `css_overrides` for custom CSS injection.
8
+
3
9
  ## 1.2.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -93,6 +93,7 @@ type PortalTheme = {
93
93
  font_body: string;
94
94
  font_header: string;
95
95
  logo_url: string;
96
+ logo_dark_url: string;
96
97
  logo_width: number;
97
98
  logo_height: number;
98
99
  header_size: string;
@@ -101,6 +102,7 @@ type PortalTheme = {
101
102
  color_scheme: "toggle" | "light" | "dark";
102
103
  light: ThemeColors;
103
104
  dark: ThemeColors;
105
+ css_overrides: string | null;
104
106
  };
105
107
  type Portal = {
106
108
  color_scheme?: 'toggle' | 'light' | 'dark';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@boldvideo/bold-js",
3
3
  "license": "MIT",
4
- "version": "1.2.0",
4
+ "version": "1.3.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",