@hatiolab/things-scene 10.0.0-beta.3 → 10.0.0-beta.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.
Files changed (55) hide show
  1. package/dist-types/components/audio.d.ts +2 -2
  2. package/dist-types/components/container-abstract.d.ts +4 -4
  3. package/dist-types/components/container.d.ts +3 -3
  4. package/dist-types/components/ellipse.d.ts +2 -2
  5. package/dist-types/components/html-overlay-container.d.ts +3 -3
  6. package/dist-types/components/html-overlay-element.d.ts +4 -4
  7. package/dist-types/components/image-view.d.ts +2 -2
  8. package/dist-types/components/info-window.d.ts +2 -2
  9. package/dist-types/components/local-ref.d.ts +2 -2
  10. package/dist-types/components/mixins/connectable.d.ts +2 -2
  11. package/dist-types/components/mixins/data-source.d.ts +2 -2
  12. package/dist-types/components/mixins/html-element.d.ts +2 -2
  13. package/dist-types/components/mixins/move-handle.d.ts +2 -2
  14. package/dist-types/components/mixins/rect-path.d.ts +2 -2
  15. package/dist-types/components/mixins/value-holder.d.ts +2 -2
  16. package/dist-types/components/node.d.ts +2 -2
  17. package/dist-types/components/popup.d.ts +2 -2
  18. package/dist-types/components/rect.d.ts +4 -4
  19. package/dist-types/components/ruler.d.ts +2 -2
  20. package/dist-types/components/text.d.ts +2 -2
  21. package/dist-types/layer/model-layer.d.ts.map +1 -1
  22. package/dist-types/things-scene/index.d.ts +1 -0
  23. package/dist-types/things-scene/index.d.ts.map +1 -1
  24. package/dist-types/things-scene/scene.d.ts +1 -1
  25. package/dist-types/threed/environments/factory-environment.d.ts +11 -0
  26. package/dist-types/threed/environments/factory-environment.d.ts.map +1 -0
  27. package/dist-types/threed/environments/home-environment.d.ts +11 -0
  28. package/dist-types/threed/environments/home-environment.d.ts.map +1 -0
  29. package/dist-types/threed/environments/index.d.ts +6 -0
  30. package/dist-types/threed/environments/index.d.ts.map +1 -0
  31. package/dist-types/threed/environments/office-environment.d.ts +11 -0
  32. package/dist-types/threed/environments/office-environment.d.ts.map +1 -0
  33. package/dist-types/threed/environments/studio-environment.d.ts +12 -0
  34. package/dist-types/threed/environments/studio-environment.d.ts.map +1 -0
  35. package/dist-types/threed/environments/warehouse-environment.d.ts +11 -0
  36. package/dist-types/threed/environments/warehouse-environment.d.ts.map +1 -0
  37. package/dist-types/threed/factories/banner.d.ts +2 -2
  38. package/dist-types/threed/factories/camera.d.ts +2 -2
  39. package/dist-types/threed/factories/cube.d.ts +2 -2
  40. package/dist-types/threed/factories/gltf-object.d.ts +2 -2
  41. package/dist-types/threed/factories/sprite.d.ts +2 -2
  42. package/dist-types/threed/factories/wall.d.ts +2 -2
  43. package/dist-types/threed/managers/renderer-manager.d.ts.map +1 -1
  44. package/dist-types/threed/managers/scene-manager.d.ts +11 -0
  45. package/dist-types/threed/managers/scene-manager.d.ts.map +1 -1
  46. package/dist-types/threed/three-capability.d.ts.map +1 -1
  47. package/dist-types/threed/three-container.d.ts +5 -0
  48. package/dist-types/threed/three-container.d.ts.map +1 -1
  49. package/dist-types/types/index.d.ts +1 -0
  50. package/dist-types/types/index.d.ts.map +1 -1
  51. package/package.json +1 -1
  52. package/things-scene-min.js +12 -12
  53. package/things-scene-min.js.map +1 -1
  54. package/things-scene.mjs +8 -8
  55. package/things-scene.mjs.map +1 -1
