ripple 0.3.59 → 0.3.61

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 CHANGED
@@ -1,5 +1,34 @@
1
1
  # ripple
2
2
 
3
+ ## 0.3.61
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ [[`0de733f`](https://github.com/Ripple-TS/ripple/commit/0de733f05800df5d3854eb69e012e9aeaf098f8a)]:
9
+ - @tsrx/core@0.1.11
10
+ - ripple@0.3.61
11
+ - @tsrx/ripple@0.1.11
12
+
13
+ ## 0.3.60
14
+
15
+ ### Patch Changes
16
+
17
+ - [#1141](https://github.com/Ripple-TS/ripple/pull/1141)
18
+ [`8c064c8`](https://github.com/Ripple-TS/ripple/commit/8c064c888b60e4fcf88f6828e51792b3bba5797a)
19
+ Thanks [@leonidaz](https://github.com/leonidaz)! - Improve JSX event handler
20
+ typings to infer specific DOM event types. Improve all JSX types for much
21
+ improved typescript support. Mark self-closing JSX tokens as completion-capable
22
+ so empty attribute positions can surface editor completions. Fix no intellisense
23
+ on dom attributes when <style> blocks were present Share scoped CSS selector
24
+ metadata across TSRX targets so class-name definitions work outside Ripple too.
25
+ CMD+click now jumps to class definitions for all tsrx platforms.
26
+ - Updated dependencies
27
+ [[`8c064c8`](https://github.com/Ripple-TS/ripple/commit/8c064c888b60e4fcf88f6828e51792b3bba5797a)]:
28
+ - @tsrx/core@0.1.10
29
+ - ripple@0.3.60
30
+ - @tsrx/ripple@0.1.10
31
+
3
32
  ## 0.3.59
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.59",
6
+ "version": "0.3.61",
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.7.1",
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.9",
80
- "@tsrx/ripple": "0.1.9"
79
+ "@tsrx/core": "0.1.11",
80
+ "@tsrx/ripple": "0.1.11"
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.59"
90
+ "ripple": "0.3.61"
91
91
  }
92
92
  }