mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
Merge branch 'main' into merge-x
This commit is contained in:
commit
08ea90ce3e
2
package-lock.json
generated
2
package-lock.json
generated
@ -11876,7 +11876,7 @@
|
||||
}
|
||||
},
|
||||
"packages/marko": {
|
||||
"version": "5.32.14",
|
||||
"version": "5.32.15",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.34.7",
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user