@aleph-alpha/config-css 0.10.4 → 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 CHANGED
@@ -1,3 +1,23 @@
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
+
11
+ ## 0.10.5 (2025-04-12)
12
+
13
+ ### 🩹 Fixes
14
+
15
+ - **deps:** update dependency @tokens-studio/sd-transforms to v1.3.0
16
+
17
+ ### ❤️ Thank You
18
+
19
+ - Renovatebot
20
+
1
21
  ## 0.10.4 (2025-04-12)
2
22
 
3
23
  ### 🩹 Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aleph-alpha/config-css",
3
3
  "license": "Apache-2.0",
4
- "version": "0.10.4",
4
+ "version": "0.10.6",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
7
7
  "prettier": "@aleph-alpha/prettier-config-frontend",
@@ -14,7 +14,7 @@
14
14
  ]
15
15
  },
16
16
  "dependencies": {
17
- "@tokens-studio/sd-transforms": "1.2.12",
17
+ "@tokens-studio/sd-transforms": "1.3.0",
18
18
  "@unocss/preset-legacy-compat": "66.1.0-beta.11",
19
19
  "token-transformer": "0.0.33",
20
20
  "unocss": "^66.0.0",
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;