apprun 3.37.2 → 3.38.0

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,15 @@
1
1
  # Change Log
2
2
 
3
+ ## V3.38.0
4
+
5
+ * Support for binding to nested objects and arrays with `$bind`
6
+ * Support for type safe props and children in components
7
+ * Use `unknown` instead of `any` for generic defaults
8
+
9
+ ## V3.37.3
10
+
11
+ * Updated skip logic for - removed `value` property
12
+
3
13
  ## V3.37.2
4
14
 
5
15
  * Include rule / prompt files for AI Coding Agent
package/README.md CHANGED
@@ -3,6 +3,8 @@
3
3
  [![AppRun Docs](https://img.shields.io/badge/docs-website-blue.svg)](https://apprun.js.org/docs)
4
4
  [![AppRun Playground](https://img.shields.io/badge/playground-online-green.svg)](https://apprun.js.org/#play)
5
5
  [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][downloads-url] [![License][license-image]][license-url] [![twitter][twitter-badge]][twitter] [![Discord Chat][discord-image]][discord-invite]
6
+
7
+
6
8
  🕵️ We now have rule / prompt files that you can use with your AI Coding Agent:
7
9
  - [For Components using JSX](ai/apprun.prompt.md)
8
10
  - [For Components using HTML](ai/apprun-html.prompt.md)
package/WHATSNEW.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## What's New
2
2
 
3
+ > July 26, 2025, V3.38.0
4
+
5
+ - Improved `$bind` directive to support nested objects and arrays: [Effortless Two-Way Data Binding in Apprun with $bind](#docs/done/blog-bind-directive.md)
6
+ - Support for type safe props and children in components: [Typed Props and Children](#docs/done/blog-typed-props-and-children.md)
7
+ - Use `unknown` instead of `any` for generic defaults to enhance type safety: [Why `unknown` is better than `any`](#docs/done/blog-why-unknown-better-than-any.md)
8
+
3
9
  > July 22, 2025, V3.37.0
4
10
 
5
11
  - Introduced `createState` helper for simplified immutable state updates using Immer [create-state-immer](#docs/done/blog-create-state-immer.md)