@unocss/preset-mini 0.61.4 → 0.61.6
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.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import { extractorArbitraryVariants } from '@unocss/extractor-arbitrary-variants
|
|
|
3
3
|
import { g as globalKeywords } from './shared/preset-mini.B66ZMXnT.mjs';
|
|
4
4
|
export { k as parseColor } from './shared/preset-mini.B66ZMXnT.mjs';
|
|
5
5
|
import { t as theme } from './shared/preset-mini.Cx7ylRNC.mjs';
|
|
6
|
-
import { r as rules } from './shared/preset-mini.
|
|
6
|
+
import { r as rules } from './shared/preset-mini.BtWBjMca.mjs';
|
|
7
7
|
import { j as variants } from './shared/preset-mini.BsntrdsY.mjs';
|
|
8
8
|
export { colors } from './colors.mjs';
|
|
9
9
|
import '@unocss/rule-utils';
|
package/dist/rules.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
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.
|
|
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.BtWBjMca.mjs';
|
|
2
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.BWouCBA3.mjs';
|
|
3
3
|
import './shared/preset-mini.B66ZMXnT.mjs';
|
|
4
4
|
import '@unocss/core';
|
|
@@ -741,12 +741,16 @@ const floats = [
|
|
|
741
741
|
// floats
|
|
742
742
|
["float-left", { float: "left" }],
|
|
743
743
|
["float-right", { float: "right" }],
|
|
744
|
+
["float-start", { float: "inline-start" }],
|
|
745
|
+
["float-end", { float: "inline-end" }],
|
|
744
746
|
["float-none", { float: "none" }],
|
|
745
747
|
...makeGlobalStaticRules("float"),
|
|
746
748
|
// clears
|
|
747
749
|
["clear-left", { clear: "left" }],
|
|
748
750
|
["clear-right", { clear: "right" }],
|
|
749
751
|
["clear-both", { clear: "both" }],
|
|
752
|
+
["clear-start", { clear: "inline-start" }],
|
|
753
|
+
["clear-end", { clear: "inline-end" }],
|
|
750
754
|
["clear-none", { clear: "none" }],
|
|
751
755
|
...makeGlobalStaticRules("clear")
|
|
752
756
|
];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/preset-mini",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.61.
|
|
4
|
+
"version": "0.61.6",
|
|
5
5
|
"description": "The minimal preset for UnoCSS",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"dist"
|
|
57
57
|
],
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@unocss/
|
|
60
|
-
"@unocss/
|
|
61
|
-
"@unocss/
|
|
59
|
+
"@unocss/core": "0.61.6",
|
|
60
|
+
"@unocss/rule-utils": "0.61.6",
|
|
61
|
+
"@unocss/extractor-arbitrary-variants": "0.61.6"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "unbuild",
|