ripple 0.2.150 → 0.2.151

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ripple is an elegant TypeScript UI framework",
4
4
  "license": "MIT",
5
5
  "author": "Dominic Gannaway",
6
- "version": "0.2.150",
6
+ "version": "0.2.151",
7
7
  "type": "module",
8
8
  "module": "src/runtime/index-client.js",
9
9
  "main": "src/runtime/index-client.js",
@@ -81,6 +81,6 @@
81
81
  "typescript": "^5.9.2"
82
82
  },
83
83
  "peerDependencies": {
84
- "ripple": "0.2.150"
84
+ "ripple": "0.2.151"
85
85
  }
86
86
  }
@@ -32,9 +32,11 @@ export function jsxs(
32
32
  */
33
33
  export function Fragment(props: { children?: any }): void;
34
34
 
35
+ export type ClassValue = string | import('clsx').ClassArray | import('clsx').ClassDictionary;
36
+
35
37
  // Base HTML attributes
36
38
  interface HTMLAttributes {
37
- class?: string;
39
+ class?: ClassValue | undefined | null;
38
40
  className?: string;
39
41
  id?: string;
40
42
  style?: string | Record<string, string | number>;