@unocss/preset-wind 0.58.9 → 0.59.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/index.d.cts DELETED
@@ -1,36 +0,0 @@
1
- import * as _unocss_core from '@unocss/core';
2
- import { Rule, Variant } from '@unocss/core';
3
- import * as _unocss_preset_mini from '@unocss/preset-mini';
4
- import { Theme, PresetMiniOptions } from '@unocss/preset-mini';
5
- export { Theme, colors, preflights } from '@unocss/preset-mini';
6
-
7
- declare const rules: Rule<Theme>[];
8
-
9
- declare const shortcuts: _unocss_core.Shortcut<_unocss_preset_mini.Theme>[];
10
-
11
- declare const theme: Theme;
12
-
13
- declare function variants(options: PresetWindOptions): Variant<Theme>[];
14
-
15
- interface PresetWindOptions extends PresetMiniOptions {
16
- /**
17
- * The important option lets you control whether UnoCSS’s utilities should be marked with `!important`.
18
- *
19
- * This can be really useful when using UnoCSS with existing CSS that has high specificity selectors.
20
- *
21
- * You can also set `important` to a selector like `#app` instead, which will generate `#app :is(.m-1) { ... }`
22
- *
23
- * Also check out the compatibility with [:is()](https://caniuse.com/?search=%3Ais())
24
- *
25
- * @default false
26
- */
27
- important?: boolean | string;
28
- }
29
- /**
30
- * The Tailwind CSS / Windi CSS compact preset for UnoCSS.
31
- *
32
- * @see https://unocss.dev/presets/wind
33
- */
34
- declare const presetWind: _unocss_core.PresetFactory<_unocss_preset_mini.Theme, PresetWindOptions>;
35
-
36
- export { type PresetWindOptions, presetWind as default, presetWind, rules, shortcuts, theme, variants };