| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -9,6 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | 10 | | @rescript/react | ReScript | ReactJS | Documentation | | |
| 11 | 11 | | --------------- | ---------------------------------- | ------- | ----------------------------------------------------------------- | | |
| 12 | + | 0.16.x | 13.0+ | 19 | | ||
| 12 | 13 | | 0.15.x | 12.0+ | 19 | | | |
| 13 | 14 | | 0.14.x | 11.0+ (JSX4 + uncurried mode only) | 19 | | | |
| 14 | 15 | | 0.12.x, 0.13.x | 11.0+ | 18 | [Link](https://rescript-lang.org/docs/react/latest/introduction) | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "name": "@rescript/react", | |
| 3 | - "version": "0.15.0", | ||
| 3 | + "version": "0.16.0", | ||
| 4 | 4 | "description": "React bindings for ReScript", | |
| 5 | 5 | "files": [ | |
| 6 | 6 | "README.md", | |
@@ -31,10 +31,10 @@ | |||
| 31 | 31 | "devDependencies": { | |
| 32 | 32 | "react": "^19.2.0", | |
| 33 | 33 | "react-dom": "^19.2.0", | |
| 34 | - "rescript": "^12.0.0" | ||
| 34 | + "rescript": "^13.0.0-alpha.4" | ||
| 35 | 35 | }, | |
| 36 | 36 | "peerDependencies": { | |
| 37 | - "@rescript/runtime": ">=12.0.0", | ||
| 37 | + "@rescript/runtime": ">=13.0.0-alpha.4", | ||
| 38 | 38 | "react": ">=19.2.0", | |
| 39 | 39 | "react-dom": ">=19.2.0" | |
| 40 | 40 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,7 +13,7 @@ type componentLike<'props, 'return> = Jsx.componentLike<'props, 'return> | |||
| 13 | 13 | ||
| 14 | 14 | type component<'props> = Jsx.component<'props> | |
| 15 | 15 | ||
| 16 | - external component: componentLike<'props, element> => component<'props> = "%identity" | ||
| 16 | + external component: componentLike<'props, element> => component<'props> = "%component_identity" | ||
| 17 | 17 | ||
| 18 | 18 | @module("react") | |
| 19 | 19 | external createElement: (component<'props>, 'props) => element = "createElement" | |
| Back | FazBrowse Home | New Git URL |
0 commit comments