unocss 0.34.0 → 0.35.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 +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +1 -0
- package/dist/preset-tagify.cjs +11 -0
- package/dist/preset-tagify.d.ts +1 -0
- package/dist/preset-tagify.mjs +1 -0
- package/package.json +56 -50
package/dist/index.cjs
CHANGED
|
@@ -5,6 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
const core = require('@unocss/core');
|
|
6
6
|
const presetUno = require('@unocss/preset-uno');
|
|
7
7
|
const presetAttributify = require('@unocss/preset-attributify');
|
|
8
|
+
const presetTagify = require('@unocss/preset-tagify');
|
|
8
9
|
const presetIcons = require('@unocss/preset-icons');
|
|
9
10
|
const presetWebFonts = require('@unocss/preset-web-fonts');
|
|
10
11
|
const presetTypography = require('@unocss/preset-typography');
|
|
@@ -18,6 +19,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
18
19
|
|
|
19
20
|
const presetUno__default = /*#__PURE__*/_interopDefaultLegacy(presetUno);
|
|
20
21
|
const presetAttributify__default = /*#__PURE__*/_interopDefaultLegacy(presetAttributify);
|
|
22
|
+
const presetTagify__default = /*#__PURE__*/_interopDefaultLegacy(presetTagify);
|
|
21
23
|
const presetIcons__default = /*#__PURE__*/_interopDefaultLegacy(presetIcons);
|
|
22
24
|
const presetWebFonts__default = /*#__PURE__*/_interopDefaultLegacy(presetWebFonts);
|
|
23
25
|
const presetTypography__default = /*#__PURE__*/_interopDefaultLegacy(presetTypography);
|
|
@@ -33,6 +35,7 @@ function defineConfig(config) {
|
|
|
33
35
|
|
|
34
36
|
exports.presetUno = presetUno__default;
|
|
35
37
|
exports.presetAttributify = presetAttributify__default;
|
|
38
|
+
exports.presetTagify = presetTagify__default;
|
|
36
39
|
exports.presetIcons = presetIcons__default;
|
|
37
40
|
exports.presetWebFonts = presetWebFonts__default;
|
|
38
41
|
exports.presetTypography = presetTypography__default;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { UserConfig } from '@unocss/core';
|
|
|
2
2
|
export * from '@unocss/core';
|
|
3
3
|
export { default as presetUno } from '@unocss/preset-uno';
|
|
4
4
|
export { default as presetAttributify } from '@unocss/preset-attributify';
|
|
5
|
+
export { default as presetTagify } from '@unocss/preset-tagify';
|
|
5
6
|
export { default as presetIcons } from '@unocss/preset-icons';
|
|
6
7
|
export { default as presetWebFonts } from '@unocss/preset-web-fonts';
|
|
7
8
|
export { default as presetTypography } from '@unocss/preset-typography';
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from '@unocss/core';
|
|
2
2
|
export { default as presetUno } from '@unocss/preset-uno';
|
|
3
3
|
export { default as presetAttributify } from '@unocss/preset-attributify';
|
|
4
|
+
export { default as presetTagify } from '@unocss/preset-tagify';
|
|
4
5
|
export { default as presetIcons } from '@unocss/preset-icons';
|
|
5
6
|
export { default as presetWebFonts } from '@unocss/preset-web-fonts';
|
|
6
7
|
export { default as presetTypography } from '@unocss/preset-typography';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const presetAttributify = require('@unocss/preset-attributify');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
for (const k in presetAttributify) {
|
|
10
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = presetAttributify[k];
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@unocss/preset-attributify';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@unocss/preset-attributify';
|
package/package.json
CHANGED
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unocss",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.1",
|
|
4
4
|
"description": "The instant on-demand Atomic CSS engine.",
|
|
5
|
+
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"funding": "https://github.com/sponsors/antfu",
|
|
8
|
+
"homepage": "https://github.com/unocss/unocss#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/unocss/unocss.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/unocss/unocss/issues"
|
|
15
|
+
},
|
|
5
16
|
"keywords": [
|
|
6
17
|
"unocss",
|
|
7
18
|
"atomic-css",
|
|
@@ -10,91 +21,86 @@
|
|
|
10
21
|
"tailwind",
|
|
11
22
|
"windicss"
|
|
12
23
|
],
|
|
13
|
-
"
|
|
14
|
-
"bugs": {
|
|
15
|
-
"url": "https://github.com/unocss/unocss/issues"
|
|
16
|
-
},
|
|
17
|
-
"license": "MIT",
|
|
18
|
-
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/unocss/unocss.git"
|
|
22
|
-
},
|
|
23
|
-
"funding": "https://github.com/sponsors/antfu",
|
|
24
|
-
"main": "dist/index.cjs",
|
|
25
|
-
"module": "dist/index.mjs",
|
|
26
|
-
"types": "index.d.ts",
|
|
24
|
+
"sideEffects": false,
|
|
27
25
|
"exports": {
|
|
28
26
|
".": {
|
|
29
|
-
"
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
30
28
|
"import": "./dist/index.mjs",
|
|
31
|
-
"
|
|
29
|
+
"require": "./dist/index.cjs"
|
|
32
30
|
},
|
|
33
31
|
"./preset-attributify": {
|
|
34
|
-
"
|
|
32
|
+
"types": "./dist/preset-attributify.d.ts",
|
|
35
33
|
"import": "./dist/preset-attributify.mjs",
|
|
36
|
-
"
|
|
34
|
+
"require": "./dist/preset-attributify.cjs"
|
|
35
|
+
},
|
|
36
|
+
"./preset-tagify": {
|
|
37
|
+
"types": "./dist/preset-tagify.d.ts",
|
|
38
|
+
"import": "./dist/preset-tagify.mjs",
|
|
39
|
+
"require": "./dist/preset-tagify.cjs"
|
|
37
40
|
},
|
|
38
41
|
"./preset-icons": {
|
|
39
|
-
"
|
|
42
|
+
"types": "./dist/preset-icons.d.ts",
|
|
40
43
|
"import": "./dist/preset-icons.mjs",
|
|
41
|
-
"
|
|
44
|
+
"require": "./dist/preset-icons.cjs"
|
|
42
45
|
},
|
|
43
46
|
"./preset-mini": {
|
|
44
|
-
"
|
|
47
|
+
"types": "./dist/preset-mini.d.ts",
|
|
45
48
|
"import": "./dist/preset-mini.mjs",
|
|
46
|
-
"
|
|
49
|
+
"require": "./dist/preset-mini.cjs"
|
|
47
50
|
},
|
|
48
51
|
"./preset-typography": {
|
|
49
|
-
"
|
|
52
|
+
"types": "./dist/preset-typography.d.ts",
|
|
50
53
|
"import": "./dist/preset-typography.mjs",
|
|
51
|
-
"
|
|
54
|
+
"require": "./dist/preset-typography.cjs"
|
|
52
55
|
},
|
|
53
56
|
"./preset-uno": {
|
|
54
|
-
"
|
|
57
|
+
"types": "./dist/preset-uno.d.ts",
|
|
55
58
|
"import": "./dist/preset-uno.mjs",
|
|
56
|
-
"
|
|
59
|
+
"require": "./dist/preset-uno.cjs"
|
|
57
60
|
},
|
|
58
61
|
"./preset-web-fonts": {
|
|
59
|
-
"
|
|
62
|
+
"types": "./dist/preset-web-fonts.d.ts",
|
|
60
63
|
"import": "./dist/preset-web-fonts.mjs",
|
|
61
|
-
"
|
|
64
|
+
"require": "./dist/preset-web-fonts.cjs"
|
|
62
65
|
},
|
|
63
66
|
"./preset-wind": {
|
|
64
|
-
"
|
|
67
|
+
"types": "./dist/preset-wind.d.ts",
|
|
65
68
|
"import": "./dist/preset-wind.mjs",
|
|
66
|
-
"
|
|
69
|
+
"require": "./dist/preset-wind.cjs"
|
|
67
70
|
},
|
|
68
71
|
"./vite": {
|
|
69
|
-
"
|
|
72
|
+
"types": "./dist/vite.d.ts",
|
|
70
73
|
"import": "./dist/vite.mjs",
|
|
71
|
-
"
|
|
74
|
+
"require": "./dist/vite.cjs"
|
|
72
75
|
}
|
|
73
76
|
},
|
|
77
|
+
"main": "dist/index.cjs",
|
|
78
|
+
"module": "dist/index.mjs",
|
|
79
|
+
"types": "index.d.ts",
|
|
74
80
|
"files": [
|
|
75
81
|
"dist",
|
|
76
82
|
"*.d.ts"
|
|
77
83
|
],
|
|
78
|
-
"sideEffects": false,
|
|
79
|
-
"dependencies": {
|
|
80
|
-
"@unocss/cli": "0.34.0",
|
|
81
|
-
"@unocss/core": "0.34.0",
|
|
82
|
-
"@unocss/preset-attributify": "0.34.0",
|
|
83
|
-
"@unocss/preset-icons": "0.34.0",
|
|
84
|
-
"@unocss/preset-mini": "0.34.0",
|
|
85
|
-
"@unocss/preset-typography": "0.34.0",
|
|
86
|
-
"@unocss/preset-uno": "0.34.0",
|
|
87
|
-
"@unocss/preset-web-fonts": "0.34.0",
|
|
88
|
-
"@unocss/preset-wind": "0.34.0",
|
|
89
|
-
"@unocss/reset": "0.34.0",
|
|
90
|
-
"@unocss/transformer-compile-class": "0.34.0",
|
|
91
|
-
"@unocss/transformer-directives": "0.34.0",
|
|
92
|
-
"@unocss/transformer-variant-group": "0.34.0",
|
|
93
|
-
"@unocss/vite": "0.34.0"
|
|
94
|
-
},
|
|
95
84
|
"engines": {
|
|
96
85
|
"node": ">=14"
|
|
97
86
|
},
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"@unocss/cli": "0.35.1",
|
|
89
|
+
"@unocss/core": "0.35.1",
|
|
90
|
+
"@unocss/preset-attributify": "0.35.1",
|
|
91
|
+
"@unocss/preset-icons": "0.35.1",
|
|
92
|
+
"@unocss/preset-mini": "0.35.1",
|
|
93
|
+
"@unocss/preset-tagify": "0.35.1",
|
|
94
|
+
"@unocss/preset-typography": "0.35.1",
|
|
95
|
+
"@unocss/preset-uno": "0.35.1",
|
|
96
|
+
"@unocss/preset-web-fonts": "0.35.1",
|
|
97
|
+
"@unocss/preset-wind": "0.35.1",
|
|
98
|
+
"@unocss/reset": "0.35.1",
|
|
99
|
+
"@unocss/transformer-compile-class": "0.35.1",
|
|
100
|
+
"@unocss/transformer-directives": "0.35.1",
|
|
101
|
+
"@unocss/transformer-variant-group": "0.35.1",
|
|
102
|
+
"@unocss/vite": "0.35.1"
|
|
103
|
+
},
|
|
98
104
|
"scripts": {
|
|
99
105
|
"build": "unbuild",
|
|
100
106
|
"stub": "unbuild --stub"
|