@unocss/preset-attributify 66.6.0 → 66.6.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.
Files changed (2) hide show
  1. package/dist/index.d.mts +1 -1
  2. package/package.json +4 -8
package/dist/index.d.mts CHANGED
@@ -58,7 +58,7 @@ type TwoStringsCompositionSuffix = 'r' | 'b' | 'l' | 't' | 'a' | 'x' | 'y';
58
58
  type TwoStringsComposition = `${TwoStringsCompositionPrefix}${TwoStringsCompositionSuffix}` | 'ha' | 'wa';
59
59
  /** Some words can be a complete unocss rule by itself */
60
60
  type SpecialSingleWord = 'container' | 'flex' | 'block' | 'inline' | 'table' | 'isolate' | 'absolute' | 'relative' | 'fixed' | 'sticky' | 'static' | 'visible' | 'invisible' | 'grow' | 'shrink' | 'antialiased' | 'italic' | 'ordinal' | 'overline' | 'underline' | 'uppercase' | 'lowercase' | 'capitalize' | 'truncate' | 'border' | 'rounded' | 'outline' | 'ring' | 'shadow' | 'blur' | 'grayscale' | 'invert' | 'sepia' | 'transition' | 'resize' | 'transform' | 'filter';
61
- type PseudoPrefix = 'active' | 'before' | 'after' | 'dark' | 'light' | 'first' | 'last' | 'focus' | 'hover' | 'link' | 'root' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'enabled' | 'disabled' | 'all' | 'children';
61
+ type PseudoPrefix = 'active' | 'before' | 'after' | 'dark' | 'light' | 'first' | 'last' | 'focus' | 'hover' | 'link' | 'print' | 'root' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'enabled' | 'disabled' | 'all' | 'children';
62
62
  /** Some words can be used to separate utilities, such as font="mono light", text="sm white" */
63
63
  type SeparateEnabled = 'align' | 'animate' | 'backdrop' | 'bg' | 'blend' | 'border' | 'box' | 'container' | 'content' | 'cursor' | 'display' | 'divide' | 'filter' | 'flex' | 'font' | 'fw' | 'gap' | 'gradient' | 'grid' | 'h' | 'icon' | 'items' | 'justify' | 'list' | 'm' | 'op' | 'opacity' | 'order' | 'outline' | 'overflow' | 'p' | 'place' | 'pos' | 'position' | 'ring' | 'select' | 'shadow' | 'size' | 'space' | 'table' | 'text' | 'transform' | 'transition' | 'underline' | 'w' | 'z' | PseudoPrefix;
64
64
  type BasicAttributes = SpecialSingleWord | TwoStringsComposition | SeparateEnabled;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unocss/preset-attributify",
3
3
  "type": "module",
4
- "version": "66.6.0",
4
+ "version": "66.6.2",
5
5
  "description": "Attributify preset for UnoCSS",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -21,19 +21,15 @@
21
21
  ],
22
22
  "sideEffects": false,
23
23
  "exports": {
24
- ".": {
25
- "types": "./dist/index.d.mts",
26
- "default": "./dist/index.mjs"
27
- }
24
+ ".": "./dist/index.mjs",
25
+ "./package.json": "./package.json"
28
26
  },
29
- "main": "dist/index.mjs",
30
- "module": "dist/index.mjs",
31
27
  "types": "dist/index.d.mts",
32
28
  "files": [
33
29
  "dist"
34
30
  ],
35
31
  "dependencies": {
36
- "@unocss/core": "66.6.0"
32
+ "@unocss/core": "66.6.2"
37
33
  },
38
34
  "scripts": {
39
35
  "build": "tsdown",