@hatiolab/things-scene 3.4.31 → 3.4.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hatiolab/things-scene",
3
- "version": "3.4.31",
3
+ "version": "3.4.32",
4
4
  "description": "2D graphic library",
5
5
  "main": "src/index.js",
6
6
  "module": "things-scene.mjs",
package/things-scene.d.ts CHANGED
@@ -346,7 +346,6 @@ declare module '@hatiolab/things-scene' {
346
346
  rootModel: ModelLayer
347
347
  parent: Container
348
348
  app: ApplicationContext
349
- hidden: boolean
350
349
 
351
350
  get nature(): ComponentNature
352
351
 
@@ -359,6 +358,9 @@ declare module '@hatiolab/things-scene' {
359
358
  get data(): any
360
359
  set data(data: any)
361
360
 
361
+ get hidden(): boolean
362
+ set hidden(hidden: boolean)
363
+
362
364
  get value(): any
363
365
  set value(value: any)
364
366