@clickview/online 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.
Files changed (33) hide show
  1. package/dist/en.json +1 -1
  2. package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +38 -2
  3. package/dist/libs/common/src/backbone/utils/UrlHelper.d.ts +1 -0
  4. package/dist/online-app.css +5 -3
  5. package/dist/online-app.js +3 -3
  6. package/package.json +44 -44
  7. package/dist/libs/shared/src/apps/content-updates/interfaces/VideoClassificationMapping.d.ts +0 -5
  8. package/dist/libs/shared/src/apps/subjects/components/preferences/progress/PreferenceProgress.d.ts +0 -12
  9. package/dist/online-app.css.map +0 -1
  10. package/dist/online-app.js.map +0 -1
  11. package/dist/projects/online/src/apps/playlists/components/index.d.ts +0 -3
  12. package/dist/projects/online/src/apps/playlists/components/left-nav/LeftNavComponent.d.ts +0 -11
  13. package/dist/projects/online/src/apps/playlists/components/left-nav/LeftNavItem.d.ts +0 -0
  14. package/dist/projects/online/src/apps/playlists/components/left-nav/LeftNavItemComponent.d.ts +0 -8
  15. package/dist/projects/online/src/apps/playlists/components/left-nav/LevNavPlaylistOwnerIndicator.d.ts +0 -8
  16. package/dist/projects/online/src/apps/playlists/components/left-nav/index.d.ts +0 -1
  17. package/dist/projects/online/src/apps/playlists/components/left-nav/partial-loading/PartialLeftNavComponent.d.ts +0 -2
  18. package/dist/projects/online/src/apps/playlists/components/left-nav/partial-loading/index.d.ts +0 -1
  19. package/dist/projects/online/src/apps/playlists/components/new-playlist-button/NewPlaylistButtonComponent.d.ts +0 -8
  20. package/dist/projects/online/src/apps/playlists/components/new-playlist-button/index.d.ts +0 -1
  21. package/dist/projects/online/src/apps/playlists/components/playlist-actions/PlaylistActionsComponent.d.ts +0 -8
  22. package/dist/projects/online/src/apps/playlists/components/playlist-actions/index.d.ts +0 -1
  23. package/dist/projects/online/src/apps/playlists/components/playlist-list/PartialPlaylistList.d.ts +0 -2
  24. package/dist/projects/online/src/apps/playlists/components/playlist-list/PartialPlaylistListHeader.d.ts +0 -2
  25. package/dist/projects/online/src/apps/playlists/components/playlist-list/PlaylistItem.d.ts +0 -7
  26. package/dist/projects/online/src/apps/playlists/components/playlist-list/PlaylistList.d.ts +0 -7
  27. package/dist/projects/online/src/apps/playlists/components/playlist-list/PlaylistListHeader.d.ts +0 -11
  28. package/dist/projects/online/src/apps/playlists/components/playlist-list/index.d.ts +0 -4
  29. package/dist/projects/online/src/apps/playlists/layouts/OnlinePlaylistsLayoutView.d.ts +0 -10
  30. package/dist/projects/online/src/shared/components/dropdown/DropdownComponent.d.ts +0 -8
  31. package/dist/projects/online/src/shared/components/dropdown/DropdownItemComponent.d.ts +0 -10
  32. package/dist/projects/online/src/shared/components/dropdown/index.d.ts +0 -2
  33. package/dist/projects/online/src/shared/identifiers/PlaylistCollectionIdentifier.d.ts +0 -5
