@unocss/core 0.20.1 → 0.20.2
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 +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -51,13 +51,17 @@ declare type ParsedColorValue = {
|
|
|
51
51
|
*/
|
|
52
52
|
name: string;
|
|
53
53
|
/**
|
|
54
|
-
* Color scale
|
|
54
|
+
* Color scale, preferrably 000 - 999.
|
|
55
55
|
*/
|
|
56
56
|
no: string;
|
|
57
57
|
/**
|
|
58
58
|
* {@link RGBAColorValue}
|
|
59
59
|
*/
|
|
60
60
|
rgba?: RGBAColorValue;
|
|
61
|
+
/**
|
|
62
|
+
* Parsed rgba's alpha value.
|
|
63
|
+
*/
|
|
64
|
+
alpha?: number | string;
|
|
61
65
|
};
|
|
62
66
|
declare type PresetOptions = Record<string, any>;
|
|
63
67
|
interface RuleContext<Theme extends {} = {}> {
|
package/dist/index.mjs
CHANGED