@solidjs/html 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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solidjs/html",
3
3
  "description": "Tagged-template-literal templating for Solid — write components with no build step.",
4
- "version": "2.0.0-beta.14",
4
+ "version": "2.0.0-beta.15",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",
7
7
  "homepage": "https://solidjs.com",
@@ -37,11 +37,11 @@
37
37
  }
38
38
  },
39
39
  "peerDependencies": {
40
- "@solidjs/web": "^2.0.0-beta.14"
40
+ "@solidjs/web": "^2.0.0-beta.15"
41
41
  },
42
42
  "devDependencies": {
43
- "solid-js": "2.0.0-beta.14",
44
- "@solidjs/web": "2.0.0-beta.14"
43
+ "@solidjs/web": "2.0.0-beta.15",
44
+ "solid-js": "2.0.0-beta.15"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "npm-run-all -nl build:*",
package/types/sld.d.ts CHANGED
@@ -9499,7 +9499,7 @@ declare namespace JSX {
9499
9499
  }): void;
9500
9500
  }
9501
9501
  type FocusEventHandlerUnion<T, E extends FocusEvent> = EventHandlerUnion<T, E, FocusEventHandler<T, E>>; // end event handlers
9502
- export type ClassValue = string | Record<string, boolean> | Array<string | number | boolean | null | undefined | Record<string, boolean>>;
9502
+ export type ClassValue = string | number | boolean | null | undefined | Record<string, boolean> | ClassValue[];
9503
9503
  const SERIALIZABLE: unique symbol;
9504
9504
  interface SerializableAttributeValue {
9505
9505
  toString(): string;
@@ -9499,7 +9499,7 @@ declare namespace JSX {
9499
9499
  }): void;
9500
9500
  }
9501
9501
  type FocusEventHandlerUnion<T, E extends FocusEvent> = EventHandlerUnion<T, E, FocusEventHandler<T, E>>; // end event handlers
9502
- export type ClassValue = string | Record<string, boolean> | Array<string | number | boolean | null | undefined | Record<string, boolean>>;
9502
+ export type ClassValue = string | number | boolean | null | undefined | Record<string, boolean> | ClassValue[];
9503
9503
  const SERIALIZABLE: unique symbol;
9504
9504
  interface SerializableAttributeValue {
9505
9505
  toString(): string;