@boldvideo/bold-js 1.1.0 → 1.1.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 +6 -0
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @boldvideo/bold-js
|
|
2
2
|
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7bd10c4: Fix ThemeColors type: changed `accent-foreground` and `muted-foreground` properties to use underscores (`accent_foreground`, `muted_foreground`) to match the API response format
|
|
8
|
+
|
|
3
9
|
## 1.1.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -107,9 +107,9 @@ type ThemeColors = {
|
|
|
107
107
|
accent: string;
|
|
108
108
|
background: string;
|
|
109
109
|
foreground: string;
|
|
110
|
-
|
|
110
|
+
accent_foreground: string;
|
|
111
111
|
muted: string;
|
|
112
|
-
|
|
112
|
+
muted_foreground: string;
|
|
113
113
|
border: string;
|
|
114
114
|
ring: string;
|
|
115
115
|
surface: string;
|