clsx-react 0.9.1 → 0.9.2

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.
@@ -0,0 +1,18 @@
1
+ import 'react';
2
+
3
+ type ClassNameValue =
4
+ | string
5
+ | number
6
+ | boolean
7
+ | undefined
8
+ | null
9
+ | Record<string, boolean | null | undefined>
10
+ | ClassNameValue[];
11
+
12
+ declare global {
13
+ namespace JSX {
14
+ interface IntrinsicAttributes {
15
+ className?: ClassNameValue;
16
+ }
17
+ }
18
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clsx-react",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Custom React JSX Runtime to support arrays and objects in className prop natively.",
5
5
  "keywords": [
6
6
  "react",