@hatiolab/things-scene 3.3.4 → 3.3.6
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-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.d.ts +7 -0
- package/things-scene.mjs +1 -1
package/things-scene.d.ts
CHANGED
|
@@ -460,6 +460,7 @@ declare module '@hatiolab/things-scene' {
|
|
|
460
460
|
class RootContainer extends Container {
|
|
461
461
|
get selected(): Component[]
|
|
462
462
|
set selected(selected: Component[])
|
|
463
|
+
get style(): { [key: string]: any }
|
|
463
464
|
}
|
|
464
465
|
|
|
465
466
|
class Layer extends ContainerAbstract {
|
|
@@ -612,6 +613,12 @@ declare module '@hatiolab/things-scene' {
|
|
|
612
613
|
*/
|
|
613
614
|
readonly root: Container
|
|
614
615
|
|
|
616
|
+
/*
|
|
617
|
+
* rootContainer는 모든 컴포넌트의 최상위 컨테이너이다.
|
|
618
|
+
* 이 컨테이너는 하위에 모델레이어를 위주로 많은 자식 컴포넌트를 보유한다.
|
|
619
|
+
*/
|
|
620
|
+
readonly rootContainer: RootContainer
|
|
621
|
+
|
|
615
622
|
/*
|
|
616
623
|
* selector에 해당하는 모든 컴포넌트들을 찾는다.
|
|
617
624
|
* @params selector {string}
|