@solidjs/h 2.0.0-experimental.0 → 2.0.0-experimental.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.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2016-2023 Ryan Carniato
3
+ Copyright (c) 2016-2025 Ryan Carniato
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solidjs/h",
3
3
  "description": "A standard (less-optimal) JSX factory for Solid",
4
- "version": "2.0.0-experimental.0",
4
+ "version": "2.0.0-experimental.2",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",
7
7
  "homepage": "https://solidjs.com",
@@ -46,11 +46,10 @@
46
46
  "./types/*": "./types/*"
47
47
  },
48
48
  "peerDependencies": {
49
- "solid-js": "^2.0.0-experimental.0",
50
- "@solidjs/web": "^2.0.0-experimental.0"
49
+ "@solidjs/web": "^2.0.0-experimental.2"
51
50
  },
52
51
  "devDependencies": {
53
- "@solidjs/web": "2.0.0-experimental.0"
52
+ "@solidjs/web": "2.0.0-experimental.1"
54
53
  },
55
54
  "scripts": {
56
55
  "build": "npm-run-all -nl build:*",
@@ -1,14 +0,0 @@
1
- export type { JSX } from "./jsx.d.ts";
2
- import type { JSX } from "./jsx.d.ts";
3
- declare function Fragment(props: { children: JSX.Element }): JSX.Element;
4
- declare function jsx(
5
- type: any,
6
- props: any
7
- ): () =>
8
- | (Node & {
9
- [key: string]: any;
10
- })
11
- | (Node & {
12
- [key: string]: any;
13
- })[];
14
- export { jsx, jsx as jsxs, jsx as jsxDEV, Fragment };