@unocss/preset-wind 0.52.7 → 0.53.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/dist/index.cjs CHANGED
@@ -414,7 +414,7 @@ function percentWithDefault(str) {
414
414
  if (v != null)
415
415
  return v;
416
416
  v = str ? utils.handler.percent(str) : "1";
417
- if (v != null && parseFloat(v) <= 1)
417
+ if (v != null && Number.parseFloat(v) <= 1)
418
418
  return v;
419
419
  }
420
420
  function toFilter(varName, resolver) {
package/dist/index.mjs CHANGED
@@ -398,7 +398,7 @@ function percentWithDefault(str) {
398
398
  if (v != null)
399
399
  return v;
400
400
  v = str ? handler.percent(str) : "1";
401
- if (v != null && parseFloat(v) <= 1)
401
+ if (v != null && Number.parseFloat(v) <= 1)
402
402
  return v;
403
403
  }
404
404
  function toFilter(varName, resolver) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/preset-wind",
3
- "version": "0.52.7",
3
+ "version": "0.53.0",
4
4
  "description": "Tailwind / Windi CSS compact preset for UnoCSS",
5
5
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
6
6
  "license": "MIT",
@@ -35,8 +35,8 @@
35
35
  "*.css"
36
36
  ],
37
37
  "dependencies": {
38
- "@unocss/core": "0.52.7",
39
- "@unocss/preset-mini": "0.52.7"
38
+ "@unocss/core": "0.53.0",
39
+ "@unocss/preset-mini": "0.53.0"
40
40
  },
41
41
  "scripts": {
42
42
  "build": "unbuild",