@unocss/preset-mini 66.5.10 → 66.5.11

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.
Files changed (44) hide show
  1. package/dist/chunk-gol_9zmq.mjs +36 -0
  2. package/dist/colors-CdGFctaC.d.mts +1377 -0
  3. package/dist/colors-Cxq9P2g9.mjs +362 -0
  4. package/dist/colors.d.mts +2 -354
  5. package/dist/colors.mjs +2 -360
  6. package/dist/index-RNt7vgvR.d.mts +69 -0
  7. package/dist/index.d.mts +5 -76
  8. package/dist/index.mjs +67 -70
  9. package/dist/rules-CuP-xMI2.mjs +1683 -0
  10. package/dist/rules.d.mts +70 -48
  11. package/dist/rules.mjs +4 -5
  12. package/dist/theme-B_nKnyti.d.mts +1084 -0
  13. package/dist/theme-DeYMqZAV.mjs +347 -0
  14. package/dist/theme.d.mts +3 -338
  15. package/dist/theme.mjs +5 -6
  16. package/dist/utils-BIIzJZek.d.mts +234 -0
  17. package/dist/utils-DLpYZ57Q.mjs +638 -0
  18. package/dist/utils.d.mts +2 -77
  19. package/dist/utils.mjs +5 -3
  20. package/dist/variants.d.mts +35 -24
  21. package/dist/variants.mjs +661 -4
  22. package/package.json +7 -8
  23. package/colors.d.ts +0 -1
  24. package/dist/colors.d.ts +0 -354
  25. package/dist/index.d.ts +0 -76
  26. package/dist/rules.d.ts +0 -130
  27. package/dist/shared/preset-mini.BSnAbT9I.d.mts +0 -748
  28. package/dist/shared/preset-mini.B_2UJsV2.mjs +0 -693
  29. package/dist/shared/preset-mini.BjJC-NnU.d.mts +0 -79
  30. package/dist/shared/preset-mini.BjJC-NnU.d.ts +0 -79
  31. package/dist/shared/preset-mini.CRliz1QB.d.ts +0 -76
  32. package/dist/shared/preset-mini.CVEK1uAa.mjs +0 -355
  33. package/dist/shared/preset-mini.CoOfBKs_.d.ts +0 -748
  34. package/dist/shared/preset-mini.DBTjVFxS.mjs +0 -580
  35. package/dist/shared/preset-mini.QLusboLD.mjs +0 -1064
  36. package/dist/shared/preset-mini.kmtdc_h1.mjs +0 -324
  37. package/dist/shared/preset-mini.oF7XTPi1.d.mts +0 -76
  38. package/dist/theme.d.ts +0 -338
  39. package/dist/utils.d.ts +0 -77
  40. package/dist/variants.d.ts +0 -52
  41. package/rules.d.ts +0 -1
  42. package/theme.d.ts +0 -1
  43. package/utils.d.ts +0 -1
  44. package/variants.d.ts +0 -1
