@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 +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
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
|
-
|
|
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
|
-
|
|
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
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "66.1.
|
|
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.
|
|
41
|
+
"unconfig": "^7.3.2"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "unbuild",
|