@@ -1,3 +0,0 @@
1
- export * from './playlist-list';
2
- export * from './new-playlist-button';
3
- export * from './video-not-found';
@@ -1,11 +0,0 @@
1
- import * as React from 'react';
2
- import { Playlist } from "../../../../../../../libs/shared/src/interfaces";
3
- interface LeftNavComponentProps {
4
- playlists: Playlist[];
5
- selectedPlaylistId?: string;
6
- hasMorePlaylists: boolean;
7
- fetchMorePlaylists: () => void;
8
- isFetching: boolean;
9
- }
10
- declare function LeftNavComponentWrapper(props: LeftNavComponentProps): React.ReactElement;
11
- export { LeftNavComponentWrapper as LeftNavComponent };
@@ -1,8 +0,0 @@
1
- import * as React from 'react';
2
- import { Playlist } from "../../../../../../../libs/shared/src/interfaces";
3
- interface LeftNavItemComponentProps {
4
- playlist: Playlist;
5
- selected?: boolean;
6
- }
7
- export declare function LeftNavItemComponent(props: LeftNavItemComponentProps): React.ReactElement;
8
- export {};
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- import { Playlist, CurrentUser } from "../../../../../../../libs/shared/src/interfaces";
3
- interface LeftNavPlaylistOwnerIndicatorProps {
4
- playlist: Playlist;
5
- currentUser: CurrentUser;
6
- }
7
- export declare function LeftNavPlaylistOwnerIndicator(props: LeftNavPlaylistOwnerIndicatorProps): JSX.Element;
8
- export {};
@@ -1 +0,0 @@
1
- export * from './LeftNavComponent';
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export declare function PartialLeftNavComponent(): React.ReactElement;
@@ -1 +0,0 @@
1
- export * from './PartialLeftNavComponent';
@@ -1,8 +0,0 @@
1
- import * as React from 'react';
2
- import { PropsWithAnalyticsOptions } from "../../../../../../../libs/shared/src/interfaces";
3
- interface NewPlaylistButtonComponentProps {
4
- className?: string;
5
- }
6
- declare type PropTypes = PropsWithAnalyticsOptions<NewPlaylistButtonComponentProps>;
7
- export declare function NewPlaylistButtonComponent({ className, analyticsOptions }: PropTypes): React.ReactElement;
8
- export {};
@@ -1 +0,0 @@
1
- export * from './NewPlaylistButtonComponent';
@@ -1,8 +0,0 @@
1
- import * as React from 'react';
2
- import { Playlist, PropsWithAnalyticsOptions } from "../../../../../../../libs/shared/src/interfaces";
3
- interface PlaylistActionsComponentProps {
4
- playlist: Playlist;
5
- }
6
- declare type PropTypes = PropsWithAnalyticsOptions<PlaylistActionsComponentProps>;
7
- export declare function PlaylistActionsComponent(props: PropTypes): React.ReactElement;
8
- export {};
@@ -1 +0,0 @@
1
- export * from './PlaylistActionsComponent';
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export declare function PartialPlaylistList(): React.ReactElement;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function PartialPlaylistListHeader(): JSX.Element;
@@ -1,7 +0,0 @@
1
- import * as React from 'react';
2
- import { Playlist } from "../../../../../../../libs/shared/src/interfaces";
3
- interface PlaylistItemProps {
4
- playlist: Playlist;
5
- }
6
- export declare function PlaylistItem(props: PlaylistItemProps): React.ReactElement;
7
- export {};
@@ -1,7 +0,0 @@
1
- import * as React from 'react';
2
- import { Playlist } from "../../../../../../../libs/shared/src/interfaces";
3
- interface PlaylistListProps {
4
- playlists: Playlist[];
5
- }
6
- export declare function PlaylistList(props: PlaylistListProps): React.ReactElement;
7
- export {};
@@ -1,11 +0,0 @@
1
- import * as React from 'react';
2
- import { Core } from "../../../../../../../libs/common/src/backbone";
3
- import { CurrentUser } from "../../../../../../../libs/shared/src/interfaces";
4
- import { PlaylistSortType } from "../../../../../../../libs/shared/src/apps/playlists/enums/PlaylistSortType";
5
- export interface PlaylistListHeaderProps {
6
- user: CurrentUser;
7
- imageCdnUrl: string;
8
- sortType: PlaylistSortType;
9
- getSortAppLink: (sort: PlaylistSortType) => Core.AppLink;
10
- }
11
- export declare function PlaylistListHeader({ user }: PlaylistListHeaderProps): React.ReactElement;
@@ -1,4 +0,0 @@
1
- export * from './PartialPlaylistList';
2
- export * from './PartialPlaylistListHeader';
3
- export * from './PlaylistList';
4
- export * from './PlaylistListHeader';
@@ -1,10 +0,0 @@
1
- import * as React from 'react';
2
- import { OnlineLayoutView } from "../../../shared/layouts";
3
- export declare class OnlinePlaylistsLayoutView extends OnlineLayoutView {
4
- private navHelper;
5
- initialize(): void;
6
- hideLeftNav(): void;
7
- showLeftNav(): void;
8
- private updateResponsiveHideLeftNav;
9
- showChildView(region: string, component: React.ReactElement): void;
10
- }
@@ -1,8 +0,0 @@
1
- import * as React from 'react';
2
- import { DropdownItemComponentProps } from './DropdownItemComponent';
3
- interface DropdownComponentProps {
4
- itemOptions: DropdownItemComponentProps[];
5
- alignRight?: true;
6
- }
7
- export declare function DropdownComponent(props: DropdownComponentProps): React.ReactElement;
8
- export {};
@@ -1,10 +0,0 @@
1
- import * as React from 'react';
2
- import { Core } from "../../../../../../libs/common/src/backbone";
3
- import { PropsWithAnalyticsOptions } from "../../../../../../libs/shared/src/interfaces";
4
- export interface BaseDropdownItemComponentProps {
5
- title: string;
6
- appLink: Core.AppLink;
7
- className?: string;
8
- }
9
- export declare type DropdownItemComponentProps = PropsWithAnalyticsOptions<BaseDropdownItemComponentProps>;
10
- export declare function DropdownItemComponent(props: DropdownItemComponentProps): React.ReactElement;
@@ -1,2 +0,0 @@
1
- export * from './DropdownComponent';
2
- export * from './DropdownItemComponent';
@@ -1,5 +0,0 @@
1
- import { BaseCollectionIdentifier } from "../../../../../libs/common/src/backbone/interfaces";
2
- import { PlaylistSortType } from "../../../../../libs/shared/src/apps/playlists/enums/PlaylistSortType";
3
- export declare class PlaylistCollectionIdentifier extends BaseCollectionIdentifier<PlaylistSortType> {
4
- constructor(sort?: PlaylistSortType, cursor?: string);
5
- }