@lightningjs/blits
Advanced tools
Comparing version 1.10.0 to 1.10.1
# Changelog | ||
## v1.10.1 | ||
_15 nov 2024_ | ||
- Upgraded to renderer 2.7.1 | ||
- Added documentation on Router | ||
## v1.10.0 | ||
@@ -4,0 +11,0 @@ |
@@ -27,2 +27,5 @@ - Getting started | ||
- [Layout](/built-in/layout.md) | ||
- Router | ||
- [Basics](/router/basics.md) | ||
- [Hooks](/router/hooks.md) | ||
- Plugins | ||
@@ -29,0 +32,0 @@ - [Text-to-Speech / Announcer](/plugins/text-to-speech-announcer.md) |
@@ -112,2 +112,15 @@ [ | ||
{ | ||
"text": "Router", | ||
"items": [ | ||
{ | ||
"text": "Basics", | ||
"link": "/router/basics" | ||
}, | ||
{ | ||
"text": "Hooks", | ||
"link": "/router/hooks" | ||
} | ||
] | ||
}, | ||
{ | ||
"text": "Plugins", | ||
@@ -114,0 +127,0 @@ "items": [ |
{ | ||
"name": "@lightningjs/blits", | ||
"version": "1.10.0", | ||
"version": "1.10.1", | ||
"description": "Blits: The Lightning 3 App Development Framework", | ||
@@ -53,3 +53,3 @@ "bin": "bin/index.js", | ||
"@lightningjs/msdf-generator": "^1.1.0", | ||
"@lightningjs/renderer": "^2.6.2" | ||
"@lightningjs/renderer": "^2.7.1" | ||
}, | ||
@@ -56,0 +56,0 @@ "repository": { |
@@ -445,6 +445,14 @@ /* | ||
ctx.renderCode.splice(indexToInjectDestroyCode, 0, ...destroyCode) | ||
let effectKey = `${interpolate(result[2], '')}` | ||
// Get the last property from nested path | ||
if (effectKey && effectKey.includes('.')) { | ||
effectKey = effectKey.match(/[^.]+$/)[0] | ||
} | ||
ctx.renderCode.push(` | ||
effect(() => { | ||
forloop${forStartCounter}(${cast(result[2], ':for')}, elms, created${forStartCounter}) | ||
}, '${interpolate(result[2], '')}') | ||
}, '${effectKey}' ) | ||
`) | ||
@@ -451,0 +459,0 @@ |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
616302
137
12862
Updated@lightningjs/renderer@^2.7.1