@hatiolab/things-scene 3.4.31 → 3.4.33
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 +1 -1
- package/things-scene.d.ts +7 -1
- package/things-scene.mjs +1 -1
package/package.json
CHANGED
package/things-scene.d.ts
CHANGED
|
@@ -71,7 +71,11 @@ declare module '@hatiolab/things-scene' {
|
|
|
71
71
|
| string
|
|
72
72
|
}[]
|
|
73
73
|
'value-property'?: string
|
|
74
|
+
readonly?: boolean
|
|
74
75
|
valueProperty?: string
|
|
76
|
+
editor?: {
|
|
77
|
+
fullwidth?: boolean
|
|
78
|
+
}
|
|
75
79
|
help?: string
|
|
76
80
|
}
|
|
77
81
|
|
|
@@ -346,7 +350,6 @@ declare module '@hatiolab/things-scene' {
|
|
|
346
350
|
rootModel: ModelLayer
|
|
347
351
|
parent: Container
|
|
348
352
|
app: ApplicationContext
|
|
349
|
-
hidden: boolean
|
|
350
353
|
|
|
351
354
|
get nature(): ComponentNature
|
|
352
355
|
|
|
@@ -359,6 +362,9 @@ declare module '@hatiolab/things-scene' {
|
|
|
359
362
|
get data(): any
|
|
360
363
|
set data(data: any)
|
|
361
364
|
|
|
365
|
+
get hidden(): boolean
|
|
366
|
+
set hidden(hidden: boolean)
|
|
367
|
+
|
|
362
368
|
get value(): any
|
|
363
369
|
set value(value: any)
|
|
364
370
|
|