@marko/runtime-tags 6.0.144 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  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.144",
3
+ "version": "6.0.145",
4
4
  "description": "Optimized runtime for Marko templates.",
5
5
  "keywords": [
6
6
  "api",
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