@tailwindcss/oxide 4.0.16 → 4.1.0
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/index.d.ts +10 -1
- package/package.json +12 -12
package/index.d.ts
CHANGED
|
@@ -17,9 +17,17 @@ export interface GlobEntry {
|
|
|
17
17
|
/** Glob pattern */
|
|
18
18
|
pattern: string
|
|
19
19
|
}
|
|
20
|
+
export interface SourceEntry {
|
|
21
|
+
/** Base path of the glob */
|
|
22
|
+
base: string
|
|
23
|
+
/** Glob pattern */
|
|
24
|
+
pattern: string
|
|
25
|
+
/** Negated flag */
|
|
26
|
+
negated: boolean
|
|
27
|
+
}
|
|
20
28
|
export interface ScannerOptions {
|
|
21
29
|
/** Glob sources */
|
|
22
|
-
sources?: Array<
|
|
30
|
+
sources?: Array<SourceEntry>
|
|
23
31
|
}
|
|
24
32
|
export interface CandidateWithPosition {
|
|
25
33
|
/** The candidate string */
|
|
@@ -34,4 +42,5 @@ export declare class Scanner {
|
|
|
34
42
|
getCandidatesWithPositions(input: ChangedContent): Array<CandidateWithPosition>
|
|
35
43
|
get files(): Array<string>
|
|
36
44
|
get globs(): Array<GlobEntry>
|
|
45
|
+
get normalizedSources(): Array<GlobEntry>
|
|
37
46
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tailwindcss/oxide",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/tailwindlabs/tailwindcss.git",
|
|
@@ -41,17 +41,17 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"optionalDependencies": {
|
|
44
|
-
"@tailwindcss/oxide-android-arm64": "4.0
|
|
45
|
-
"@tailwindcss/oxide-darwin-
|
|
46
|
-
"@tailwindcss/oxide-
|
|
47
|
-
"@tailwindcss/oxide-
|
|
48
|
-
"@tailwindcss/oxide-linux-arm64-
|
|
49
|
-
"@tailwindcss/oxide-
|
|
50
|
-
"@tailwindcss/oxide-
|
|
51
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.0
|
|
52
|
-
"@tailwindcss/oxide-
|
|
53
|
-
"@tailwindcss/oxide-linux-
|
|
54
|
-
"@tailwindcss/oxide-
|
|
44
|
+
"@tailwindcss/oxide-android-arm64": "4.1.0",
|
|
45
|
+
"@tailwindcss/oxide-darwin-arm64": "4.1.0",
|
|
46
|
+
"@tailwindcss/oxide-darwin-x64": "4.1.0",
|
|
47
|
+
"@tailwindcss/oxide-freebsd-x64": "4.1.0",
|
|
48
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.0",
|
|
49
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.1.0",
|
|
50
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.0",
|
|
51
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.1.0",
|
|
52
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.1.0",
|
|
53
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.1.0",
|
|
54
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.1.0"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"artifacts": "napi artifacts",
|