@unocss/preset-wind 0.64.1 → 0.65.0-beta.2
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.mts +5 -8
- package/dist/index.d.ts +5 -8
- package/dist/index.mjs +13 -1349
- package/dist/rules.d.mts +95 -0
- package/dist/rules.d.ts +95 -0
- package/dist/rules.mjs +7 -0
- package/dist/shared/preset-wind.BwVsieym.mjs +85 -0
- package/dist/shared/preset-wind.BzmnsdqZ.mjs +67 -0
- package/dist/shared/preset-wind.DRADYSMV.d.mts +6 -0
- package/dist/shared/preset-wind.DRADYSMV.d.ts +6 -0
- package/dist/shared/preset-wind.TzkR3UCF.mjs +263 -0
- package/dist/shared/preset-wind.aiu9p7G7.mjs +634 -0
- package/dist/shortcuts.d.mts +6 -0
- package/dist/shortcuts.d.ts +6 -0
- package/dist/shortcuts.mjs +9 -0
- package/dist/theme.d.mts +5 -0
- package/dist/theme.d.ts +5 -0
- package/dist/theme.mjs +315 -0
- package/dist/variants.d.mts +21 -0
- package/dist/variants.d.ts +21 -0
- package/dist/variants.mjs +4 -0
- package/package.json +21 -4
- package/rules.d.ts +1 -0
- package/shortcuts.d.ts +1 -0
- package/theme.d.ts +1 -0
- package/variants.d.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import * as _unocss_core from '@unocss/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Variant } from '@unocss/core';
|
|
3
3
|
import * as _unocss_preset_mini from '@unocss/preset-mini';
|
|
4
4
|
import { Theme, PresetMiniOptions } from '@unocss/preset-mini';
|
|
5
5
|
export { Theme, colors, preflights } from '@unocss/preset-mini';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
declare const shortcuts: _unocss_core.Shortcut<_unocss_preset_mini.Theme>[];
|
|
10
|
-
|
|
11
|
-
declare const theme: Theme;
|
|
6
|
+
export { shortcuts } from './shortcuts.mjs';
|
|
7
|
+
export { theme } from './theme.mjs';
|
|
8
|
+
export { r as rules } from './shared/preset-wind.DRADYSMV.mjs';
|
|
12
9
|
|
|
13
10
|
declare function variants(options: PresetWindOptions): Variant<Theme>[];
|
|
14
11
|
|
|
@@ -33,4 +30,4 @@ interface PresetWindOptions extends PresetMiniOptions {
|
|
|
33
30
|
*/
|
|
34
31
|
declare const presetWind: _unocss_core.PresetFactory<_unocss_preset_mini.Theme, PresetWindOptions>;
|
|
35
32
|
|
|
36
|
-
export { type PresetWindOptions, presetWind as default, presetWind,
|
|
33
|
+
export { type PresetWindOptions, presetWind as default, presetWind, variants };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import * as _unocss_core from '@unocss/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Variant } from '@unocss/core';
|
|
3
3
|
import * as _unocss_preset_mini from '@unocss/preset-mini';
|
|
4
4
|
import { Theme, PresetMiniOptions } from '@unocss/preset-mini';
|
|
5
5
|
export { Theme, colors, preflights } from '@unocss/preset-mini';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
declare const shortcuts: _unocss_core.Shortcut<_unocss_preset_mini.Theme>[];
|
|
10
|
-
|
|
11
|
-
declare const theme: Theme;
|
|
6
|
+
export { shortcuts } from './shortcuts.js';
|
|
7
|
+
export { theme } from './theme.js';
|
|
8
|
+
export { r as rules } from './shared/preset-wind.DRADYSMV.js';
|
|
12
9
|
|
|
13
10
|
declare function variants(options: PresetWindOptions): Variant<Theme>[];
|
|
14
11
|
|
|
@@ -33,4 +30,4 @@ interface PresetWindOptions extends PresetMiniOptions {
|
|
|
33
30
|
*/
|
|
34
31
|
declare const presetWind: _unocss_core.PresetFactory<_unocss_preset_mini.Theme, PresetWindOptions>;
|
|
35
32
|
|
|
36
|
-
export { type PresetWindOptions, presetWind as default, presetWind,
|
|
33
|
+
export { type PresetWindOptions, presetWind as default, presetWind, variants };
|