@marko/runtime-tags 6.0.143 → 6.0.145
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/runtime-tags",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.145",
|
|
4
4
|
"description": "Optimized runtime for Marko templates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"build": "node -r ~ts ./scripts/bundle.ts"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@marko/compiler": "^5.39.
|
|
51
|
+
"@marko/compiler": "^5.39.53",
|
|
52
52
|
"csstype": "^3.2.3",
|
|
53
53
|
"magic-string": "^0.30.21"
|
|
54
54
|
},
|
package/tags-html.d.ts
CHANGED
|
@@ -804,6 +804,12 @@ declare global {
|
|
|
804
804
|
}
|
|
805
805
|
interface Dfn extends HTMLAttributes<HTMLElement> {}
|
|
806
806
|
interface Dialog extends HTMLAttributes<HTMLDialogElement> {
|
|
807
|
+
/**
|
|
808
|
+
* Specifies the types of user actions that can be used to close the `<dialog>` element.
|
|
809
|
+
* @see https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-closedby
|
|
810
|
+
*/
|
|
811
|
+
closedby?: AttrMissing | "any" | "closerequest" | "none";
|
|
812
|
+
|
|
807
813
|
/**
|
|
808
814
|
* Specifies whether the `<dialog>` element is open.
|
|
809
815
|
* @see https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-open
|