apprun 3.37.3 → 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 +6 -0
- package/WHATSNEW.md +6 -0
- package/ai/apprun.prompt.md +545 -109
- package/apprun.d.ts +17 -5
- package/dist/apprun-code.js +1 -1
- package/dist/apprun-code.js.map +1 -1
- package/dist/apprun-dev-tools.js +1 -1
- package/dist/apprun-dev-tools.js.map +1 -1
- package/dist/apprun-html.esm.js +7 -7
- package/dist/apprun-html.esm.js.map +1 -1
- package/dist/apprun-html.js +1 -1
- package/dist/apprun-html.js.map +1 -1
- package/dist/apprun-play-html.esm.js +7 -7
- package/dist/apprun-play-html.esm.js.map +1 -1
- package/dist/apprun-play.js +1 -1
- package/dist/apprun-play.js.map +1 -1
- package/dist/apprun.esm.js +1 -1
- package/dist/apprun.esm.js.map +1 -1
- package/dist/apprun.js +1 -1
- package/dist/apprun.js.map +1 -1
- package/dist/createState.js.map +1 -1
- package/esm/apprun-play.js.map +1 -1
- package/esm/apprun.js.map +1 -1
- package/esm/directive.js +129 -8
- package/esm/directive.js.map +1 -1
- package/esm/version.js +1 -1
- package/jsx-runtime.js +1 -1
- package/jsx-runtime.js.map +1 -1
- package/package.json +1 -1
- package/src/apprun-play.tsx +1 -1
- package/src/apprun.ts +2 -2
- package/src/component.ts +1 -1
- package/src/createState.ts +1 -1
- package/src/directive.ts +132 -7
- package/src/global.d.ts +2 -2
- package/src/types.ts +3 -3
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
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
|
+
|
|
3
9
|
## V3.37.3
|
|
4
10
|
|
|
5
11
|
* Updated skip logic for - removed `value` property
|
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)
|