@aleph-alpha/config-css 0.10.5 → 0.10.6
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 +10 -0
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.10.6 (2025-04-15)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **deps:** update dependency eslint-plugin-vue to v10 fix: add double type assertion and add support for browser globals in eslint config
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Renovatebot
|
|
10
|
+
|
|
1
11
|
## 0.10.5 (2025-04-12)
|
|
2
12
|
|
|
3
13
|
### 🩹 Fixes
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -39,13 +39,13 @@ export const createPresets = (): Preset<Theme>[] => {
|
|
|
39
39
|
theme: {
|
|
40
40
|
dark: { colors: darkModeSet },
|
|
41
41
|
},
|
|
42
|
-
})
|
|
42
|
+
}) as unknown as Preset<Theme>
|
|
43
43
|
);
|
|
44
44
|
|
|
45
45
|
presets.push(
|
|
46
46
|
presetLegacyCompat({
|
|
47
47
|
legacyColorSpace: true,
|
|
48
|
-
})
|
|
48
|
+
}) as unknown as Preset<Theme>
|
|
49
49
|
);
|
|
50
50
|
|
|
51
51
|
return presets;
|