@hatiolab/things-scene 3.0.45 → 3.1.0
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/db.sqlite +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +5 -0
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +5 -0
- package/logs/application-2022-11-02-16.log +6 -0
- package/logs/connections-2022-11-02-16.log +35 -0
- package/package.json +1 -1
- package/things-scene-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.d.ts +3 -2
- package/things-scene.mjs +1 -1
package/things-scene.d.ts
CHANGED
|
@@ -318,6 +318,7 @@ declare module '@hatiolab/things-scene' {
|
|
|
318
318
|
isLayer(): boolean
|
|
319
319
|
is3dish(): boolean
|
|
320
320
|
isHTMLElement(): boolean
|
|
321
|
+
isConnectable(): boolean
|
|
321
322
|
|
|
322
323
|
ready(): void
|
|
323
324
|
dispose(): void
|
|
@@ -358,8 +359,8 @@ declare module '@hatiolab/things-scene' {
|
|
|
358
359
|
width: number,
|
|
359
360
|
height: number
|
|
360
361
|
): void
|
|
361
|
-
drawStroke(context: CanvasRenderingContext2D): void
|
|
362
|
-
drawFill(context: CanvasRenderingContext2D): void
|
|
362
|
+
drawStroke(context: CanvasRenderingContext2D, override?: { [prop: string]: any }): void
|
|
363
|
+
drawFill(context: CanvasRenderingContext2D, override?: { [prop: string]: any }): void
|
|
363
364
|
drawText(context: CanvasRenderingContext2D): void
|
|
364
365
|
|
|
365
366
|
ondblclick(e: MouseEvent): void
|