ripple 0.3.58 → 0.3.60
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 +29 -0
- package/package.json +5 -5
- package/src/jsx-runtime.d.ts +731 -514
- package/tests/server/basic.components.test.tsrx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# ripple
|
|
2
2
|
|
|
3
|
+
## 0.3.60
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1141](https://github.com/Ripple-TS/ripple/pull/1141)
|
|
8
|
+
[`8c064c8`](https://github.com/Ripple-TS/ripple/commit/8c064c888b60e4fcf88f6828e51792b3bba5797a)
|
|
9
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - Improve JSX event handler
|
|
10
|
+
typings to infer specific DOM event types. Improve all JSX types for much
|
|
11
|
+
improved typescript support. Mark self-closing JSX tokens as completion-capable
|
|
12
|
+
so empty attribute positions can surface editor completions. Fix no intellisense
|
|
13
|
+
on dom attributes when <style> blocks were present Share scoped CSS selector
|
|
14
|
+
metadata across TSRX targets so class-name definitions work outside Ripple too.
|
|
15
|
+
CMD+click now jumps to class definitions for all tsrx platforms.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
[[`8c064c8`](https://github.com/Ripple-TS/ripple/commit/8c064c888b60e4fcf88f6828e51792b3bba5797a)]:
|
|
18
|
+
- @tsrx/core@0.1.10
|
|
19
|
+
- ripple@0.3.60
|
|
20
|
+
- @tsrx/ripple@0.1.10
|
|
21
|
+
|
|
22
|
+
## 0.3.59
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
[[`b1d6de0`](https://github.com/Ripple-TS/ripple/commit/b1d6de05912aca4cf40af68f291851eda706140c)]:
|
|
28
|
+
- @tsrx/core@0.1.9
|
|
29
|
+
- ripple@0.3.59
|
|
30
|
+
- @tsrx/ripple@0.1.9
|
|
31
|
+
|
|
3
32
|
## 0.3.58
|
|
4
33
|
|
|
5
34
|
### 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.60",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "src/runtime/index-client.js",
|
|
9
9
|
"main": "src/runtime/index-client.js",
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"clsx": "^2.1.1",
|
|
75
|
-
"devalue": "^5.
|
|
75
|
+
"devalue": "^5.8.1",
|
|
76
76
|
"esm-env": "^1.2.2",
|
|
77
77
|
"@types/estree": "^1.0.8",
|
|
78
78
|
"@types/estree-jsx": "^1.0.5",
|
|
79
|
-
"@tsrx/core": "0.1.
|
|
80
|
-
"@tsrx/ripple": "0.1.
|
|
79
|
+
"@tsrx/core": "0.1.10",
|
|
80
|
+
"@tsrx/ripple": "0.1.10"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@types/node": "^24.3.0",
|
|
@@ -87,6 +87,6 @@
|
|
|
87
87
|
"vscode-languageserver-types": "^3.17.5"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
|
-
"ripple": "0.3.
|
|
90
|
+
"ripple": "0.3.60"
|
|
91
91
|
}
|
|
92
92
|
}
|