diff --git a/api-reports/2_12.txt b/api-reports/2_12.txt index 2fcea68ad..81d5249ec 100644 --- a/api-reports/2_12.txt +++ b/api-reports/2_12.txt @@ -26993,6 +26993,7 @@ html[SO] type Canvas = HTMLCanvasElement html[SO] type Collection[+E] = HTMLCollection[E] html[SO] type DList = HTMLDListElement html[SO] type DataList = HTMLDataListElement +html[SO] type Dialog = HTMLDialogElement html[SO] type Div = HTMLDivElement html[SO] type Document = HTMLDocument html[SO] type Element = HTMLElement diff --git a/api-reports/2_13.txt b/api-reports/2_13.txt index 2fcea68ad..81d5249ec 100644 --- a/api-reports/2_13.txt +++ b/api-reports/2_13.txt @@ -26993,6 +26993,7 @@ html[SO] type Canvas = HTMLCanvasElement html[SO] type Collection[+E] = HTMLCollection[E] html[SO] type DList = HTMLDListElement html[SO] type DataList = HTMLDataListElement +html[SO] type Dialog = HTMLDialogElement html[SO] type Div = HTMLDivElement html[SO] type Document = HTMLDocument html[SO] type Element = HTMLElement diff --git a/dom/src/main/scala/org/scalajs/dom/html.scala b/dom/src/main/scala/org/scalajs/dom/html.scala index 84bb669bf..5ce5efe5e 100644 --- a/dom/src/main/scala/org/scalajs/dom/html.scala +++ b/dom/src/main/scala/org/scalajs/dom/html.scala @@ -13,6 +13,7 @@ object html { type Collection[+E] = HTMLCollection[E] type DataList = HTMLDataListElement type Div = HTMLDivElement + type Dialog = HTMLDialogElement type DList = HTMLDListElement type Document = HTMLDocument type Element = HTMLElement