marko 5.33.16 → 5.33.18
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.
|
@@ -597,7 +597,12 @@ var proto = AsyncStream.prototype = {
|
|
|
597
597
|
var str =
|
|
598
598
|
"<" +
|
|
599
599
|
tagName +
|
|
600
|
-
markoAttr(
|
|
600
|
+
markoAttr(
|
|
601
|
+
this,
|
|
602
|
+
componentDef,
|
|
603
|
+
props,
|
|
604
|
+
key && key[0] === "@" ? key : undefined
|
|
605
|
+
) +
|
|
601
606
|
attrsHelper(elementAttrs);
|
|
602
607
|
|
|
603
608
|
if (selfClosingTags.voidElements.indexOf(tagName) !== -1) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marko",
|
|
3
|
-
"version": "5.33.
|
|
3
|
+
"version": "5.33.18",
|
|
4
4
|
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"front-end",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@marko/compiler": "^5.35.
|
|
68
|
-
"@marko/translator-default": "^5.32.
|
|
67
|
+
"@marko/compiler": "^5.35.13",
|
|
68
|
+
"@marko/translator-default": "^5.32.15",
|
|
69
69
|
"app-module-path": "^2.2.0",
|
|
70
70
|
"argly": "^1.2.0",
|
|
71
71
|
"browser-refresh-client": "1.1.4",
|
|
@@ -597,7 +597,12 @@ var proto = (AsyncStream.prototype = {
|
|
|
597
597
|
var str =
|
|
598
598
|
"<" +
|
|
599
599
|
tagName +
|
|
600
|
-
markoAttr(
|
|
600
|
+
markoAttr(
|
|
601
|
+
this,
|
|
602
|
+
componentDef,
|
|
603
|
+
props,
|
|
604
|
+
key && key[0] === "@" ? key : undefined,
|
|
605
|
+
) +
|
|
601
606
|
attrsHelper(elementAttrs);
|
|
602
607
|
|
|
603
608
|
if (selfClosingTags.voidElements.indexOf(tagName) !== -1) {
|