@unocss/preset-uno 0.12.10 → 0.12.14

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.
@@ -124,12 +124,55 @@ var keyframes = {
124
124
  "back-out-right": "{0%{opacity:1;transform:scale(1)}80%{opacity:0.7;transform:translateY(0px) scale(0.7)}100%{opacity:0.7;transform:translateX(2000px) scale(0.7)}}",
125
125
  "back-out-left": "{0%{opacity:1;transform:scale(1)}80%{opacity:0.7;transform:translateX(-2000px) scale(0.7)}100%{opacity:0.7;transform:translateY(-700px) scale(0.7)}}"
126
126
  };
127
+ var durations = {
128
+ "heart-beat": "1.3s",
129
+ "bounce-in": "0.75s",
130
+ "bounce-out": "0.75s",
131
+ "flip-out-x": "0.75s",
132
+ "flip-out-y": "0.75s",
133
+ "hinge": "2s"
134
+ };
135
+ var timingFns = {
136
+ "head-shake": "ease-in-out",
137
+ "heart-beat": "ease-in-out",
138
+ "pulse": "ease-in-out",
139
+ "light-speed-in-left": "ease-out",
140
+ "light-speed-in-right": "ease-out",
141
+ "light-speed-out-left": "ease-in",
142
+ "light-speed-out-right": "ease-in"
143
+ };
144
+ var properties = {
145
+ "bounce": { "transform-origin": "center bottom" },
146
+ "jello": { "transform-origin": "center" },
147
+ "swing": { "transform-origin": "top center" },
148
+ "flip": { "backface-visibility": "visible" },
149
+ "flip-in-x": { "backface-visibility": "visible !important" },
150
+ "flip-in-y": { "backface-visibility": "visible !important" },
151
+ "flip-out-x": { "backface-visibility": "visible !important" },
152
+ "flip-out-y": { "backface-visibility": "visible !important" },
153
+ "rotate-in": { "transform-origin": "center" },
154
+ "rotate-in-down-left": { "transform-origin": "left bottom" },
155
+ "rotate-in-down-right": { "transform-origin": "right bottom" },
156
+ "rotate-in-up-left": { "transform-origin": "left bottom" },
157
+ "rotate-in-up-right": { "transform-origin": "right bottom" },
158
+ "rotate-out": { "transform-origin": "center" },
159
+ "rotate-out-down-left": { "transform-origin": "left bottom" },
160
+ "rotate-out-down-right": { "transform-origin": "right bottom" },
161
+ "rotate-out-up-left": { "transform-origin": "left bottom" },
162
+ "rotate-out-up-right": { "transform-origin": "right bottom" },
163
+ "hinge": { "transform-origin": "top left" },
164
+ "zoom-out-down": { "transform-origin": "center bottom" },
165
+ "zoom-out-left": { "transform-origin": "left center" },
166
+ "zoom-out-right": { "transform-origin": "right center" },
167
+ "zoom-out-up": { "transform-origin": "center bottom" }
168
+ };
127
169
  var animations = [
128
170
  [/^animate-(.*)$/, ([, name], { constructCSS }) => {
129
171
  const kf = keyframes[name];
130
- if (kf)
172
+ if (kf) {
131
173
  return `@keyframes ${name}${kf}
132
- ${constructCSS({ animation: `${name} 1s linear infinite` })}`;
174
+ ${constructCSS(Object.assign({ animation: `${name} ${durations[name] || "1s"} ${timingFns[name] || "linear"} infinite` }, properties[name]))}`;
175
+ }
133
176
  }],
134
177
  ["animate-none", { animation: "none" }],
135
178
  [/^animate(?:-duration)?-((.+)(?:(s|ms)?))$/, ([, d]) => ({ "animation-duration": _chunk656YWVSKjs.handler.bracket.time(d.replace(/-duration/, "")) })],
@@ -929,13 +972,6 @@ var grids = [
929
972
  [/^grid-rows-(\d+)$/, ([, d]) => ({ "grid-template-rows": `repeat(${d},minmax(0,1fr))` })],
930
973
  [/^grid-cols-\[(.+)\]$/, ([, v]) => ({ "grid-template-columns": v.replace(/,/g, " ") })],
931
974
  [/^grid-rows-\[(.+)\]$/, ([, v]) => ({ "grid-template-rows": v.replace(/,/g, " ") })],
932
- [/^(?:grid-)?auto-flow-([\w.-]+)$/, ([, v]) => ({ "grid-auto-flow": `${v.replace("col", "column").split("-").join(" ")}` })],
933
- [/^(?:grid-)?row-start-([\w.-]+)$/, ([, v]) => ({ "grid-row-start": `${v}` })],
934
- [/^(?:grid-)?row-end-([\w.-]+)$/, ([, v]) => ({ "grid-row-end": `${v}` })],
935
- [/^(?:grid-)?col-start-([\w.-]+)$/, ([, v]) => ({ "grid-column-start": `${v}` })],
936
- [/^(?:grid-)?col-end-([\w.]+)$/, ([, v]) => ({ "grid-column-end": `${v}` })],
937
- [/^(?:grid-)?auto-rows-([\w.-]+)$/, ([, v], { theme }) => ({ "grid-auto-rows": `${autoDirection(v, theme)}` })],
938
- [/^(?:grid-)?auto-cols-([\w.-]+)$/, ([, v], { theme }) => ({ "grid-auto-columns": `${autoDirection(v, theme)}` })],
939
975
  [/^(?:grid-)?(row|col)-(.+)$/, ([, d, v]) => {
940
976
  var _a;
941
977
  const key = d === "row" ? "grid-row" : "grid-column";
@@ -952,7 +988,14 @@ var grids = [
952
988
  if (raw)
953
989
  return { [key]: `span ${raw}/span ${raw}` };
954
990
  }
955
- }]
991
+ }],
992
+ [/^(?:grid-)?auto-flow-([\w.-]+)$/, ([, v]) => ({ "grid-auto-flow": `${v.replace("col", "column").split("-").join(" ")}` })],
993
+ [/^(?:grid-)?row-start-([\w.-]+)$/, ([, v]) => ({ "grid-row-start": `${v}` })],
994
+ [/^(?:grid-)?row-end-([\w.-]+)$/, ([, v]) => ({ "grid-row-end": `${v}` })],
995
+ [/^(?:grid-)?col-start-([\w.-]+)$/, ([, v]) => ({ "grid-column-start": `${v}` })],
996
+ [/^(?:grid-)?col-end-([\w.]+)$/, ([, v]) => ({ "grid-column-end": `${v}` })],
997
+ [/^(?:grid-)?auto-rows-([\w.-]+)$/, ([, v], { theme }) => ({ "grid-auto-rows": `${autoDirection(v, theme)}` })],
998
+ [/^(?:grid-)?auto-cols-([\w.-]+)$/, ([, v], { theme }) => ({ "grid-auto-columns": `${autoDirection(v, theme)}` })]
956
999
  ];
957
1000
 
958
1001
  // src/rules/layout.ts
@@ -111,6 +111,7 @@ var PseudoClasses = Object.fromEntries([
111
111
  "default",
112
112
  "empty",
113
113
  "enabled",
114
+ "disabled",
114
115
  "first-of-type",
115
116
  ["first", "first-child"],
116
117
  "focus-visible",
@@ -111,6 +111,7 @@ var PseudoClasses = Object.fromEntries([
111
111
  "default",
112
112
  "empty",
113
113
  "enabled",
114
+ "disabled",
114
115
  "first-of-type",
115
116
  ["first", "first-child"],
116
117
  "focus-visible",
@@ -124,12 +124,55 @@ var keyframes = {
124
124
  "back-out-right": "{0%{opacity:1;transform:scale(1)}80%{opacity:0.7;transform:translateY(0px) scale(0.7)}100%{opacity:0.7;transform:translateX(2000px) scale(0.7)}}",
125
125
  "back-out-left": "{0%{opacity:1;transform:scale(1)}80%{opacity:0.7;transform:translateX(-2000px) scale(0.7)}100%{opacity:0.7;transform:translateY(-700px) scale(0.7)}}"
126
126
  };
127
+ var durations = {
128
+ "heart-beat": "1.3s",
129
+ "bounce-in": "0.75s",
130
+ "bounce-out": "0.75s",
131
+ "flip-out-x": "0.75s",
132
+ "flip-out-y": "0.75s",
133
+ "hinge": "2s"
134
+ };
135
+ var timingFns = {
136
+ "head-shake": "ease-in-out",
137
+ "heart-beat": "ease-in-out",
138
+ "pulse": "ease-in-out",
139
+ "light-speed-in-left": "ease-out",
140
+ "light-speed-in-right": "ease-out",
141
+ "light-speed-out-left": "ease-in",
142
+ "light-speed-out-right": "ease-in"
143
+ };
144
+ var properties = {
145
+ "bounce": { "transform-origin": "center bottom" },
146
+ "jello": { "transform-origin": "center" },
147
+ "swing": { "transform-origin": "top center" },
148
+ "flip": { "backface-visibility": "visible" },
149
+ "flip-in-x": { "backface-visibility": "visible !important" },
150
+ "flip-in-y": { "backface-visibility": "visible !important" },
151
+ "flip-out-x": { "backface-visibility": "visible !important" },
152
+ "flip-out-y": { "backface-visibility": "visible !important" },
153
+ "rotate-in": { "transform-origin": "center" },
154
+ "rotate-in-down-left": { "transform-origin": "left bottom" },
155
+ "rotate-in-down-right": { "transform-origin": "right bottom" },
156
+ "rotate-in-up-left": { "transform-origin": "left bottom" },
157
+ "rotate-in-up-right": { "transform-origin": "right bottom" },
158
+ "rotate-out": { "transform-origin": "center" },
159
+ "rotate-out-down-left": { "transform-origin": "left bottom" },
160
+ "rotate-out-down-right": { "transform-origin": "right bottom" },
161
+ "rotate-out-up-left": { "transform-origin": "left bottom" },
162
+ "rotate-out-up-right": { "transform-origin": "right bottom" },
163
+ "hinge": { "transform-origin": "top left" },
164
+ "zoom-out-down": { "transform-origin": "center bottom" },
165
+ "zoom-out-left": { "transform-origin": "left center" },
166
+ "zoom-out-right": { "transform-origin": "right center" },
167
+ "zoom-out-up": { "transform-origin": "center bottom" }
168
+ };
127
169
  var animations = [
128
170
  [/^animate-(.*)$/, ([, name], { constructCSS }) => {
129
171
  const kf = keyframes[name];
130
- if (kf)
172
+ if (kf) {
131
173
  return `@keyframes ${name}${kf}
132
- ${constructCSS({ animation: `${name} 1s linear infinite` })}`;
174
+ ${constructCSS(Object.assign({ animation: `${name} ${durations[name] || "1s"} ${timingFns[name] || "linear"} infinite` }, properties[name]))}`;
175
+ }
133
176
  }],
134
177
  ["animate-none", { animation: "none" }],
135
178
  [/^animate(?:-duration)?-((.+)(?:(s|ms)?))$/, ([, d]) => ({ "animation-duration": handler.bracket.time(d.replace(/-duration/, "")) })],
@@ -929,13 +972,6 @@ var grids = [
929
972
  [/^grid-rows-(\d+)$/, ([, d]) => ({ "grid-template-rows": `repeat(${d},minmax(0,1fr))` })],
930
973
  [/^grid-cols-\[(.+)\]$/, ([, v]) => ({ "grid-template-columns": v.replace(/,/g, " ") })],
931
974
  [/^grid-rows-\[(.+)\]$/, ([, v]) => ({ "grid-template-rows": v.replace(/,/g, " ") })],
932
- [/^(?:grid-)?auto-flow-([\w.-]+)$/, ([, v]) => ({ "grid-auto-flow": `${v.replace("col", "column").split("-").join(" ")}` })],
933
- [/^(?:grid-)?row-start-([\w.-]+)$/, ([, v]) => ({ "grid-row-start": `${v}` })],
934
- [/^(?:grid-)?row-end-([\w.-]+)$/, ([, v]) => ({ "grid-row-end": `${v}` })],
935
- [/^(?:grid-)?col-start-([\w.-]+)$/, ([, v]) => ({ "grid-column-start": `${v}` })],
936
- [/^(?:grid-)?col-end-([\w.]+)$/, ([, v]) => ({ "grid-column-end": `${v}` })],
937
- [/^(?:grid-)?auto-rows-([\w.-]+)$/, ([, v], { theme }) => ({ "grid-auto-rows": `${autoDirection(v, theme)}` })],
938
- [/^(?:grid-)?auto-cols-([\w.-]+)$/, ([, v], { theme }) => ({ "grid-auto-columns": `${autoDirection(v, theme)}` })],
939
975
  [/^(?:grid-)?(row|col)-(.+)$/, ([, d, v]) => {
940
976
  var _a;
941
977
  const key = d === "row" ? "grid-row" : "grid-column";
@@ -952,7 +988,14 @@ var grids = [
952
988
  if (raw)
953
989
  return { [key]: `span ${raw}/span ${raw}` };
954
990
  }
955
- }]
991
+ }],
992
+ [/^(?:grid-)?auto-flow-([\w.-]+)$/, ([, v]) => ({ "grid-auto-flow": `${v.replace("col", "column").split("-").join(" ")}` })],
993
+ [/^(?:grid-)?row-start-([\w.-]+)$/, ([, v]) => ({ "grid-row-start": `${v}` })],
994
+ [/^(?:grid-)?row-end-([\w.-]+)$/, ([, v]) => ({ "grid-row-end": `${v}` })],
995
+ [/^(?:grid-)?col-start-([\w.-]+)$/, ([, v]) => ({ "grid-column-start": `${v}` })],
996
+ [/^(?:grid-)?col-end-([\w.]+)$/, ([, v]) => ({ "grid-column-end": `${v}` })],
997
+ [/^(?:grid-)?auto-rows-([\w.-]+)$/, ([, v], { theme }) => ({ "grid-auto-rows": `${autoDirection(v, theme)}` })],
998
+ [/^(?:grid-)?auto-cols-([\w.-]+)$/, ([, v], { theme }) => ({ "grid-auto-columns": `${autoDirection(v, theme)}` })]
956
999
  ];
