@unocss/core 66.1.0-beta.9 → 66.1.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.d.mts CHANGED
@@ -210,7 +210,12 @@ type FlatObjectTuple<T> = {
210
210
  type PartialByKeys<T, K extends keyof T = keyof T> = FlatObjectTuple<Partial<Pick<T, Extract<keyof T, K>>> & Omit<T, K>>;
211
211
  type RequiredByKey<T, K extends keyof T = keyof T> = FlatObjectTuple<Required<Pick<T, Extract<keyof T, K>>> & Omit<T, K>>;
212
212
  type CSSObject = Record<string, string | number | undefined>;
213
- type CSSEntry = [string, string | number | undefined];
213
+ /**
214
+ * [property, value, operators?]
215
+ *
216
+ * - operators: Used to perform specific operations on value or property.
217
+ */
218
+ type CSSEntry = [string, string | number | undefined, Arrayable<string>?];
214
219
  type CSSEntries = CSSEntry[];
215
220
  type CSSObjectInput = CSSObject | Partial<ControlSymbolsValue>;
216
221
  type CSSEntriesInput = (CSSEntry | ControlSymbolsEntry)[];
package/dist/index.d.ts CHANGED
@@ -210,7 +210,12 @@ type FlatObjectTuple<T> = {
210
210
  type PartialByKeys<T, K extends keyof T = keyof T> = FlatObjectTuple<Partial<Pick<T, Extract<keyof T, K>>> & Omit<T, K>>;
211
211
  type RequiredByKey<T, K extends keyof T = keyof T> = FlatObjectTuple<Required<Pick<T, Extract<keyof T, K>>> & Omit<T, K>>;
212
212
  type CSSObject = Record<string, string | number | undefined>;
213
- type CSSEntry = [string, string | number | undefined];
213
+ /**
214
+ * [property, value, operators?]
215
+ *
216
+ * - operators: Used to perform specific operations on value or property.
217
+ */
218
+ type CSSEntry = [string, string | number | undefined, Arrayable<string>?];
214
219
  type CSSEntries = CSSEntry[];
215
220
  type CSSObjectInput = CSSObject | Partial<ControlSymbolsValue>;
216
221
  type CSSEntriesInput = (CSSEntry | ControlSymbolsEntry)[];
package/dist/index.mjs CHANGED
@@ -657,7 +657,7 @@ function definePreset(preset) {
657
657
  return preset;
658
658
  }
659
659
 
660
- const version = "66.1.0-beta.9";
660
+ const version = "66.1.1";
661
661
 
662
662
  const symbols = {
663
663
  shortcutsNoMerge: "$$symbol-shortcut-no-merge",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unocss/core",
3
3
  "type": "module",
4
- "version": "66.1.0-beta.9",
4
+ "version": "66.1.1",
5
5
  "description": "The instant on-demand Atomic CSS engine.",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -38,7 +38,7 @@
38
38
  ],
39
39
  "devDependencies": {
40
40
  "magic-string": "^0.30.17",
41
- "unconfig": "^7.3.1"
41
+ "unconfig": "^7.3.2"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "unbuild",