@streamlayer/web-os 0.3.8 → 0.4.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.
- package/lib/cjs/gamification-feature.js +1 -1
- package/lib/cjs/gamification-feature2.js +1 -1
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/index2.js +28 -76
- package/lib/classic/cjs/classic.js +1 -1
- package/lib/classic/cjs/classic2.js +2 -20
- package/lib/classic/cjs/gamification-feature.js +1 -1
- package/lib/classic/cjs/gamification-feature2.js +1 -1
- package/lib/classic/cjs/gamification-feature3.js +1 -1
- package/lib/classic/cjs/index.js +1 -1
- package/lib/classic/cjs/index2.js +2 -21
- package/lib/classic/cjs/index3.js +1 -19
- package/lib/classic/classic.d.ts +1 -1
- package/lib/classic/es/classic.js +4 -3
- package/lib/classic/es/classic2.js +9505 -18083
- package/lib/classic/es/gamification-feature.js +2 -2
- package/lib/classic/es/gamification-feature2.js +2 -2
- package/lib/classic/es/gamification-feature3.js +10 -9
- package/lib/classic/es/index.js +7 -4
- package/lib/classic/es/index2.js +8584 -17089
- package/lib/classic/es/index3.js +988 -6374
- package/lib/classic/index.d.ts +9 -3
- package/lib/classic/style.css +1 -1
- package/lib/classic.d.ts +1 -1
- package/lib/es/gamification-feature.js +1 -1
- package/lib/es/gamification-feature2.js +27 -26
- package/lib/es/index.js +7 -4
- package/lib/es/index2.js +14000 -27934
- package/lib/index.d.ts +9 -3
- package/lib/style.css +1 -1
- package/package.json +19 -17
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StreamLayerSDKTvOptions } from '@streamlayer/react-ui/webos';
|
|
1
|
+
import { StreamLayerSDKTvOptions, PauseAdProps } from '@streamlayer/react-ui/webos';
|
|
2
2
|
import { StreamLayerProvider as DefaultStreamLayerProvider, VideoPlayerCallback } from '@streamlayer/react';
|
|
3
3
|
import '@streamlayer/sdk-web-api';
|
|
4
4
|
import '@streamlayer/sdk-web-core';
|
|
@@ -12,8 +12,8 @@ import '@streamlayer/feature-gamification';
|
|
|
12
12
|
import '@streamlayer/sdk-web-anonymous-auth';
|
|
13
13
|
import '@streamlayer/react';
|
|
14
14
|
import '@streamlayer/react-ui/style.css';
|
|
15
|
-
export { useStreamLayer, useStreamLayerUI, type VideoPlayerCallback } from '@streamlayer/react';
|
|
16
|
-
type StreamLayerProviderProps = Omit<Parameters<typeof DefaultStreamLayerProvider>[0], 'themeMode' | 'withAd' | 'withAdNotification' | 'autoEnable' | 'plugins' | 'webOS' | 'friendsTab' | 'hideFriends' | 'onDeepLinkHandled' | '
|
|
15
|
+
export { useStreamLayer, useStreamLayerUI, type VideoPlayerCallback, type VideoPlayerData } from '@streamlayer/react';
|
|
16
|
+
type StreamLayerProviderProps = Omit<Parameters<typeof DefaultStreamLayerProvider>[0], 'themeMode' | 'withAd' | 'withAdNotification' | 'autoEnable' | 'plugins' | 'webOS' | 'friendsTab' | 'hideFriends' | 'onDeepLinkHandled' | 'skipOnboarding'>;
|
|
17
17
|
export declare const StreamLayerProvider: React.FC<StreamLayerProviderProps>;
|
|
18
18
|
export type StreamLayerSDKTvProps = {
|
|
19
19
|
persistent?: boolean;
|
|
@@ -30,4 +30,10 @@ export type StreamLayerSDKTvProps = {
|
|
|
30
30
|
}) => void;
|
|
31
31
|
options?: StreamLayerSDKTvOptions;
|
|
32
32
|
};
|
|
33
|
+
export declare const StreamLayerSDKTvContent: React.FC<{
|
|
34
|
+
persistent?: boolean;
|
|
35
|
+
notification?: boolean;
|
|
36
|
+
banner?: boolean;
|
|
37
|
+
}>;
|
|
38
|
+
export declare const StreamLayerSDKTvPauseAd: React.FC<PauseAdProps>;
|
|
33
39
|
export declare const StreamLayerSDKTv: React.FC<StreamLayerSDKTvProps>;
|