Skip to content

Commit

Permalink
sbt prePR & Minor change to import statement in ImageData
Browse files Browse the repository at this point in the history
  • Loading branch information
c committed Jan 12, 2024
1 parent 4096704 commit ab2227d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion api-reports/2_12.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15651,9 +15651,10 @@ ImageBitmap[JT] def width: Double
ImageCapture[JC] def grabFrame(): js.Promise[ImageBitmap]
ImageCapture[JC] def takePhoto(): js.Promise[Blob]
ImageCapture[JC] val track: MediaStreamTrack
ImageData[JC] def data: js.typedarray.Uint8ClampedArray
ImageData[JC] def data: Uint8ClampedArray
ImageData[JC] def height: Int
ImageData[JC] def width: Int
ImageSettings[JT] var colorSpace: js.UndefOr[String]
InputEvent[JC] def bubbles: Boolean
InputEvent[JC] def cancelBubble: Boolean
InputEvent[JC] def cancelable: Boolean
Expand Down
3 changes: 2 additions & 1 deletion api-reports/2_13.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15651,9 +15651,10 @@ ImageBitmap[JT] def width: Double
ImageCapture[JC] def grabFrame(): js.Promise[ImageBitmap]
ImageCapture[JC] def takePhoto(): js.Promise[Blob]
ImageCapture[JC] val track: MediaStreamTrack
ImageData[JC] def data: js.typedarray.Uint8ClampedArray
ImageData[JC] def data: Uint8ClampedArray
ImageData[JC] def height: Int
ImageData[JC] def width: Int
ImageSettings[JT] var colorSpace: js.UndefOr[String]
InputEvent[JC] def bubbles: Boolean
InputEvent[JC] def cancelBubble: Boolean
InputEvent[JC] def cancelable: Boolean
Expand Down
2 changes: 1 addition & 1 deletion dom/src/main/scala/org/scalajs/dom/ImageData.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package org.scalajs.dom

import scala.scalajs.js
import scala.scalajs.js.annotation._
import js.typedarray.Uint8ClampedArray
import scala.scalajs.js.typedarray.Uint8ClampedArray

/** The ImageData interface represents the underlying pixel data of an area of a <canvas> element. It is created
* using creators on the CanvasRenderingContext2D object associated with the canvas createImageData() and
Expand Down

0 comments on commit ab2227d

Please sign in to comment.