Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/css-variants/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "css-variants",
"version": "2.3.4",
"version": "2.3.5",
"description": "Lightweight helpers to compose class names and inline styles using variants. Zero runtime deps, small bundle, and first-class TypeScript support.",
"homepage": "https://css-variants.vercel.app",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/css-variants/src/cx.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// credit: https://github.com/lukeed/clsx

export type ClassDictionary = Record<string, unknown>
export type ClassDictionary = Record<string, any>

Check failure on line 3 in packages/css-variants/src/cx.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected any. Specify a different type
export type ClassValue = ClassValue[] | string | number | bigint | ClassDictionary | null | boolean | undefined
export type ClassArray = ClassValue[]

Expand Down
Loading