@unocss/preset-mini 0.22.6 → 0.24.1
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/README.md +1 -1
- package/dist/chunks/default2.cjs +121 -141
- package/dist/chunks/default2.mjs +123 -142
- package/dist/chunks/default3.cjs +54 -11
- package/dist/chunks/default3.mjs +54 -12
- package/dist/chunks/utilities.cjs +244 -22
- package/dist/chunks/utilities.mjs +241 -24
- package/dist/index.d.ts +1 -1
- package/dist/rules.cjs +0 -1
- package/dist/rules.d.ts +1 -2
- package/dist/rules.mjs +1 -1
- package/dist/{utilities-8c324eff.d.ts → utilities-0dc6e82e.d.ts} +5 -4
- package/dist/utils.cjs +5 -0
- package/dist/utils.d.ts +8 -3
- package/dist/utils.mjs +1 -1
- package/dist/variants.cjs +1 -0
- package/dist/variants.d.ts +3 -2
- package/dist/variants.mjs +1 -1
- package/package.json +5 -5
|
@@ -1,4 +1,219 @@
|
|
|
1
|
-
import { escapeSelector, createValueHandler,
|
|
1
|
+
import { escapeSelector, createValueHandler, toArray } from '@unocss/core';
|
|
2
|
+
|
|
3
|
+
const cssColorFunctions = ["hsl", "hsla", "hwb", "lab", "lch", "oklab", "oklch", "rgb", "rgba"];
|
|
4
|
+
function hex2rgba(hex = "") {
|
|
5
|
+
const color = parseHexColor(hex);
|
|
6
|
+
if (color != null) {
|
|
7
|
+
const { components, alpha } = color;
|
|
8
|
+
if (alpha === void 0)
|
|
9
|
+
return components;
|
|
10
|
+
return [...components, alpha];
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
function parseCssColor(str = "") {
|
|
14
|
+
const color = parseColor$1(str);
|
|
15
|
+
if (color == null)
|
|
16
|
+
return;
|
|
17
|
+
const { type: casedType, components, alpha } = color;
|
|
18
|
+
const type = casedType.toLowerCase();
|
|
19
|
+
if (components.length === 0)
|
|
20
|
+
return;
|
|
21
|
+
if (["rgba", "hsla"].includes(type) && alpha === void 0)
|
|
22
|
+
return;
|
|
23
|
+
if (cssColorFunctions.includes(type) && components.length !== 3)
|
|
24
|
+
return;
|
|
25
|
+
return { type, components, alpha };
|
|
26
|
+
}
|
|
27
|
+
function colorToString(color, alphaOverride) {
|
|
28
|
+
const { components } = color;
|
|
29
|
+
let { alpha, type } = color;
|
|
30
|
+
alpha = alphaOverride ?? alpha;
|
|
31
|
+
type = type.toLowerCase();
|
|
32
|
+
if (["hsla", "hsl", "rgba", "rgb"].includes(type))
|
|
33
|
+
return `${type.replace("a", "")}a(${components.join(",")}${alpha == null ? "" : `,${alpha}`})`;
|
|
34
|
+
alpha = alpha == null ? "" : ` / ${alpha}`;
|
|
35
|
+
if (cssColorFunctions.includes(type))
|
|
36
|
+
return `${type}(${components.join(" ")}${alpha})`;
|
|
37
|
+
return `color(${type} ${components.join(" ")}${alpha})`;
|
|
38
|
+
}
|
|
39
|
+
function parseColor$1(str) {
|
|
40
|
+
if (!str)
|
|
41
|
+
return;
|
|
42
|
+
let color = parseHexColor(str);
|
|
43
|
+
if (color != null)
|
|
44
|
+
return color;
|
|
45
|
+
color = cssColorKeyword(str);
|
|
46
|
+
if (color != null)
|
|
47
|
+
return color;
|
|
48
|
+
color = parseCssCommaColorFunction(str);
|
|
49
|
+
if (color != null)
|
|
50
|
+
return color;
|
|
51
|
+
color = parseCssSpaceColorFunction(str);
|
|
52
|
+
if (color != null)
|
|
53
|
+
return color;
|
|
54
|
+
color = parseCssColorFunction(str);
|
|
55
|
+
if (color != null)
|
|
56
|
+
return color;
|
|
57
|
+
}
|
|
58
|
+
function parseHexColor(str) {
|
|
59
|
+
const [, body] = str.match(/^#?([\da-f]+)$/i) || [];
|
|
60
|
+
if (!body)
|
|
61
|
+
return;
|
|
62
|
+
switch (body.length) {
|
|
63
|
+
case 3:
|
|
64
|
+
case 4:
|
|
65
|
+
const digits = Array.from(body, (s) => Number.parseInt(s, 16)).map((n) => n << 4 | n);
|
|
66
|
+
return {
|
|
67
|
+
type: "rgb",
|
|
68
|
+
components: digits.slice(0, 3),
|
|
69
|
+
alpha: body.length === 3 ? void 0 : Math.round(digits[3] / 255 * 100) / 100
|
|
70
|
+
};
|
|
71
|
+
case 6:
|
|
72
|
+
case 8:
|
|
73
|
+
const value = Number.parseInt(body, 16);
|
|
74
|
+
return {
|
|
75
|
+
type: "rgb",
|
|
76
|
+
components: body.length === 6 ? [value >> 16 & 255, value >> 8 & 255, value & 255] : [value >> 24 & 255, value >> 16 & 255, value >> 8 & 255],
|
|
77
|
+
alpha: body.length === 6 ? void 0 : Math.round((value & 255) / 255 * 100) / 100
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
function cssColorKeyword(str) {
|
|
82
|
+
const color = {
|
|
83
|
+
rebeccapurple: [102, 51, 153, 1]
|
|
84
|
+
}[str];
|
|
85
|
+
if (color != null) {
|
|
86
|
+
return {
|
|
87
|
+
type: "rgb",
|
|
88
|
+
components: color.slice(0, 3),
|
|
89
|
+
alpha: color[3]
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
function parseCssCommaColorFunction(color) {
|
|
94
|
+
const match = color.match(/^(rgb|rgba|hsl|hsla)\((.+)\)$/i);
|
|
95
|
+
if (!match)
|
|
96
|
+
return;
|
|
97
|
+
const [, type, componentString] = match;
|
|
98
|
+
const components = getComponents(componentString, ",", 5);
|
|
99
|
+
if (components && [3, 4].includes(components.length)) {
|
|
100
|
+
return {
|
|
101
|
+
type,
|
|
102
|
+
components: components.slice(0, 3),
|
|
103
|
+
alpha: components[3]
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
const cssColorFunctionsRe = new RegExp(`^(${cssColorFunctions.join("|")})\\((.+)\\)$`, "i");
|
|
108
|
+
function parseCssSpaceColorFunction(color) {
|
|
109
|
+
const match = color.match(cssColorFunctionsRe);
|
|
110
|
+
if (!match)
|
|
111
|
+
return;
|
|
112
|
+
const [, fn, componentString] = match;
|
|
113
|
+
const parsed = parseCssSpaceColorValues(`${fn} ${componentString}`);
|
|
114
|
+
if (parsed) {
|
|
115
|
+
const { alpha, components: [type, ...components] } = parsed;
|
|
116
|
+
return {
|
|
117
|
+
type,
|
|
118
|
+
components,
|
|
119
|
+
alpha
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
function parseCssColorFunction(color) {
|
|
124
|
+
const match = color.match(/^color\((.+)\)$/);
|
|
125
|
+
if (!match)
|
|
126
|
+
return;
|
|
127
|
+
const parsed = parseCssSpaceColorValues(match[1]);
|
|
128
|
+
if (parsed) {
|
|
129
|
+
const { alpha, components: [type, ...components] } = parsed;
|
|
130
|
+
return {
|
|
131
|
+
type,
|
|
132
|
+
components,
|
|
133
|
+
alpha
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
function parseCssSpaceColorValues(componentString) {
|
|
138
|
+
const components = getComponents(componentString);
|
|
139
|
+
if (!components)
|
|
140
|
+
return;
|
|
141
|
+
let totalComponents = components.length;
|
|
142
|
+
if (components[totalComponents - 2] === "/") {
|
|
143
|
+
return {
|
|
144
|
+
components: components.slice(0, totalComponents - 2),
|
|
145
|
+
alpha: components[totalComponents - 1]
|
|
146
|
+
};
|
|
147
|
+
}
|
|
148
|
+
if (components[totalComponents - 2] != null && (components[totalComponents - 2].endsWith("/") || components[totalComponents - 1].startsWith("/"))) {
|
|
149
|
+
const removed = components.splice(totalComponents - 2);
|
|
150
|
+
components.push(removed.join(" "));
|
|
151
|
+
--totalComponents;
|
|
152
|
+
}
|
|
153
|
+
const withAlpha = getComponents(components[totalComponents - 1], "/", 3);
|
|
154
|
+
if (!withAlpha)
|
|
155
|
+
return;
|
|
156
|
+
if (withAlpha.length === 1 || withAlpha[withAlpha.length - 1] === "")
|
|
157
|
+
return { components };
|
|
158
|
+
const alpha = withAlpha.pop();
|
|
159
|
+
components[totalComponents - 1] = withAlpha.join("/");
|
|
160
|
+
return {
|
|
161
|
+
components,
|
|
162
|
+
alpha
|
|
163
|
+
};
|
|
164
|
+
}
|
|
165
|
+
function getComponent(str, separator) {
|
|
166
|
+
str = str.trim();
|
|
167
|
+
if (str === "")
|
|
168
|
+
return;
|
|
169
|
+
const l = str.length;
|
|
170
|
+
let parenthesis = 0;
|
|
171
|
+
for (let i = 0; i < l; i++) {
|
|
172
|
+
switch (str[i]) {
|
|
173
|
+
case "(":
|
|
174
|
+
parenthesis++;
|
|
175
|
+
break;
|
|
176
|
+
case ")":
|
|
177
|
+
if (--parenthesis < 0)
|
|
178
|
+
return;
|
|
179
|
+
break;
|
|
180
|
+
case separator:
|
|
181
|
+
if (parenthesis === 0) {
|
|
182
|
+
const component = str.slice(0, i).trim();
|
|
183
|
+
if (component === "")
|
|
184
|
+
return;
|
|
185
|
+
return [
|
|
186
|
+
component,
|
|
187
|
+
str.slice(i + 1).trim()
|
|
188
|
+
];
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
return [
|
|
193
|
+
str,
|
|
194
|
+
""
|
|
195
|
+
];
|
|
196
|
+
}
|
|
197
|
+
function getComponents(str, separator, limit) {
|
|
198
|
+
separator = separator ?? " ";
|
|
199
|
+
if (separator.length !== 1)
|
|
200
|
+
return;
|
|
201
|
+
limit = limit ?? 10;
|
|
202
|
+
const components = [];
|
|
203
|
+
let i = 0;
|
|
204
|
+
while (str !== "") {
|
|
205
|
+
if (++i > limit)
|
|
206
|
+
return;
|
|
207
|
+
const componentPair = getComponent(str, separator);
|
|
208
|
+
if (!componentPair)
|
|
209
|
+
return;
|
|
210
|
+
const [component, rest] = componentPair;
|
|
211
|
+
components.push(component);
|
|
212
|
+
str = rest;
|
|
213
|
+
}
|
|
214
|
+
if (components.length > 0)
|
|
215
|
+
return components;
|
|
216
|
+
}
|
|
2
217
|
|
|
3
218
|
const directionMap = {
|
|
4
219
|
"l": ["-left"],
|
|
@@ -139,7 +354,7 @@ const cssProps = [
|
|
|
139
354
|
"clip-path",
|
|
140
355
|
"clip"
|
|
141
356
|
];
|
|
142
|
-
const numberWithUnitRE = /^(-?[0-9.]+)(px|pt|pc|rem|em|%|vh|vw|in|cm|mm|ex|ch|vmin|vmax)?$/i;
|
|
357
|
+
const numberWithUnitRE = /^(-?[0-9.]+)(px|pt|pc|rem|em|%|vh|vw|in|cm|mm|ex|ch|vmin|vmax|rpx)?$/i;
|
|
143
358
|
const numberRE = /^(-?[0-9.]+)$/i;
|
|
144
359
|
const unitOnlyRE = /^(px)$/i;
|
|
145
360
|
function round(n) {
|
|
@@ -304,48 +519,50 @@ const parseColor = (body, theme) => {
|
|
|
304
519
|
else if (no && colorData)
|
|
305
520
|
color = colorData[no];
|
|
306
521
|
}
|
|
307
|
-
const rgba = hex2rgba(color);
|
|
308
|
-
const alpha = opacity ? opacity[0] === "[" ? handler.bracket.percent(opacity) : parseFloat(opacity) / 100 : rgba?.[3];
|
|
309
|
-
const hasAlpha = alpha != null && !Number.isNaN(alpha);
|
|
310
|
-
if (rgba) {
|
|
311
|
-
if (hasAlpha) {
|
|
312
|
-
rgba[3] = typeof alpha === "string" && !alpha.includes("%") ? parseFloat(alpha) : alpha;
|
|
313
|
-
} else {
|
|
314
|
-
rgba.splice(3);
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
522
|
return {
|
|
318
523
|
opacity,
|
|
319
524
|
name,
|
|
320
525
|
no,
|
|
321
526
|
color,
|
|
322
|
-
|
|
323
|
-
alpha:
|
|
527
|
+
cssColor: parseCssColor(color),
|
|
528
|
+
alpha: handler.bracket.cssvar.percent(opacity ?? "")
|
|
324
529
|
};
|
|
325
530
|
};
|
|
326
531
|
const colorResolver = (property, varName) => ([, body], { theme }) => {
|
|
327
532
|
const data = parseColor(body, theme);
|
|
328
533
|
if (!data)
|
|
329
534
|
return;
|
|
330
|
-
const { alpha,
|
|
331
|
-
if (
|
|
332
|
-
return;
|
|
333
|
-
if (rgba) {
|
|
535
|
+
const { alpha, color, cssColor } = data;
|
|
536
|
+
if (cssColor) {
|
|
334
537
|
if (alpha != null) {
|
|
335
538
|
return {
|
|
336
|
-
[property]:
|
|
539
|
+
[property]: colorToString(cssColor, alpha)
|
|
337
540
|
};
|
|
338
541
|
} else {
|
|
339
542
|
return {
|
|
340
|
-
[`--un-${varName}-opacity`]:
|
|
341
|
-
[property]:
|
|
543
|
+
[`--un-${varName}-opacity`]: cssColor.alpha ?? 1,
|
|
544
|
+
[property]: colorToString(cssColor, `var(--un-${varName}-opacity)`)
|
|
342
545
|
};
|
|
343
546
|
}
|
|
344
|
-
} else {
|
|
547
|
+
} else if (color) {
|
|
345
548
|
return {
|
|
346
|
-
[property]: color.replace("%alpha", `${alpha
|
|
549
|
+
[property]: color.replace("%alpha", `${alpha ?? 1}`)
|
|
347
550
|
};
|
|
348
551
|
}
|
|
349
552
|
};
|
|
553
|
+
const colorableShadows = (shadows, colorVar) => {
|
|
554
|
+
const colored = [];
|
|
555
|
+
shadows = toArray(shadows);
|
|
556
|
+
for (let i = 0; i < shadows.length; i++) {
|
|
557
|
+
const components = getComponents(shadows[i], " ", 6);
|
|
558
|
+
if (!components || components.length < 3)
|
|
559
|
+
return shadows;
|
|
560
|
+
const color = parseCssColor(components.pop());
|
|
561
|
+
if (color == null)
|
|
562
|
+
return shadows;
|
|
563
|
+
colored.push(`${components.join(" ")} var(${colorVar}, ${colorToString(color)})`);
|
|
564
|
+
}
|
|
565
|
+
return colored;
|
|
566
|
+
};
|
|
350
567
|
|
|
351
|
-
export {
|
|
568
|
+
export { colorToString as a, cornerMap as b, colorResolver as c, directionMap as d, colorableShadows as e, directionSize as f, positionMap as g, handler as h, insetMap as i, hex2rgba as j, parseCssColor as k, getComponents as l, h as m, parseColor as p, valueHandlers as v, xyzMap as x };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { T as Theme } from './types-154878eb';
|
|
|
3
3
|
export { T as Theme, a as ThemeAnimation } from './types-154878eb';
|
|
4
4
|
export { t as theme } from './default-c46850c2';
|
|
5
5
|
export { c as colors } from './colors-db01a23e';
|
|
6
|
-
export { p as parseColor } from './utilities-
|
|
6
|
+
export { p as parseColor } from './utilities-0dc6e82e';
|
|
7
7
|
|
|
8
8
|
interface PresetMiniOptions extends PresetOptions {
|
|
9
9
|
/**
|
package/dist/rules.cjs
CHANGED
|
@@ -17,7 +17,6 @@ exports.borders = _default.borders;
|
|
|
17
17
|
exports.boxShadows = _default.boxShadows;
|
|
18
18
|
exports.boxSizing = _default.boxSizing;
|
|
19
19
|
exports.breaks = _default.breaks;
|
|
20
|
-
exports.colorableShadows = _default.colorableShadows;
|
|
21
20
|
exports.contents = _default.contents;
|
|
22
21
|
exports.cssProperty = _default.cssProperty;
|
|
23
22
|
exports.cssVariables = _default.cssVariables;
|
package/dist/rules.d.ts
CHANGED
|
@@ -56,7 +56,6 @@ declare const shadowBase: {
|
|
|
56
56
|
'--un-shadow-inset': string;
|
|
57
57
|
'--un-shadow': string;
|
|
58
58
|
};
|
|
59
|
-
declare const colorableShadows: (shadows: string | string[], colorVar: string) => string[];
|
|
60
59
|
declare const boxShadows: Rule<Theme>[];
|
|
61
60
|
|
|
62
61
|
declare const sizes: Rule<Theme>[];
|
|
@@ -97,4 +96,4 @@ declare const cssProperty: Rule[];
|
|
|
97
96
|
|
|
98
97
|
declare const textDecorations: Rule[];
|
|
99
98
|
|
|
100
|
-
export { alignments, appearance, appearances, aspectRatio, bgColors, borders, boxShadows, boxSizing, breaks,
|
|
99
|
+
export { alignments, appearance, appearances, aspectRatio, bgColors, borders, boxShadows, boxSizing, breaks, contents, cssProperty, cssVariables, cursors, displays, flex, floats, fontSmoothings, fontStyles, fonts, gaps, grids, insets, justifies, margins, opacity, orders, outline, overflows, paddings, placements, pointerEvents, positions, questionMark, resizes, rings, rules, shadowBase, sizes, svgUtilities, tabSizes, textAligns, textColors, textDecorations, textIndents, textOverflows, textShadows, textStrokes, textTransforms, transforms, transitions, userSelects, varEmpty, verticalAligns, whitespaces, willChange, zIndexes };
|
package/dist/rules.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { l as alignments, a as appearance,
|
|
1
|
+
export { l as alignments, a as appearance, H as appearances, C as aspectRatio, e as bgColors, b as borders, A as boxShadows, s as boxSizing, O as breaks, N as contents, a0 as cssProperty, $ as cssVariables, I as cursors, G as displays, f as flex, q as floats, S as fontSmoothings, R as fontStyles, W as fonts, g as gaps, h as grids, n as insets, j as justifies, E as margins, c as opacity, k as orders, o as outline, i as overflows, D as paddings, m as placements, J as pointerEvents, p as positions, u as questionMark, K as resizes, x as rings, r as rules, y as shadowBase, B as sizes, T as svgUtilities, X as tabSizes, t as textAligns, d as textColors, a1 as textDecorations, Y as textIndents, P as textOverflows, _ as textShadows, Z as textStrokes, Q as textTransforms, U as transforms, V as transitions, L as userSelects, F as varEmpty, v as verticalAligns, M as whitespaces, w as willChange, z as zIndexes } from './chunks/default2.mjs';
|
|
2
2
|
import './chunks/utilities.mjs';
|
|
3
3
|
import '@unocss/core';
|
|
@@ -36,20 +36,21 @@ declare const parseColor: (body: string, theme: Theme) => ParsedColorValue | und
|
|
|
36
36
|
*
|
|
37
37
|
* @example Resolving 'red-100' from theme:
|
|
38
38
|
* colorResolver('background-color', 'background')('', 'red-100')
|
|
39
|
-
* return { '--un-background-opacity': '1', 'background-color': '
|
|
39
|
+
* return { '--un-background-opacity': '1', 'background-color': 'rgb(254,226,226,var(--un-bg-opacity))' }
|
|
40
40
|
*
|
|
41
41
|
* @example Resolving 'red-100/20' from theme:
|
|
42
42
|
* colorResolver('background-color', 'background')('', 'red-100/20')
|
|
43
|
-
* return { 'background-color': '
|
|
43
|
+
* return { 'background-color': 'rgb(204,251,241,0.22)' }
|
|
44
44
|
*
|
|
45
45
|
* @example Resolving 'hex-124':
|
|
46
46
|
* colorResolver('color', 'text')('', 'hex-124')
|
|
47
|
-
* return { '--un-text-opacity': '1', 'color': '
|
|
47
|
+
* return { '--un-text-opacity': '1', 'color': 'rgb(17,34,68,var(--un-text-opacity))' }
|
|
48
48
|
*
|
|
49
49
|
* @param {string} property - Property for the css value to be created.
|
|
50
50
|
* @param {string} varName - Base name for the opacity variable.
|
|
51
51
|
* @return {DynamicMatcher} {@link DynamicMatcher} object.
|
|
52
52
|
*/
|
|
53
53
|
declare const colorResolver: (property: string, varName: string) => DynamicMatcher;
|
|
54
|
+
declare const colorableShadows: (shadows: string | string[], colorVar: string) => string[];
|
|
54
55
|
|
|
55
|
-
export { colorResolver as c, directionSize as d, parseColor as p };
|
|
56
|
+
export { colorableShadows as a, colorResolver as c, directionSize as d, parseColor as p };
|
package/dist/utils.cjs
CHANGED
|
@@ -9,13 +9,18 @@ require('@unocss/core');
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
exports.colorResolver = utilities.colorResolver;
|
|
12
|
+
exports.colorToString = utilities.colorToString;
|
|
13
|
+
exports.colorableShadows = utilities.colorableShadows;
|
|
12
14
|
exports.cornerMap = utilities.cornerMap;
|
|
13
15
|
exports.directionMap = utilities.directionMap;
|
|
14
16
|
exports.directionSize = utilities.directionSize;
|
|
17
|
+
exports.getComponents = utilities.getComponents;
|
|
15
18
|
exports.h = utilities.h;
|
|
16
19
|
exports.handler = utilities.handler;
|
|
20
|
+
exports.hex2rgba = utilities.hex2rgba;
|
|
17
21
|
exports.insetMap = utilities.insetMap;
|
|
18
22
|
exports.parseColor = utilities.parseColor;
|
|
23
|
+
exports.parseCssColor = utilities.parseCssColor;
|
|
19
24
|
exports.positionMap = utilities.positionMap;
|
|
20
25
|
exports.valueHandlers = utilities.valueHandlers;
|
|
21
26
|
exports.xyzMap = utilities.xyzMap;
|
package/dist/utils.d.ts
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import * as _unocss_core from '@unocss/core';
|
|
2
|
-
import { VariantHandler } from '@unocss/core';
|
|
3
|
-
export { c as colorResolver, d as directionSize, p as parseColor } from './utilities-
|
|
2
|
+
import { RGBAColorValue, CSSColorValue, VariantHandler } from '@unocss/core';
|
|
3
|
+
export { c as colorResolver, a as colorableShadows, d as directionSize, p as parseColor } from './utilities-0dc6e82e';
|
|
4
4
|
import './types-154878eb';
|
|
5
5
|
|
|
6
|
+
declare function hex2rgba(hex?: string): RGBAColorValue | undefined;
|
|
7
|
+
declare function parseCssColor(str?: string): CSSColorValue | undefined;
|
|
8
|
+
declare function colorToString(color: CSSColorValue, alphaOverride?: string | number): string;
|
|
9
|
+
declare function getComponents(str: string, separator?: string, limit?: number): string[] | undefined;
|
|
10
|
+
|
|
6
11
|
declare const directionMap: Record<string, string[]>;
|
|
7
12
|
declare const insetMap: Record<string, string[]>;
|
|
8
13
|
declare const cornerMap: Record<string, string[]>;
|
|
@@ -60,4 +65,4 @@ declare const h: _unocss_core.ValueHandler<"number" | "auto" | "numberWithUnit"
|
|
|
60
65
|
declare const variantMatcher: (name: string, selector?: ((input: string) => string | undefined) | undefined) => (input: string) => VariantHandler | undefined;
|
|
61
66
|
declare const variantParentMatcher: (name: string, parent: string) => (input: string) => VariantHandler | undefined;
|
|
62
67
|
|
|
63
|
-
export { cornerMap, directionMap, h, handler, insetMap, positionMap, handlers as valueHandlers, variantMatcher, variantParentMatcher, xyzMap };
|
|
68
|
+
export { colorToString, cornerMap, directionMap, getComponents, h, handler, hex2rgba, insetMap, parseCssColor, positionMap, handlers as valueHandlers, variantMatcher, variantParentMatcher, xyzMap };
|
package/dist/utils.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { c as colorResolver, a as cornerMap, d as directionMap,
|
|
1
|
+
export { c as colorResolver, a as colorToString, e as colorableShadows, b as cornerMap, d as directionMap, f as directionSize, l as getComponents, m as h, h as handler, j as hex2rgba, i as insetMap, p as parseColor, k as parseCssColor, g as positionMap, v as valueHandlers, x as xyzMap } from './chunks/utilities.mjs';
|
|
2
2
|
export { v as variantMatcher, a as variantParentMatcher } from './chunks/variants.mjs';
|
|
3
3
|
import '@unocss/core';
|
package/dist/variants.cjs
CHANGED
|
@@ -14,6 +14,7 @@ exports.variantColorsMediaOrClass = _default.variantColorsMediaOrClass;
|
|
|
14
14
|
exports.variantCombinators = _default.variantCombinators;
|
|
15
15
|
exports.variantImportant = _default.variantImportant;
|
|
16
16
|
exports.variantLanguageDirections = _default.variantLanguageDirections;
|
|
17
|
+
exports.variantLayer = _default.variantLayer;
|
|
17
18
|
exports.variantMotions = _default.variantMotions;
|
|
18
19
|
exports.variantNegative = _default.variantNegative;
|
|
19
20
|
exports.variantOrientations = _default.variantOrientations;
|
package/dist/variants.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { T as Theme } from './types-154878eb';
|
|
|
3
3
|
import { PresetMiniOptions } from './index';
|
|
4
4
|
import './default-c46850c2';
|
|
5
5
|
import './colors-db01a23e';
|
|
6
|
-
import './utilities-
|
|
6
|
+
import './utilities-0dc6e82e';
|
|
7
7
|
|
|
8
8
|
declare const variantBreakpoints: Variant<Theme>;
|
|
9
9
|
|
|
@@ -19,6 +19,7 @@ declare const variants: (options: PresetMiniOptions) => Variant<Theme>[];
|
|
|
19
19
|
|
|
20
20
|
declare const variantLanguageDirections: Variant[];
|
|
21
21
|
|
|
22
|
+
declare const variantLayer: Variant;
|
|
22
23
|
declare const variantImportant: Variant;
|
|
23
24
|
declare const variantNegative: Variant;
|
|
24
25
|
|
|
@@ -28,4 +29,4 @@ declare const variantPseudoClassFunctions: VariantObject;
|
|
|
28
29
|
declare const variantTaggedPseudoClasses: (options?: PresetMiniOptions) => VariantObject[];
|
|
29
30
|
declare const partClasses: VariantObject;
|
|
30
31
|
|
|
31
|
-
export { partClasses, variantBreakpoints, variantColorsMediaOrClass, variantCombinators, variantImportant, variantLanguageDirections, variantMotions, variantNegative, variantOrientations, variantPrint, variantPseudoClassFunctions, variantPseudoClasses, variantPseudoElements, variantTaggedPseudoClasses, variants };
|
|
32
|
+
export { partClasses, variantBreakpoints, variantColorsMediaOrClass, variantCombinators, variantImportant, variantLanguageDirections, variantLayer, variantMotions, variantNegative, variantOrientations, variantPrint, variantPseudoClassFunctions, variantPseudoClasses, variantPseudoElements, variantTaggedPseudoClasses, variants };
|
package/dist/variants.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { p as partClasses, a as variantBreakpoints, f as variantColorsMediaOrClass, b as variantCombinators,
|
|
1
|
+
export { p as partClasses, a as variantBreakpoints, f as variantColorsMediaOrClass, b as variantCombinators, i as variantImportant, g as variantLanguageDirections, h as variantLayer, c as variantMotions, j as variantNegative, d as variantOrientations, e as variantPrint, m as variantPseudoClassFunctions, l as variantPseudoClasses, k as variantPseudoElements, n as variantTaggedPseudoClasses, v as variants } from './chunks/default3.mjs';
|
|
2
2
|
import './chunks/variants.mjs';
|
|
3
3
|
import '@unocss/core';
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/preset-mini",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.1",
|
|
4
4
|
"description": "The minimal preset for UnoCSS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"unocss",
|
|
7
7
|
"unocss-preset"
|
|
8
8
|
],
|
|
9
|
-
"homepage": "https://github.com/
|
|
9
|
+
"homepage": "https://github.com/unocss/unocss/tree/main/packages/preset-mini#readme",
|
|
10
10
|
"bugs": {
|
|
11
|
-
"url": "https://github.com/
|
|
11
|
+
"url": "https://github.com/unocss/unocss/issues"
|
|
12
12
|
},
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "git+https://github.com/
|
|
15
|
+
"url": "git+https://github.com/unocss/unocss.git",
|
|
16
16
|
"directory": "packages/preset-mini"
|
|
17
17
|
},
|
|
18
18
|
"funding": "https://github.com/sponsors/antfu",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"*.css"
|
|
62
62
|
],
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@unocss/core": "0.
|
|
64
|
+
"@unocss/core": "0.24.1"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build": "unbuild",
|