@una-ui/preset 0.33.0-beta.1 → 0.35.0-beta.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 +2 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.mjs +1 -1
- package/dist/prefixes.d.cts +1 -1
- package/dist/shared/preset.C2lUQXA3.mjs +1058 -0
- package/dist/shared/preset.Dy9tdMuK.cjs +1060 -0
- package/dist/shortcuts.cjs +4 -1055
- package/dist/shortcuts.mjs +3 -1058
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -5,7 +5,7 @@ const colors = require('@unocss/preset-mini/colors');
|
|
|
5
5
|
const rules = require('@unocss/preset-mini/rules');
|
|
6
6
|
const utils = require('@unocss/preset-mini/utils');
|
|
7
7
|
const unocss = require('unocss');
|
|
8
|
-
const
|
|
8
|
+
const index = require('./shared/preset.Dy9tdMuK.cjs');
|
|
9
9
|
|
|
10
10
|
function presetUna(options = {
|
|
11
11
|
// TODO: add options
|
|
@@ -13,7 +13,7 @@ function presetUna(options = {
|
|
|
13
13
|
return {
|
|
14
14
|
name: "@una-ui/preset",
|
|
15
15
|
options,
|
|
16
|
-
shortcuts:
|
|
16
|
+
shortcuts: index.shortcuts,
|
|
17
17
|
theme: unocss.mergeDeep(presetMini.theme, {
|
|
18
18
|
container: {
|
|
19
19
|
center: true,
|
package/dist/index.d.cts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import { colors } from '@unocss/preset-mini/colors';
|
|
|
3
3
|
import { fonts } from '@unocss/preset-mini/rules';
|
|
4
4
|
import { parseColor } from '@unocss/preset-mini/utils';
|
|
5
5
|
import { mergeDeep } from 'unocss';
|
|
6
|
-
import { shortcuts } from './
|
|
6
|
+
import { s as shortcuts } from './shared/preset.C2lUQXA3.mjs';
|
|
7
7
|
|
|
8
8
|
function presetUna(options = {
|
|
9
9
|
// TODO: add options
|
package/dist/prefixes.d.cts
CHANGED