@hatiolab/things-scene 2.8.2 → 2.8.5
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/attachments/2a6c7f4c-a44c-45c9-b8cd-a32cc04a25e1.png +0 -0
- package/db.sqlite +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +10 -4
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +5 -29
- package/logs/application-2022-08-11-22.log +1 -0
- package/logs/application-2022-08-12-17.log +4 -0
- package/logs/connections-2022-07-24-14.log +35 -0
- package/logs/connections-2022-07-24-16.log +70 -0
- package/logs/connections-2022-07-24-21.log +35 -0
- package/logs/connections-2022-08-12-17.log +35 -0
- package/package.json +1 -1
- package/things-scene-ie.js +2 -1
- package/things-scene-ie.js.LICENSE.txt +1 -0
- package/things-scene-min.js +2 -1
- package/things-scene-min.js.LICENSE.txt +1 -0
- package/things-scene.d.ts +8 -5
- package/things-scene.mjs +1 -1
- package/logs/application-2021-11-18-10.log +0 -4
- package/logs/connections-2021-11-08-12.log +0 -0
- package/logs/connections-2021-11-08-14.log +0 -32
- package/logs/connections-2021-11-11-16.log +0 -64
- package/logs/connections-2021-11-15-16.log +0 -32
- package/logs/connections-2021-11-16-09.log +0 -32
- package/logs/connections-2021-11-18-10.log +0 -32
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
package/things-scene.d.ts
CHANGED
|
@@ -245,6 +245,9 @@ declare module '@hatiolab/things-scene' {
|
|
|
245
245
|
get data(): any
|
|
246
246
|
set data(data: any)
|
|
247
247
|
|
|
248
|
+
get value(): any
|
|
249
|
+
set value(value: any)
|
|
250
|
+
|
|
248
251
|
get text(): string
|
|
249
252
|
set text(text: string)
|
|
250
253
|
|
|
@@ -311,16 +314,16 @@ declare module '@hatiolab/things-scene' {
|
|
|
311
314
|
class ContainerAbstract extends MoveHandle(RectPath(Component)) {
|
|
312
315
|
indexOf(component: Component): number
|
|
313
316
|
size(): number
|
|
314
|
-
addComponent(target: Component): void
|
|
315
|
-
removeComponent(target: Component): void
|
|
316
|
-
insertComponentAt(target: Component, idx: number): void
|
|
317
|
+
addComponent(target: Component, ghost?: boolean): void
|
|
318
|
+
removeComponent(target: Component, ghost?: boolean): void
|
|
319
|
+
insertComponentAt(target: Component, idx: number, ghost?: boolean): void
|
|
317
320
|
findById(id: string): Component | undefined
|
|
318
321
|
getAt(at: number): Component | undefined
|
|
319
322
|
|
|
320
323
|
reflow(): void
|
|
321
324
|
|
|
322
|
-
add(components: Component[] | Component): Container
|
|
323
|
-
remove(components: Component[] | Component): Container
|
|
325
|
+
add(components: Component[] | Component, ghost?: boolean): Container
|
|
326
|
+
remove(components: Component[] | Component, ghost?: boolean): Container
|
|
324
327
|
|
|
325
328
|
components: Component[]
|
|
326
329
|
}
|