@configura/babylon-view 2.0.0-alpha.3 → 2.0.0-alpha.4

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.
@@ -18,7 +18,7 @@ export declare abstract class CfgIOCameraConfConnector<S> {
18
18
  private readonly _cameraControl;
19
19
  private _stopListenToMessage;
20
20
  private _stopListenToProdConf;
21
- constructor(_ioManager: CfgIOManager<S>, initialCameraConf: CfgOrbitalCameraControlProps, _cameraControl: Observable<CfgOrbitalCameraControlProps>);
21
+ constructor(_ioManager: CfgIOManager<S>, initial: CfgOrbitalCameraControlProps, _cameraControl: Observable<CfgOrbitalCameraControlProps>);
22
22
  destroy: () => void;
23
23
  private _delayId;
24
24
  private _send;
@@ -16,7 +16,7 @@ export const STAGE_CAMERA_MESSAGE_VERSION = "1.0";
16
16
  * Base class for connecting the camera configuration to an IO channel
17
17
  */
18
18
  export class CfgIOCameraConfConnector {
19
- constructor(_ioManager, initialCameraConf, _cameraControl) {
19
+ constructor(_ioManager, initial, _cameraControl) {
20
20
  this._ioManager = _ioManager;
21
21
  this._cameraControl = _cameraControl;
22
22
  this._stopListenToMessage = undefined;
@@ -27,7 +27,7 @@ export class CfgIOCameraConfConnector {
27
27
  (_b = this._stopListenToProdConf) === null || _b === void 0 ? void 0 : _b.call(this);
28
28
  };
29
29
  this._send = (data) => this._ioManager.send(STAGE_CAMERA_CONF_MESSAGE_KEY, data);
30
- this._send(this.makeSendData(initialCameraConf, true));
30
+ this._send(this.makeSendData(initial, true));
31
31
  this._stopListenToMessage = this.listenForMessage((message) => __awaiter(this, void 0, void 0, function* () {
32
32
  if (this._delayId !== undefined) {
33
33
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@configura/babylon-view",
3
- "version": "2.0.0-alpha.3",
3
+ "version": "2.0.0-alpha.4",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -16,16 +16,16 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@babylonjs/core": "4.2.0",
19
- "@configura/web-core": "2.0.0-alpha.3",
20
- "@configura/web-utilities": "2.0.0-alpha.3"
19
+ "@configura/web-core": "2.0.0-alpha.4",
20
+ "@configura/web-utilities": "2.0.0-alpha.4"
21
21
  },
22
22
  "devDependencies": {
23
- "@configura/web-api": "2.0.0-alpha.3",
23
+ "@configura/web-api": "2.0.0-alpha.4",
24
24
  "del-cli": "^3.0.0",
25
25
  "typescript": "4.2"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "293660b8d8663638e531c2c44274ffffb1465e04"
30
+ "gitHead": "d4c959d717ae06aafc5678e43ea8a32cace29eeb"
31
31
  }