@dcloudio/uni-nvue-styler
Advanced tools
Comparing version 3.0.0-4030620241128001 to 3.0.0-4040420241231001
@@ -483,2 +483,16 @@ 'use strict'; | ||
} | ||
// rgba issues 13371 | ||
if (v.match(/^#[0-9a-fA-F]{4}$/)) { | ||
return { | ||
value: '#' + v[1] + v[1] + v[2] + v[2] + v[3] + v[3] + v[4] + v[4], | ||
reason: function reason(k, v, result) { | ||
return autofixedReason(v, result); | ||
}, | ||
}; | ||
} | ||
if (v.match(/^#[0-9a-fA-F]{8}$/)) { | ||
return { | ||
value: v, | ||
}; | ||
} | ||
if (v.match(/^#[0-9a-fA-F]{3}$/)) { | ||
@@ -485,0 +499,0 @@ return { |
{ | ||
"name": "@dcloudio/uni-nvue-styler", | ||
"version": "3.0.0-4030620241128001", | ||
"version": "3.0.0-4040420241231001", | ||
"description": "uni-nvue-styler", | ||
@@ -17,5 +17,2 @@ "main": "./dist/uni-nvue-styler.cjs.js", | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"license": "Apache-2.0", | ||
@@ -25,3 +22,6 @@ "dependencies": { | ||
"postcss": "^8.4.35" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
} | ||
} | ||
} |
Sorry, the diff of this file is too big to display
296481
11591