@unocss/preset-tagify 0.41.2 → 0.43.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.cjs +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +3 -3
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -54,7 +54,7 @@ const variantTagify = (options) => {
|
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
function tagifyPreset(options = {}) {
|
|
58
58
|
const {
|
|
59
59
|
defaultExtractor = true
|
|
60
60
|
} = options;
|
|
@@ -71,10 +71,10 @@ const preset = (options = {}) => {
|
|
|
71
71
|
variants,
|
|
72
72
|
extractors
|
|
73
73
|
};
|
|
74
|
-
}
|
|
74
|
+
}
|
|
75
75
|
|
|
76
76
|
exports.MARKER = MARKER;
|
|
77
|
-
exports["default"] =
|
|
77
|
+
exports["default"] = tagifyPreset;
|
|
78
78
|
exports.extractorTagify = extractorTagify;
|
|
79
79
|
exports.htmlTagRE = htmlTagRE;
|
|
80
80
|
exports.variantTagify = variantTagify;
|
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,6 @@ declare const extractorTagify: (options: TagifyOptions) => Extractor;
|
|
|
27
27
|
|
|
28
28
|
declare const variantTagify: (options: TagifyOptions) => VariantObject;
|
|
29
29
|
|
|
30
|
-
declare
|
|
30
|
+
declare function tagifyPreset(options?: TagifyOptions): Preset;
|
|
31
31
|
|
|
32
|
-
export { MARKER, TagifyOptions,
|
|
32
|
+
export { MARKER, TagifyOptions, tagifyPreset as default, extractorTagify, htmlTagRE, variantTagify };
|
package/dist/index.mjs
CHANGED
|
@@ -50,7 +50,7 @@ const variantTagify = (options) => {
|
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
function tagifyPreset(options = {}) {
|
|
54
54
|
const {
|
|
55
55
|
defaultExtractor = true
|
|
56
56
|
} = options;
|
|
@@ -67,6 +67,6 @@ const preset = (options = {}) => {
|
|
|
67
67
|
variants,
|
|
68
68
|
extractors
|
|
69
69
|
};
|
|
70
|
-
}
|
|
70
|
+
}
|
|
71
71
|
|
|
72
|
-
export { MARKER,
|
|
72
|
+
export { MARKER, tagifyPreset as default, extractorTagify, htmlTagRE, variantTagify };
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/preset-tagify",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.43.0",
|
|
4
4
|
"description": "Tagify preset for UnoCSS",
|
|
5
5
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://github.com/sponsors/antfu",
|
|
8
|
-
"homepage": "https://github.com/unocss/unocss/tree/main/packages/
|
|
8
|
+
"homepage": "https://github.com/unocss/unocss/tree/main/packages/preset-tagify#readme",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/unocss/unocss.git",
|
|
12
|
-
"directory": "packages/
|
|
12
|
+
"directory": "packages/preset-tagify"
|
|
13
13
|
},
|
|
14
14
|
"bugs": {
|
|
15
15
|
"url": "https://github.com/unocss/unocss/issues"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dist"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@unocss/core": "0.
|
|
36
|
+
"@unocss/core": "0.43.0"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "unbuild",
|