@reckona/mreact 0.0.54 → 0.0.56

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,6 +21,8 @@ used by application code.
21
21
  - `@reckona/mreact/jsx-runtime` is used by TypeScript and JSX transforms.
22
22
  - `@reckona/mreact/jsx-dev-runtime` is used for development JSX output.
23
23
 
24
+ The JSX runtimes expose the global `JSX.Element` type expected by TypeScript tooling. The main entrypoint also exports React-style event helper types such as `FormEvent`, `FormEventHandler`, `JSXEvent`, and `JSXEventHandler`; for example, a form `onSubmit` handler receives an event whose `currentTarget` is typed as `HTMLFormElement`.
25
+
24
26
  ## Notes
25
27
 
26
28
  This package is the user-facing React-like runtime name. The implementation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reckona/mreact",
3
- "version": "0.0.54",
3
+ "version": "0.0.56",
4
4
  "description": "React-flavored public runtime entrypoint for mreact.",
5
5
  "keywords": [
6
6
  "jsx",
@@ -47,6 +47,6 @@
47
47
  "access": "public"
48
48
  },
49
49
  "dependencies": {
50
- "@reckona/mreact-compat": "0.0.54"
50
+ "@reckona/mreact-compat": "0.0.56"
51
51
  }
52
52
  }