@@ -138,7 +138,7 @@ declare const AudioPlayer_base: {
138
138
  get textHidden(): boolean;
139
139
  set textHidden(v: boolean);
140
140
  get hasTextProperty(): boolean;
141
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
141
+ animate(opts: import("../index.js").AnimationConfig): any;
142
142
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
143
143
  serialize(...others: any[]): string;
144
144
  trim(): void;
@@ -152,7 +152,7 @@ declare const AudioPlayer_base: {
152
152
  set tap(v: any);
153
153
  get mappings(): any[];
154
154
  get retention(): number;
155
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
155
+ get animation(): import("../index.js").AnimationController | undefined;
156
156
  get started(): boolean;
157
157
  set started(v: boolean);
158
158
  get controls(): import("../index.js").Control[] | undefined;
@@ -129,7 +129,7 @@ declare const ContainerAbstract_base: {
129
129
  get textHidden(): boolean;
130
130
  set textHidden(v: boolean);
131
131
  get hasTextProperty(): boolean;
132
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
132
+ animate(opts: import("../index.js").AnimationConfig): any;
133
133
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
134
134
  serialize(...others: any[]): string;
135
135
  trim(): void;
@@ -143,7 +143,7 @@ declare const ContainerAbstract_base: {
143
143
  set tap(v: any);
144
144
  get mappings(): any[];
145
145
  get retention(): number;
146
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
146
+ get animation(): import("../index.js").AnimationController | undefined;
147
147
  get started(): boolean;
148
148
  set started(v: boolean);
149
149
  get controls(): import("../index.js").Control[] | undefined;
@@ -368,7 +368,7 @@ declare const ContainerAbstract_base: {
368
368
  get textHidden(): boolean;
369
369
  set textHidden(v: boolean);
370
370
  get hasTextProperty(): boolean;
371
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
371
+ animate(opts: import("../index.js").AnimationConfig): any;
372
372
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
373
373
  serialize(...others: any[]): string;
374
374
  trim(): void;
@@ -382,7 +382,7 @@ declare const ContainerAbstract_base: {
382
382
  set tap(v: any);
383
383
  get mappings(): any[];
384
384
  get retention(): number;
385
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
385
+ get animation(): import("../index.js").AnimationController | undefined;
386
386
  get started(): boolean;
387
387
  set started(v: boolean);
388
388
  get controls(): import("../index.js").Control[] | undefined;
@@ -139,7 +139,7 @@ declare const Container_base: {
139
139
  set text(v: string);
140
140
  get textBounds(): import("../index.js").BOUNDS;
141
141
  get textRotation(): number;
142
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
142
+ animate(opts: import("../index.js").AnimationConfig): any;
143
143
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
144
144
  serialize(...others: any[]): string;
145
145
  trim(): void;
@@ -153,7 +153,7 @@ declare const Container_base: {
153
153
  set tap(v: any);
154
154
  get mappings(): any[];
155
155
  get retention(): number;
156
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
156
+ get animation(): import("../index.js").AnimationController | undefined;
157
157
  get started(): boolean;
158
158
  set started(v: boolean);
159
159
  get controls(): import("../index.js").Control[] | undefined;
@@ -244,7 +244,7 @@ export default class Container extends Container_base {
244
244
  isPositionable(): boolean;
245
245
  setElementProperties(element: any): void;
246
246
  get layout(): import("../index.js").LAYOUT | {
247
- reflow(container: import("../types/component.js").Container, component?: import("../types/component.js").Component): void;
247
+ reflow(container: import("../types/component.js").Container, component?: import("../index.js").ComponentInterface): void;
248
248
  capturables(container: any): any;
249
249
  drawables(container: any): any;
250
250
  isStuck(component: any): boolean;
@@ -132,7 +132,7 @@ declare const Ellipse_base: {
132
132
  get textHidden(): boolean;
133
133
  set textHidden(v: boolean);
134
134
  get hasTextProperty(): boolean;
135
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
135
+ animate(opts: import("../index.js").AnimationConfig): any;
136
136
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
137
137
  serialize(...others: any[]): string;
138
138
  trim(): void;
@@ -146,7 +146,7 @@ declare const Ellipse_base: {
146
146
  set tap(v: any);
147
147
  get mappings(): any[];
148
148
  get retention(): number;
149
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
149
+ get animation(): import("../index.js").AnimationController | undefined;
150
150
  get started(): boolean;
151
151
  set started(v: boolean);
152
152
  get controls(): import("../index.js").Control[] | undefined;
@@ -137,7 +137,7 @@ declare const HTMLOverlayContainer_base: {
137
137
  set text(v: string);
138
138
  get textBounds(): import("../index.js").BOUNDS;
139
139
  get textRotation(): number;
140
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
140
+ animate(opts: import("../index.js").AnimationConfig): any;
141
141
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
142
142
  serialize(...others: any[]): string;
143
143
  trim(): void;
@@ -151,7 +151,7 @@ declare const HTMLOverlayContainer_base: {
151
151
  set tap(v: any);
152
152
  get mappings(): any[];
153
153
  get retention(): number;
154
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
154
+ get animation(): import("../index.js").AnimationController | undefined;
155
155
  get started(): boolean;
156
156
  set started(v: boolean);
157
157
  get controls(): import("../index.js").Control[] | undefined;
@@ -239,7 +239,7 @@ export default class HTMLOverlayContainer extends HTMLOverlayContainer_base {
239
239
  render(context: any): void;
240
240
  is3dish(): boolean;
241
241
  get layout(): import("../index.js").LAYOUT | {
242
- reflow(container: import("../types/component.js").Container, component?: import("../types/component.js").Component): void;
242
+ reflow(container: import("../types/component.js").Container, component?: import("../index.js").ComponentInterface): void;
243
243
  capturables(container: any): any;
244
244
  drawables(container: any): any;
245
245
  isStuck(component: any): boolean;
@@ -137,7 +137,7 @@ declare const HTMLOverlayElement_base: {
137
137
  set text(v: string);
138
138
  get textBounds(): import("../index.js").BOUNDS;
139
139
  get textRotation(): number;
140
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
140
+ animate(opts: import("../index.js").AnimationConfig): any;
141
141
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
142
142
  serialize(...others: any[]): string;
143
143
  trim(): void;
@@ -151,7 +151,7 @@ declare const HTMLOverlayElement_base: {
151
151
  set tap(v: any);
152
152
  get mappings(): any[];
153
153
  get retention(): number;
154
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
154
+ get animation(): import("../index.js").AnimationController | undefined;
155
155
  get started(): boolean;
156
156
  set started(v: boolean);
157
157
  get controls(): import("../index.js").Control[] | undefined;
@@ -372,7 +372,7 @@ declare const HTMLOverlayElement_base: {
372
372
  get textHidden(): boolean;
373
373
  set textHidden(v: boolean);
374
374
  get hasTextProperty(): boolean;
375
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
375
+ animate(opts: import("../index.js").AnimationConfig): any;
376
376
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
377
377
  serialize(...others: any[]): string;
378
378
  trim(): void;
@@ -386,7 +386,7 @@ declare const HTMLOverlayElement_base: {
386
386
  set tap(v: any);
387
387
  get mappings(): any[];
388
388
  get retention(): number;
389
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
389
+ get animation(): import("../index.js").AnimationController | undefined;
390
390
  get started(): boolean;
391
391
  set started(v: boolean);
392
392
  get controls(): import("../index.js").Control[] | undefined;
@@ -138,7 +138,7 @@ declare const ImageView_base: {
138
138
  get textHidden(): boolean;
139
139
  set textHidden(v: boolean);
140
140
  get hasTextProperty(): boolean;
141
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
141
+ animate(opts: import("../index.js").AnimationConfig): any;
142
142
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
143
143
  serialize(...others: any[]): string;
144
144
  trim(): void;
@@ -152,7 +152,7 @@ declare const ImageView_base: {
152
152
  set tap(v: any);
153
153
  get mappings(): any[];
154
154
  get retention(): number;
155
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
155
+ get animation(): import("../index.js").AnimationController | undefined;
156
156
  get started(): boolean;
157
157
  set started(v: boolean);
158
158
  get controls(): import("../index.js").Control[] | undefined;
@@ -138,7 +138,7 @@ declare const InfoWindow_base: {
138
138
  get textHidden(): boolean;
139
139
  set textHidden(v: boolean);
140
140
  get hasTextProperty(): boolean;
141
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
141
+ animate(opts: import("../index.js").AnimationConfig): any;
142
142
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
143
143
  serialize(...others: any[]): string;
144
144
  trim(): void;
@@ -152,7 +152,7 @@ declare const InfoWindow_base: {
152
152
  set tap(v: any);
153
153
  get mappings(): any[];
154
154
  get retention(): number;
155
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
155
+ get animation(): import("../index.js").AnimationController | undefined;
156
156
  get started(): boolean;
157
157
  set started(v: boolean);
158
158
  get controls(): import("../index.js").Control[] | undefined;
@@ -138,7 +138,7 @@ declare const LocalRef_base: {
138
138
  get textHidden(): boolean;
139
139
  set textHidden(v: boolean);
140
140
  get hasTextProperty(): boolean;
141
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
141
+ animate(opts: import("../index.js").AnimationConfig): any;
142
142
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
143
143
  serialize(...others: any[]): string;
144
144
  trim(): void;
@@ -152,7 +152,7 @@ declare const LocalRef_base: {
152
152
  set tap(v: any);
153
153
  get mappings(): any[];
154
154
  get retention(): number;
155
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
155
+ get animation(): import("../index.js").AnimationController | undefined;
156
156
  get started(): boolean;
157
157
  set started(v: boolean);
158
158
  get controls(): import("../index.js").Control[] | undefined;
@@ -160,7 +160,7 @@ export default function Connectable<T extends Constructor<Component>>(superclass
160
160
  get textHidden(): boolean;
161
161
  set textHidden(v: boolean);
162
162
  get hasTextProperty(): boolean;
163
- animate(opts: import("../../animation/interfaces.js").AnimationConfig): any;
163
+ animate(opts: import("../../index.js").AnimationConfig): any;
164
164
  effect(context: import("../../index.js").SceneRenderContext, model: any): void;
165
165
  serialize(...others: any[]): string;
166
166
  trim(): void;
@@ -174,7 +174,7 @@ export default function Connectable<T extends Constructor<Component>>(superclass
174
174
  set tap(v: any);
175
175
  get mappings(): any[];
176
176
  get retention(): number;
177
- get animation(): import("../../animation/interfaces.js").AnimationController | undefined;
177
+ get animation(): import("../../index.js").AnimationController | undefined;
178
178
  get started(): boolean;
179
179
  set started(v: boolean);
180
180
  get controls(): import("../../index.js").Control[] | undefined;
@@ -127,7 +127,7 @@ export default function DataSource<T extends Constructor<Component>>(superclass:
127
127
  get textHidden(): boolean;
128
128
  set textHidden(v: boolean);
129
129
  get hasTextProperty(): boolean;
130
- animate(opts: import("../../animation/interfaces.js").AnimationConfig): any;
130
+ animate(opts: import("../../index.js").AnimationConfig): any;
131
131
  effect(context: import("../../index.js").SceneRenderContext, model: any): void;
132
132
  serialize(...others: any[]): string;
133
133
  trim(): void;
@@ -141,7 +141,7 @@ export default function DataSource<T extends Constructor<Component>>(superclass:
141
141
  set tap(v: any);
142
142
  get mappings(): any[];
143
143
  get retention(): number;
144
- get animation(): import("../../animation/interfaces.js").AnimationController | undefined;
144
+ get animation(): import("../../index.js").AnimationController | undefined;
145
145
  get started(): boolean;
146
146
  set started(v: boolean);
147
147
  get controls(): import("../../index.js").Control[] | undefined;
@@ -142,7 +142,7 @@ export default function MixinHTMLElement<T extends Constructor<Component>>(super
142
142
  set text(v: string);
143
143
  get textBounds(): import("../../index.js").BOUNDS;
144
144
  get textRotation(): number;
145
- animate(opts: import("../../animation/interfaces.js").AnimationConfig): any;
145
+ animate(opts: import("../../index.js").AnimationConfig): any;
146
146
  effect(context: import("../../index.js").SceneRenderContext, model: any): void;
147
147
  serialize(...others: any[]): string;
148
148
  trim(): void;
@@ -156,7 +156,7 @@ export default function MixinHTMLElement<T extends Constructor<Component>>(super
156
156
  set tap(v: any);
157
157
  get mappings(): any[];
158
158
  get retention(): number;
159
- get animation(): import("../../animation/interfaces.js").AnimationController | undefined;
159
+ get animation(): import("../../index.js").AnimationController | undefined;
160
160
  get started(): boolean;
161
161
  set started(v: boolean);
162
162
  get controls(): import("../../index.js").Control[] | undefined;
@@ -128,7 +128,7 @@ export default function MoveHandle<T extends Constructor<Component>>(superclass:
128
128
  get textHidden(): boolean;
129
129
  set textHidden(v: boolean);
130
130
  get hasTextProperty(): boolean;
131
- animate(opts: import("../../animation/interfaces.js").AnimationConfig): any;
131
+ animate(opts: import("../../index.js").AnimationConfig): any;
132
132
  effect(context: import("../../index.js").SceneRenderContext, model: any): void;
133
133
  serialize(...others: any[]): string;
134
134
  trim(): void;
@@ -142,7 +142,7 @@ export default function MoveHandle<T extends Constructor<Component>>(superclass:
142
142
  set tap(v: any);
143
143
  get mappings(): any[];
144
144
  get retention(): number;
145
- get animation(): import("../../animation/interfaces.js").AnimationController | undefined;
145
+ get animation(): import("../../index.js").AnimationController | undefined;
146
146
  get started(): boolean;
147
147
  set started(v: boolean);
148
148
  get controls(): import("../../index.js").Control[] | undefined;
@@ -141,7 +141,7 @@ export default function RectPath<T extends Constructor<Component>>(superclass: T
141
141
  get textHidden(): boolean;
142
142
  set textHidden(v: boolean);
143
143
  get hasTextProperty(): boolean;
144
- animate(opts: import("../../animation/interfaces.js").AnimationConfig): any;
144
+ animate(opts: import("../../index.js").AnimationConfig): any;
145
145
  effect(context: import("../../index.js").SceneRenderContext, model: any): void;
146
146
  serialize(...others: any[]): string;
147
147
  trim(): void;
@@ -155,7 +155,7 @@ export default function RectPath<T extends Constructor<Component>>(superclass: T
155
155
  set tap(v: any);
156
156
  get mappings(): any[];
157
157
  get retention(): number;
158
- get animation(): import("../../animation/interfaces.js").AnimationController | undefined;
158
+ get animation(): import("../../index.js").AnimationController | undefined;
159
159
  get started(): boolean;
160
160
  set started(v: boolean);
161
161
  get controls(): import("../../index.js").Control[] | undefined;
@@ -135,7 +135,7 @@ export default function ValueHolder<T extends Constructor<Component>>(superclass
135
135
  get textHidden(): boolean;
136
136
  set textHidden(v: boolean);
137
137
  get hasTextProperty(): boolean;
138
- animate(opts: import("../../animation/interfaces.js").AnimationConfig): any;
138
+ animate(opts: import("../../index.js").AnimationConfig): any;
139
139
  effect(context: import("../../index.js").SceneRenderContext, model: any): void;
140
140
  serialize(...others: any[]): string;
141
141
  trim(): void;
@@ -147,7 +147,7 @@ export default function ValueHolder<T extends Constructor<Component>>(superclass
147
147
  set tap(v: any);
148
148
  get mappings(): any[];
149
149
  get retention(): number;
150
- get animation(): import("../../animation/interfaces.js").AnimationController | undefined;
150
+ get animation(): import("../../index.js").AnimationController | undefined;
151
151
  get started(): boolean;
152
152
  set started(v: boolean);
153
153
  get controls(): import("../../index.js").Control[] | undefined;
@@ -131,7 +131,7 @@ declare const Node_base: {
131
131
  get textHidden(): boolean;
132
132
  set textHidden(v: boolean);
133
133
  get hasTextProperty(): boolean;
134
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
134
+ animate(opts: import("../index.js").AnimationConfig): any;
135
135
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
136
136
  serialize(...others: any[]): string;
137
137
  trim(): void;
@@ -145,7 +145,7 @@ declare const Node_base: {
145
145
  set tap(v: any);
146
146
  get mappings(): any[];
147
147
  get retention(): number;
148
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
148
+ get animation(): import("../index.js").AnimationController | undefined;
149
149
  get started(): boolean;
150
150
  set started(v: boolean);
151
151
  get controls(): import("../index.js").Control[] | undefined;
@@ -138,7 +138,7 @@ declare const Popup_base: {
138
138
  get textHidden(): boolean;
139
139
  set textHidden(v: boolean);
140
140
  get hasTextProperty(): boolean;
141
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
141
+ animate(opts: import("../index.js").AnimationConfig): any;
142
142
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
143
143
  serialize(...others: any[]): string;
144
144
  trim(): void;
@@ -152,7 +152,7 @@ declare const Popup_base: {
152
152
  set tap(v: any);
153
153
  get mappings(): any[];
154
154
  get retention(): number;
155
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
155
+ get animation(): import("../index.js").AnimationController | undefined;
156
156
  get started(): boolean;
157
157
  set started(v: boolean);
158
158
  get controls(): import("../index.js").Control[] | undefined;
@@ -131,7 +131,7 @@ declare const Rect_base: {
131
131
  get textHidden(): boolean;
132
132
  set textHidden(v: boolean);
133
133
  get hasTextProperty(): boolean;
134
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
134
+ animate(opts: import("../index.js").AnimationConfig): any;
135
135
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
136
136
  serialize(...others: any[]): string;
137
137
  trim(): void;
@@ -145,7 +145,7 @@ declare const Rect_base: {
145
145
  set tap(v: any);
146
146
  get mappings(): any[];
147
147
  get retention(): number;
148
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
148
+ get animation(): import("../index.js").AnimationController | undefined;
149
149
  get started(): boolean;
150
150
  set started(v: boolean);
151
151
  get controls(): import("../index.js").Control[] | undefined;
@@ -370,7 +370,7 @@ declare const Rect_base: {
370
370
  get textHidden(): boolean;
371
371
  set textHidden(v: boolean);
372
372
  get hasTextProperty(): boolean;
373
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
373
+ animate(opts: import("../index.js").AnimationConfig): any;
374
374
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
375
375
  serialize(...others: any[]): string;
376
376
  trim(): void;
@@ -384,7 +384,7 @@ declare const Rect_base: {
384
384
  set tap(v: any);
385
385
  get mappings(): any[];
386
386
  get retention(): number;
387
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
387
+ get animation(): import("../index.js").AnimationController | undefined;
388
388
  get started(): boolean;
389
389
  set started(v: boolean);
390
390
  get controls(): import("../index.js").Control[] | undefined;
@@ -138,7 +138,7 @@ declare const Ruler_base: {
138
138
  get textHidden(): boolean;
139
139
  set textHidden(v: boolean);
140
140
  get hasTextProperty(): boolean;
141
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
141
+ animate(opts: import("../index.js").AnimationConfig): any;
142
142
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
143
143
  serialize(...others: any[]): string;
144
144
  trim(): void;
@@ -152,7 +152,7 @@ declare const Ruler_base: {
152
152
  set tap(v: any);
153
153
  get mappings(): any[];
154
154
  get retention(): number;
155
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
155
+ get animation(): import("../index.js").AnimationController | undefined;
156
156
  get started(): boolean;
157
157
  set started(v: boolean);
158
158
  get controls(): import("../index.js").Control[] | undefined;
@@ -137,7 +137,7 @@ declare const Text_base: {
137
137
  get textHidden(): boolean;
138
138
  set textHidden(v: boolean);
139
139
  get hasTextProperty(): boolean;
140
- animate(opts: import("../animation/interfaces.js").AnimationConfig): any;
140
+ animate(opts: import("../index.js").AnimationConfig): any;
141
141
  effect(context: import("../index.js").SceneRenderContext, model: any): void;
142
142
  serialize(...others: any[]): string;
143
143
  trim(): void;
@@ -151,7 +151,7 @@ declare const Text_base: {
151
151
  set tap(v: any);
152
152
  get mappings(): any[];
153
153
  get retention(): number;
154
- get animation(): import("../animation/interfaces.js").AnimationController | undefined;
154
+ get animation(): import("../index.js").AnimationController | undefined;
155
155
  get started(): boolean;
156
156
  set started(v: boolean);
157
157
  get controls(): import("../index.js").Control[] | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"model-layer.d.ts","sourceRoot":"","sources":["../../src/layer/model-layer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"model-layer.d.ts","sourceRoot":"","sources":["../../src/layer/model-layer.ts"],"names":[],"mappings":"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"}
@@ -17,6 +17,7 @@ export declare namespace Model {
17
17
  export { default as Layer } from '../layer/layer.js';
18
18
  export { default as EventMap } from '../event-map/event-map.js';
19
19
  export * from '../const.js';
20
+ export * from '../animation/index.js';
20
21
  export * from '../components/index.js';
21
22
  export * from '../layout/index.js';
22
23
  export * from '../types/index.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/things-scene/index.ts"],"names":[],"mappings":"AAIA,OAAO,mBAAmB,CAAA;AAE1B,OAAO,QAAQ,MAAM,qBAAqB,CAAA;AAC1C,OAAO,UAAU,MAAM,uBAAuB,CAAA;AAC9C,OAAO,EAAE,MAAM,IAAI,OAAO,EAAE,KAAK,IAAI,MAAM,EAAE,MAAM,sBAAsB,CAAA;AAEzE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,aAAa,CAAA;AAC/C,YAAY,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAErD,MAAM,WAAW,KAAK;IACpB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CACnB;AAED,yBAAiB,KAAK,CAAC;IACd,MAAM,OAAO,iBAAW,CAAA;IACxB,MAAM,SAAS,mBAAa,CAAA;IAC5B,MAAM,MAAM,gBAAU,CAAA;IACtB,MAAM,KAAK,eAAS,CAAA;CAC5B;AAED,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,mBAAmB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,2BAA2B,CAAA;AAE/D,cAAc,aAAa,CAAA;AAE3B,cAAc,wBAAwB,CAAA;AACtC,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AAGjC,YAAY,EACV,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAC/E,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,aAAa,EAAE,cAAc,EAAE,OAAO,EACxE,SAAS,EAAE,YAAY,EAAE,cAAc,EAAE,KAAK,EAAE,UAAU,EAAE,KAAK,EAAE,KAAK,EACzE,MAAM,wBAAwB,CAAA;AAC/B,YAAY,EAAE,iBAAiB,EAAE,wBAAwB,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAA;AACpH,YAAY,EACV,kBAAkB,EAAE,WAAW,EAAE,YAAY,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,EACxF,WAAW,EAAE,aAAa,EAAE,WAAW,EAAE,cAAc,EAAE,YAAY,EACtE,MAAM,4BAA4B,CAAA;AACnC,YAAY,EAAE,OAAO,EAAE,MAAM,2CAA2C,CAAA;AACxE,YAAY,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AACrE,YAAY,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAE/D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAElE,cAAc,mBAAmB,CAAA;AAEjC,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,YAAY,CAAA;AAE7C,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAA;AACjD,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,cAAc,EAAE,MAAM,UAAU,CAAA;AACzD,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAA;AACnD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAA;AAEvD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAGhE,cAAc,oBAAoB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/things-scene/index.ts"],"names":[],"mappings":"AAIA,OAAO,mBAAmB,CAAA;AAE1B,OAAO,QAAQ,MAAM,qBAAqB,CAAA;AAC1C,OAAO,UAAU,MAAM,uBAAuB,CAAA;AAC9C,OAAO,EAAE,MAAM,IAAI,OAAO,EAAE,KAAK,IAAI,MAAM,EAAE,MAAM,sBAAsB,CAAA;AAEzE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,aAAa,CAAA;AAC/C,YAAY,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAErD,MAAM,WAAW,KAAK;IACpB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CACnB;AAED,yBAAiB,KAAK,CAAC;IACd,MAAM,OAAO,iBAAW,CAAA;IACxB,MAAM,SAAS,mBAAa,CAAA;IAC5B,MAAM,MAAM,gBAAU,CAAA;IACtB,MAAM,KAAK,eAAS,CAAA;CAC5B;AAED,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,mBAAmB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,2BAA2B,CAAA;AAE/D,cAAc,aAAa,CAAA;AAE3B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AAGjC,YAAY,EACV,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAC/E,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,aAAa,EAAE,cAAc,EAAE,OAAO,EACxE,SAAS,EAAE,YAAY,EAAE,cAAc,EAAE,KAAK,EAAE,UAAU,EAAE,KAAK,EAAE,KAAK,EACzE,MAAM,wBAAwB,CAAA;AAC/B,YAAY,EAAE,iBAAiB,EAAE,wBAAwB,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAA;AACpH,YAAY,EACV,kBAAkB,EAAE,WAAW,EAAE,YAAY,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,EACxF,WAAW,EAAE,aAAa,EAAE,WAAW,EAAE,cAAc,EAAE,YAAY,EACtE,MAAM,4BAA4B,CAAA;AACnC,YAAY,EAAE,OAAO,EAAE,MAAM,2CAA2C,CAAA;AACxE,YAAY,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AACrE,YAAY,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAE/D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAElE,cAAc,mBAAmB,CAAA;AAEjC,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,YAAY,CAAA;AAE7C,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAA;AACjD,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,cAAc,EAAE,MAAM,UAAU,CAAA;AACzD,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAA;AACnD,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAA;AAEvD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAGhE,cAAc,oBAAoB,CAAA"}
@@ -16,7 +16,7 @@ declare class Scene {
16
16
  add(models: any, boundsOrOffset?: any, onto?: any): void;
17
17
  duplicate(): void;
18
18
  remove(): void;
19
- animate(config: Parameters<typeof animate>[0]): import("../animation/interfaces.js").AnimationController;
19
+ animate(config: Parameters<typeof animate>[0]): import("./index.js").AnimationController;
20
20
  fullscreen(fit?: any): void;
21
21
  get target(): any;
22
22
  set target(target: any);
@@ -0,0 +1,11 @@
1
+ import { Scene } from 'three';
2
+ /**
3
+ * 공장 환경 — 높은 천장, 강한 상단 조명, 금속적 톤, 높은 대비.
4
+ * PMREMGenerator.fromScene()으로 cubemap을 생성하여
5
+ * scene.environment / GroundedSkybox에 사용한다.
6
+ */
7
+ export declare class FactoryEnvironment extends Scene {
8
+ constructor();
9
+ dispose(): void;
10
+ }
11
+ //# sourceMappingURL=factory-environment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"factory-environment.d.ts","sourceRoot":"","sources":["../../../src/threed/environments/factory-environment.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,KAAK,EACN,MAAM,OAAO,CAAA;AAEd;;;;GAIG;AACH,qBAAa,kBAAmB,SAAQ,KAAK;;IA+D3C,OAAO;CAYR"}
@@ -0,0 +1,11 @@
1
+ import { Scene } from 'three';
2
+ /**
3
+ * 가정 환경 — 아늑한 분위기, 따뜻한 조명, 낮은 천장, 넓은 창문.
4
+ * PMREMGenerator.fromScene()으로 cubemap을 생성하여
5
+ * scene.environment / scene.background에 사용한다.
6
+ */
7
+ export declare class HomeEnvironment extends Scene {
8
+ constructor();
9
+ dispose(): void;
10
+ }
11
+ //# sourceMappingURL=home-environment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"home-environment.d.ts","sourceRoot":"","sources":["../../../src/threed/environments/home-environment.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,KAAK,EACN,MAAM,OAAO,CAAA;AAEd;;;;GAIG;AACH,qBAAa,eAAgB,SAAQ,KAAK;;IA0DxC,OAAO;CAYR"}
@@ -0,0 +1,6 @@
1
+ export { StudioEnvironment } from './studio-environment.js';
2
+ export { WarehouseEnvironment } from './warehouse-environment.js';
3
+ export { FactoryEnvironment } from './factory-environment.js';
4
+ export { OfficeEnvironment } from './office-environment.js';
5
+ export { HomeEnvironment } from './home-environment.js';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/threed/environments/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3D,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAA;AACjE,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAA;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3D,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA"}
@@ -0,0 +1,11 @@
1
+ import { Scene } from 'three';
2
+ /**
3
+ * 사무실 환경 — 낮은 천장, 균일한 면광원, 따뜻한 색온도.
4
+ * PMREMGenerator.fromScene()으로 cubemap을 생성하여
5
+ * scene.environment / GroundedSkybox에 사용한다.
6
+ */
7
+ export declare class OfficeEnvironment extends Scene {
8
+ constructor();
9
+ dispose(): void;
10
+ }
11
+ //# sourceMappingURL=office-environment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"office-environment.d.ts","sourceRoot":"","sources":["../../../src/threed/environments/office-environment.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,KAAK,EACN,MAAM,OAAO,CAAA;AAEd;;;;GAIG;AACH,qBAAa,iBAAkB,SAAQ,KAAK;;IAuD1C,OAAO;CAYR"}
@@ -0,0 +1,12 @@
1
+ import { Scene } from 'three';
2
+ /**
3
+ * 스튜디오 환경 — 밝고 균일한 조명, 중성 배경.
4
+ * RoomEnvironment 대체용. 바닥 오브젝트 없이 벽/천장/조명만 구성.
5
+ * PMREMGenerator.fromScene()으로 cubemap을 생성하여
6
+ * scene.environment / scene.background에 사용한다.
7
+ */
8
+ export declare class StudioEnvironment extends Scene {
9
+ constructor();
10
+ dispose(): void;
11
+ }
12
+ //# sourceMappingURL=studio-environment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"studio-environment.d.ts","sourceRoot":"","sources":["../../../src/threed/environments/studio-environment.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,KAAK,EACN,MAAM,OAAO,CAAA;AAEd;;;;;GAKG;AACH,qBAAa,iBAAkB,SAAQ,KAAK;;IAoD1C,OAAO;CAYR"}
@@ -0,0 +1,11 @@
1
+ import { Scene } from 'three';
2
+ /**
3
+ * 창고 환경 — 높은 천장, 상단 집중 형광등, 차가운 색온도.
4
+ * PMREMGenerator.fromScene()으로 cubemap을 생성하여
5
+ * scene.environment / GroundedSkybox에 사용한다.
6
+ */
7
+ export declare class WarehouseEnvironment extends Scene {
8
+ constructor();
9
+ dispose(): void;
10
+ }
11
+ //# sourceMappingURL=warehouse-environment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"warehouse-environment.d.ts","sourceRoot":"","sources":["../../../src/threed/environments/warehouse-environment.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,KAAK,EACN,MAAM,OAAO,CAAA;AAEd;;;;GAIG;AACH,qBAAa,oBAAqB,SAAQ,KAAK;;IAqD7C,OAAO;CAYR"}
@@ -147,7 +147,7 @@ declare const Banner_base: {
147
147
  get textHidden(): boolean;
148
148
  set textHidden(v: boolean);
149
149
  get hasTextProperty(): boolean;
150
- animate(opts: import("../../animation/interfaces.js").AnimationConfig): any;
150
+ animate(opts: import("../../index.js").AnimationConfig): any;
151
151
  effect(context: import("../../index.js").SceneRenderContext, model: any): void;
152
152
  serialize(...others: any[]): string;
153
153
  trim(): void;
@@ -161,7 +161,7 @@ declare const Banner_base: {
161
161
  set tap(v: any);
162
162
  get mappings(): any[];
163
163
  get retention(): number;
164
- get animation(): import("../../animation/interfaces.js").AnimationController | undefined;
164
+ get animation(): import("../../index.js").AnimationController | undefined;
165
165
  get started(): boolean;
166
166
  set started(v: boolean);
167
167
  get controls(): import("../../index.js").Control[] | undefined;