957
1000
 
958
1001
  // src/rules/layout.ts
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkUV3NWOFOjs = require('./chunk-UV3NWOFO.js');
4
+ var _chunkJ37IUOY3js = require('./chunk-J37IUOY3.js');
5
5
 
6
6
 
7
7
  var _chunkBOWXQI3Bjs = require('./chunk-BOWXQI3B.js');
@@ -12,7 +12,7 @@ var _chunk7O4GGKN3js = require('./chunk-7O4GGKN3.js');
12
12
 
13
13
 
14
14
 
15
- var _chunkOS4OZVDFjs = require('./chunk-OS4OZVDF.js');
15
+ var _chunkJGM7CE2Ajs = require('./chunk-JGM7CE2A.js');
16
16
  require('./chunk-656YWVSK.js');
17
17
  require('./chunk-Y6EUTGDC.js');
18
18
 
@@ -20,13 +20,13 @@ require('./chunk-Y6EUTGDC.js');
20
20
  var preset = (options = {}) => ({
21
21
  name: "@unocss/preset-uno",
22
22
  theme: _chunkBOWXQI3Bjs.theme,
23
- rules: _chunkUV3NWOFOjs.rules,
23
+ rules: _chunkJ37IUOY3js.rules,
24
24
  variants: [
25
- ..._chunkOS4OZVDFjs.variants,
26
- ...options.dark === "media" ? _chunkOS4OZVDFjs.variantColorsMedia : _chunkOS4OZVDFjs.variantColorsClass
25
+ ..._chunkJGM7CE2Ajs.variants,
26
+ ...options.dark === "media" ? _chunkJGM7CE2Ajs.variantColorsMedia : _chunkJGM7CE2Ajs.variantColorsClass
27
27
  ],
28
28
  shortcuts: [
29
- ..._chunkUV3NWOFOjs.containerShortcuts
29
+ ..._chunkJ37IUOY3js.containerShortcuts
30
30
  ]
31
31
  });
