Merge branch 'main' into merge-x

This commit is contained in:
dpiercey 2024-03-04 09:08:50 -07:00
commit 08ea90ce3e
No known key found for this signature in database
GPG Key ID: 8A959D84C57B3CE5
4 changed files with 9 additions and 3 deletions

2
package-lock.json generated
View File

@ -11876,7 +11876,7 @@
}
},
"packages/marko": {
"version": "5.32.14",
"version": "5.32.15",
"license": "MIT",
"dependencies": {
"@marko/compiler": "^5.34.7",

View File

@ -1,5 +1,11 @@
# Change Log
## 5.32.15
### Patch Changes
- [#2132](https://github.com/marko-js/marko/pull/2132) [`f3004d7`](https://github.com/marko-js/marko/commit/f3004d7baddd22a022217bb5e50ef8e6b6a80354) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix incorrect check for if a component has custom events
## 5.32.14
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "marko",
"version": "5.32.14",
"version": "5.32.15",
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
"keywords": [
"front-end",

View File

@ -172,7 +172,7 @@ function createRendererFunc(
// so we don't want to queue it up as a result of calling `setInput()`
component.___updateQueued = true;
if (customEvents !== undefined) {
if (customEvents) {
component.___setCustomEvents(customEvents, ownerComponentId);
}