@unocss/preset-mini 66.5.10 → 66.5.12
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/chunk-gol_9zmq.mjs +36 -0
- package/dist/colors-C9l2trjD.d.mts +431 -0
- package/dist/colors-Cxq9P2g9.mjs +362 -0
- package/dist/colors.d.mts +2 -354
- package/dist/colors.mjs +2 -360
- package/dist/index-CnsmLem5.d.mts +71 -0
- package/dist/index.d.mts +5 -76
- package/dist/index.mjs +67 -70
- package/dist/rules-CuP-xMI2.mjs +1683 -0
- package/dist/rules.d.mts +72 -48
- package/dist/rules.mjs +4 -5
- package/dist/theme-5nLH7UVx.d.mts +1085 -0
- package/dist/theme-DeYMqZAV.mjs +347 -0
- package/dist/theme.d.mts +3 -338
- package/dist/theme.mjs +5 -6
- package/dist/utils-CNv_IKMQ.d.mts +122 -0
- package/dist/utils-DLpYZ57Q.mjs +638 -0
- package/dist/utils.d.mts +5 -77
- package/dist/utils.mjs +5 -3
- package/dist/variants.d.mts +38 -24
- package/dist/variants.mjs +661 -4
- package/package.json +7 -8
- package/colors.d.ts +0 -1
- package/dist/colors.d.ts +0 -354
- package/dist/index.d.ts +0 -76
- package/dist/rules.d.ts +0 -130
- package/dist/shared/preset-mini.BSnAbT9I.d.mts +0 -748
- package/dist/shared/preset-mini.B_2UJsV2.mjs +0 -693
- package/dist/shared/preset-mini.BjJC-NnU.d.mts +0 -79
- package/dist/shared/preset-mini.BjJC-NnU.d.ts +0 -79
- package/dist/shared/preset-mini.CRliz1QB.d.ts +0 -76
- package/dist/shared/preset-mini.CVEK1uAa.mjs +0 -355
- package/dist/shared/preset-mini.CoOfBKs_.d.ts +0 -748
- package/dist/shared/preset-mini.DBTjVFxS.mjs +0 -580
- package/dist/shared/preset-mini.QLusboLD.mjs +0 -1064
- package/dist/shared/preset-mini.kmtdc_h1.mjs +0 -324
- package/dist/shared/preset-mini.oF7XTPi1.d.mts +0 -76
- package/dist/theme.d.ts +0 -338
- package/dist/utils.d.ts +0 -77
- package/dist/variants.d.ts +0 -52
- package/rules.d.ts +0 -1
- package/theme.d.ts +0 -1
- package/utils.d.ts +0 -1
- package/variants.d.ts +0 -1
package/dist/rules.d.mts
CHANGED
|
@@ -1,38 +1,51 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { r as Theme } from "./colors-C9l2trjD.mjs";
|
|
2
|
+
import "./theme-5nLH7UVx.mjs";
|
|
3
|
+
import { CSSEntries, Rule, StaticRule } from "@unocss/core";
|
|
3
4
|
|
|
5
|
+
//#region src/_rules/align.d.ts
|
|
4
6
|
declare const verticalAligns: Rule[];
|
|
5
7
|
declare const textAligns: Rule[];
|
|
6
|
-
|
|
8
|
+
//#endregion
|
|
9
|
+
//#region src/_rules/behaviors.d.ts
|
|
7
10
|
declare const outline: Rule<Theme>[];
|
|
8
11
|
declare const appearance: Rule[];
|
|
9
12
|
declare const willChange: Rule[];
|
|
10
|
-
|
|
13
|
+
//#endregion
|
|
14
|
+
//#region src/_rules/border.d.ts
|
|
11
15
|
declare const borderStyles: string[];
|
|
12
16
|
declare const borders: Rule[];
|
|
13
17
|
declare function handlerBorderStyle([, a, s]: string[]): CSSEntries | undefined;
|
|
14
|
-
|
|
18
|
+
//#endregion
|
|
19
|
+
//#region src/_rules/color.d.ts
|
|
15
20
|
/**
|
|
16
21
|
* @example op10 op-30 opacity-100
|
|
17
22
|
*/
|
|
18
23
|
declare const opacity: Rule[];
|
|
19
24
|
declare const bgColors: Rule[];
|
|
20
25
|
declare const colorScheme: Rule[];
|
|
21
|
-
|
|
26
|
+
//#endregion
|
|
27
|
+
//#region src/_rules/container.d.ts
|
|
22
28
|
declare const containerParent: Rule[];
|
|
23
|
-
|
|
29
|
+
//#endregion
|
|
30
|
+
//#region src/_rules/decoration.d.ts
|
|
24
31
|
declare const textDecorations: Rule<Theme>[];
|
|
25
|
-
|
|
32
|
+
//#endregion
|
|
33
|
+
//#region src/_rules/default.d.ts
|
|
26
34
|
declare const rules: Rule<Theme>[];
|
|
27
|
-
|
|
35
|
+
//#endregion
|
|
36
|
+
//#region src/_rules/flex.d.ts
|
|
28
37
|
declare const flex: Rule<Theme>[];
|
|
29
|
-
|
|
38
|
+
//#endregion
|
|
39
|
+
//#region src/_rules/gap.d.ts
|
|
30
40
|
declare const gaps: Rule[];
|
|
31
|
-
|
|
41
|
+
//#endregion
|
|
42
|
+
//#region src/_rules/grid.d.ts
|
|
32
43
|
declare const grids: Rule<Theme>[];
|
|
33
|
-
|
|
44
|
+
//#endregion
|
|
45
|
+
//#region src/_rules/layout.d.ts
|
|
34
46
|
declare const overflows: Rule[];
|
|
35
|
-
|
|
47
|
+
//#endregion
|
|
48
|
+
//#region src/_rules/position.d.ts
|
|
36
49
|
declare const positions: Rule[];
|
|
37
50
|
declare const justifies: StaticRule[];
|
|
38
51
|
declare const orders: Rule[];
|
|
@@ -47,38 +60,44 @@ declare const insets: Rule[];
|
|
|
47
60
|
declare const floats: Rule[];
|
|
48
61
|
declare const zIndexes: Rule[];
|
|
49
62
|
declare const boxSizing: Rule[];
|
|
50
|
-
|
|
63
|
+
//#endregion
|
|
64
|
+
//#region src/_rules/question-mark.d.ts
|
|
51
65
|
/**
|
|
52
66
|
* Used for debugging, only available in development mode.
|
|
53
67
|
*
|
|
54
68
|
* @example `?` / `where`
|
|
55
69
|
*/
|
|
56
70
|
declare const questionMark: Rule[];
|
|
57
|
-
|
|
71
|
+
//#endregion
|
|
72
|
+
//#region src/_rules/ring.d.ts
|
|
58
73
|
declare const ringBase: {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
74
|
+
'--un-ring-inset': string;
|
|
75
|
+
'--un-ring-offset-width': string;
|
|
76
|
+
'--un-ring-offset-color': string;
|
|
77
|
+
'--un-ring-width': string;
|
|
78
|
+
'--un-ring-color': string;
|
|
79
|
+
'--un-shadow': string;
|
|
65
80
|
};
|
|
66
81
|
declare const rings: Rule<Theme>[];
|
|
67
|
-
|
|
82
|
+
//#endregion
|
|
83
|
+
//#region src/_rules/shadow.d.ts
|
|
68
84
|
declare const boxShadowsBase: {
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
85
|
+
'--un-ring-offset-shadow': string;
|
|
86
|
+
'--un-ring-shadow': string;
|
|
87
|
+
'--un-shadow-inset': string;
|
|
88
|
+
'--un-shadow': string;
|
|
73
89
|
};
|
|
74
90
|
declare const boxShadows: Rule<Theme>[];
|
|
75
|
-
|
|
91
|
+
//#endregion
|
|
92
|
+
//#region src/_rules/size.d.ts
|
|
76
93
|
declare const sizes: Rule<Theme>[];
|
|
77
94
|
declare const aspectRatio: Rule[];
|
|
78
|
-
|
|
95
|
+
//#endregion
|
|
96
|
+
//#region src/_rules/spacing.d.ts
|
|
79
97
|
declare const paddings: Rule[];
|
|
80
98
|
declare const margins: Rule[];
|
|
81
|
-
|
|
99
|
+
//#endregion
|
|
100
|
+
//#region src/_rules/static.d.ts
|
|
82
101
|
declare const varEmpty = " ";
|
|
83
102
|
declare const displays: Rule[];
|
|
84
103
|
declare const appearances: Rule[];
|
|
@@ -97,34 +116,39 @@ declare const textTransforms: Rule[];
|
|
|
97
116
|
declare const fontStyles: Rule[];
|
|
98
117
|
declare const fontSmoothings: Rule[];
|
|
99
118
|
declare const fieldSizing: Rule[];
|
|
100
|
-
|
|
119
|
+
//#endregion
|
|
120
|
+
//#region src/_rules/svg.d.ts
|
|
101
121
|
declare const svgUtilities: Rule<Theme>[];
|
|
102
|
-
|
|
122
|
+
//#endregion
|
|
123
|
+
//#region src/_rules/transform.d.ts
|
|
103
124
|
declare const transformBase: {
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
125
|
+
'--un-rotate': number;
|
|
126
|
+
'--un-rotate-x': number;
|
|
127
|
+
'--un-rotate-y': number;
|
|
128
|
+
'--un-rotate-z': number;
|
|
129
|
+
'--un-scale-x': number;
|
|
130
|
+
'--un-scale-y': number;
|
|
131
|
+
'--un-scale-z': number;
|
|
132
|
+
'--un-skew-x': number;
|
|
133
|
+
'--un-skew-y': number;
|
|
134
|
+
'--un-translate-x': number;
|
|
135
|
+
'--un-translate-y': number;
|
|
136
|
+
'--un-translate-z': number;
|
|
116
137
|
};
|
|
117
138
|
declare const transforms: Rule[];
|
|
118
|
-
|
|
139
|
+
//#endregion
|
|
140
|
+
//#region src/_rules/transition.d.ts
|
|
119
141
|
declare const transitions: Rule<Theme>[];
|
|
120
|
-
|
|
142
|
+
//#endregion
|
|
143
|
+
//#region src/_rules/typography.d.ts
|
|
121
144
|
declare const fonts: Rule<Theme>[];
|
|
122
145
|
declare const tabSizes: Rule<Theme>[];
|
|
123
146
|
declare const textIndents: Rule<Theme>[];
|
|
124
147
|
declare const textStrokes: Rule<Theme>[];
|
|
125
148
|
declare const textShadows: Rule<Theme>[];
|
|
126
|
-
|
|
149
|
+
//#endregion
|
|
150
|
+
//#region src/_rules/variables.d.ts
|
|
127
151
|
declare const cssVariables: Rule[];
|
|
128
152
|
declare const cssProperty: Rule[];
|
|
129
|
-
|
|
130
|
-
export { alignments, appearance, appearances, aspectRatio, bgColors, borderStyles, borders, boxShadows, boxShadowsBase, boxSizing, breaks, colorScheme, containerParent, contains, contentVisibility, contents, cssProperty, cssVariables, cursors, displays, fieldSizing, flex, flexGridJustifiesAlignments, floats, fontSmoothings, fontStyles, fonts, gaps, grids, handlerBorderStyle, insets, justifies, margins, opacity, orders, outline, overflows, paddings, placements, pointerEvents, positions, questionMark, resizes, ringBase, rings, rules, sizes, svgUtilities, tabSizes, textAligns, textDecorations, textIndents, textOverflows, textShadows, textStrokes, textTransforms, textWraps, transformBase, transforms, transitions, userSelects, varEmpty, verticalAligns, whitespaces, willChange, zIndexes };
|
|
153
|
+
//#endregion
|
|
154
|
+
export { alignments, appearance, appearances, aspectRatio, bgColors, borderStyles, borders, boxShadows, boxShadowsBase, boxSizing, breaks, colorScheme, containerParent, contains, contentVisibility, contents, cssProperty, cssVariables, cursors, displays, fieldSizing, flex, flexGridJustifiesAlignments, floats, fontSmoothings, fontStyles, fonts, gaps, grids, handlerBorderStyle, insets, justifies, margins, opacity, orders, outline, overflows, paddings, placements, pointerEvents, positions, questionMark, resizes, ringBase, rings, rules, sizes, svgUtilities, tabSizes, textAligns, textDecorations, textIndents, textOverflows, textShadows, textStrokes, textTransforms, textWraps, transformBase, transforms, transitions, userSelects, varEmpty, verticalAligns, whitespaces, willChange, zIndexes };
|
package/dist/rules.mjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import '@unocss/rule-utils';
|
|
1
|
+
import "./utils-DLpYZ57Q.mjs";
|
|
2
|
+
import { $ as flex, A as fontStyles, B as alignments, C as contains, D as displays, E as cursors, F as textWraps, G as justifies, H as flexGridJustifiesAlignments, I as userSelects, J as positions, K as orders, L as varEmpty, M as resizes, N as textOverflows, O as fieldSizing, P as textTransforms, Q as gaps, R as whitespaces, S as breaks, T as contents, U as floats, V as boxSizing, W as insets, X as overflows, Y as zIndexes, Z as grids, _ as boxShadows, a as tabSizes, at as borderStyles, b as rings, c as textStrokes, ct as appearance, d as transforms, dt as textAligns, et as textDecorations, f as svgUtilities, ft as verticalAligns, g as sizes, h as aspectRatio, i as fonts, it as opacity, j as pointerEvents, k as fontSmoothings, l as transitions, lt as outline, m as paddings, n as cssProperty, nt as bgColors, o as textIndents, ot as borders, p as margins, q as placements, r as cssVariables, rt as colorScheme, s as textShadows, st as handlerBorderStyle, t as rules, tt as containerParent, u as transformBase, ut as willChange, v as boxShadowsBase, w as contentVisibility, x as appearances, y as ringBase, z as questionMark } from "./rules-CuP-xMI2.mjs";
|
|
3
|
+
|
|
4
|
+
export { alignments, appearance, appearances, aspectRatio, bgColors, borderStyles, borders, boxShadows, boxShadowsBase, boxSizing, breaks, colorScheme, containerParent, contains, contentVisibility, contents, cssProperty, cssVariables, cursors, displays, fieldSizing, flex, flexGridJustifiesAlignments, floats, fontSmoothings, fontStyles, fonts, gaps, grids, handlerBorderStyle, insets, justifies, margins, opacity, orders, outline, overflows, paddings, placements, pointerEvents, positions, questionMark, resizes, ringBase, rings, rules, sizes, svgUtilities, tabSizes, textAligns, textDecorations, textIndents, textOverflows, textShadows, textStrokes, textTransforms, textWraps, transformBase, transforms, transitions, userSelects, varEmpty, verticalAligns, whitespaces, willChange, zIndexes };
|