32
32
  var src_default = preset;
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  containerShortcuts,
3
3
  rules
4
- } from "./chunk-SYJOVKFB.mjs";
4
+ } from "./chunk-YNAN5H4U.mjs";
5
5
  import {
6
6
  theme
7
7
  } from "./chunk-BLAKJWHG.mjs";
@@ -12,7 +12,7 @@ import {
12
12
  variantColorsClass,
13
13
  variantColorsMedia,
14
14
  variants
15
- } from "./chunk-PWRQWUXM.mjs";
15
+ } from "./chunk-MHI4RVPC.mjs";
16
16
  import "./chunk-5KT772UE.mjs";
17
17
  import "./chunk-5SH5BFJ4.mjs";
18
18
 
package/dist/rules.js CHANGED
@@ -108,7 +108,7 @@
108
108
 
109
109
 
110
110
 
111
- var _chunkUV3NWOFOjs = require('./chunk-UV3NWOFO.js');
111
+ var _chunkJ37IUOY3js = require('./chunk-J37IUOY3.js');
112
112
  require('./chunk-656YWVSK.js');
113
113
  require('./chunk-Y6EUTGDC.js');
114
114
 
@@ -221,4 +221,4 @@ require('./chunk-Y6EUTGDC.js');
221
221
 
222
222
 
