marko 5.38.23 → 5.38.24
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 +2 -2
- package/tags-html.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marko",
|
|
3
|
-
"version": "5.38.
|
|
3
|
+
"version": "5.38.24",
|
|
4
4
|
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"front-end",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@marko/compiler": "^5.39.53",
|
|
73
|
-
"@marko/runtime-tags": "^6.0.
|
|
73
|
+
"@marko/runtime-tags": "^6.0.145",
|
|
74
74
|
"app-module-path": "^2.2.0",
|
|
75
75
|
"argly": "^1.2.0",
|
|
76
76
|
"browser-refresh-client": "1.1.4",
|
package/tags-html.d.ts
CHANGED
|
@@ -705,6 +705,12 @@ declare global {
|
|
|
705
705
|
}
|
|
706
706
|
interface Dfn extends HTMLAttributes<HTMLElement> {}
|
|
707
707
|
interface Dialog extends HTMLAttributes<HTMLDialogElement> {
|
|
708
|
+
/**
|
|
709
|
+
* Specifies the types of user actions that can be used to close the `<dialog>` element.
|
|
710
|
+
* @see https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-closedby
|
|
711
|
+
*/
|
|
712
|
+
closedby?: AttrMissing | "any" | "closerequest" | "none";
|
|
713
|
+
|
|
708
714
|
/**
|
|
709
715
|
* Specifies whether the `<dialog>` element is open.
|
|
710
716
|
* @see https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-open
|