@tivio/sdk-react 9.0.0 → 9.1.0-alpha.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +3 -0
- package/README.md.bak +3 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -1
- package/dist/sdk-react.d.ts +8 -0
- package/package.json +2 -2
package/README.md
CHANGED
@@ -6,6 +6,9 @@ settings in the administration of Tivio Studio while having the freedom to build
|
|
6
6
|
|
7
7
|
## Changelog
|
8
8
|
|
9
|
+
* 9.1.0-alpha.0
|
10
|
+
* minor: add downloadRemoteBundle function to be able to init Tivio without React
|
11
|
+
|
9
12
|
* 9.0.0
|
10
13
|
* patch: remove i18next and react-i18next from externals and dependencies
|
11
14
|
* patch: do not send react-spring to core-react-dom bundle, remove react-spring from dependencies
|
package/README.md.bak
CHANGED
@@ -6,6 +6,9 @@ settings in the administration of Tivio Studio while having the freedom to build
|
|
6
6
|
|
7
7
|
## Changelog
|
8
8
|
|
9
|
+
* 9.1.0-alpha.0
|
10
|
+
* minor: add downloadRemoteBundle function to be able to init Tivio without React
|
11
|
+
|
9
12
|
* 9.0.0
|
10
13
|
* patch: remove i18next and react-i18next from externals and dependencies
|
11
14
|
* patch: do not send react-spring to core-react-dom bundle, remove react-spring from dependencies
|
package/dist/index.d.ts
CHANGED
@@ -847,6 +847,14 @@ export declare type DocumentOptions = Partial<{
|
|
847
847
|
subscribeOnChanges: boolean;
|
848
848
|
}>;
|
849
849
|
|
850
|
+
/**
|
851
|
+
* Does the same as TivioProvider in useRemoteBundle - so it downloads bundle,
|
852
|
+
* calls init on it and returns bundle state.
|
853
|
+
*
|
854
|
+
* @public
|
855
|
+
*/
|
856
|
+
export declare const downloadRemoteBundle: (conf: SdkReactConfig) => Promise<RemoteBundleState>;
|
857
|
+
|
850
858
|
export declare interface Drm {
|
851
859
|
encryption: VideoSourceEncryption;
|
852
860
|
/**
|