@@ -0,0 +1,347 @@
1
+ import { u as transformBase, v as boxShadowsBase, y as ringBase } from "./rules-CuP-xMI2.mjs";
2
+ import { t as colors } from "./colors-Cxq9P2g9.mjs";
3
+
4
+ //#region src/_theme/filters.ts
5
+ const blur = {
6
+ "DEFAULT": "8px",
7
+ "0": "0",
8
+ "sm": "4px",
9
+ "md": "12px",
10
+ "lg": "16px",
11
+ "xl": "24px",
12
+ "2xl": "40px",
13
+ "3xl": "64px"
14
+ };
15
+ const dropShadow = {
16
+ "DEFAULT": ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"],
17
+ "sm": "0 1px 1px rgb(0 0 0 / 0.05)",
18
+ "md": ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"],
19
+ "lg": ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"],
20
+ "xl": ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"],
21
+ "2xl": "0 25px 25px rgb(0 0 0 / 0.15)",
22
+ "none": "0 0 rgb(0 0 0 / 0)"
23
+ };
24
+
25
+ //#endregion
26
+ //#region src/_theme/font.ts
27
+ const fontFamily = {
28
+ sans: [
29
+ "ui-sans-serif",
30
+ "system-ui",
31
+ "-apple-system",
32
+ "BlinkMacSystemFont",
33
+ "\"Segoe UI\"",
34
+ "Roboto",
35
+ "\"Helvetica Neue\"",
36
+ "Arial",
37
+ "\"Noto Sans\"",
38
+ "sans-serif",
39
+ "\"Apple Color Emoji\"",
40
+ "\"Segoe UI Emoji\"",
41
+ "\"Segoe UI Symbol\"",
42
+ "\"Noto Color Emoji\""
43
+ ].join(","),
44
+ serif: [
45
+ "ui-serif",
46
+ "Georgia",
47
+ "Cambria",
48
+ "\"Times New Roman\"",
49
+ "Times",
50
+ "serif"
51
+ ].join(","),
52
+ mono: [
53
+ "ui-monospace",
54
+ "SFMono-Regular",
55
+ "Menlo",
56
+ "Monaco",
57
+ "Consolas",
58
+ "\"Liberation Mono\"",
59
+ "\"Courier New\"",
60
+ "monospace"
61
+ ].join(",")
62
+ };
63
+ const fontSize = {
64
+ "xs": ["0.75rem", "1rem"],
65
+ "sm": ["0.875rem", "1.25rem"],
66
+ "base": ["1rem", "1.5rem"],
67
+ "lg": ["1.125rem", "1.75rem"],
68
+ "xl": ["1.25rem", "1.75rem"],
69
+ "2xl": ["1.5rem", "2rem"],
70
+ "3xl": ["1.875rem", "2.25rem"],
71
+ "4xl": ["2.25rem", "2.5rem"],
72
+ "5xl": ["3rem", "1"],
73
+ "6xl": ["3.75rem", "1"],
74
+ "7xl": ["4.5rem", "1"],
75
+ "8xl": ["6rem", "1"],
76
+ "9xl": ["8rem", "1"]
77
+ };
78
+ const textIndent = {
79
+ "DEFAULT": "1.5rem",
80
+ "xs": "0.5rem",
81
+ "sm": "1rem",
82
+ "md": "1.5rem",
83
+ "lg": "2rem",
84
+ "xl": "2.5rem",
85
+ "2xl": "3rem",
86
+ "3xl": "4rem"
87
+ };
88
+ const textStrokeWidth = {
89
+ DEFAULT: "1.5rem",
90
+ none: "0",
91
+ sm: "thin",
92
+ md: "medium",
93
+ lg: "thick"
94
+ };
95
+ const textShadow = {
96
+ DEFAULT: ["0 0 1px rgb(0 0 0 / 0.2)", "0 0 1px rgb(1 0 5 / 0.1)"],
97
+ none: "0 0 rgb(0 0 0 / 0)",
98
+ sm: "1px 1px 3px rgb(36 37 47 / 0.25)",
99
+ md: ["0 1px 2px rgb(30 29 39 / 0.19)", "1px 2px 4px rgb(54 64 147 / 0.18)"],
100
+ lg: ["3px 3px 6px rgb(0 0 0 / 0.26)", "0 0 5px rgb(15 3 86 / 0.22)"],
101
+ xl: ["1px 1px 3px rgb(0 0 0 / 0.29)", "2px 4px 7px rgb(73 64 125 / 0.35)"]
102
+ };
103
+ const lineHeight = {
104
+ none: "1",
105
+ tight: "1.25",
106
+ snug: "1.375",
107
+ normal: "1.5",
108
+ relaxed: "1.625",
109
+ loose: "2"
110
+ };
111
+ const letterSpacing = {
112
+ tighter: "-0.05em",
113
+ tight: "-0.025em",
114
+ normal: "0em",
115
+ wide: "0.025em",
116
+ wider: "0.05em",
117
+ widest: "0.1em"
118
+ };
119
+ const fontWeight = {
120
+ thin: "100",
121
+ extralight: "200",
122
+ light: "300",
123
+ normal: "400",
124
+ medium: "500",
125
+ semibold: "600",
126
+ bold: "700",
127
+ extrabold: "800",
128
+ black: "900"
129
+ };
130
+ const wordSpacing = letterSpacing;
131
+
132
+ //#endregion
133
+ //#region src/_theme/misc.ts
134
+ const breakpoints = {
135
+ "sm": "640px",
136
+ "md": "768px",
137
+ "lg": "1024px",
138
+ "xl": "1280px",
139
+ "2xl": "1536px"
140
+ };
141
+ const verticalBreakpoints = { ...breakpoints };
142
+ const lineWidth = {
143
+ DEFAULT: "1px",
144
+ none: "0"
145
+ };
146
+ const spacing = {
147
+ "DEFAULT": "1rem",
148
+ "none": "0",
149
+ "xs": "0.75rem",
150
+ "sm": "0.875rem",
151
+ "lg": "1.125rem",
152
+ "xl": "1.25rem",
153
+ "2xl": "1.5rem",
154
+ "3xl": "1.875rem",
155
+ "4xl": "2.25rem",
156
+ "5xl": "3rem",
157
+ "6xl": "3.75rem",
158
+ "7xl": "4.5rem",
159
+ "8xl": "6rem",
160
+ "9xl": "8rem"
161
+ };
162
+ const duration = {
163
+ DEFAULT: "150ms",
164
+ none: "0s",
165
+ 75: "75ms",
166
+ 100: "100ms",
167
+ 150: "150ms",
168
+ 200: "200ms",
169
+ 300: "300ms",
170
+ 500: "500ms",
171
+ 700: "700ms",
172
+ 1e3: "1000ms"
173
+ };
174
+ const borderRadius = {
175
+ "DEFAULT": "0.25rem",
176
+ "none": "0",
177
+ "sm": "0.125rem",
178
+ "md": "0.375rem",
179
+ "lg": "0.5rem",
180
+ "xl": "0.75rem",
181
+ "2xl": "1rem",
182
+ "3xl": "1.5rem",
183
+ "full": "9999px"
184
+ };
185
+ const boxShadow = {
186
+ "DEFAULT": ["var(--un-shadow-inset) 0 1px 3px 0 rgb(0 0 0 / 0.1)", "var(--un-shadow-inset) 0 1px 2px -1px rgb(0 0 0 / 0.1)"],
187
+ "none": "0 0 rgb(0 0 0 / 0)",
188
+ "sm": "var(--un-shadow-inset) 0 1px 2px 0 rgb(0 0 0 / 0.05)",
189
+ "md": ["var(--un-shadow-inset) 0 4px 6px -1px rgb(0 0 0 / 0.1)", "var(--un-shadow-inset) 0 2px 4px -2px rgb(0 0 0 / 0.1)"],
190
+ "lg": ["var(--un-shadow-inset) 0 10px 15px -3px rgb(0 0 0 / 0.1)", "var(--un-shadow-inset) 0 4px 6px -4px rgb(0 0 0 / 0.1)"],
191
+ "xl": ["var(--un-shadow-inset) 0 20px 25px -5px rgb(0 0 0 / 0.1)", "var(--un-shadow-inset) 0 8px 10px -6px rgb(0 0 0 / 0.1)"],
192
+ "2xl": "var(--un-shadow-inset) 0 25px 50px -12px rgb(0 0 0 / 0.25)",
193
+ "inner": "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)"
194
+ };
195
+ const ringWidth = {
196
+ DEFAULT: "3px",
197
+ none: "0"
198
+ };
199
+ const zIndex = { auto: "auto" };
200
+ const media = { mouse: "(hover) and (pointer: fine)" };
201
+
202
+ //#endregion
203
+ //#region src/_theme/preflight.ts
204
+ const preflightBase = {
205
+ ...transformBase,
206
+ ...boxShadowsBase,
207
+ ...ringBase
208
+ };
209
+
210
+ //#endregion
211
+ //#region src/_theme/size.ts
212
+ const baseSize = {
213
+ "xs": "20rem",
214
+ "sm": "24rem",
215
+ "md": "28rem",
216
+ "lg": "32rem",
217
+ "xl": "36rem",
218
+ "2xl": "42rem",
219
+ "3xl": "48rem",
220
+ "4xl": "56rem",
221
+ "5xl": "64rem",
222
+ "6xl": "72rem",
223
+ "7xl": "80rem",
224
+ "prose": "65ch"
225
+ };
226
+ const width = {
227
+ auto: "auto",
228
+ ...baseSize,
229
+ screen: "100vw"
230
+ };
231
+ const maxWidth = {
232
+ none: "none",
233
+ ...baseSize,
234
+ screen: "100vw"
235
+ };
236
+ const blockSize = {
237
+ auto: "auto",
238
+ ...baseSize,
239
+ screen: "100vb"
240
+ };
241
+ const inlineSize = {
242
+ auto: "auto",
243
+ ...baseSize,
244
+ screen: "100vi"
245
+ };
246
+ const height = {
247
+ auto: "auto",
248
+ ...baseSize,
249
+ screen: "100vh"
250
+ };
251
+ const maxHeight = {
252
+ none: "none",
253
+ ...baseSize,
254
+ screen: "100vh"
255
+ };
256
+ const maxBlockSize = {
257
+ none: "none",
258
+ ...baseSize,
259
+ screen: "100vb"
260
+ };
261
+ const maxInlineSize = {
262
+ none: "none",
263
+ ...baseSize,
264
+ screen: "100vi"
265
+ };
266
+ const containers = { ...baseSize };
267
+
268
+ //#endregion
269
+ //#region src/_theme/transition.ts
270
+ const easing = {
271
+ "DEFAULT": "cubic-bezier(0.4, 0, 0.2, 1)",
272
+ "linear": "linear",
273
+ "in": "cubic-bezier(0.4, 0, 1, 1)",
274
+ "out": "cubic-bezier(0, 0, 0.2, 1)",
275
+ "in-out": "cubic-bezier(0.4, 0, 0.2, 1)"
276
+ };
277
+ const transitionProperty = {
278
+ none: "none",
279
+ all: "all",
280
+ colors: [
281
+ "color",
282
+ "background-color",
283
+ "border-color",
284
+ "text-decoration-color",
285
+ "fill",
286
+ "stroke"
287
+ ].join(","),
288
+ opacity: "opacity",
289
+ shadow: "box-shadow",
290
+ transform: "transform",
291
+ get DEFAULT() {
292
+ return [
293
+ this.colors,
294
+ "opacity",
295
+ "box-shadow",
296
+ "transform",
297
+ "filter",
298
+ "backdrop-filter"
299
+ ].join(",");
300
+ }
301
+ };
302
+
303
+ //#endregion
304
+ //#region src/_theme/default.ts
305
+ const theme = {
306
+ width,
307
+ height,
308
+ maxWidth,
309
+ maxHeight,
310
+ minWidth: maxWidth,
311
+ minHeight: maxHeight,
312
+ inlineSize,
313
+ blockSize,
314
+ maxInlineSize,
315
+ maxBlockSize,
316
+ minInlineSize: maxInlineSize,
317
+ minBlockSize: maxBlockSize,
318
+ colors,
319
+ fontFamily,
320
+ fontSize,
321
+ fontWeight,
322
+ breakpoints,
323
+ verticalBreakpoints,
324
+ borderRadius,
325
+ lineHeight,
326
+ letterSpacing,
327
+ wordSpacing,
328
+ boxShadow,
329
+ textIndent,
330
+ textShadow,
331
+ textStrokeWidth,
332
+ blur,
333
+ dropShadow,
334
+ easing,
335
+ transitionProperty,
336
+ lineWidth,
337
+ spacing,
338
+ duration,
339
+ ringWidth,
340
+ preflightBase,
341
+ containers,
342
+ zIndex,
343
+ media
344
+ };
345
+
346
+ //#endregion
347
+ export { textStrokeWidth as A, fontFamily as C, lineHeight as D, letterSpacing as E, blur as M, dropShadow as N, textIndent as O, zIndex as S, fontWeight as T, lineWidth as _, height as a, spacing as b, maxHeight as c, width as d, preflightBase as f, duration as g, breakpoints as h, containers as i, wordSpacing as j, textShadow as k, maxInlineSize as l, boxShadow as m, baseSize as n, inlineSize as o, borderRadius as p, blockSize as r, maxBlockSize as s, theme as t, maxWidth as u, media as v, fontSize as w, verticalBreakpoints as x, ringWidth as y };
package/dist/theme.d.mts CHANGED
@@ -1,338 +1,3 @@
1
- export { colors } from './colors.mjs';
2
- export { t as theme } from './shared/preset-mini.BSnAbT9I.mjs';
3
- import { T as Theme } from './shared/preset-mini.BjJC-NnU.mjs';
4
- export { C as Colors, a as ThemeAnimation } from './shared/preset-mini.BjJC-NnU.mjs';
5
- import '@unocss/core';
6
-
7
- declare const blur: {
8
- DEFAULT: string;
9
- '0': string;
10
- sm: string;
11
- md: string;
12
- lg: string;
13
- xl: string;
14
- '2xl': string;
15
- '3xl': string;
16
- };
17
- declare const dropShadow: {
18
- DEFAULT: string[];
19
- sm: string;
20
- md: string[];
21
- lg: string[];
22
- xl: string[];
23
- '2xl': string;
24
- none: string;
25
- };
26
-
27
- declare const fontFamily: {
28
- sans: string;
29
- serif: string;
30
- mono: string;
31
- };
32
- declare const fontSize: Theme['fontSize'];
33
- declare const textIndent: Theme['textIndent'];
34
- declare const textStrokeWidth: Theme['textStrokeWidth'];
35
- declare const textShadow: {
36
- DEFAULT: string[];
37
- none: string;
38
- sm: string;
39
- md: string[];
40
- lg: string[];
41
- xl: string[];
42
- };
43
- declare const lineHeight: {
44
- none: string;
45
- tight: string;
46
- snug: string;
47
- normal: string;
48
- relaxed: string;
49
- loose: string;
50
- };
51
- declare const letterSpacing: {
52
- tighter: string;
53
- tight: string;
54
- normal: string;
55
- wide: string;
56
- wider: string;
57
- widest: string;
58
- };
59
- declare const fontWeight: {
60
- thin: string;
61
- extralight: string;
62
- light: string;
63
- normal: string;
64
- medium: string;
65
- semibold: string;
66
- bold: string;
67
- extrabold: string;
68
- black: string;
69
- };
70
- declare const wordSpacing: {
71
- tighter: string;
72
- tight: string;
73
- normal: string;
74
- wide: string;
75
- wider: string;
76
- widest: string;
77
- };
78
-
79
- declare const breakpoints: {
80
- sm: string;
81
- md: string;
82
- lg: string;
83
- xl: string;
84
- '2xl': string;
85
- };
86
- declare const verticalBreakpoints: {
87
- sm: string;
88
- md: string;
89
- lg: string;
90
- xl: string;
91
- '2xl': string;
92
- };
93
- declare const lineWidth: {
94
- DEFAULT: string;
95
- none: string;
96
- };
97
- declare const spacing: {
98
- DEFAULT: string;
99
- none: string;
100
- xs: string;
101
- sm: string;
102
- lg: string;
103
- xl: string;
104
- '2xl': string;
105
- '3xl': string;
106
- '4xl': string;
107
- '5xl': string;
108
- '6xl': string;
109
- '7xl': string;
110
- '8xl': string;
111
- '9xl': string;
112
- };
113
- declare const duration: {
114
- DEFAULT: string;
115
- none: string;
116
- 75: string;
117
- 100: string;
118
- 150: string;
119
- 200: string;
120
- 300: string;
121
- 500: string;
122
- 700: string;
123
- 1000: string;
124
- };
125
- declare const borderRadius: {
126
- DEFAULT: string;
127
- none: string;
128
- sm: string;
129
- md: string;
130
- lg: string;
131
- xl: string;
132
- '2xl': string;
133
- '3xl': string;
134
- full: string;
135
- };
136
- declare const boxShadow: {
137
- DEFAULT: string[];
138
- none: string;
139
- sm: string;
140
- md: string[];
141
- lg: string[];
142
- xl: string[];
143
- '2xl': string;
144
- inner: string;
145
- };
146
- declare const ringWidth: {
147
- DEFAULT: string;
148
- none: string;
149
- };
150
- declare const zIndex: {
151
- auto: string;
152
- };
153
- declare const media: {
154
- mouse: string;
155
- };
156
-
157
- declare const preflightBase: {
158
- '--un-ring-inset': string;
159
- '--un-ring-offset-width': string;
160
- '--un-ring-offset-color': string;
161
- '--un-ring-width': string;
162
- '--un-ring-color': string;
163
- '--un-shadow': string;
164
- '--un-ring-offset-shadow': string;
165
- '--un-ring-shadow': string;
166
- '--un-shadow-inset': string;
167
- '--un-rotate': number;
168
- '--un-rotate-x': number;
169
- '--un-rotate-y': number;
170
- '--un-rotate-z': number;
171
- '--un-scale-x': number;
172
- '--un-scale-y': number;
173
- '--un-scale-z': number;
174
- '--un-skew-x': number;
175
- '--un-skew-y': number;
176
- '--un-translate-x': number;
177
- '--un-translate-y': number;
178
- '--un-translate-z': number;
179
- };
180
-
181
- declare const baseSize: {
182
- xs: string;
183
- sm: string;
184
- md: string;
185
- lg: string;
186
- xl: string;
187
- '2xl': string;
188
- '3xl': string;
189
- '4xl': string;
190
- '5xl': string;
191
- '6xl': string;
192
- '7xl': string;
193
- prose: string;
194
- };
195
- declare const width: {
196
- screen: string;
197
- xs: string;
198
- sm: string;
199
- md: string;
200
- lg: string;
201
- xl: string;
202
- '2xl': string;
203
- '3xl': string;
204
- '4xl': string;
205
- '5xl': string;
206
- '6xl': string;
207
- '7xl': string;
208
- prose: string;
209
- auto: string;
210
- };
211
- declare const maxWidth: {
212
- screen: string;
213
- xs: string;
214
- sm: string;
215
- md: string;
216
- lg: string;
217
- xl: string;
218
- '2xl': string;
219
- '3xl': string;
220
- '4xl': string;
221
- '5xl': string;
222
- '6xl': string;
223
- '7xl': string;
224
- prose: string;
225
- none: string;
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
- };
259
- declare const height: {
260
- screen: string;
261
- xs: string;
262
- sm: string;
263
- md: string;
264
- lg: string;
265
- xl: string;
266
- '2xl': string;
267
- '3xl': string;
268
- '4xl': string;
269
- '5xl': string;
270
- '6xl': string;
271
- '7xl': string;
272
- prose: string;
273
- auto: string;
274
- };
275
- declare const maxHeight: {
276
- screen: string;
277
- xs: string;
278
- sm: string;
279
- md: string;
280
- lg: string;
281
- xl: string;
282
- '2xl': string;
283
- '3xl': string;
284
- '4xl': string;
285
- '5xl': string;
286
- '6xl': string;
287
- '7xl': string;
288
- prose: string;
289
- none: string;
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
- };
323
- declare const containers: {
324
- xs: string;
325
- sm: string;
326
- md: string;
327
- lg: string;
328
- xl: string;
329
- '2xl': string;
330
- '3xl': string;
331
- '4xl': string;
332
- '5xl': string;
333
- '6xl': string;
334
- '7xl': string;
335
- prose: string;
336
- };
337
-
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 };
1
+ import { i as ThemeAnimation, n as Colors, r as Theme, t as colors } from "./colors-CdGFctaC.mjs";
2
+ import { A as wordSpacing, C as fontSize, D as textIndent, E as lineHeight, M as dropShadow, N as theme, O as textShadow, S as fontFamily, T as letterSpacing, _ as media, a as inlineSize, b as verticalBreakpoints, c as maxInlineSize, d as preflightBase, f as borderRadius, g as lineWidth, h as duration, i as height, j as blur, k as textStrokeWidth, l as maxWidth, m as breakpoints, n as blockSize, o as maxBlockSize, p as boxShadow, r as containers, s as maxHeight, t as baseSize, u as width, v as ringWidth, w as fontWeight, x as zIndex, y as spacing } from "./theme-B_nKnyti.mjs";
3
+ export { Colors, Theme, ThemeAnimation, baseSize, blockSize, blur, borderRadius, boxShadow, breakpoints, colors, containers, dropShadow, duration, fontFamily, fontSize, fontWeight, height, inlineSize, letterSpacing, lineHeight, lineWidth, maxBlockSize, maxHeight, maxInlineSize, maxWidth, media, preflightBase, ringWidth, spacing, textIndent, textShadow, textStrokeWidth, theme, verticalBreakpoints, width, wordSpacing, zIndex };
package/dist/theme.mjs CHANGED
@@ -1,6 +1,5 @@
1
- export { colors } from './colors.mjs';
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.kmtdc_h1.mjs';
3
- import './shared/preset-mini.CVEK1uAa.mjs';
4
- import './shared/preset-mini.DBTjVFxS.mjs';
5
- import '@unocss/core';
6
- import '@unocss/rule-utils';
1
+ import "./utils-DLpYZ57Q.mjs";
2
+ import { t as colors } from "./colors-Cxq9P2g9.mjs";
3
+ import { A as textStrokeWidth, C as fontFamily, D as lineHeight, E as letterSpacing, M as blur, N as dropShadow, O as textIndent, S as zIndex, T as fontWeight, _ as lineWidth, a as height, b as spacing, c as maxHeight, d as width, f as preflightBase, g as duration, h as breakpoints, i as containers, j as wordSpacing, k as textShadow, l as maxInlineSize, m as boxShadow, n as baseSize, o as inlineSize, p as borderRadius, r as blockSize, s as maxBlockSize, t as theme, u as maxWidth, v as media, w as fontSize, x as verticalBreakpoints, y as ringWidth } from "./theme-DeYMqZAV.mjs";
4
+
5
+ export { baseSize, blockSize, blur, borderRadius, boxShadow, breakpoints, colors, containers, dropShadow, duration, fontFamily, fontSize, fontWeight, height, inlineSize, letterSpacing, lineHeight, lineWidth, maxBlockSize, maxHeight, maxInlineSize, maxWidth, media, preflightBase, ringWidth, spacing, textIndent, textShadow, textStrokeWidth, theme, verticalBreakpoints, width, wordSpacing, zIndex };