css-variants 2.0.2 → 2.0.3

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/cjs/cx.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export type ClassDictionary = Record<string, boolean | string | number>;
1
+ export type ClassDictionary = Record<string, unknown>;
2
2
  export type ClassValue = ClassValue[] | string | number | bigint | ClassDictionary | null | boolean | undefined;
3
3
  export type ClassArray = ClassValue[];
4
4
  export declare function cx(...args: ClassValue[]): string;
package/dist/esm/cx.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export type ClassDictionary = Record<string, boolean | string | number>;
1
+ export type ClassDictionary = Record<string, unknown>;
2
2
  export type ClassValue = ClassValue[] | string | number | bigint | ClassDictionary | null | boolean | undefined;
3
3
  export type ClassArray = ClassValue[];
4
4
  export declare function cx(...args: ClassValue[]): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "css-variants",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "A lightweight, flexible API for managing CSS class variants.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",