223
223
 
224
- exports.alignContents = _chunkUV3NWOFOjs.alignContents; exports.alignItems = _chunkUV3NWOFOjs.alignItems; exports.alignSelfs = _chunkUV3NWOFOjs.alignSelfs; exports.animations = _chunkUV3NWOFOjs.animations; exports.appearance = _chunkUV3NWOFOjs.appearance; exports.appearances = _chunkUV3NWOFOjs.appearances; exports.aspectRatio = _chunkUV3NWOFOjs.aspectRatio; exports.bgAttachments = _chunkUV3NWOFOjs.bgAttachments; exports.bgBlendModes = _chunkUV3NWOFOjs.bgBlendModes; exports.bgClips = _chunkUV3NWOFOjs.bgClips; exports.bgColors = _chunkUV3NWOFOjs.bgColors; exports.bgGradients = _chunkUV3NWOFOjs.bgGradients; exports.bgImages = _chunkUV3NWOFOjs.bgImages; exports.bgOrigins = _chunkUV3NWOFOjs.bgOrigins; exports.bgPositions = _chunkUV3NWOFOjs.bgPositions; exports.bgRepeats = _chunkUV3NWOFOjs.bgRepeats; exports.bgSizes = _chunkUV3NWOFOjs.bgSizes; exports.borderColors = _chunkUV3NWOFOjs.borderColors; exports.borderRadius = _chunkUV3NWOFOjs.borderRadius; exports.borderSizes = _chunkUV3NWOFOjs.borderSizes; exports.borderStyles = _chunkUV3NWOFOjs.borderStyles; exports.borders = _chunkUV3NWOFOjs.borders; exports.boxDecorationBreaks = _chunkUV3NWOFOjs.boxDecorationBreaks; exports.boxShadows = _chunkUV3NWOFOjs.boxShadows; exports.boxSizing = _chunkUV3NWOFOjs.boxSizing; exports.breaks = _chunkUV3NWOFOjs.breaks; exports.caretColors = _chunkUV3NWOFOjs.caretColors; exports.caretOpacity = _chunkUV3NWOFOjs.caretOpacity; exports.colorResolver = _chunkUV3NWOFOjs.colorResolver; exports.container = _chunkUV3NWOFOjs.container; exports.containerShortcuts = _chunkUV3NWOFOjs.containerShortcuts; exports.cssVariables = _chunkUV3NWOFOjs.cssVariables; exports.cursors = _chunkUV3NWOFOjs.cursors; exports.displays = _chunkUV3NWOFOjs.displays; exports.divideColors = _chunkUV3NWOFOjs.divideColors; exports.divideSizes = _chunkUV3NWOFOjs.divideSizes; exports.divideStyles = _chunkUV3NWOFOjs.divideStyles; exports.divides = _chunkUV3NWOFOjs.divides; exports.fillColors = _chunkUV3NWOFOjs.fillColors; exports.filters = _chunkUV3NWOFOjs.filters; exports.flex = _chunkUV3NWOFOjs.flex; exports.floats = _chunkUV3NWOFOjs.floats; exports.fontSizes = _chunkUV3NWOFOjs.fontSizes; exports.fontSmoothings = _chunkUV3NWOFOjs.fontSmoothings; exports.fontStyles = _chunkUV3NWOFOjs.fontStyles; exports.fontWeights = _chunkUV3NWOFOjs.fontWeights; exports.fonts = _chunkUV3NWOFOjs.fonts; exports.fontsFamilies = _chunkUV3NWOFOjs.fontsFamilies; exports.gaps = _chunkUV3NWOFOjs.gaps; exports.grids = _chunkUV3NWOFOjs.grids; exports.hyphens = _chunkUV3NWOFOjs.hyphens; exports.imageRenderings = _chunkUV3NWOFOjs.imageRenderings; exports.insets = _chunkUV3NWOFOjs.insets; exports.isolations = _chunkUV3NWOFOjs.isolations; exports.justifies = _chunkUV3NWOFOjs.justifies; exports.justifyItems = _chunkUV3NWOFOjs.justifyItems; exports.justifySelfs = _chunkUV3NWOFOjs.justifySelfs; exports.leadings = _chunkUV3NWOFOjs.leadings; exports.lineClamps = _chunkUV3NWOFOjs.lineClamps; exports.listStyle = _chunkUV3NWOFOjs.listStyle; exports.margins = _chunkUV3NWOFOjs.margins; exports.mixBlendModes = _chunkUV3NWOFOjs.mixBlendModes; exports.objectPositions = _chunkUV3NWOFOjs.objectPositions; exports.opacity = _chunkUV3NWOFOjs.opacity; exports.orders = _chunkUV3NWOFOjs.orders; exports.outline = _chunkUV3NWOFOjs.outline; exports.overflows = _chunkUV3NWOFOjs.overflows; exports.overscrolls = _chunkUV3NWOFOjs.overscrolls; exports.paddings = _chunkUV3NWOFOjs.paddings; exports.parseColorUtil = _chunkUV3NWOFOjs.parseColorUtil; exports.placeContents = _chunkUV3NWOFOjs.placeContents; exports.placeItems = _chunkUV3NWOFOjs.placeItems; exports.placeSelfs = _chunkUV3NWOFOjs.placeSelfs; exports.placeholder = _chunkUV3NWOFOjs.placeholder; exports.pointerEvents = _chunkUV3NWOFOjs.pointerEvents; exports.positions = _chunkUV3NWOFOjs.positions; exports.questionMark = _chunkUV3NWOFOjs.questionMark; exports.resizes = _chunkUV3NWOFOjs.resizes; exports.ringColors = _chunkUV3NWOFOjs.ringColors; exports.ringOffsetColors = _chunkUV3NWOFOjs.ringOffsetColors; exports.rings = _chunkUV3NWOFOjs.rings; exports.rules = _chunkUV3NWOFOjs.rules; exports.screenReadersAccess = _chunkUV3NWOFOjs.screenReadersAccess; exports.sizes = _chunkUV3NWOFOjs.sizes; exports.tabSizes = _chunkUV3NWOFOjs.tabSizes; exports.tables = _chunkUV3NWOFOjs.tables; exports.textAligns = _chunkUV3NWOFOjs.textAligns; exports.textColors = _chunkUV3NWOFOjs.textColors; exports.textDecorationColors = _chunkUV3NWOFOjs.textDecorationColors; exports.textDecorationLengths = _chunkUV3NWOFOjs.textDecorationLengths; exports.textDecorationOffsets = _chunkUV3NWOFOjs.textDecorationOffsets; exports.textDecorationStyles = _chunkUV3NWOFOjs.textDecorationStyles; exports.textDecorations = _chunkUV3NWOFOjs.textDecorations; exports.textIndents = _chunkUV3NWOFOjs.textIndents; exports.textOverflows = _chunkUV3NWOFOjs.textOverflows; exports.textShadows = _chunkUV3NWOFOjs.textShadows; exports.textStrokeColors = _chunkUV3NWOFOjs.textStrokeColors; exports.textStrokeWidths = _chunkUV3NWOFOjs.textStrokeWidths; exports.textTransforms = _chunkUV3NWOFOjs.textTransforms; exports.trackings = _chunkUV3NWOFOjs.trackings; exports.transforms = _chunkUV3NWOFOjs.transforms; exports.transitions = _chunkUV3NWOFOjs.transitions; exports.userSelects = _chunkUV3NWOFOjs.userSelects; exports.verticalAligns = _chunkUV3NWOFOjs.verticalAligns; exports.whitespaces = _chunkUV3NWOFOjs.whitespaces; exports.wordSpacings = _chunkUV3NWOFOjs.wordSpacings; exports.writingModes = _chunkUV3NWOFOjs.writingModes; exports.writingOrientations = _chunkUV3NWOFOjs.writingOrientations; exports.zIndexes = _chunkUV3NWOFOjs.zIndexes;
224
+ exports.alignContents = _chunkJ37IUOY3js.alignContents; exports.alignItems = _chunkJ37IUOY3js.alignItems; exports.alignSelfs = _chunkJ37IUOY3js.alignSelfs; exports.animations = _chunkJ37IUOY3js.animations; exports.appearance = _chunkJ37IUOY3js.appearance; exports.appearances = _chunkJ37IUOY3js.appearances; exports.aspectRatio = _chunkJ37IUOY3js.aspectRatio; exports.bgAttachments = _chunkJ37IUOY3js.bgAttachments; exports.bgBlendModes = _chunkJ37IUOY3js.bgBlendModes; exports.bgClips = _chunkJ37IUOY3js.bgClips; exports.bgColors = _chunkJ37IUOY3js.bgColors; exports.bgGradients = _chunkJ37IUOY3js.bgGradients; exports.bgImages = _chunkJ37IUOY3js.bgImages; exports.bgOrigins = _chunkJ37IUOY3js.bgOrigins; exports.bgPositions = _chunkJ37IUOY3js.bgPositions; exports.bgRepeats = _chunkJ37IUOY3js.bgRepeats; exports.bgSizes = _chunkJ37IUOY3js.bgSizes; exports.borderColors = _chunkJ37IUOY3js.borderColors; exports.borderRadius = _chunkJ37IUOY3js.borderRadius; exports.borderSizes = _chunkJ37IUOY3js.borderSizes; exports.borderStyles = _chunkJ37IUOY3js.borderStyles; exports.borders = _chunkJ37IUOY3js.borders; exports.boxDecorationBreaks = _chunkJ37IUOY3js.boxDecorationBreaks; exports.boxShadows = _chunkJ37IUOY3js.boxShadows; exports.boxSizing = _chunkJ37IUOY3js.boxSizing; exports.breaks = _chunkJ37IUOY3js.breaks; exports.caretColors = _chunkJ37IUOY3js.caretColors; exports.caretOpacity = _chunkJ37IUOY3js.caretOpacity; exports.colorResolver = _chunkJ37IUOY3js.colorResolver; exports.container = _chunkJ37IUOY3js.container; exports.containerShortcuts = _chunkJ37IUOY3js.containerShortcuts; exports.cssVariables = _chunkJ37IUOY3js.cssVariables; exports.cursors = _chunkJ37IUOY3js.cursors; exports.displays = _chunkJ37IUOY3js.displays; exports.divideColors = _chunkJ37IUOY3js.divideColors; exports.divideSizes = _chunkJ37IUOY3js.divideSizes; exports.divideStyles = _chunkJ37IUOY3js.divideStyles; exports.divides = _chunkJ37IUOY3js.divides; exports.fillColors = _chunkJ37IUOY3js.fillColors; exports.filters = _chunkJ37IUOY3js.filters; exports.flex = _chunkJ37IUOY3js.flex; exports.floats = _chunkJ37IUOY3js.floats; exports.fontSizes = _chunkJ37IUOY3js.fontSizes; exports.fontSmoothings = _chunkJ37IUOY3js.fontSmoothings; exports.fontStyles = _chunkJ37IUOY3js.fontStyles; exports.fontWeights = _chunkJ37IUOY3js.fontWeights; exports.fonts = _chunkJ37IUOY3js.fonts; exports.fontsFamilies = _chunkJ37IUOY3js.fontsFamilies; exports.gaps = _chunkJ37IUOY3js.gaps; exports.grids = _chunkJ37IUOY3js.grids; exports.hyphens = _chunkJ37IUOY3js.hyphens; exports.imageRenderings = _chunkJ37IUOY3js.imageRenderings; exports.insets = _chunkJ37IUOY3js.insets; exports.isolations = _chunkJ37IUOY3js.isolations; exports.justifies = _chunkJ37IUOY3js.justifies; exports.justifyItems = _chunkJ37IUOY3js.justifyItems; exports.justifySelfs = _chunkJ37IUOY3js.justifySelfs; exports.leadings = _chunkJ37IUOY3js.leadings; exports.lineClamps = _chunkJ37IUOY3js.lineClamps; exports.listStyle = _chunkJ37IUOY3js.listStyle; exports.margins = _chunkJ37IUOY3js.margins; exports.mixBlendModes = _chunkJ37IUOY3js.mixBlendModes; exports.objectPositions = _chunkJ37IUOY3js.objectPositions; exports.opacity = _chunkJ37IUOY3js.opacity; exports.orders = _chunkJ37IUOY3js.orders; exports.outline = _chunkJ37IUOY3js.outline; exports.overflows = _chunkJ37IUOY3js.overflows; exports.overscrolls = _chunkJ37IUOY3js.overscrolls; exports.paddings = _chunkJ37IUOY3js.paddings; exports.parseColorUtil = _chunkJ37IUOY3js.parseColorUtil; exports.placeContents = _chunkJ37IUOY3js.placeContents; exports.placeItems = _chunkJ37IUOY3js.placeItems; exports.placeSelfs = _chunkJ37IUOY3js.placeSelfs; exports.placeholder = _chunkJ37IUOY3js.placeholder; exports.pointerEvents = _chunkJ37IUOY3js.pointerEvents; exports.positions = _chunkJ37IUOY3js.positions; exports.questionMark = _chunkJ37IUOY3js.questionMark; exports.resizes = _chunkJ37IUOY3js.resizes; exports.ringColors = _chunkJ37IUOY3js.ringColors; exports.ringOffsetColors = _chunkJ37IUOY3js.ringOffsetColors; exports.rings = _chunkJ37IUOY3js.rings; exports.rules = _chunkJ37IUOY3js.rules; exports.screenReadersAccess = _chunkJ37IUOY3js.screenReadersAccess; exports.sizes = _chunkJ37IUOY3js.sizes; exports.tabSizes = _chunkJ37IUOY3js.tabSizes; exports.tables = _chunkJ37IUOY3js.tables; exports.textAligns = _chunkJ37IUOY3js.textAligns; exports.textColors = _chunkJ37IUOY3js.textColors; exports.textDecorationColors = _chunkJ37IUOY3js.textDecorationColors; exports.textDecorationLengths = _chunkJ37IUOY3js.textDecorationLengths; exports.textDecorationOffsets = _chunkJ37IUOY3js.textDecorationOffsets; exports.textDecorationStyles = _chunkJ37IUOY3js.textDecorationStyles; exports.textDecorations = _chunkJ37IUOY3js.textDecorations; exports.textIndents = _chunkJ37IUOY3js.textIndents; exports.textOverflows = _chunkJ37IUOY3js.textOverflows; exports.textShadows = _chunkJ37IUOY3js.textShadows; exports.textStrokeColors = _chunkJ37IUOY3js.textStrokeColors; exports.textStrokeWidths = _chunkJ37IUOY3js.textStrokeWidths; exports.textTransforms = _chunkJ37IUOY3js.textTransforms; exports.trackings = _chunkJ37IUOY3js.trackings; exports.transforms = _chunkJ37IUOY3js.transforms; exports.transitions = _chunkJ37IUOY3js.transitions; exports.userSelects = _chunkJ37IUOY3js.userSelects; exports.verticalAligns = _chunkJ37IUOY3js.verticalAligns; exports.whitespaces = _chunkJ37IUOY3js.whitespaces; exports.wordSpacings = _chunkJ37IUOY3js.wordSpacings; exports.writingModes = _chunkJ37IUOY3js.writingModes; exports.writingOrientations = _chunkJ37IUOY3js.writingOrientations; exports.zIndexes = _chunkJ37IUOY3js.zIndexes;
package/dist/rules.mjs CHANGED
@@ -108,7 +108,7 @@ import {
108
108
  writingModes,
109
109
  writingOrientations,
110
110
  zIndexes
111
- } from "./chunk-SYJOVKFB.mjs";
111
+ } from "./chunk-YNAN5H4U.mjs";
112
112
  import "./chunk-5KT772UE.mjs";
