@clickview/lite 0.0.6 → 0.0.7-rc.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/dist/apps/default/index.d.ts +2 -0
- package/dist/apps/index.d.ts +1 -0
- package/dist/apps/notifications/interfaces/Notification.d.ts +3 -0
- package/dist/apps/notifications/interfaces/NotificationCollection.d.ts +4 -0
- package/dist/apps/notifications/interfaces/index.d.ts +2 -0
- package/dist/apps/notifications/services/FlightNotificationDataService.d.ts +16 -0
- package/dist/apps/notifications/services/index.d.ts +1 -0
- package/dist/apps/playlists/components/index.d.ts +1 -0
- package/dist/apps/playlists/components/playlist-list/LitePlaylistItem.d.ts +9 -0
- package/dist/apps/playlists/components/playlist-list/LitePlaylistList.d.ts +9 -0
- package/dist/apps/playlists/components/playlist-list/index.d.ts +1 -0
- package/dist/apps/playlists/flight-requests/PlaylistRequests.d.ts +4 -0
- package/dist/apps/playlists/flight-requests/index.d.ts +1 -0
- package/dist/apps/playlists/index.d.ts +1 -0
- package/dist/apps/playlists/views/index.d.ts +1 -0
- package/dist/apps/playlists/views/user-playlists/UserPlaylistsView.d.ts +2 -0
- package/dist/apps/playlists/views/user-playlists/index.d.ts +1 -0
- package/dist/bundle.js.map +1 -1
- package/dist/lite-app.css.map +1 -1
- package/dist/lite-app.js +112 -0
- package/dist/lite-app.js.map +1 -0
- package/dist/shared/components/icon-button/IconButton.d.ts +9 -0
- package/dist/shared/errors/not-found/NotFoundError.d.ts +5 -0
- package/dist/shared/errors/primitives/AlertError.d.ts +0 -0
- package/dist/shared/errors/primitives/DialogError.d.ts +0 -0
- package/dist/shared/errors/primitives/ErrorPageError.d.ts +0 -0
- package/dist/shared/errors/primitives/index.d.ts +3 -0
- package/dist/shared/flight-requests/ConfigRequests.d.ts +4 -0
- package/dist/shared/flight-requests/PlaylistRequests.d.ts +4 -0
- package/dist/shared/flight-requests/UserRequests.d.ts +5 -0
- package/dist/shared/index.d.ts +5 -0
- package/dist/shared/utils/InfiniteScrollHelper.d.ts +11 -0
- package/dist/shared/utils/LiteAppLinkHelper.d.ts +3 -0
- package/dist/shared/views/backbone-wrapper/BackboneWrapperView.d.ts +8 -0
- package/dist/shared/views/favorite-videos/FavoriteVideos.d.ts +6 -0
- package/dist/shared/views/favorite-videos/index.d.ts +1 -0
- package/dist/shared/views/my-uploads/components/MyUploadsBannerActions.d.ts +5 -0
- package/dist/shared/views/play/components/BackButton.d.ts +2 -0
- package/dist/shared/views/play/components/Badges.d.ts +7 -0
- package/dist/shared/views/play/components/Buttons.d.ts +2 -0
- package/dist/shared/views/play/components/VideoTitle.d.ts +7 -0
- package/dist/shared/views/play/components/index.d.ts +3 -0
- package/package.json +4 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './default';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Store } from 'redux';
|
|
2
|
+
import { Cursors } from '@clickview/common';
|
|
3
|
+
import { BaseNotificationDataService, NotificationCollectionRequest, Notification as BackboneNotification, NotificationCollection as BackboneNotificationCollection } from '@clickview/shared';
|
|
4
|
+
interface FlightNotificationDataServiceOptions {
|
|
5
|
+
store: Store;
|
|
6
|
+
}
|
|
7
|
+
export declare class FlightNotificationDataService implements BaseNotificationDataService {
|
|
8
|
+
private store;
|
|
9
|
+
constructor(options: FlightNotificationDataServiceOptions);
|
|
10
|
+
get name(): string;
|
|
11
|
+
getNotifications(userId: string, params: NotificationCollectionRequest, collectionIdentifier: string, callback?: (data?: BackboneNotificationCollection) => BackboneNotificationCollection): BackboneNotificationCollection;
|
|
12
|
+
markRead(id: string, callback?: (data?: BackboneNotification) => any): void;
|
|
13
|
+
markSeen(callback?: () => any): void;
|
|
14
|
+
getNotificationsCursors(collectionIdentifier: string): Cursors;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './FlightNotificationDataService';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './playlist-list';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
import { Playlist } from '@clickview/shared';
|
|
4
|
+
interface PlaylistItemProps {
|
|
5
|
+
playlist: Playlist;
|
|
6
|
+
appLink: Core.AppLink;
|
|
7
|
+
}
|
|
8
|
+
export declare function PlaylistItem(props: PlaylistItemProps): JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Core } from '@clickview/common';
|
|
3
|
+
import { Playlist } from '@clickview/shared';
|
|
4
|
+
interface PlaylistListProps {
|
|
5
|
+
playlists: Playlist[];
|
|
6
|
+
getPlaylistAppLink: (playlist: Playlist) => Core.AppLink;
|
|
7
|
+
}
|
|
8
|
+
export declare function PlaylistList(props: PlaylistListProps): JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './LitePlaylistList';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './PlaylistRequests';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './LitePlaylistsApplication';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './user-playlists';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './UserPlaylistsView';
|