ripple 0.3.126 → 0.3.127
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/CHANGELOG.md +20 -0
- package/package.json +2 -2
- package/src/jsx-runtime.d.ts +1128 -967
- package/tests/utils/jsx-runtime-types.test.js +106 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# ripple
|
|
2
2
|
|
|
3
|
+
## 0.3.127
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1447](https://github.com/Ripple-TS/ripple/pull/1447)
|
|
8
|
+
[`d824f7b`](https://github.com/Ripple-TS/ripple/commit/d824f7b790991f89b0935e05ceb78e2214ab3394)
|
|
9
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - Align JSX component types
|
|
10
|
+
with the public `Component` type so component props and functions returning
|
|
11
|
+
renderable primitives or arrays are accepted as JSX tags.
|
|
12
|
+
|
|
13
|
+
- [#1448](https://github.com/Ripple-TS/ripple/pull/1448)
|
|
14
|
+
[`6c47f52`](https://github.com/Ripple-TS/ripple/commit/6c47f527a790e1b86ed7ff770e9c19f213d4881a)
|
|
15
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - Qualify JSX element types
|
|
16
|
+
with the Ripple namespace and use DetailedHTMLProps for HTML tag hovers while
|
|
17
|
+
preserving Ripple's attribute, event, and ref types.
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
[[`ac4361e`](https://github.com/Ripple-TS/ripple/commit/ac4361e2dd1e93c29f44196cfe3b703124083fd0)]:
|
|
21
|
+
- @tsrx/ripple@0.1.64
|
|
22
|
+
|
|
3
23
|
## 0.3.126
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Ripple is an elegant TypeScript UI framework",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Dominic Gannaway",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.127",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "src/runtime/index-client.js",
|
|
9
9
|
"main": "src/runtime/index-client.js",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"devalue": "^5.8.1",
|
|
75
75
|
"esm-env": "^1.2.2",
|
|
76
76
|
"@tsrx/core": "^0.1.67",
|
|
77
|
-
"@tsrx/ripple": "0.1.
|
|
77
|
+
"@tsrx/ripple": "0.1.64"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@types/estree": "^1.0.8",
|