@unocss/preset-wind 0.30.3 → 0.30.4

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/dist/index.cjs CHANGED
@@ -15,7 +15,7 @@ const animations = [
15
15
  if (kf)
16
16
  return `@keyframes ${name}${kf}
17
17
  ${constructCSS({ animation: `${name}` })}`;
18
- }],
18
+ }, { autocomplete: ["animate-keyframes-$animation.keyframes", "keyframes-$animation.keyframes"] }],
19
19
  [/^animate-(.+)$/, ([, name], { theme, constructCSS }) => {
20
20
  const kf = theme.animation?.keyframes?.[name];
21
21
  if (kf) {
package/dist/index.mjs CHANGED
@@ -11,7 +11,7 @@ const animations = [
11
11
  if (kf)
12
12
  return `@keyframes ${name}${kf}
13
13
  ${constructCSS({ animation: `${name}` })}`;
14
- }],
14
+ }, { autocomplete: ["animate-keyframes-$animation.keyframes", "keyframes-$animation.keyframes"] }],
15
15
  [/^animate-(.+)$/, ([, name], { theme, constructCSS }) => {
16
16
  const kf = theme.animation?.keyframes?.[name];
17
17
  if (kf) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/preset-wind",
3
- "version": "0.30.3",
3
+ "version": "0.30.4",
4
4
  "description": "Tailwind / Windi CSS compact preset for UnoCSS",
5
5
  "keywords": [
6
6
  "unocss",
@@ -35,8 +35,8 @@
35
35
  ],
36
36
  "sideEffects": false,
37
37
  "dependencies": {
38
- "@unocss/core": "0.30.3",
39
- "@unocss/preset-mini": "0.30.3"
38
+ "@unocss/core": "0.30.4",
39
+ "@unocss/preset-mini": "0.30.4"
40
40
  },
41
41
  "scripts": {
42
42
  "build": "unbuild",