@inweb/viewer-core 27.1.8 → 27.1.9

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.
@@ -219,11 +219,11 @@ export interface ICloud {
219
219
  */
220
220
  position2: IPoint;
221
221
  /**
222
- * Deprecated. Use {@link position2} instead. Width of the cloud.
222
+ * Screen width of the cloud. Ignored if {@link position2} is defined.
223
223
  */
224
224
  width?: number;
225
225
  /**
226
- * Deprecated. Use {@link position2} instead. Height of the cloud.
226
+ * Screen height of the cloud. Ignored if {@link position2} is defined.
227
227
  */
228
228
  height?: number;
229
229
  /**
@@ -257,8 +257,8 @@ export interface IEllipse {
257
257
  */
258
258
  position3: IPoint;
259
259
  /**
260
- * Deprecated. Use {@link position2} and {@link position3} instead. Ellipse radius along the X and Y
261
- * axes.
260
+ * Screen radius of the ellipse along the X and Y axes. Ignored if {@link position2} and
261
+ * {@link position3} is defined.
262
262
  */
263
263
  radius: {
264
264
  x: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inweb/viewer-core",
3
- "version": "27.1.8",
3
+ "version": "27.1.9",
4
4
  "description": "3D CAD and BIM data Viewer core",
5
5
  "homepage": "https://cloud.opendesign.com/docs/index.html",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -26,7 +26,7 @@
26
26
  "test": "karma start karma.conf.js"
27
27
  },
28
28
  "dependencies": {
29
- "@inweb/client": "~27.1.8",
30
- "@inweb/eventemitter2": "~27.1.8"
29
+ "@inweb/client": "~27.1.9",
30
+ "@inweb/eventemitter2": "~27.1.9"
31
31
  }
32
32
  }
@@ -284,12 +284,12 @@ export interface ICloud {
284
284
  position2: IPoint;
285
285
 
286
286
  /**
287
- * Deprecated. Use {@link position2} instead. Width of the cloud.
287
+ * Screen width of the cloud. Ignored if {@link position2} is defined.
288
288
  */
289
289
  width?: number;
290
290
 
291
291
  /**
292
- * Deprecated. Use {@link position2} instead. Height of the cloud.
292
+ * Screen height of the cloud. Ignored if {@link position2} is defined.
293
293
  */
294
294
  height?: number;
295
295
 
@@ -330,8 +330,8 @@ export interface IEllipse {
330
330
  position3: IPoint;
331
331
 
332
332
  /**
333
- * Deprecated. Use {@link position2} and {@link position3} instead. Ellipse radius along the X and Y
334
- * axes.
333
+ * Screen radius of the ellipse along the X and Y axes. Ignored if {@link position2} and
334
+ * {@link position3} is defined.
335
335
  */
336
336
  radius: { x: number; y: number };
337
337