@inweb/viewer-core 26.6.6 → 26.7.0
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.
|
@@ -431,6 +431,17 @@ export interface SelectEvent {
|
|
|
431
431
|
*/
|
|
432
432
|
handles: string[];
|
|
433
433
|
}
|
|
434
|
+
/**
|
|
435
|
+
* Event that fires after selected objects becomes visible.
|
|
436
|
+
*
|
|
437
|
+
* @event
|
|
438
|
+
*/
|
|
439
|
+
export interface ShowEvent {
|
|
440
|
+
/**
|
|
441
|
+
* Event type.
|
|
442
|
+
*/
|
|
443
|
+
type: "show";
|
|
444
|
+
}
|
|
434
445
|
/**
|
|
435
446
|
* Event that fires after all objects becomes visible.
|
|
436
447
|
*
|
|
@@ -706,6 +717,10 @@ export interface ViewerEventMap {
|
|
|
706
717
|
* Event that fires when the selection changes.
|
|
707
718
|
*/
|
|
708
719
|
select: SelectEvent;
|
|
720
|
+
/**
|
|
721
|
+
* Event that fires after selected objects becomes visible.
|
|
722
|
+
*/
|
|
723
|
+
show: ShowEvent;
|
|
709
724
|
/**
|
|
710
725
|
* Event that fires after all objects becomes visible.
|
|
711
726
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inweb/viewer-core",
|
|
3
|
-
"version": "26.
|
|
3
|
+
"version": "26.7.0",
|
|
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": "~26.
|
|
30
|
-
"@inweb/eventemitter2": "~26.
|
|
29
|
+
"@inweb/client": "~26.7.0",
|
|
30
|
+
"@inweb/eventemitter2": "~26.7.0"
|
|
31
31
|
}
|
|
32
32
|
}
|
|
@@ -490,6 +490,18 @@ export interface SelectEvent {
|
|
|
490
490
|
handles: string[];
|
|
491
491
|
}
|
|
492
492
|
|
|
493
|
+
/**
|
|
494
|
+
* Event that fires after selected objects becomes visible.
|
|
495
|
+
*
|
|
496
|
+
* @event
|
|
497
|
+
*/
|
|
498
|
+
export interface ShowEvent {
|
|
499
|
+
/**
|
|
500
|
+
* Event type.
|
|
501
|
+
*/
|
|
502
|
+
type: "show";
|
|
503
|
+
}
|
|
504
|
+
|
|
493
505
|
/**
|
|
494
506
|
* Event that fires after all objects becomes visible.
|
|
495
507
|
*
|
|
@@ -814,6 +826,11 @@ export interface ViewerEventMap {
|
|
|
814
826
|
*/
|
|
815
827
|
select: SelectEvent;
|
|
816
828
|
|
|
829
|
+
/**
|
|
830
|
+
* Event that fires after selected objects becomes visible.
|
|
831
|
+
*/
|
|
832
|
+
show: ShowEvent;
|
|
833
|
+
|
|
817
834
|
/**
|
|
818
835
|
* Event that fires after all objects becomes visible.
|
|
819
836
|
*/
|