shop-components 0.1.13 → 0.1.14

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.
@@ -1,11 +1,14 @@
1
1
  import { Object3D, Vector3 } from 'three';
2
2
  export declare class SizeLine extends Object3D {
3
3
  private _startWith?;
4
+ private _showText;
4
5
  private _line;
5
6
  private _text;
7
+ private _textWrapper;
6
8
  private _tw;
7
- constructor(_startWith?: string | undefined);
9
+ constructor(_startWith?: string | undefined, _showText?: boolean);
8
10
  reset(): void;
9
11
  update(start: Vector3, end: Vector3): void;
12
+ updateDirection(pos: Vector3): void;
10
13
  updateSize(pos: Vector3): void;
11
14
  }
@@ -65,6 +65,7 @@ export declare enum SlotState {
65
65
  export type Scene3DEvents = 'slot-select';
66
66
  export interface SceneProps {
67
67
  useSound: boolean;
68
+ fov?: number;
68
69
  }
69
70
  export declare class Scene3D {
70
71
  props: SceneProps;