@xeokit/xeokit-sdk 2.3.0-beta-18 → 2.3.0-beta-21

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xeokit/xeokit-sdk",
3
- "version": "2.3.0-beta-18",
3
+ "version": "2.3.0-beta-21",
4
4
  "description": "Web Programming Toolkit for 3D/2D BIM and AEC Graphics",
5
5
  "module": "/dist/xeokit-sdk.es.js",
6
6
  "main": "/dist/xeokit-sdk.cjs.js",
@@ -31,13 +31,13 @@ export declare class AngleMeasurement extends Component {
31
31
  /**
32
32
  * Sets whether this AngleMeasurement is visible or not.
33
33
  *
34
- * @type Boolean
34
+ * @type {Boolean}
35
35
  */
36
36
  set visible(arg: boolean);
37
37
  /**
38
38
  * Gets whether this AngleMeasurement is visible or not.
39
39
  *
40
- * @type Boolean
40
+ * @type {Boolean}
41
41
  */
42
42
  get visible(): boolean;
43
43
  /**
@@ -16,7 +16,7 @@ export declare class AngleMeasurementsControl extends Component {
16
16
 
17
17
  /** Gets if this AngleMeasurementsControl is currently active, where it is responding to input.
18
18
  *
19
- * @returns {boolean}
19
+ * @returns {Boolean}
20
20
  */
21
21
  get active(): boolean;
22
22
 
@@ -33,14 +33,14 @@ export declare class DistanceMeasurement extends Component {
33
33
  /**
34
34
  * Sets whether this DistanceMeasurement is visible or not.
35
35
  *
36
- * @type Boolean
36
+ * @type {Boolean}
37
37
  */
38
38
  set visible(arg: boolean);
39
39
 
40
40
  /**
41
41
  * Gets whether this DistanceMeasurement is visible or not.
42
42
  *
43
- * @type Boolean
43
+ * @type {Boolean}
44
44
  */
45
45
  get visible(): boolean;
46
46
 
@@ -14,7 +14,7 @@ export declare class DistanceMeasurementsControl extends Component {
14
14
 
15
15
  /** Gets if this DistanceMeasurementsControl is currently active, where it is responding to input.
16
16
  *
17
- * @returns {boolean}
17
+ * @returns {Boolean}
18
18
  */
19
19
  get active(): boolean;
20
20
 
@@ -14,7 +14,7 @@ export declare abstract class Configs {
14
14
  /**
15
15
  * Gets whether double precision mode is enabled for all Viewers.
16
16
  *
17
- * @returns {boolean}
17
+ * @returns {Boolean}
18
18
  */
19
19
  get doublePrecisionEnabled(): boolean;
20
20
  }
@@ -194,19 +194,19 @@ export declare class Camera extends Component {
194
194
 
195
195
  /**
196
196
  * Gets if the World-space X-axis is "up".
197
- * @returns {boolean}
197
+ * @returns {Boolean}
198
198
  */
199
199
  get xUp(): boolean;
200
200
 
201
201
  /**
202
202
  * Gets if the World-space Y-axis is "up".
203
- * @returns {boolean}
203
+ * @returns {Boolean}
204
204
  */
205
205
  get yUp(): boolean;
206
206
 
207
207
  /**
208
208
  * Gets if the World-space Z-axis is "up".
209
- * @returns {boolean}
209
+ * @returns {Boolean}
210
210
  */
211
211
  get zUp(): boolean;
212
212