@warp-ds/uno
Advanced tools
Comparing version 1.4.0-next.6 to 1.4.0-next.7
{ | ||
"name": "@warp-ds/uno", | ||
"repository": "git@github.com:warp-ds/drive.git", | ||
"version": "1.4.0-next.6", | ||
"version": "1.4.0-next.7", | ||
"type": "module", | ||
@@ -57,3 +57,3 @@ "exports": { | ||
"vite": "^4.2.3", | ||
"vitest": "^0.34.0" | ||
"vitest": "^1.1.1" | ||
}, | ||
@@ -60,0 +60,0 @@ "eslintConfig": { |
@@ -1,2 +0,2 @@ | ||
import { positionMap, globalKeywords, makeGlobalStaticRules } from '#utils'; | ||
import { positionMap, globalKeywords, makeGlobalStaticRules, resolveArbitraryValues } from '#utils'; | ||
@@ -19,2 +19,5 @@ export const backgrounds = [ | ||
// arbitrary position | ||
[/^bg-\[((?!var\(|--|url\().+)]$/, ([, value]) => ({ 'background-position': resolveArbitraryValues(value) })], | ||
// clip | ||
@@ -21,0 +24,0 @@ ['bg-clip-border', { '-webkit-background-clip': 'border-box', 'background-clip': 'border-box' }], |
import { escapeSelector } from '@unocss/core'; | ||
import { numberRE, numberWithUnitRE, unitOnlyRE, globalKeywords } from '#utils'; | ||
import { globalKeywords } from '../mappings.js'; | ||
import { numberRE, numberWithUnitRE, unitOnlyRE } from './regex.js'; | ||
@@ -4,0 +5,0 @@ // Not all, but covers most high frequency attributes |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
209247
5565