From b20703e6e63cf1b3dc7e0c016fdebacb72e15997 Mon Sep 17 00:00:00 2001 From: Andrey Kernichniy Date: Sat, 7 Mar 2026 22:32:22 +0700 Subject: [PATCH] Release package version 0.0.8 Update interface of scene --- lib/src/interfaces/scene.ts | 8 ++++---- lib/src/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/src/interfaces/scene.ts b/lib/src/interfaces/scene.ts index 7049146..6a7ac06 100644 --- a/lib/src/interfaces/scene.ts +++ b/lib/src/interfaces/scene.ts @@ -1,10 +1,10 @@ import { Fill } from "./fill"; -import { IBaseDrawObject, IDrawNode, IRectangle } from "./objects"; +import { DrawLeafs, IDrawNode, IRectangleDrawObject } from "./objects"; export interface IScene { node: IDrawNode; - selection?: IRectangle; - spotlight: IRectangle[]; + selection?: IDrawNode; + spotlight: IRectangleDrawObject[]; background: Fill; - static: IBaseDrawObject[]; + static: DrawLeafs[]; } diff --git a/lib/src/package.json b/lib/src/package.json index 679d2ed..0e5fb3b 100644 --- a/lib/src/package.json +++ b/lib/src/package.json @@ -1,6 +1,6 @@ { "name": "@gxc-solutions/renderer-base", - "version": "0.0.7", + "version": "0.0.8", "main": "index.js", "author": "GXC Solutions", "publishConfig": {