@tivio/sdk-react 2.4.2 → 2.4.3-alpha
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/ContextProvider.d.ts +6 -1
- package/dist/components/context/index.d.ts +0 -3
- package/dist/components/hooks/useOrganizationSubscriptions.d.ts +1 -2
- package/dist/components/hooks/useUser.d.ts +1 -2
- package/dist/index.js +13004 -1
- package/dist/types/bundle.types.d.ts +59 -2
- package/package.json +2 -3
- package/dist/components/context/OrganizationSubscriptionsContext.d.ts +0 -9
- package/dist/components/context/PurchasesWithVideosContext.d.ts +0 -9
- package/dist/components/context/UserContext.d.ts +0 -9
@@ -1,3 +1,8 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
|
2
|
+
import { RemoteBundleState } from '../services/bundleLoader';
|
3
|
+
interface Props {
|
4
|
+
bundleState: RemoteBundleState;
|
5
|
+
children: any;
|
6
|
+
}
|
7
|
+
declare const ContextProvider: React.FC<Props>;
|
3
8
|
export { ContextProvider, };
|
@@ -1,8 +1,5 @@
|
|
1
1
|
export * from './ChannelsContext';
|
2
|
-
export * from './OrganizationSubscriptionsContext';
|
3
|
-
export * from './PurchasesWithVideosContext';
|
4
2
|
export * from './ScreensContext';
|
5
3
|
export * from './SectionsContext';
|
6
|
-
export * from './UserContext';
|
7
4
|
export * from './VideosContext';
|
8
5
|
export * from './RowItemsContext';
|