113
113
  import "./chunk-5SH5BFJ4.mjs";
114
114
  export {
package/dist/variants.js CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
 
12
12
 
13
- var _chunkOS4OZVDFjs = require('./chunk-OS4OZVDF.js');
13
+ var _chunkJGM7CE2Ajs = require('./chunk-JGM7CE2A.js');
14
14
  require('./chunk-656YWVSK.js');
15
15
  require('./chunk-Y6EUTGDC.js');
16
16
 
@@ -25,4 +25,4 @@ require('./chunk-Y6EUTGDC.js');
25
25
 
26
26
 
27
27
 
28
- exports.PseudoClasses = _chunkOS4OZVDFjs.PseudoClasses; exports.variantBreakpoints = _chunkOS4OZVDFjs.variantBreakpoints; exports.variantChildren = _chunkOS4OZVDFjs.variantChildren; exports.variantColorsClass = _chunkOS4OZVDFjs.variantColorsClass; exports.variantColorsMedia = _chunkOS4OZVDFjs.variantColorsMedia; exports.variantImportant = _chunkOS4OZVDFjs.variantImportant; exports.variantNegative = _chunkOS4OZVDFjs.variantNegative; exports.variantPseudoClasses = _chunkOS4OZVDFjs.variantPseudoClasses; exports.variantPseudoElements = _chunkOS4OZVDFjs.variantPseudoElements; exports.variantSpace = _chunkOS4OZVDFjs.variantSpace; exports.variants = _chunkOS4OZVDFjs.variants;
28
+ exports.PseudoClasses = _chunkJGM7CE2Ajs.PseudoClasses; exports.variantBreakpoints = _chunkJGM7CE2Ajs.variantBreakpoints; exports.variantChildren = _chunkJGM7CE2Ajs.variantChildren; exports.variantColorsClass = _chunkJGM7CE2Ajs.variantColorsClass; exports.variantColorsMedia = _chunkJGM7CE2Ajs.variantColorsMedia; exports.variantImportant = _chunkJGM7CE2Ajs.variantImportant; exports.variantNegative = _chunkJGM7CE2Ajs.variantNegative; exports.variantPseudoClasses = _chunkJGM7CE2Ajs.variantPseudoClasses; exports.variantPseudoElements = _chunkJGM7CE2Ajs.variantPseudoElements; exports.variantSpace = _chunkJGM7CE2Ajs.variantSpace; exports.variants = _chunkJGM7CE2Ajs.variants;
package/dist/variants.mjs CHANGED
@@ -10,7 +10,7 @@ import {
10
10
  variantPseudoElements,
11
11
  variantSpace,
12
12
  variants
13
- } from "./chunk-PWRQWUXM.mjs";
13
+ } from "./chunk-MHI4RVPC.mjs";
14
14
  import "./chunk-5KT772UE.mjs";
15
15
  import "./chunk-5SH5BFJ4.mjs";
16
16
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/preset-uno",
3
- "version": "0.12.10",
3
+ "version": "0.12.14",
4
4
  "description": "The default preset for UnoCSS",
5
5
  "keywords": [
6
6
  "unocss",
@@ -60,7 +60,7 @@
60
60
  "*.css"
61
61
  ],
62
62
  "dependencies": {
63
- "@unocss/core": "0.12.10"
63
+ "@unocss/core": "0.12.14"
64
64
  },
65
65
  "scripts": {
66
66
  "build": "tsup",