@solidjs/h 2.0.0-beta.14 → 2.0.0-beta.15
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.
|
@@ -221,8 +221,12 @@ export namespace JSX {
|
|
|
221
221
|
|
|
222
222
|
export type ClassValue =
|
|
223
223
|
| string
|
|
224
|
+
| number
|
|
225
|
+
| boolean
|
|
226
|
+
| null
|
|
227
|
+
| undefined
|
|
224
228
|
| Record<string, boolean>
|
|
225
|
-
|
|
|
229
|
+
| ClassValue[];
|
|
226
230
|
|
|
227
231
|
const SERIALIZABLE: unique symbol;
|
|
228
232
|
interface SerializableAttributeValue {
|
|
@@ -221,8 +221,12 @@ export namespace JSX {
|
|
|
221
221
|
|
|
222
222
|
export type ClassValue =
|
|
223
223
|
| string
|
|
224
|
+
| number
|
|
225
|
+
| boolean
|
|
226
|
+
| null
|
|
227
|
+
| undefined
|
|
224
228
|
| Record<string, boolean>
|
|
225
|
-
|
|
|
229
|
+
| ClassValue[];
|
|
226
230
|
|
|
227
231
|
const SERIALIZABLE: unique symbol;
|
|
228
232
|
interface SerializableAttributeValue {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidjs/h",
|
|
3
3
|
"description": "Hyperscript / h() factory for Solid — write components without compiled JSX.",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.15",
|
|
5
5
|
"author": "Ryan Carniato",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://solidjs.com",
|
|
@@ -63,11 +63,11 @@
|
|
|
63
63
|
"./types/*": "./types/*"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@solidjs/web": "^2.0.0-beta.
|
|
66
|
+
"@solidjs/web": "^2.0.0-beta.15"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"solid-js": "2.0.0-beta.
|
|
70
|
-
"@solidjs/web": "2.0.0-beta.
|
|
69
|
+
"solid-js": "2.0.0-beta.15",
|
|
70
|
+
"@solidjs/web": "2.0.0-beta.15"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"build": "npm-run-all -nl build:clean types:copy build:js",
|