@unocss/preset-mini 65.4.3 → 66.0.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/colors.mjs +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.mjs +7 -7
- package/dist/rules.mjs +3 -3
- package/dist/shared/{preset-mini.D61WkPlu.mjs → preset-mini.Bj22ZzV1.mjs} +5 -5
- package/dist/shared/{preset-mini.ClcVt9ko.mjs → preset-mini.DOOo96_D.mjs} +11 -11
- package/dist/shared/{preset-mini.CAZVP0vr.mjs → preset-mini.HR8qseZe.mjs} +28 -8
- package/dist/shared/{preset-mini.CYO0D_sP.mjs → preset-mini.Q9MCfKj3.mjs} +3 -3
- package/dist/shared/{preset-mini.BQPXk9o5.mjs → preset-mini.TU9YjwzX.mjs} +5 -5
- package/dist/theme.d.mts +65 -1
- package/dist/theme.d.ts +65 -1
- package/dist/theme.mjs +3 -3
- package/dist/utils.mjs +1 -1
- package/dist/variants.mjs +2 -2
- package/package.json +5 -5
package/dist/colors.mjs
CHANGED
|
@@ -348,7 +348,7 @@ const colors = {
|
|
|
348
348
|
}
|
|
349
349
|
};
|
|
350
350
|
Object.values(colors).forEach((color) => {
|
|
351
|
-
if (typeof color !== "string" && color !==
|
|
351
|
+
if (typeof color !== "string" && color !== void 0) {
|
|
352
352
|
color.DEFAULT = color.DEFAULT || color[400];
|
|
353
353
|
Object.keys(color).forEach((key) => {
|
|
354
354
|
const short = +key / 100;
|
package/dist/index.d.mts
CHANGED
|
@@ -11,17 +11,17 @@ declare function preflights(options: PresetMiniOptions): Preflight<Theme>[] | un
|
|
|
11
11
|
|
|
12
12
|
interface DarkModeSelectors {
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Selectors for light variant.
|
|
15
15
|
*
|
|
16
16
|
* @default '.light'
|
|
17
17
|
*/
|
|
18
|
-
light?: string;
|
|
18
|
+
light?: string | string[];
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Selectors for dark variant.
|
|
21
21
|
*
|
|
22
22
|
* @default '.dark'
|
|
23
23
|
*/
|
|
24
|
-
dark?: string;
|
|
24
|
+
dark?: string | string[];
|
|
25
25
|
}
|
|
26
26
|
interface PresetMiniOptions extends PresetOptions {
|
|
27
27
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -11,17 +11,17 @@ declare function preflights(options: PresetMiniOptions): Preflight<Theme>[] | un
|
|
|
11
11
|
|
|
12
12
|
interface DarkModeSelectors {
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Selectors for light variant.
|
|
15
15
|
*
|
|
16
16
|
* @default '.light'
|
|
17
17
|
*/
|
|
18
|
-
light?: string;
|
|
18
|
+
light?: string | string[];
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Selectors for dark variant.
|
|
21
21
|
*
|
|
22
22
|
* @default '.dark'
|
|
23
23
|
*/
|
|
24
|
-
dark?: string;
|
|
24
|
+
dark?: string | string[];
|
|
25
25
|
}
|
|
26
26
|
interface PresetMiniOptions extends PresetOptions {
|
|
27
27
|
/**
|
package/dist/index.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { entriesToCss, toArray, definePreset } from '@unocss/core';
|
|
2
2
|
import { extractorArbitraryVariants } from '@unocss/extractor-arbitrary-variants';
|
|
3
|
-
import { g as globalKeywords } from './shared/preset-mini.
|
|
4
|
-
export { k as parseColor } from './shared/preset-mini.
|
|
5
|
-
import {
|
|
6
|
-
import { r as rules } from './shared/preset-mini.
|
|
7
|
-
import {
|
|
3
|
+
import { g as globalKeywords } from './shared/preset-mini.Q9MCfKj3.mjs';
|
|
4
|
+
export { k as parseColor } from './shared/preset-mini.Q9MCfKj3.mjs';
|
|
5
|
+
import { j as variants } from './shared/preset-mini.Bj22ZzV1.mjs';
|
|
6
|
+
import { r as rules } from './shared/preset-mini.DOOo96_D.mjs';
|
|
7
|
+
import { t as theme } from './shared/preset-mini.HR8qseZe.mjs';
|
|
8
8
|
export { colors } from './colors.mjs';
|
|
9
9
|
import '@unocss/rule-utils';
|
|
10
|
-
import './shared/preset-mini.
|
|
10
|
+
import './shared/preset-mini.TU9YjwzX.mjs';
|
|
11
11
|
|
|
12
12
|
function preflights(options) {
|
|
13
13
|
if (options.preflight) {
|
|
@@ -61,7 +61,7 @@ const presetMini = definePreset((options = {}) => {
|
|
|
61
61
|
prefix: options.prefix,
|
|
62
62
|
postprocess: VarPrefixPostprocessor(options.variablePrefix),
|
|
63
63
|
preflights: preflights(options),
|
|
64
|
-
extractorDefault: options.arbitraryVariants === false ?
|
|
64
|
+
extractorDefault: options.arbitraryVariants === false ? void 0 : extractorArbitraryVariants(),
|
|
65
65
|
autocomplete: {
|
|
66
66
|
shorthands
|
|
67
67
|
}
|
package/dist/rules.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { s as alignments, a as appearance, E as aspectRatio, e as bgColors, b as borderStyles, c as borders, B as boxSizing, f as colorScheme, g as containerParent, P as cssProperty, O as cssVariables, j as flex, x as flexGridJustifiesAlignments, z as floats, J as fonts, k as gaps, l as grids, h as handlerBorderStyle, y as insets, n as justifies, G as margins, d as opacity, q as orders, o as outline, m as overflows, F as paddings, u as placements, p as positions, C as questionMark, r as rules, D as sizes, H as svgUtilities, K as tabSizes, t as textAligns, i as textDecorations, L as textIndents, N as textShadows, M as textStrokes, I as transitions, v as verticalAligns, w as willChange, A as zIndexes } from './shared/preset-mini.
|
|
2
|
-
export { e as appearances, c as boxShadows, b as boxShadowsBase, k as breaks, g as contains, i as contentVisibility, j as contents, f as cursors, d as displays, o as fontSmoothings, n as fontStyles, p as pointerEvents, h as resizes, r as ringBase, a as rings, l as textOverflows, m as textTransforms, t as textWraps, q as transformBase, s as transforms, u as userSelects, v as varEmpty, w as whitespaces } from './shared/preset-mini.
|
|
3
|
-
import './shared/preset-mini.
|
|
1
|
+
export { s as alignments, a as appearance, E as aspectRatio, e as bgColors, b as borderStyles, c as borders, B as boxSizing, f as colorScheme, g as containerParent, P as cssProperty, O as cssVariables, j as flex, x as flexGridJustifiesAlignments, z as floats, J as fonts, k as gaps, l as grids, h as handlerBorderStyle, y as insets, n as justifies, G as margins, d as opacity, q as orders, o as outline, m as overflows, F as paddings, u as placements, p as positions, C as questionMark, r as rules, D as sizes, H as svgUtilities, K as tabSizes, t as textAligns, i as textDecorations, L as textIndents, N as textShadows, M as textStrokes, I as transitions, v as verticalAligns, w as willChange, A as zIndexes } from './shared/preset-mini.DOOo96_D.mjs';
|
|
2
|
+
export { e as appearances, c as boxShadows, b as boxShadowsBase, k as breaks, g as contains, i as contentVisibility, j as contents, f as cursors, d as displays, o as fontSmoothings, n as fontStyles, p as pointerEvents, h as resizes, r as ringBase, a as rings, l as textOverflows, m as textTransforms, t as textWraps, q as transformBase, s as transforms, u as userSelects, v as varEmpty, w as whitespaces } from './shared/preset-mini.TU9YjwzX.mjs';
|
|
3
|
+
import './shared/preset-mini.Q9MCfKj3.mjs';
|
|
4
4
|
import '@unocss/core';
|
|
5
5
|
import '@unocss/rule-utils';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { variantGetParameter, variantMatcher, variantGetBracket, variantParentMatcher, getBracket, hasThemeFn, transformThemeFn, getStringComponent } from '@unocss/rule-utils';
|
|
2
|
-
import { a as h, r as resolveBreakpoints, C as CONTROL_MINI_NO_NEGATIVE, e as cssMathFnRE, f as cssVarFnRE } from './preset-mini.
|
|
3
|
-
import { escapeRegExp, escapeSelector } from '@unocss/core';
|
|
2
|
+
import { a as h, r as resolveBreakpoints, C as CONTROL_MINI_NO_NEGATIVE, e as cssMathFnRE, f as cssVarFnRE } from './preset-mini.Q9MCfKj3.mjs';
|
|
3
|
+
import { toArray, escapeRegExp, escapeSelector } from '@unocss/core';
|
|
4
4
|
|
|
5
5
|
const variantAria = {
|
|
6
6
|
name: "aria",
|
|
@@ -198,8 +198,8 @@ function variantColorsMediaOrClass(options = {}) {
|
|
|
198
198
|
if (options?.dark === "class" || typeof options.dark === "object") {
|
|
199
199
|
const { dark = ".dark", light = ".light" } = typeof options.dark === "string" ? {} : options.dark;
|
|
200
200
|
return [
|
|
201
|
-
variantMatcher("dark", (input) => ({ prefix: `${
|
|
202
|
-
variantMatcher("light", (input) => ({ prefix: `${
|
|
201
|
+
variantMatcher("dark", toArray(dark).map((dark2) => (input) => ({ prefix: `${dark2} $$ ${input.prefix}` }))),
|
|
202
|
+
variantMatcher("light", toArray(light).map((light2) => (input) => ({ prefix: `${light2} $$ ${input.prefix}` })))
|
|
203
203
|
];
|
|
204
204
|
}
|
|
205
205
|
return [
|
|
@@ -680,7 +680,7 @@ function variantPseudoClassesAndElements() {
|
|
|
680
680
|
if (index === -1)
|
|
681
681
|
index = PseudoClassesColonKeys.indexOf(match[1]);
|
|
682
682
|
if (index === -1)
|
|
683
|
-
index =
|
|
683
|
+
index = void 0;
|
|
684
684
|
return {
|
|
685
685
|
matcher: input.slice(match[0].length),
|
|
686
686
|
handle: (input2, next) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { g as globalKeywords, a as h, t as isCSSMathFn, l as colorResolver, d as directionMap, n as hasParseableColor, c as cornerMap, k as parseColor, u as isSize, q as makeGlobalStaticRules, i as insetMap, r as resolveBreakpoints, j as directionSize,
|
|
1
|
+
import { g as globalKeywords, a as h, t as isCSSMathFn, l as colorResolver, d as directionMap, n as hasParseableColor, c as cornerMap, k as parseColor, u as isSize, q as makeGlobalStaticRules, i as insetMap, r as resolveBreakpoints, j as directionSize, s as splitShorthand, m as colorableShadows } from './preset-mini.Q9MCfKj3.mjs';
|
|
2
2
|
import { colorToString, colorOpacityToString } from '@unocss/rule-utils';
|
|
3
|
-
import { g as contains, p as pointerEvents, e as appearances, d as displays, s as transforms, f as cursors, u as userSelects, h as resizes, l as textOverflows, w as whitespaces, k as breaks, t as textWraps, m as textTransforms, n as fontStyles, o as fontSmoothings, c as boxShadows, a as rings, i as contentVisibility, j as contents } from './preset-mini.
|
|
3
|
+
import { g as contains, p as pointerEvents, e as appearances, d as displays, s as transforms, f as cursors, u as userSelects, h as resizes, l as textOverflows, w as whitespaces, k as breaks, t as textWraps, m as textTransforms, n as fontStyles, o as fontSmoothings, c as boxShadows, a as rings, i as contentVisibility, j as contents } from './preset-mini.TU9YjwzX.mjs';
|
|
4
4
|
import { toArray } from '@unocss/core';
|
|
5
5
|
|
|
6
6
|
const verticalAlignAlias = {
|
|
@@ -217,7 +217,7 @@ const colorScheme = [
|
|
|
217
217
|
];
|
|
218
218
|
|
|
219
219
|
const containerParent = [
|
|
220
|
-
[/^@container(?:\/(\w+))?(?:-(normal))?$/, ([, l, v]) => {
|
|
220
|
+
[/^@container(?:\/(\w+))?(?:-(normal|inline-size|size))?$/, ([, l, v]) => {
|
|
221
221
|
return {
|
|
222
222
|
"container-type": v ?? "inline-size",
|
|
223
223
|
"container-name": l
|
|
@@ -379,8 +379,8 @@ const overflowValues = [
|
|
|
379
379
|
...globalKeywords
|
|
380
380
|
];
|
|
381
381
|
const overflows = [
|
|
382
|
-
[/^(?:overflow|of)-(.+)$/, ([, v]) => overflowValues.includes(v) ? { overflow: v } :
|
|
383
|
-
[/^(?:overflow|of)-([xy])-(.+)$/, ([, d, v]) => overflowValues.includes(v) ? { [`overflow-${d}`]: v } :
|
|
382
|
+
[/^(?:overflow|of)-(.+)$/, ([, v]) => overflowValues.includes(v) ? { overflow: v } : void 0, { autocomplete: [`(overflow|of)-(${overflowValues.join("|")})`, `(overflow|of)-(x|y)-(${overflowValues.join("|")})`] }],
|
|
383
|
+
[/^(?:overflow|of)-([xy])-(.+)$/, ([, d, v]) => overflowValues.includes(v) ? { [`overflow-${d}`]: v } : void 0]
|
|
384
384
|
];
|
|
385
385
|
|
|
386
386
|
const positions = [
|
|
@@ -391,7 +391,7 @@ const positions = [
|
|
|
391
391
|
"<position>"
|
|
392
392
|
]
|
|
393
393
|
}],
|
|
394
|
-
[/^(?:position-|pos-)([-\w]+)$/, ([, v]) => globalKeywords.includes(v) ? { position: v } :
|
|
394
|
+
[/^(?:position-|pos-)([-\w]+)$/, ([, v]) => globalKeywords.includes(v) ? { position: v } : void 0],
|
|
395
395
|
[/^(?:position-|pos-)?(static)$/, ([, v]) => ({ position: v })]
|
|
396
396
|
];
|
|
397
397
|
const justifies = [
|
|
@@ -554,8 +554,8 @@ function getPropName(minmax, hw) {
|
|
|
554
554
|
return `${minmax || ""}${sizeMapping[hw]}`;
|
|
555
555
|
}
|
|
556
556
|
function getSizeValue(minmax, hw, theme, prop) {
|
|
557
|
-
const
|
|
558
|
-
const v = theme[
|
|
557
|
+
const key = getPropName(minmax, hw).replace(/-(\w)/g, (_, p) => p.toUpperCase());
|
|
558
|
+
const v = theme[key]?.[prop];
|
|
559
559
|
if (v != null)
|
|
560
560
|
return v;
|
|
561
561
|
switch (prop) {
|
|
@@ -759,7 +759,7 @@ const fonts = [
|
|
|
759
759
|
// colors
|
|
760
760
|
[/^(?:color|c)-(.+)$/, colorResolver("color", "text", "textColor"), { autocomplete: "(color|c)-$colors" }],
|
|
761
761
|
// style
|
|
762
|
-
[/^(?:text|color|c)-(.+)$/, ([, v]) => globalKeywords.includes(v) ? { color: v } :
|
|
762
|
+
[/^(?:text|color|c)-(.+)$/, ([, v]) => globalKeywords.includes(v) ? { color: v } : void 0, { autocomplete: `(text|color|c)-(${globalKeywords.join("|")})` }],
|
|
763
763
|
// opacity
|
|
764
764
|
[/^(?:text|color|c)-op(?:acity)?-?(.+)$/, ([, opacity]) => ({ "--un-text-opacity": h.bracket.percent.cssvar(opacity) }), { autocomplete: "(text|color|c)-(op|opacity)-<percent>" }],
|
|
765
765
|
// weights
|
|
@@ -876,7 +876,7 @@ function handleText([, s = "base"], { theme }) {
|
|
|
876
876
|
return;
|
|
877
877
|
const [size, leading] = split;
|
|
878
878
|
const sizePairs = toArray(theme.fontSize?.[size]);
|
|
879
|
-
const lineHeight = leading ? handleThemeByKey(leading, theme, "lineHeight") :
|
|
879
|
+
const lineHeight = leading ? handleThemeByKey(leading, theme, "lineHeight") : void 0;
|
|
880
880
|
if (sizePairs?.[0]) {
|
|
881
881
|
const [fontSize2, height, letterSpacing] = sizePairs;
|
|
882
882
|
if (typeof height === "object") {
|
|
@@ -888,7 +888,7 @@ function handleText([, s = "base"], { theme }) {
|
|
|
888
888
|
return {
|
|
889
889
|
"font-size": fontSize2,
|
|
890
890
|
"line-height": lineHeight ?? height ?? "1",
|
|
891
|
-
"letter-spacing": letterSpacing ? handleThemeByKey(letterSpacing, theme, "letterSpacing") :
|
|
891
|
+
"letter-spacing": letterSpacing ? handleThemeByKey(letterSpacing, theme, "letterSpacing") : void 0
|
|
892
892
|
};
|
|
893
893
|
}
|
|
894
894
|
const fontSize = h.bracketOfLength.rem(size);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { colors } from '../colors.mjs';
|
|
2
|
-
import {
|
|
2
|
+
import { r as ringBase, b as boxShadowsBase, q as transformBase } from './preset-mini.TU9YjwzX.mjs';
|
|
3
3
|
|
|
4
4
|
const blur = {
|
|
5
5
|
"DEFAULT": "8px",
|
|
@@ -229,6 +229,16 @@ const maxWidth = {
|
|
|
229
229
|
...baseSize,
|
|
230
230
|
screen: "100vw"
|
|
231
231
|
};
|
|
232
|
+
const blockSize = {
|
|
233
|
+
auto: "auto",
|
|
234
|
+
...baseSize,
|
|
235
|
+
screen: "100vb"
|
|
236
|
+
};
|
|
237
|
+
const inlineSize = {
|
|
238
|
+
auto: "auto",
|
|
239
|
+
...baseSize,
|
|
240
|
+
screen: "100vi"
|
|
241
|
+
};
|
|
232
242
|
const height = {
|
|
233
243
|
auto: "auto",
|
|
234
244
|
...baseSize,
|
|
@@ -239,6 +249,16 @@ const maxHeight = {
|
|
|
239
249
|
...baseSize,
|
|
240
250
|
screen: "100vh"
|
|
241
251
|
};
|
|
252
|
+
const maxBlockSize = {
|
|
253
|
+
none: "none",
|
|
254
|
+
...baseSize,
|
|
255
|
+
screen: "100vb"
|
|
256
|
+
};
|
|
257
|
+
const maxInlineSize = {
|
|
258
|
+
none: "none",
|
|
259
|
+
...baseSize,
|
|
260
|
+
screen: "100vi"
|
|
261
|
+
};
|
|
242
262
|
const containers = { ...baseSize };
|
|
243
263
|
|
|
244
264
|
const easing = {
|
|
@@ -267,12 +287,12 @@ const theme = {
|
|
|
267
287
|
maxHeight,
|
|
268
288
|
minWidth: maxWidth,
|
|
269
289
|
minHeight: maxHeight,
|
|
270
|
-
inlineSize
|
|
271
|
-
blockSize
|
|
272
|
-
maxInlineSize
|
|
273
|
-
maxBlockSize
|
|
274
|
-
minInlineSize:
|
|
275
|
-
minBlockSize:
|
|
290
|
+
inlineSize,
|
|
291
|
+
blockSize,
|
|
292
|
+
maxInlineSize,
|
|
293
|
+
maxBlockSize,
|
|
294
|
+
minInlineSize: maxInlineSize,
|
|
295
|
+
minBlockSize: maxBlockSize,
|
|
276
296
|
colors,
|
|
277
297
|
fontFamily,
|
|
278
298
|
fontSize,
|
|
@@ -301,4 +321,4 @@ const theme = {
|
|
|
301
321
|
media
|
|
302
322
|
};
|
|
303
323
|
|
|
304
|
-
export {
|
|
324
|
+
export { blockSize as A, inlineSize as B, height as C, maxHeight as D, maxBlockSize as E, maxInlineSize as F, containers as G, fontSize as a, blur as b, textIndent as c, dropShadow as d, textStrokeWidth as e, fontFamily as f, textShadow as g, letterSpacing as h, fontWeight as i, breakpoints as j, lineWidth as k, lineHeight as l, duration as m, borderRadius as n, boxShadow as o, media as p, preflightBase as q, ringWidth as r, spacing as s, theme as t, baseSize as u, verticalBreakpoints as v, wordSpacing as w, width as x, maxWidth as y, zIndex as z };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { escapeSelector, toArray } from '@unocss/core';
|
|
2
|
-
import { createValueHandler,
|
|
2
|
+
import { createValueHandler, colorToString, colorOpacityToString, parseCssColor, getStringComponent, getStringComponents } from '@unocss/rule-utils';
|
|
3
3
|
|
|
4
4
|
const directionMap = {
|
|
5
5
|
"l": ["-left"],
|
|
@@ -410,7 +410,7 @@ function getThemeColorForKey(theme, colors, key = "colors") {
|
|
|
410
410
|
continue;
|
|
411
411
|
}
|
|
412
412
|
}
|
|
413
|
-
return
|
|
413
|
+
return void 0;
|
|
414
414
|
}
|
|
415
415
|
return obj;
|
|
416
416
|
}
|
|
@@ -549,7 +549,7 @@ const resolvedBreakpoints = /* @__PURE__ */ new WeakMap();
|
|
|
549
549
|
function resolveBreakpoints({ theme, generator }, key = "breakpoints") {
|
|
550
550
|
const breakpoints = generator?.userConfig?.theme?.[key] || theme[key];
|
|
551
551
|
if (!breakpoints)
|
|
552
|
-
return
|
|
552
|
+
return void 0;
|
|
553
553
|
if (resolvedBreakpoints.has(theme))
|
|
554
554
|
return resolvedBreakpoints.get(theme);
|
|
555
555
|
const resolved = Object.entries(breakpoints).sort((a, b) => Number.parseInt(a[1].replace(reLetters, "")) - Number.parseInt(b[1].replace(reLetters, ""))).map(([point, size]) => ({ point, size }));
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { q as makeGlobalStaticRules, a as h, g as globalKeywords, l as colorResolver, t as isCSSMathFn, n as hasParseableColor, m as colorableShadows, p as positionMap, w as transformXYZ } from './preset-mini.Q9MCfKj3.mjs';
|
|
2
2
|
|
|
3
3
|
const cursorValues = ["auto", "default", "none", "context-menu", "help", "pointer", "progress", "wait", "cell", "crosshair", "text", "vertical-text", "alias", "copy", "move", "no-drop", "not-allowed", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out"];
|
|
4
4
|
const containValues = ["none", "strict", "content", "size", "inline-size", "layout", "style", "paint"];
|
|
@@ -31,7 +31,7 @@ const contains = [
|
|
|
31
31
|
contain: h.bracket(d).split(" ").map((e) => h.cssvar.fraction(e) ?? e).join(" ")
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
|
-
return containValues.includes(d) ? { contain: d } :
|
|
34
|
+
return containValues.includes(d) ? { contain: d } : void 0;
|
|
35
35
|
}]
|
|
36
36
|
];
|
|
37
37
|
const pointerEvents = [
|
|
@@ -56,7 +56,7 @@ const userSelects = [
|
|
|
56
56
|
const whitespaces = [
|
|
57
57
|
[
|
|
58
58
|
/^(?:whitespace-|ws-)([-\w]+)$/,
|
|
59
|
-
([, v]) => ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces", ...globalKeywords].includes(v) ? { "white-space": v } :
|
|
59
|
+
([, v]) => ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces", ...globalKeywords].includes(v) ? { "white-space": v } : void 0,
|
|
60
60
|
{ autocomplete: "(whitespace|ws)-(normal|nowrap|pre|pre-line|pre-wrap|break-spaces)" }
|
|
61
61
|
]
|
|
62
62
|
];
|
|
@@ -177,7 +177,7 @@ const boxShadows = [
|
|
|
177
177
|
const [, d] = match;
|
|
178
178
|
const { theme } = context;
|
|
179
179
|
const v = theme.boxShadow?.[d || "DEFAULT"];
|
|
180
|
-
const c = d ? h.bracket.cssvar(d) :
|
|
180
|
+
const c = d ? h.bracket.cssvar(d) : void 0;
|
|
181
181
|
if ((v != null || c != null) && !hasParseableColor(c, theme, "shadowColor")) {
|
|
182
182
|
return {
|
|
183
183
|
"--un-shadow": colorableShadows(v || c, "--un-shadow-color").join(","),
|
|
@@ -271,7 +271,7 @@ const transforms = [
|
|
|
271
271
|
}],
|
|
272
272
|
// skip 1 & 2 letters shortcut
|
|
273
273
|
[/^(?:transform-)?perspect(?:ive)?-origin-(.+)$/, ([, s]) => {
|
|
274
|
-
const v = h.bracket.cssvar(s) ?? (s.length >= 3 ? positionMap[s] :
|
|
274
|
+
const v = h.bracket.cssvar(s) ?? (s.length >= 3 ? positionMap[s] : void 0);
|
|
275
275
|
if (v != null) {
|
|
276
276
|
return {
|
|
277
277
|
"-webkit-perspective-origin": v,
|
package/dist/theme.d.mts
CHANGED
|
@@ -224,6 +224,38 @@ declare const maxWidth: {
|
|
|
224
224
|
prose: string;
|
|
225
225
|
none: string;
|
|
226
226
|
};
|
|
227
|
+
declare const blockSize: {
|
|
228
|
+
screen: string;
|
|
229
|
+
xs: string;
|
|
230
|
+
sm: string;
|
|
231
|
+
md: string;
|
|
232
|
+
lg: string;
|
|
233
|
+
xl: string;
|
|
234
|
+
'2xl': string;
|
|
235
|
+
'3xl': string;
|
|
236
|
+
'4xl': string;
|
|
237
|
+
'5xl': string;
|
|
238
|
+
'6xl': string;
|
|
239
|
+
'7xl': string;
|
|
240
|
+
prose: string;
|
|
241
|
+
auto: string;
|
|
242
|
+
};
|
|
243
|
+
declare const inlineSize: {
|
|
244
|
+
screen: string;
|
|
245
|
+
xs: string;
|
|
246
|
+
sm: string;
|
|
247
|
+
md: string;
|
|
248
|
+
lg: string;
|
|
249
|
+
xl: string;
|
|
250
|
+
'2xl': string;
|
|
251
|
+
'3xl': string;
|
|
252
|
+
'4xl': string;
|
|
253
|
+
'5xl': string;
|
|
254
|
+
'6xl': string;
|
|
255
|
+
'7xl': string;
|
|
256
|
+
prose: string;
|
|
257
|
+
auto: string;
|
|
258
|
+
};
|
|
227
259
|
declare const height: {
|
|
228
260
|
screen: string;
|
|
229
261
|
xs: string;
|
|
@@ -256,6 +288,38 @@ declare const maxHeight: {
|
|
|
256
288
|
prose: string;
|
|
257
289
|
none: string;
|
|
258
290
|
};
|
|
291
|
+
declare const maxBlockSize: {
|
|
292
|
+
screen: string;
|
|
293
|
+
xs: string;
|
|
294
|
+
sm: string;
|
|
295
|
+
md: string;
|
|
296
|
+
lg: string;
|
|
297
|
+
xl: string;
|
|
298
|
+
'2xl': string;
|
|
299
|
+
'3xl': string;
|
|
300
|
+
'4xl': string;
|
|
301
|
+
'5xl': string;
|
|
302
|
+
'6xl': string;
|
|
303
|
+
'7xl': string;
|
|
304
|
+
prose: string;
|
|
305
|
+
none: string;
|
|
306
|
+
};
|
|
307
|
+
declare const maxInlineSize: {
|
|
308
|
+
screen: string;
|
|
309
|
+
xs: string;
|
|
310
|
+
sm: string;
|
|
311
|
+
md: string;
|
|
312
|
+
lg: string;
|
|
313
|
+
xl: string;
|
|
314
|
+
'2xl': string;
|
|
315
|
+
'3xl': string;
|
|
316
|
+
'4xl': string;
|
|
317
|
+
'5xl': string;
|
|
318
|
+
'6xl': string;
|
|
319
|
+
'7xl': string;
|
|
320
|
+
prose: string;
|
|
321
|
+
none: string;
|
|
322
|
+
};
|
|
259
323
|
declare const containers: {
|
|
260
324
|
xs: string;
|
|
261
325
|
sm: string;
|
|
@@ -271,4 +335,4 @@ declare const containers: {
|
|
|
271
335
|
prose: string;
|
|
272
336
|
};
|
|
273
337
|
|
|
274
|
-
export { Theme, baseSize, blur, borderRadius, boxShadow, breakpoints, containers, dropShadow, duration, fontFamily, fontSize, fontWeight, height, letterSpacing, lineHeight, lineWidth, maxHeight, maxWidth, media, preflightBase, ringWidth, spacing, textIndent, textShadow, textStrokeWidth, verticalBreakpoints, width, wordSpacing, zIndex };
|
|
338
|
+
export { Theme, baseSize, blockSize, blur, borderRadius, boxShadow, breakpoints, containers, dropShadow, duration, fontFamily, fontSize, fontWeight, height, inlineSize, letterSpacing, lineHeight, lineWidth, maxBlockSize, maxHeight, maxInlineSize, maxWidth, media, preflightBase, ringWidth, spacing, textIndent, textShadow, textStrokeWidth, verticalBreakpoints, width, wordSpacing, zIndex };
|
package/dist/theme.d.ts
CHANGED
|
@@ -224,6 +224,38 @@ declare const maxWidth: {
|
|
|
224
224
|
prose: string;
|
|
225
225
|
none: string;
|
|
226
226
|
};
|
|
227
|
+
declare const blockSize: {
|
|
228
|
+
screen: string;
|
|
229
|
+
xs: string;
|
|
230
|
+
sm: string;
|
|
231
|
+
md: string;
|
|
232
|
+
lg: string;
|
|
233
|
+
xl: string;
|
|
234
|
+
'2xl': string;
|
|
235
|
+
'3xl': string;
|
|
236
|
+
'4xl': string;
|
|
237
|
+
'5xl': string;
|
|
238
|
+
'6xl': string;
|
|
239
|
+
'7xl': string;
|
|
240
|
+
prose: string;
|
|
241
|
+
auto: string;
|
|
242
|
+
};
|
|
243
|
+
declare const inlineSize: {
|
|
244
|
+
screen: string;
|
|
245
|
+
xs: string;
|
|
246
|
+
sm: string;
|
|
247
|
+
md: string;
|
|
248
|
+
lg: string;
|
|
249
|
+
xl: string;
|
|
250
|
+
'2xl': string;
|
|
251
|
+
'3xl': string;
|
|
252
|
+
'4xl': string;
|
|
253
|
+
'5xl': string;
|
|
254
|
+
'6xl': string;
|
|
255
|
+
'7xl': string;
|
|
256
|
+
prose: string;
|
|
257
|
+
auto: string;
|
|
258
|
+
};
|
|
227
259
|
declare const height: {
|
|
228
260
|
screen: string;
|
|
229
261
|
xs: string;
|
|
@@ -256,6 +288,38 @@ declare const maxHeight: {
|
|
|
256
288
|
prose: string;
|
|
257
289
|
none: string;
|
|
258
290
|
};
|
|
291
|
+
declare const maxBlockSize: {
|
|
292
|
+
screen: string;
|
|
293
|
+
xs: string;
|
|
294
|
+
sm: string;
|
|
295
|
+
md: string;
|
|
296
|
+
lg: string;
|
|
297
|
+
xl: string;
|
|
298
|
+
'2xl': string;
|
|
299
|
+
'3xl': string;
|
|
300
|
+
'4xl': string;
|
|
301
|
+
'5xl': string;
|
|
302
|
+
'6xl': string;
|
|
303
|
+
'7xl': string;
|
|
304
|
+
prose: string;
|
|
305
|
+
none: string;
|
|
306
|
+
};
|
|
307
|
+
declare const maxInlineSize: {
|
|
308
|
+
screen: string;
|
|
309
|
+
xs: string;
|
|
310
|
+
sm: string;
|
|
311
|
+
md: string;
|
|
312
|
+
lg: string;
|
|
313
|
+
xl: string;
|
|
314
|
+
'2xl': string;
|
|
315
|
+
'3xl': string;
|
|
316
|
+
'4xl': string;
|
|
317
|
+
'5xl': string;
|
|
318
|
+
'6xl': string;
|
|
319
|
+
'7xl': string;
|
|
320
|
+
prose: string;
|
|
321
|
+
none: string;
|
|
322
|
+
};
|
|
259
323
|
declare const containers: {
|
|
260
324
|
xs: string;
|
|
261
325
|
sm: string;
|
|
@@ -271,4 +335,4 @@ declare const containers: {
|
|
|
271
335
|
prose: string;
|
|
272
336
|
};
|
|
273
337
|
|
|
274
|
-
export { Theme, baseSize, blur, borderRadius, boxShadow, breakpoints, containers, dropShadow, duration, fontFamily, fontSize, fontWeight, height, letterSpacing, lineHeight, lineWidth, maxHeight, maxWidth, media, preflightBase, ringWidth, spacing, textIndent, textShadow, textStrokeWidth, verticalBreakpoints, width, wordSpacing, zIndex };
|
|
338
|
+
export { Theme, baseSize, blockSize, blur, borderRadius, boxShadow, breakpoints, containers, dropShadow, duration, fontFamily, fontSize, fontWeight, height, inlineSize, letterSpacing, lineHeight, lineWidth, maxBlockSize, maxHeight, maxInlineSize, maxWidth, media, preflightBase, ringWidth, spacing, textIndent, textShadow, textStrokeWidth, verticalBreakpoints, width, wordSpacing, zIndex };
|
package/dist/theme.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { colors } from './colors.mjs';
|
|
2
|
-
export { u as baseSize, b as blur, n as borderRadius, o as boxShadow, j as breakpoints,
|
|
3
|
-
import './shared/preset-mini.
|
|
4
|
-
import './shared/preset-mini.
|
|
2
|
+
export { u as baseSize, A as blockSize, b as blur, n as borderRadius, o as boxShadow, j as breakpoints, G as containers, d as dropShadow, m as duration, f as fontFamily, a as fontSize, i as fontWeight, C as height, B as inlineSize, h as letterSpacing, l as lineHeight, k as lineWidth, E as maxBlockSize, D as maxHeight, F as maxInlineSize, y as maxWidth, p as media, q as preflightBase, r as ringWidth, s as spacing, c as textIndent, g as textShadow, e as textStrokeWidth, t as theme, v as verticalBreakpoints, x as width, w as wordSpacing, z as zIndex } from './shared/preset-mini.HR8qseZe.mjs';
|
|
3
|
+
import './shared/preset-mini.TU9YjwzX.mjs';
|
|
4
|
+
import './shared/preset-mini.Q9MCfKj3.mjs';
|
|
5
5
|
import '@unocss/core';
|
|
6
6
|
import '@unocss/rule-utils';
|
package/dist/utils.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { C as CONTROL_MINI_NO_NEGATIVE, l as colorResolver, m as colorableShadows, c as cornerMap, e as cssMathFnRE, f as cssVarFnRE, d as directionMap, j as directionSize, g as globalKeywords, a as h, h as handler, n as hasParseableColor, i as insetMap, t as isCSSMathFn, u as isSize, q as makeGlobalStaticRules, k as parseColor, p as positionMap, r as resolveBreakpoints, o as resolveVerticalBreakpoints, s as splitShorthand, w as transformXYZ, v as valueHandlers, b as xyzArray, x as xyzMap } from './shared/preset-mini.
|
|
1
|
+
export { C as CONTROL_MINI_NO_NEGATIVE, l as colorResolver, m as colorableShadows, c as cornerMap, e as cssMathFnRE, f as cssVarFnRE, d as directionMap, j as directionSize, g as globalKeywords, a as h, h as handler, n as hasParseableColor, i as insetMap, t as isCSSMathFn, u as isSize, q as makeGlobalStaticRules, k as parseColor, p as positionMap, r as resolveBreakpoints, o as resolveVerticalBreakpoints, s as splitShorthand, w as transformXYZ, v as valueHandlers, b as xyzArray, x as xyzMap } from './shared/preset-mini.Q9MCfKj3.mjs';
|
|
2
2
|
export * from '@unocss/rule-utils';
|
|
3
3
|
import '@unocss/core';
|
package/dist/variants.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { c as calcMaxWidthBySize, v as variantAria, b as variantBreakpoints, d as variantChildren, g as variantColorsMediaOrClass, e as variantCombinators, f as variantContainerQuery, p as variantCssLayer, n as variantCustomMedia, h as variantDataAttribute, l as variantImportant, q as variantInternalLayer, k as variantLanguageDirections, u as variantNegative, z as variantPartClasses, m as variantPrint, x as variantPseudoClassFunctions, w as variantPseudoClassesAndElements, r as variantScope, o as variantSelector, A as variantStartingStyle, B as variantSupports, a as variantTaggedAriaAttributes, i as variantTaggedDataAttributes, y as variantTaggedPseudoClasses, t as variantTheme, s as variantVariables, j as variants } from './shared/preset-mini.
|
|
1
|
+
export { c as calcMaxWidthBySize, v as variantAria, b as variantBreakpoints, d as variantChildren, g as variantColorsMediaOrClass, e as variantCombinators, f as variantContainerQuery, p as variantCssLayer, n as variantCustomMedia, h as variantDataAttribute, l as variantImportant, q as variantInternalLayer, k as variantLanguageDirections, u as variantNegative, z as variantPartClasses, m as variantPrint, x as variantPseudoClassFunctions, w as variantPseudoClassesAndElements, r as variantScope, o as variantSelector, A as variantStartingStyle, B as variantSupports, a as variantTaggedAriaAttributes, i as variantTaggedDataAttributes, y as variantTaggedPseudoClasses, t as variantTheme, s as variantVariables, j as variants } from './shared/preset-mini.Bj22ZzV1.mjs';
|
|
2
2
|
import '@unocss/rule-utils';
|
|
3
|
-
import './shared/preset-mini.
|
|
3
|
+
import './shared/preset-mini.Q9MCfKj3.mjs';
|
|
4
4
|
import '@unocss/core';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/preset-mini",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "66.0.0",
|
|
5
5
|
"description": "The minimal preset for UnoCSS",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"homepage": "https://unocss.dev",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "https://github.com/unocss/unocss",
|
|
12
|
+
"url": "git+https://github.com/unocss/unocss",
|
|
13
13
|
"directory": "packages-presets/preset-mini"
|
|
14
14
|
},
|
|
15
15
|
"bugs": {
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"dist"
|
|
57
57
|
],
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@unocss/core": "
|
|
60
|
-
"@unocss/extractor-arbitrary-variants": "
|
|
61
|
-
"@unocss/rule-utils": "
|
|
59
|
+
"@unocss/core": "66.0.0",
|
|
60
|
+
"@unocss/extractor-arbitrary-variants": "66.0.0",
|
|
61
|
+
"@unocss/rule-utils": "66.0.0"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "unbuild",
|