@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 +6 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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';
|