@micrio/client 5.3.3 → 5.3.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.
- package/micrio.min.d.ts +6 -4
- package/micrio.min.js +2 -2
- package/package.json +1 -1
package/micrio.min.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ declare module '@micrio/client' {
|
|
|
4
4
|
* Defines the current version of the Micrio library.
|
|
5
5
|
* This constant is used internally and exposed statically via `HTMLMicrioElement.VERSION`.
|
|
6
6
|
*/
|
|
7
|
-
export const VERSION = "5.3.
|
|
7
|
+
export const VERSION = "5.3.4";
|
|
8
8
|
/**
|
|
9
9
|
* Loads an image texture asynchronously. Adds the request to the queue
|
|
10
10
|
* and returns a Promise that resolves with the TextureBitmap or rejects on error.
|
|
@@ -2115,9 +2115,9 @@ declare module '@micrio/client' {
|
|
|
2115
2115
|
/** A tour has been successfully stopped */
|
|
2116
2116
|
'tour-stop': ImageData.Tour;
|
|
2117
2117
|
/** A tour's UI interface has automatically minimized */
|
|
2118
|
-
'tour-minimize':
|
|
2118
|
+
'tour-minimize': boolean;
|
|
2119
2119
|
/** Fires for each marker step in a marker tour */
|
|
2120
|
-
'tour-step': ImageData.MarkerTour;
|
|
2120
|
+
'tour-step': ImageData.MarkerTour | ImageData.VideoTour;
|
|
2121
2121
|
/** A multi-image tour is played/resumed */
|
|
2122
2122
|
'serialtour-play': ImageData.MarkerTour;
|
|
2123
2123
|
/** A multi-image tour is paused */
|
|
@@ -2131,7 +2131,7 @@ declare module '@micrio/client' {
|
|
|
2131
2131
|
/** A video tour is paused */
|
|
2132
2132
|
'videotour-pause': void;
|
|
2133
2133
|
/** A video tour has ended */
|
|
2134
|
-
'tour-ended': ImageData.VideoTour;
|
|
2134
|
+
'tour-ended': ImageData.MarkerTour | ImageData.VideoTour;
|
|
2135
2135
|
/** When a video tour has custom events, they will be fired like this */
|
|
2136
2136
|
'tour-event': ImageData.Event;
|
|
2137
2137
|
/** The audio controller has been successfully initialized and can play audio */
|
|
@@ -2142,6 +2142,8 @@ declare module '@micrio/client' {
|
|
|
2142
2142
|
'audio-unmute': void;
|
|
2143
2143
|
/** Fires when there is autoplay audio or video which was disallowed by the browser */
|
|
2144
2144
|
'autoplay-blocked': void;
|
|
2145
|
+
/** Media was blocked from autoplaying */
|
|
2146
|
+
'media-blocked': void;
|
|
2145
2147
|
/** Media has started playing */
|
|
2146
2148
|
'media-play': void;
|
|
2147
2149
|
/** Media has stopped playing */
|