@unocss/preset-mini 0.48.0 → 0.48.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/dist/index.cjs +1 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -52,6 +52,7 @@ function VarPrefixPostprocessor(prefix) {
|
|
|
52
52
|
exports.parseColor = colors$1.parseColor;
|
|
53
53
|
exports.colors = colors.colors;
|
|
54
54
|
exports.theme = _default.theme;
|
|
55
|
+
exports.VarPrefixPostprocessor = VarPrefixPostprocessor;
|
|
55
56
|
exports["default"] = presetMini;
|
|
56
57
|
exports.preflights = preflights;
|
|
57
58
|
exports.presetMini = presetMini;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Preflight, PresetOptions, Preset } from '@unocss/core';
|
|
1
|
+
import { Preflight, PresetOptions, Preset, Postprocessor } from '@unocss/core';
|
|
2
2
|
export { c as colors } from './colors-b217808a.js';
|
|
3
3
|
export { t as theme } from './default-344896b2.js';
|
|
4
4
|
import { T as Theme } from './types-fa74508f.js';
|
|
@@ -55,4 +55,6 @@ interface PresetMiniOptions extends PresetOptions {
|
|
|
55
55
|
}
|
|
56
56
|
declare const presetMini: (options?: PresetMiniOptions) => Preset<Theme>;
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
declare function VarPrefixPostprocessor(prefix: string): Postprocessor;
|
|
59
|
+
|
|
60
|
+
export { DarkModeSelectors, PresetMiniOptions, VarPrefixPostprocessor, presetMini as default, preflights, presetMini };
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/preset-mini",
|
|
3
|
-
"version": "0.48.
|
|
3
|
+
"version": "0.48.1",
|
|
4
4
|
"description": "The minimal preset for UnoCSS",
|
|
5
5
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"*.css"
|
|
62
62
|
],
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@unocss/core": "0.48.
|
|
64
|
+
"@unocss/core": "0.48.1"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build": "unbuild",
|