@unocss/preset-mini 0.56.2 → 0.56.4

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 CHANGED
@@ -10,7 +10,7 @@ const rules = require('./rules.cjs');
10
10
  const variants = require('./variants.cjs');
11
11
  const colors = require('./colors.cjs');
12
12
  require('@unocss/rule-utils');
13
- require('./shared/preset-mini.f22c1fe0.cjs');
13
+ require('./shared/preset-mini.6a210a3c.cjs');
14
14
 
15
15
  const preflights = [
16
16
  {
package/dist/index.mjs CHANGED
@@ -7,7 +7,7 @@ import { rules } from './rules.mjs';
7
7
  import { variants } from './variants.mjs';
8
8
  export { colors } from './colors.mjs';
9
9
  import '@unocss/rule-utils';
10
- import './shared/preset-mini.4fe01d46.mjs';
10
+ import './shared/preset-mini.7f0d0a40.mjs';
11
11
 
12
12
  const preflights = [
13
13
  {
package/dist/rules.cjs CHANGED
@@ -3,7 +3,7 @@
3
3
  const utils = require('./shared/preset-mini.3a376028.cjs');
4
4
  const ruleUtils = require('@unocss/rule-utils');
5
5
  const core = require('@unocss/core');
6
- const transform = require('./shared/preset-mini.f22c1fe0.cjs');
6
+ const transform = require('./shared/preset-mini.6a210a3c.cjs');
7
7
 
8
8
  const verticalAlignAlias = {
9
9
  "mid": "middle",
@@ -529,6 +529,8 @@ const justifies = [
529
529
  ["justify-around", { "justify-content": "space-around" }],
530
530
  ["justify-evenly", { "justify-content": "space-evenly" }],
531
531
  ["justify-stretch", { "justify-content": "stretch" }],
532
+ ["justify-left", { "justify-content": "left" }],
533
+ ["justify-right", { "justify-content": "right" }],
532
534
  ...utils.makeGlobalStaticRules("justify", "justify-content"),
533
535
  // items
534
536
  ["justify-items-start", { "justify-items": "start" }],
package/dist/rules.mjs CHANGED
@@ -1,8 +1,8 @@
1
1
  import { g as globalKeywords, h, c as colorResolver, e as directionMap, a as hasParseableColor, f as cornerMap, p as parseColor, n as numberWithUnitRE, m as makeGlobalStaticRules, s as splitShorthand, b as colorableShadows, i as insetMap, r as resolveVerticalBreakpoints, j as resolveBreakpoints, k as directionSize } from './shared/preset-mini.8929b018.mjs';
2
2
  import { colorToString, colorOpacityToString } from '@unocss/rule-utils';
3
3
  import { warnOnce, toArray } from '@unocss/core';
4
- import { d as displays, c as contentVisibility, a as contents, e as textOverflows, f as textTransforms, g as fontStyles, h as fontSmoothings, i as boxShadows, j as rings, k as cursors, l as appearances, p as pointerEvents, m as resizes, u as userSelects, w as whitespaces, n as breaks, o as transforms, q as contains, s as textWraps } from './shared/preset-mini.4fe01d46.mjs';
5
- export { b as boxShadowsBase, r as ringBase, t as transformBase, v as varEmpty } from './shared/preset-mini.4fe01d46.mjs';
4
+ import { d as displays, c as contentVisibility, a as contents, e as textOverflows, f as textTransforms, g as fontStyles, h as fontSmoothings, i as boxShadows, j as rings, k as cursors, l as appearances, p as pointerEvents, m as resizes, u as userSelects, w as whitespaces, n as breaks, o as transforms, q as contains, s as textWraps } from './shared/preset-mini.7f0d0a40.mjs';
5
+ export { b as boxShadowsBase, r as ringBase, t as transformBase, v as varEmpty } from './shared/preset-mini.7f0d0a40.mjs';
6
6
 
7
7
  const verticalAlignAlias = {
8
8
  "mid": "middle",
@@ -528,6 +528,8 @@ const justifies = [
528
528
  ["justify-around", { "justify-content": "space-around" }],
529
529
  ["justify-evenly", { "justify-content": "space-evenly" }],
530
530
  ["justify-stretch", { "justify-content": "stretch" }],
531
+ ["justify-left", { "justify-content": "left" }],
532
+ ["justify-right", { "justify-content": "right" }],
531
533
  ...makeGlobalStaticRules("justify", "justify-content"),
532
534
  // items
533
535
  ["justify-items-start", { "justify-items": "start" }],
@@ -13,7 +13,7 @@ const displays = [
13
13
  ["flow-root", { display: "flow-root" }],
14
14
  ["list-item", { display: "list-item" }],
15
15
  ["hidden", { display: "none" }],
16
- [/^display-(.+)$/, ([, c]) => ({ display: utils.h.bracket.cssvar.global(c) || c })]
16
+ [/^display-(.+)$/, ([, c]) => ({ display: utils.h.bracket.cssvar.global(c) })]
17
17
  ];
18
18
  const appearances = [
19
19
  ["visible", { visibility: "visible" }],
@@ -11,7 +11,7 @@ const displays = [
11
11
  ["flow-root", { display: "flow-root" }],
12
12
  ["list-item", { display: "list-item" }],
13
13
  ["hidden", { display: "none" }],
14
- [/^display-(.+)$/, ([, c]) => ({ display: h.bracket.cssvar.global(c) || c })]
14
+ [/^display-(.+)$/, ([, c]) => ({ display: h.bracket.cssvar.global(c) })]
15
15
  ];
16
16
  const appearances = [
17
17
  ["visible", { visibility: "visible" }],
package/dist/theme.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const colors = require('./colors.cjs');
4
- const transform = require('./shared/preset-mini.f22c1fe0.cjs');
4
+ const transform = require('./shared/preset-mini.6a210a3c.cjs');
5
5
  require('./shared/preset-mini.3a376028.cjs');
6
6
  require('@unocss/rule-utils');
7
7
  require('@unocss/core');
package/dist/theme.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { colors } from './colors.mjs';
2
- import { t as transformBase, b as boxShadowsBase, r as ringBase } from './shared/preset-mini.4fe01d46.mjs';
2
+ import { t as transformBase, b as boxShadowsBase, r as ringBase } from './shared/preset-mini.7f0d0a40.mjs';
3
3
  import './shared/preset-mini.8929b018.mjs';
4
4
  import '@unocss/rule-utils';
5
5
  import '@unocss/core';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/preset-mini",
3
- "version": "0.56.2",
3
+ "version": "0.56.4",
4
4
  "description": "The minimal preset for UnoCSS",
5
5
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
6
6
  "license": "MIT",
@@ -61,9 +61,9 @@
61
61
  "dist"
62
62
  ],
63
63
  "dependencies": {
64
- "@unocss/core": "0.56.2",
65
- "@unocss/extractor-arbitrary-variants": "0.56.2",
66
- "@unocss/rule-utils": "0.56.2"
64
+ "@unocss/core": "0.56.4",
65
+ "@unocss/extractor-arbitrary-variants": "0.56.4",
66
+ "@unocss/rule-utils": "0.56.4"
67
67
  },
68
68
  "scripts": {
69
69
  "build": "unbuild",