marko 5.35.5 → 5.35.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marko",
|
|
3
|
-
"version": "5.35.
|
|
3
|
+
"version": "5.35.7",
|
|
4
4
|
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"front-end",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@marko/compiler": "^5.37.4",
|
|
69
|
-
"@marko/translator-default": "^6.0.
|
|
69
|
+
"@marko/translator-default": "^6.0.6",
|
|
70
70
|
"app-module-path": "^2.2.0",
|
|
71
71
|
"argly": "^1.2.0",
|
|
72
72
|
"browser-refresh-client": "1.1.4",
|
package/tags-html.d.ts
CHANGED
|
@@ -2510,6 +2510,12 @@ declare global {
|
|
|
2510
2510
|
*/
|
|
2511
2511
|
nonce?: AttrString;
|
|
2512
2512
|
|
|
2513
|
+
/**
|
|
2514
|
+
* Specifies that the element won't be rendered until it becomes shown, at which point it will be rendered on top of other page content.
|
|
2515
|
+
* @see https://html.spec.whatwg.org/multipage/popover.html#attr-popover
|
|
2516
|
+
*/
|
|
2517
|
+
popover?: AttrBoolean | "auto" | "manual";
|
|
2518
|
+
|
|
2513
2519
|
/**
|
|
2514
2520
|
* Specifies a list of part names for the element that can be targeted by the ::part() CSS pseudo-element.
|
|
2515
2521
|
* @see https://drafts.csswg.org/css-shadow-parts-1/#part-attribute
|