@clickview/online 0.0.4-rc.1 → 0.0.5-dev.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/en.json +1 -1
- package/dist/libs/analytics/src/clients/CollectionApiClient.d.ts +1 -0
- package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +5 -6
- package/dist/libs/analytics/src/interfaces/User.d.ts +11 -0
- package/dist/libs/analytics/src/models/CollectionEvent.d.ts +6 -0
- package/dist/libs/analytics/src/utils/CollectionApiClientHelper.d.ts +1 -1
- package/dist/libs/analytics/src/utils/UrlHelper.d.ts +3 -0
- package/dist/libs/common/src/react/constants/ViewModelActions.d.ts +3 -0
- package/dist/libs/common/src/react/interfaces/ViewModelAction.d.ts +5 -0
- package/dist/libs/common/src/react/interfaces/ViewModelPayload.d.ts +5 -0
- package/dist/libs/common/src/react/reducers/ViewModelReducer.d.ts +3 -0
- package/dist/libs/common/src/react/utils/ArrayHelper.d.ts +1 -2
- package/dist/libs/common/src/react/utils/TextHelper.d.ts +2 -0
- package/dist/libs/shared/src/components/actions/ActionButton.d.ts +6 -2
- package/dist/libs/shared/src/components/actions/ActionsDropdown.d.ts +2 -1
- package/dist/libs/shared/src/components/svgs/clickview-logo/ClickViewLogo.d.ts +3 -0
- package/dist/libs/shared/src/components/thumbnails/video/VideoThumbnailWatchProgressBar.d.ts +8 -0
- package/dist/libs/shared/src/components/widgets/fixed-widget/FixedWidgetUtils.d.ts +1 -1
- package/dist/libs/shared/src/enums/PlaylistPrivacy.d.ts +5 -0
- package/dist/libs/shared/src/flight-requests/PlaylistRequests.d.ts +3 -0
- package/dist/libs/shared/src/hooks/UseLazyLoad.d.ts +1 -1
- package/dist/libs/shared/src/interfaces/collections/VideoHistoryCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/models/Library.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/models/Playlist.d.ts +4 -1
- package/dist/libs/shared/src/interfaces/models/Video.d.ts +4 -2
- package/dist/libs/shared/src/interfaces/models/VideoHistory.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/models/Widget.d.ts +2 -1
- package/dist/libs/shared/src/interfaces/models/index.d.ts +2 -1
- package/dist/libs/shared/src/utils/ImageHelper.d.ts +1 -1
- package/dist/online-app.css +11 -7
- package/dist/online-app.js +3 -3
- package/dist/projects/online/src/apps/libraries/LibrariesApplication.d.ts +11 -0
- package/dist/projects/online/src/apps/libraries/components/libraries-list/LibrariesList.d.ts +7 -0
- package/dist/projects/online/src/apps/libraries/components/libraries-list/partial-loading/PartialLibrariesList.d.ts +2 -0
- package/dist/projects/online/src/apps/libraries/components/library-item/LibraryItem.d.ts +7 -0
- package/dist/projects/online/src/apps/libraries/flight-requests/LibrariesRequests.d.ts +7 -0
- package/dist/projects/online/src/apps/libraries/utils/LibraryHelper.d.ts +9 -0
- package/dist/projects/online/src/apps/libraries/views/libraries/LibrariesView.d.ts +2 -0
- package/dist/projects/online/src/apps/movies-and-tv/MoviesAndTvApplication.d.ts +12 -0
- package/dist/projects/online/src/apps/movies-and-tv/views/movies-and-tv/MoviesAndTvView.d.ts +2 -0
- package/dist/projects/online/src/apps/playlists/{PlaylistApplication.d.ts → OnlinePlaylistsApplication.d.ts} +5 -9
- package/dist/projects/online/src/apps/playlists/components/index.d.ts +0 -2
- package/dist/projects/online/src/apps/playlists/components/play-playlist/PlayPlaylist.d.ts +3 -4
- package/dist/projects/online/src/apps/playlists/components/playlist-header/PartialPlaylistHeader.d.ts +2 -0
- package/dist/projects/online/src/apps/playlists/components/playlist-header/PlaylistHeader.d.ts +6 -13
- package/dist/projects/online/src/apps/playlists/components/share-playlist/SharePlaylist.d.ts +2 -0
- package/dist/projects/online/src/apps/playlists/views/play-playlist/PlayPlaylistView.d.ts +5 -6
- package/dist/projects/online/src/apps/playlists/views/playlist/PlaylistView.d.ts +3 -12
- package/dist/projects/online/src/apps/subjects/SubjectPlaylistsApplication.d.ts +3 -3
- package/dist/projects/online/src/apps/subjects/views/classification-playlist/ClassificationPlaylistView.d.ts +1 -4
- package/dist/projects/online/src/apps/subjects/views/classification-playlist/components/PartialPlaylistHeader.d.ts +2 -0
- package/dist/projects/online/src/index.d.ts +8 -3
- package/dist/projects/online/src/shared/components/info-banner/InfoBanner.d.ts +2 -0
- package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/SortableVideoList.d.ts +2 -3
- package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/SortableVideoListContainer.d.ts +1 -2
- package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/ThumbnailComponent.d.ts +2 -2
- package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/VideoActionsComponent.d.ts +2 -2
- package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/VideoItemComponent.d.ts +4 -4
- package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/VideoItemPreviewComponent.d.ts +1 -1
- package/dist/projects/online/src/shared/components/video-list/VideoList.d.ts +8 -0
- package/dist/projects/online/src/shared/constants/Actions.d.ts +22 -4
- package/dist/projects/online/src/shared/constants/RadioChannels.d.ts +2 -0
- package/dist/projects/online/src/shared/hooks/UseMixinVideoRestrictions.d.ts +14 -0
- package/dist/projects/online/src/shared/hooks/index.d.ts +0 -1
- package/package.json +3 -3
- package/typings/libs/FutureCoreHelper.d.ts +5 -0
- package/dist/libs/analytics/src/utils/VideoDataFormatHelper.d.ts +0 -42
- package/dist/libs/shared/src/components/div-button/DivButton.d.ts +0 -10
- package/dist/libs/shared/src/components/pagination/Pagination.d.ts +0 -28
- package/dist/libs/shared/src/components/video-list/VideoItem.d.ts +0 -13
- package/dist/libs/shared/src/components/video-list/VideoList.d.ts +0 -22
- package/dist/libs/shared/src/components/video-list/components/video-item-actions/VideoItemActions.d.ts +0 -7
- package/dist/libs/shared/src/components/video-list/components/video-item-badges/VideoItemBadges.d.ts +0 -7
- package/dist/libs/shared/src/components/video-list/components/video-item-description/UseTruncateText.d.ts +0 -9
- package/dist/libs/shared/src/components/video-list/components/video-item-description/VideoItemDescription.d.ts +0 -8
- package/dist/libs/shared/src/components/video-list/components/video-item-header/VideoItemHeader.d.ts +0 -9
- package/dist/libs/shared/src/context/VideoActionsContext.d.ts +0 -10
- package/dist/libs/shared/src/flight-requests/FavouriteVideoRequests.d.ts +0 -7
- package/dist/libs/shared/src/interfaces/models/VideoWithRestrictions.d.ts +0 -5
- package/dist/libs/shared/src/utils/RestrictionHelper.d.ts +0 -5
- package/dist/libs/shared/src/utils/VideoHelper.d.ts +0 -4
- package/dist/projects/online/src/apps/playlists/components/playlist-header/PlaylistBreadcrumbsComponent.d.ts +0 -7
- package/dist/projects/online/src/apps/playlists/components/playlist-header/PlaylistHeaderActionsComponent.d.ts +0 -17
- package/dist/projects/online/src/apps/playlists/components/playlist-header/index.d.ts +0 -2
- package/dist/projects/online/src/apps/playlists/components/playlist-header/partial-loading/PartialPlaylistHeaderComponent.d.ts +0 -6
- package/dist/projects/online/src/apps/playlists/components/playlist-header/partial-loading/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/components/video-list/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/flight-requests/SubjectRequests.d.ts +0 -4
- package/dist/projects/online/src/apps/playlists/flight-requests/index.d.ts +0 -2
- package/dist/projects/online/src/apps/playlists/views/add-to-playlist/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/views/delete-playlist/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/views/edit-playlist/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/views/index.d.ts +0 -10
- package/dist/projects/online/src/apps/playlists/views/left-nav/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/views/migration-in-progress/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/views/new-playlist/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/views/play-playlist/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/views/playlist/PlaylistViewUtils.d.ts +0 -12
- package/dist/projects/online/src/apps/playlists/views/playlist/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/views/playlists/index.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/views/remove-video-from-playlist/index.d.ts +0 -1
- package/dist/projects/online/src/shared/hooks/UseVideoMixin.d.ts +0 -2
- /package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/PartialVideoList.d.ts +0 -0
- /package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/PlaceHolder.d.ts +0 -0
- /package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/RestrictedBadge.d.ts +0 -0
- /package/dist/projects/online/src/{apps/playlists → shared}/components/video-list/RestrictionInfo.d.ts +0 -0
package/dist/en.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"playlists":{"onlineClassificationBanner":{"follow":"Follow","following":"Following"},"onlineClassificationUpdateBreadcrumbs":{"dashboard":"Dashboard","whatsNew":"Whats new at ClickView"},"onlineWhatsNewBreadcrumbs":{"dashboard":"Dashboard","whatsNew":"Whats new at ClickView","switchBack":"Switch back to the old look"},"leftNav":{"playlists":"Playlists","loading":"Loading more...","seeMore":"See more playlists"},"newPlaylistButton":{"createNew":"Create a new playlist"},"playlistActions":{"share":"Share","edit":"Edit Playlist Details","delete":"Delete Playlist"},"playlistDetails":{"nameLabel":"Playlist Name","namePlaceholder":"Give your playlist a name...","descriptionLabel":"Description","descriptionPlaceholder":"Describe your playlist here","create":"Create","save":"Save","cancel":"Cancel"},"playlistHeader":{"playAll":"Play All","share":"Share","edit":"Edit","follow":"Follow","following":"Following","playlists":"Playlists","video":"%{smart_count} video |||| %{smart_count} videos","backTo":"Back to %{label}","created":"Created %{date}","updated":"Last Updated %{date}"},"playlistList":{"video":"%{smart_count} video |||| %{smart_count} videos","created":"Created %{date}","heading":"%{fname} %{lname}'s Playlists"},"videoList":{"removeHeading":"Remove from playlist","removeInfo":"Remove from this playlist","library":"your Library","workspace":"your Workspace","exchange":"the Exchange","videoFrom":"This video comes from","series":"Series:","added":"Added","ratedTitle":"Rated:","unrated":"UNRATED","unratedTitle":"Rated: UNRATED","productionYearTitle":"Production Year:","interactive":"Interactive","interactiveTitle":"Interactive videos are available for this programme.","showMore":"... Show more","showLess":"Show less","hide":"Hide video","show":"Show video","plus":"+","minus":"-"},"videoNotFound":{"heading":"Video Not Found","info":"The video you have requested could not be found or has been removed.","returnTo":"Return to %{name}"},"app":{"accessDeniedHeading":"You do not have permission to view this playlist.","accessDeniedInfo":"If it was previously shared with you, the owner may have changed the privacy settings.","notFoundHeading":"Playlist Not Found","notFoundInfo":"The playlist you have requested could not be found or has been removed."},"services":{"createPlaylistSuccess":"Successfully created playlist.","createPlaylistError":"Failed to create playlist.","updatePlaylistSuccess":"Successfully updated playlist.","updatePlaylistError":"Failed to save playlist.","deletePlaylistError":"Failed to delete playlist.","updatePlaylistOrderError":"Failed to update playlist order.","addToPlaylistSuccess":"Successfully added video to playlist.","addToPlaylistError":"Failed to add video to playlist."},"addToPlaylist":{"heading":"Add to Playlist","selectPlaylist":"Select a playlist to add <strong>%{video}</strong> to:"},"selectPlaylist":{"placeholder":"Search your playlists or create a new one...","recentPlaylistsHeading":"Recent playlists saved to:","suggestionsHeading":"My Playlists","createPlaylist":"Create new playlist: <strong>%{name}</strong>"},"deletePlaylist":{"title":"Delete %{name}","keep":"No, keep my playlist","confirm":"Yes, delete this playlist","check":"Are you sure you want to delete this playlist?","warning":"This will permanently delete the playlist <strong>%{name}</strong>, along with any share links.","videoNote":"Videos in this playlist will not be deleted."},"editPlaylist":{"title":"Edit %{name}","heading":"Edit Playlist Details"},"migrationInProgress":{"heading":"Maintenance In Progress","description":"Playlists is currently undergoing some maintenance. Check back soon for some exciting updates!"},"newPlaylist":{"title":"New Playlist"},"playlists":{"title":"Playlists"},"removeVideoFromPlaylist":{"title":"Remove %{name}","keep":"No, keep this video","confirm":"Yes, remove this video","check":"Are you sure you want to remove this video?","warning":"This will remove <strong>%{video}</strong> from the playlist <strong>%{playlist}</strong>."},"emptyState":{"noPlaylistsHeading":"You have no playlists","noPlaylistsInfo":"Click <strong>Create a new playlist</strong> in the left nav to create one.","noVideosHeading":"There are no videos in this playlist","noVideosInfo":"Learn how to add videos to a playlist."},"hooks":{"somethingWentWrong":"Something went wrong"},"validation":{"nameExceeds":"Name is too long","nameRequired":"Name is required","descriptionExceeds":"Description is too long"}},"contentUpdates":{"contentUpdatesView":{"followed":"Successfully followed <strong>%{classification}</strong>","unfollowed":"Successfully unfollowed <strong>%{classification}</strong>","showMore":"Show more new %{classificationName} videos"}},"dashboard":{"heroWidget":{"play":"Play","addToPlaylist":"Add to playlist","previous":"Previous","next":"Next"},"dashboard":{"curriculum":"Search by Curriculum","contentUpdates":"Content Updates from ClickView","featuredChannels":"Featured Channels"}},"":{},"subjects":{"classificationSeriesList":{"dashboard":"Dashboard","subview":"Series","heading":"Series: %{classification}"},"classification":{"dashboard":"Dashboard","playlists":"Playlists","series":"Series","popular":"Popular videos","unfollow":"Unfollow","follow":"Follow","share":"Share","followBtnTooltip":"Follow to get notifications on new content added to this subject"},"levelPreferences":{"heading":"What <span class=\"%{highlightClass}\">year levels</span> do you currently teach?","back":"Back","next":"Next","allLevels":"I teach all year levels"},"subjectPreferencesView":{"heading":"What type of <span class=\"%{highlightClass}\">videos</span> will be helpful to you?","infoRow1":"This will help us tailor ClickView to you.","infoRow2":"You can select as many as you like!","back":"Back","followSubjects":"Follow %{smart_count} Subject |||| Follow %{smart_count} Subjects","allOfParent":"All of %{parent}","allSubjects":"I'm interested in all subjects","next":"Next"},"preferencesSummary":{"heading":"<span class=\"%{highlightClass}\">Summary</span> of your preferences","info":"You can change your preferences in your profile settings at any time","levels":"Year levels","subjects":"Subjects","getStarted":"Get Started","noLevelPreferences":"You haven't set any level preferences yet.","noSubjectPreferences":"You haven't set any subject preferences yet."},"comingSoon":{"comingSoon":"Coming Soon","info":"We are currently building this topic. In the meantime, we can remind you when it's available.","remindMe":"Remind Me"},"heroVideo":{"resourcesHeading":"Resources","linksHeading":"Links","clipsHeading":"Clips","tagsHeading":"Tags","links":"%{smart_count} link |||| %{smart_count} links","resources":"%{smart_count} resource |||| %{smart_count} resources","clips":"%{smart_count} clip |||| %{smart_count} clips"}},"shared":{"context":{"defaultTitle":"Playlists"},"notFound":{"title":"Page not found","heading":"Page not found","description":"This page does not exist"},"error":{"return":"Return to home"},"share":{"close":"Close","share":"Share","sharePlaylist":"Share Playlist"},"playlistItem":{"videos":"%{smart_count} video |||| %{smart_count} videos"},"backButton":{"back":"Back","backTo":"Back to %{backToName}"},"editVideoDetails":{"nameExceeds":"Name is too long","nameRequired":"Name is required","descriptionExceeds":"Description is too long","namePlaceholder":"Enter a name for your video","descriptionPlaceholder":"Enter a description for your video","cancel":"Cancel","nameLabel":"Title","descriptionLabel":"Description"},"favouriteButton":{"favouriteError":"Failed to favourite video.","unfavouriteError":"Failed to unfavourite video."},"formButtons":{"create":"Create","save":"Save","next":"Next"},"pagination":{"next":"Next","previous":"Previous"},"searchBar":{"placeholder":"Enter a search query","recentSearchHeading":"Recent Searches"},"videoItemDescription":{"showMore":"... Show more","showLess":"Show less"},"dynamicWidget":{"topics":"Topics","teach":"What would you like to teach?","preferencesTooltip":"Update your preferences"},"fixedWidget":{"preferencesTooltip":"Update your preferences"},"greeting":{"morning":"Good morning","afternoon":"Good afternoon","evening":"Good evening","fallback":"Hello","prompt":"What would you like to teach today?"},"subjectWidgetItem":{"comingSoon":"Coming Soon","edit":"Edit My Subjects"},"_pagination":{"next":"Next","previous":"Previous"},"shared-utils":{"responsive":"Responsive","small":"Small","medium":"Medium","large":"Large"},"videoActionsHelper":{"addToPlaylist":"Add to playlist","removeFromPlaylist":"Remove from playlist","share":"Share","edit":"Edit"}},"notifications":{"notificationList":{"noNotifications":"You have no notifications"},"services":{"suggestEditSubmit":"Suggestion was successfully submitted"},"utils":{"viewVideoDetails":"View video details","viewVideo":"View video","reviewVideos":"Review videos","viewNewContent":"View new content","reviewVideo":"Review video","seeNow":"See now"},"notifications":{"title":"Notifications","notifications":"Notifications"},"notificationsPopover":{"notifications":"Notifications","seeAll":"See all notifications"}},"search":{"searchTips":{"heading":"Search Tips","firstTerm":"\"atomic bonding\"","firstDescription":"Search for exact phrases using quotation marks","secondTerm":"\"romeo and juliet\" english","secondDescription":"Combine normal and exact phrases together","thirdTerm":"-pollution","thirdDescription":"Exclude a keyword from your search","fourthTerm1":"tag:literature","fourthTerm2":"folder:science","fourthDescription":"Search for results within a tag, folder or series","fifthTerm":"folder:-physics","fifthDescription":"Use a \"-\" to exclude a folder, title or series"},"services":{"folderTag":"This folder","seriesTag":"This series"},"searchBar":{"findingResults":"Finding results...","recentSearches":"Recent Searches","allResults":"Show all results for","noLibraries":"There are currently no libraries to search. Add a new library to get started.","placeholder":"Search within your library... |||| Search within your libraries...","classifications":"topics","videos":"videos","tags":"tags","series":"series"}},"upload":{"fileType":{"heading":"Invalid file type","body":"Sorry but you cannot upload files of that type.","okay":"Okay","close":"Close"},"internetConnectivityError":{"title":"Internet connectivity issue","heading":"Connectivity issue.","body":"There seems to be an issue with your internet connection. Please try uploading your files again.","okay":"Okay"},"utils":{"videoProcessingError":"Something went wrong processing this video.","waiting":"Waiting to be processed","processing":"Processing %{progress}%","complete":"Complete","readyToWatch":"Ready to watch, still processing higher resolutions."}}}
|
|
1
|
+
{"playlists":{"onlineClassificationBanner":{"follow":"Follow","following":"Following"},"onlineClassificationUpdateBreadcrumbs":{"dashboard":"Dashboard","whatsNew":"Whats new at ClickView"},"onlineWhatsNewBreadcrumbs":{"dashboard":"Dashboard","whatsNew":"Whats new at ClickView","switchBack":"Switch back to the old look"},"leftNav":{"playlists":"Playlists","loading":"Loading more...","seeMore":"See more playlists"},"newPlaylistButton":{"createNew":"Create a new playlist"},"playlistActions":{"share":"Share","edit":"Edit Playlist Details","delete":"Delete Playlist"},"playlistDetails":{"nameLabel":"Playlist Name","namePlaceholder":"Give your playlist a name...","descriptionLabel":"Description","descriptionPlaceholder":"Describe your playlist here","create":"Create","save":"Save","cancel":"Cancel"},"playlistHeader":{"follow":"Follow","following":"Following","edit":"Edit","share":"Share","delete":"Delete playlist","createdBy":"Created by %{user}","videos":"%{smart_count} video |||| %{smart_count} videos","followers":"%{smart_count} follower |||| %{smart_count} followers"},"playlistList":{"video":"%{smart_count} video |||| %{smart_count} videos","created":"Created %{date}","heading":"%{fname} %{lname}'s Playlists"},"videoNotFound":{"heading":"Video Not Found","info":"The video you have requested could not be found or has been removed.","returnTo":"Return to %{name}"},"app":{"accessDeniedHeading":"You do not have permission to view this playlist.","accessDeniedInfo":"If it was previously shared with you, the owner may have changed the privacy settings.","notFoundHeading":"Playlist Not Found","notFoundInfo":"The playlist you have requested could not be found or has been removed."},"services":{"createPlaylistSuccess":"Successfully created playlist.","createPlaylistError":"Failed to create playlist.","updatePlaylistSuccess":"Successfully updated playlist.","updatePlaylistError":"Failed to save playlist.","deletePlaylistError":"Failed to delete playlist.","updatePlaylistOrderError":"Failed to update playlist order.","addToPlaylistSuccess":"Successfully added video to playlist.","addToPlaylistError":"Failed to add video to playlist."},"addToPlaylist":{"heading":"Add to Playlist","selectPlaylist":"Select a playlist to add <strong>%{video}</strong> to:"},"selectPlaylist":{"placeholder":"Search your playlists or create a new one...","recentPlaylistsHeading":"Recent playlists saved to:","suggestionsHeading":"My Playlists","createPlaylist":"Create new playlist: <strong>%{name}</strong>"},"deletePlaylist":{"title":"Delete %{name}","keep":"No, keep my playlist","confirm":"Yes, delete this playlist","check":"Are you sure you want to delete this playlist?","warning":"This will permanently delete the playlist <strong>%{name}</strong>, along with any share links.","videoNote":"Videos in this playlist will not be deleted."},"editPlaylist":{"title":"Edit %{name}","heading":"Edit Playlist Details"},"migrationInProgress":{"heading":"Maintenance In Progress","description":"Playlists is currently undergoing some maintenance. Check back soon for some exciting updates!"},"newPlaylist":{"title":"New Playlist"},"playlists":{"title":"Playlists"},"removeVideoFromPlaylist":{"title":"Remove %{name}","keep":"No, keep this video","confirm":"Yes, remove this video","check":"Are you sure you want to remove this video?","warning":"This will remove <strong>%{video}</strong> from the playlist <strong>%{playlist}</strong>."},"videoList":{"removeHeading":"Remove from playlist","removeInfo":"Remove from this playlist","library":"your Library","workspace":"your Workspace","exchange":"the Exchange","videoFrom":"This video comes from","series":"Series:","added":"Added","ratedTitle":"Rated:","unrated":"UNRATED","unratedTitle":"Rated: UNRATED","productionYearTitle":"Production Year:","interactive":"Interactive","interactiveTitle":"Interactive videos are available for this programme.","showMore":"... Show more","showLess":"Show less","hide":"Hide video","show":"Show video","plus":"+","minus":"-"},"emptyState":{"noPlaylistsHeading":"You have no playlists","noPlaylistsInfo":"Click <strong>Create a new playlist</strong> in the left nav to create one.","noVideosHeading":"There are no videos in this playlist","noVideosInfo":"Learn how to add videos to a playlist."},"hooks":{"somethingWentWrong":"Something went wrong"},"validation":{"nameExceeds":"Name is too long","nameRequired":"Name is required","descriptionExceeds":"Description is too long"}},"contentUpdates":{"contentUpdatesView":{"followed":"Successfully followed <strong>%{classification}</strong>","unfollowed":"Successfully unfollowed <strong>%{classification}</strong>","showMore":"Show more new %{classificationName} videos"}},"dashboard":{"heroWidget":{"play":"Play","addToPlaylist":"Add to playlist","previous":"Previous","next":"Next"},"dashboard":{"curriculum":"Search by Curriculum","contentUpdates":"Content Updates from ClickView","featuredChannels":"Featured Channels"}},"":{},"libraries":{"libraries":{"newInteractives":"New Interactives","recentlyAdded":"Recently Added to %{name}"}},"moviesAndTv":{"moviesAndTv":{"infoBanner":"🔎 You're currently viewing all Movies + TV content. Students will <strong>only</strong> see videos within their allowed rating."}},"subjects":{"classificationSeriesList":{"dashboard":"Dashboard","subview":"Series","heading":"Series: %{classification}"},"classification":{"dashboard":"Dashboard","playlists":"Playlists","series":"Series","popular":"Popular videos","unfollow":"Unfollow","follow":"Follow","share":"Share","followBtnTooltip":"Follow to get notifications on new content added to this subject"},"levelPreferences":{"heading":"What <span class=\"%{highlightClass}\">year levels</span> do you currently teach?","back":"Back","next":"Next","allLevels":"I teach all year levels"},"subjectPreferencesView":{"heading":"What type of <span class=\"%{highlightClass}\">videos</span> will be helpful to you?","infoRow1":"This will help us tailor ClickView to you.","infoRow2":"You can select as many as you like!","back":"Back","followSubjects":"Follow %{smart_count} Subject |||| Follow %{smart_count} Subjects","allOfParent":"All of %{parent}","allSubjects":"I'm interested in all subjects","next":"Next"},"preferencesSummary":{"heading":"<span class=\"%{highlightClass}\">Summary</span> of your preferences","info":"You can change your preferences in your profile settings at any time","levels":"Year levels","subjects":"Subjects","getStarted":"Get Started","noLevelPreferences":"You haven't set any level preferences yet.","noSubjectPreferences":"You haven't set any subject preferences yet."},"comingSoon":{"comingSoon":"Coming Soon","info":"We are currently building this topic. In the meantime, we can remind you when it's available.","remindMe":"Remind Me"},"heroVideo":{"resourcesHeading":"Resources","linksHeading":"Links","clipsHeading":"Clips","tagsHeading":"Tags","links":"%{smart_count} link |||| %{smart_count} links","resources":"%{smart_count} resource |||| %{smart_count} resources","clips":"%{smart_count} clip |||| %{smart_count} clips"}},"shared":{"context":{"defaultTitle":"Playlists"},"notFound":{"title":"Page not found","heading":"Page not found","description":"This page does not exist"},"error":{"return":"Return to home"},"share":{"close":"Close","share":"Share","sharePlaylist":"Share Playlist"},"playlistItem":{"videos":"%{smart_count} video |||| %{smart_count} videos"},"backButton":{"back":"Back","backTo":"Back to %{backToName}"},"editVideoDetails":{"nameExceeds":"Name is too long","nameRequired":"Name is required","descriptionExceeds":"Description is too long","namePlaceholder":"Enter a name for your video","descriptionPlaceholder":"Enter a description for your video","cancel":"Cancel","nameLabel":"Title","descriptionLabel":"Description"},"favouriteButton":{"favouriteError":"Failed to favourite video.","unfavouriteError":"Failed to unfavourite video."},"formButtons":{"create":"Create","save":"Save","next":"Next"},"pagination":{"next":"Next","previous":"Previous"},"searchBar":{"placeholder":"Enter a search query","recentSearchHeading":"Recent Searches"},"videoItemDescription":{"showMore":"... Show more","showLess":"Show less"},"dynamicWidget":{"topics":"Topics","teach":"What would you like to teach?","preferencesTooltip":"Update your preferences"},"fixedWidget":{"preferencesTooltip":"Update your preferences"},"greeting":{"morning":"Good morning","afternoon":"Good afternoon","evening":"Good evening","fallback":"Hello","prompt":"What would you like to teach today?"},"subjectWidgetItem":{"comingSoon":"Coming Soon","edit":"Edit My Subjects"},"_pagination":{"next":"Next","previous":"Previous"},"shared-utils":{"responsive":"Responsive","small":"Small","medium":"Medium","large":"Large"},"videoActionsHelper":{"addToPlaylist":"Add to playlist","removeFromPlaylist":"Remove from playlist","share":"Share","edit":"Edit"}},"notifications":{"notificationList":{"noNotifications":"You have no notifications"},"services":{"suggestEditSubmit":"Suggestion was successfully submitted"},"utils":{"viewVideoDetails":"View video details","viewVideo":"View video","reviewVideos":"Review videos","viewNewContent":"View new content","reviewVideo":"Review video","seeNow":"See now"},"notifications":{"title":"Notifications","notifications":"Notifications"},"notificationsPopover":{"notifications":"Notifications","seeAll":"See all notifications"}},"search":{"searchTips":{"heading":"Search Tips","firstTerm":"\"atomic bonding\"","firstDescription":"Search for exact phrases using quotation marks","secondTerm":"\"romeo and juliet\" english","secondDescription":"Combine normal and exact phrases together","thirdTerm":"-pollution","thirdDescription":"Exclude a keyword from your search","fourthTerm1":"tag:literature","fourthTerm2":"folder:science","fourthDescription":"Search for results within a tag, folder or series","fifthTerm":"folder:-physics","fifthDescription":"Use a \"-\" to exclude a folder, title or series"},"services":{"folderTag":"This folder","seriesTag":"This series"},"searchBar":{"findingResults":"Finding results...","recentSearches":"Recent Searches","allResults":"Show all results for","noLibraries":"There are currently no libraries to search. Add a new library to get started.","placeholder":"Search within your library... |||| Search within your libraries...","classifications":"topics","videos":"videos","tags":"tags","series":"series"}},"upload":{"fileType":{"heading":"Invalid file type","body":"Sorry but you cannot upload files of that type.","okay":"Okay","close":"Close"},"internetConnectivityError":{"title":"Internet connectivity issue","heading":"Connectivity issue.","body":"There seems to be an issue with your internet connection. Please try uploading your files again.","okay":"Okay"},"utils":{"videoProcessingError":"Something went wrong processing this video.","waiting":"Waiting to be processed","processing":"Processing %{progress}%","complete":"Complete","readyToWatch":"Ready to watch, still processing higher resolutions."}}}
|
|
@@ -23,7 +23,9 @@ export declare enum UserAction {
|
|
|
23
23
|
* The following events are listed in CollectionApi
|
|
24
24
|
*/
|
|
25
25
|
Stream = "cv_product_stream",
|
|
26
|
+
StreamRaw = "cv_product_stream_raw",
|
|
26
27
|
WebPlayerStream = "cv_product_webplayer_stream",
|
|
28
|
+
StreamProgress = "cv_product_stream_progress",
|
|
27
29
|
Login = "cv_product_login",
|
|
28
30
|
LoginSsoRedirect = "cv_product_login_sso_redirect",
|
|
29
31
|
LoginFailed = "cv_product_login_failed",
|
|
@@ -99,12 +101,7 @@ export declare enum EntityType {
|
|
|
99
101
|
Upload = "upload",
|
|
100
102
|
SearchResults = "search_results",
|
|
101
103
|
Audience = "audience",
|
|
102
|
-
|
|
103
|
-
* `user` cannot be the value here because when we log these events to Snowflake, the event object
|
|
104
|
-
* puts the current user's data under the `user` key. If we were to log events with `user` as the entity
|
|
105
|
-
* name, this data would be overwritten and lost.
|
|
106
|
-
*/
|
|
107
|
-
User = "target_user"
|
|
104
|
+
User = "user"
|
|
108
105
|
}
|
|
109
106
|
export declare enum LocationContext {
|
|
110
107
|
TopNav = "top_nav",
|
|
@@ -151,6 +148,8 @@ export declare enum LocationContext {
|
|
|
151
148
|
ManageClassroomGroupListItem = "manage_classroom_group_list_item",
|
|
152
149
|
PlayPage = "play_page",
|
|
153
150
|
FloatingPlayer = "floating_player",
|
|
151
|
+
InteractivePlayer = "interactive_player",
|
|
152
|
+
EmbeddedPlayer = "embedded_player",
|
|
154
153
|
ContentUpdatesClassificationBanner = "content_updates_classification_banner",
|
|
155
154
|
PreferencesSettings = "preferences_settings",
|
|
156
155
|
MyUploads = "my_uploads"
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import { BaseObject } from "./";
|
|
2
|
+
export declare enum UserGroup {
|
|
3
|
+
Staff = "staff",
|
|
4
|
+
Learner = "learner",
|
|
5
|
+
Unknown = "unknown"
|
|
6
|
+
}
|
|
2
7
|
export interface User extends BaseObject {
|
|
3
8
|
countryCode?: string;
|
|
4
9
|
customerId?: string;
|
|
10
|
+
customerGuid?: string;
|
|
11
|
+
customerName?: string;
|
|
12
|
+
crmId?: number;
|
|
5
13
|
role?: string;
|
|
14
|
+
userGroup?: UserGroup;
|
|
15
|
+
yearGroup?: string;
|
|
16
|
+
isOpenCustomer?: boolean;
|
|
6
17
|
}
|
|
@@ -22,10 +22,16 @@ export interface PlatformData {
|
|
|
22
22
|
export interface CollectionEventUserData {
|
|
23
23
|
id: string;
|
|
24
24
|
role: string;
|
|
25
|
+
userGroup: string;
|
|
26
|
+
yearGroup: string;
|
|
25
27
|
customer: {
|
|
26
28
|
id: string;
|
|
29
|
+
name: string;
|
|
27
30
|
country: CountryCode;
|
|
28
31
|
region: Region;
|
|
32
|
+
customerGuid: string;
|
|
33
|
+
crmId: number;
|
|
34
|
+
openCustomer: boolean;
|
|
29
35
|
};
|
|
30
36
|
}
|
|
31
37
|
export interface CollectionEventData {
|
|
@@ -2,5 +2,5 @@ import { IncomingEvent } from "../models/CollectionEvent";
|
|
|
2
2
|
import { HashObject } from "../interfaces";
|
|
3
3
|
export declare const CollectionApiClientHelper: {
|
|
4
4
|
shouldLog(event: IncomingEvent): boolean;
|
|
5
|
-
formatData(event: IncomingEvent): HashObject<any
|
|
5
|
+
formatData(event: IncomingEvent): HashObject<any> | HashObject<any>[];
|
|
6
6
|
};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import * as _ from 'underscore';
|
|
3
2
|
declare type Iterator<T, TResult = T> = (value: T, index: number, list: T[]) => TResult;
|
|
4
3
|
export declare const ArrayHelper: {
|
|
@@ -23,7 +22,7 @@ export declare const ArrayHelper: {
|
|
|
23
22
|
* @param arr array of values
|
|
24
23
|
* @param value value to be added or removed.
|
|
25
24
|
*/
|
|
26
|
-
addOrRemove<T_13 =
|
|
25
|
+
addOrRemove<T_13 = string | number>(arr: T_13[], value: T_13): T_13[];
|
|
27
26
|
addOrRemoveImmutable<T_14>(arr: T_14[], value: T_14): T_14[];
|
|
28
27
|
/**
|
|
29
28
|
* Returns a (stably) sorted copy of list, ranked in ascending order
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { Core } from "../../../../common/src/backbone";
|
|
3
3
|
interface ActionButtonProps {
|
|
4
|
-
|
|
4
|
+
appLink?: Core.AppLink;
|
|
5
|
+
onClick?: (e: React.MouseEvent) => void;
|
|
6
|
+
svgName?: string;
|
|
7
|
+
className?: string;
|
|
8
|
+
tooltip?: string;
|
|
5
9
|
}
|
|
6
10
|
export declare function ActionButton(props: React.PropsWithChildren<ActionButtonProps>): JSX.Element;
|
|
7
11
|
export {};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ActionOptions } from './Actions';
|
|
3
|
+
declare type DropdownActionOptions = Omit<ActionOptions, 'button' | 'tooltip'>;
|
|
3
4
|
interface ActionsDropdownProps {
|
|
4
|
-
actions:
|
|
5
|
+
actions: DropdownActionOptions[];
|
|
5
6
|
className?: string;
|
|
6
7
|
dropdownToggleClassName?: string;
|
|
7
8
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Video } from "../../../interfaces";
|
|
3
|
+
interface VideoThumbnailWatchProgressBarProps {
|
|
4
|
+
video: Video;
|
|
5
|
+
className: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function VideoThumbnailWatchProgressBar(props: VideoThumbnailWatchProgressBarProps): JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -13,7 +13,7 @@ export interface WidgetData {
|
|
|
13
13
|
name?: string;
|
|
14
14
|
description?: string;
|
|
15
15
|
}
|
|
16
|
-
export declare function useFetchData(props: FixedWidgetProps, dispatch: Function,
|
|
16
|
+
export declare function useFetchData(props: FixedWidgetProps, dispatch: Function, mediaQueryType: MediaQueryStrings, shouldFetch: boolean): Flight.Response<any>;
|
|
17
17
|
/**
|
|
18
18
|
* This function wrapper determines which widget item images should be pre-fetched by the LazyImage component.
|
|
19
19
|
* It does this by looking at which images are going to be shown after the users clicks on the "Next"
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Flight } from "../../../common/src/react";
|
|
2
2
|
import { Xhr } from "../../../common/src/backbone/interfaces";
|
|
3
3
|
import { ReorderRequest } from "../interfaces";
|
|
4
|
+
import { PlaylistPrivacy } from "../enums/PlaylistPrivacy";
|
|
4
5
|
import { CreateOrUpdatePlaylistRequest, PlaylistCollectionIdentifier } from "../apps/playlists/interfaces";
|
|
5
6
|
export declare const PlaylistRequests: {
|
|
6
7
|
getPlaylist(id: string, success?: (data: any) => void, error?: (data: any) => void): Flight.Request;
|
|
@@ -18,5 +19,7 @@ export declare const PlaylistRequests: {
|
|
|
18
19
|
removePlaylistVideo(playlistId: string, videoId: string, success?: (data: any) => void, error?: (data: any) => void): Flight.Request;
|
|
19
20
|
followPlaylist(playlistId: string, userId: string): Flight.Request;
|
|
20
21
|
unfollowPlaylist(playlistId: string, userId: string): Flight.Request;
|
|
22
|
+
getPlaylistPrivacy(playlistId: string): Flight.Request;
|
|
23
|
+
updatePlaylistPrivacy(playlistId: string, privacy: PlaylistPrivacy, success?: (data: any) => void, error?: (xhr: Xhr) => void, always?: () => void): Flight.Request;
|
|
21
24
|
getMigrationTask(success?: (data: any) => void, error?: (xhr: Xhr) => void): Flight.Request;
|
|
22
25
|
};
|
|
@@ -9,6 +9,7 @@ export * from './SeriesCollection';
|
|
|
9
9
|
export * from './TagCollection';
|
|
10
10
|
export * from './UserCollection';
|
|
11
11
|
export * from './VideoCollection';
|
|
12
|
+
export * from './VideoHistoryCollection';
|
|
12
13
|
export * from './WidgetCollection';
|
|
13
14
|
export * from './PresentationAudienceCollection';
|
|
14
15
|
export * from './ResourceCollection';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { BaseObject, Cover, VideoCollection, User, Thumbnail, Banner, PresentationAudienceCollection } from "./..";
|
|
1
|
+
import { BaseObject, Cover, VideoCollection, User, Thumbnail, Banner, PresentationAudienceCollection, UserCollection } from "./..";
|
|
2
|
+
import { PlaylistPrivacy } from "../../enums/PlaylistPrivacy";
|
|
2
3
|
export interface Playlist extends BaseObject {
|
|
3
4
|
description?: string;
|
|
4
5
|
thumbnail?: Thumbnail;
|
|
@@ -7,4 +8,6 @@ export interface Playlist extends BaseObject {
|
|
|
7
8
|
cover?: Cover;
|
|
8
9
|
banner?: Banner;
|
|
9
10
|
subjectPresentationAudiences?: PresentationAudienceCollection;
|
|
11
|
+
followers?: UserCollection;
|
|
12
|
+
privacy?: PlaylistPrivacy;
|
|
10
13
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseObject, CompanyCollection, PersonCollection, CategoryCollection, Channel, InteractiveCollection, LibraryCollection, Rating, Series, Thumbnail, TagCollection, Season, AudienceCollection, ResourceCollection, LinkCollection, ClipCollection, Glance, HeroBanner } from "./..";
|
|
1
|
+
import { BaseObject, CompanyCollection, PersonCollection, CategoryCollection, Channel, InteractiveCollection, LibraryCollection, Rating, Series, Thumbnail, TagCollection, Season, AudienceCollection, ResourceCollection, LinkCollection, ClipCollection, Glance, HeroBanner, RestrictedObject } from "./..";
|
|
2
2
|
export interface Video extends BaseObject {
|
|
3
3
|
categories?: CategoryCollection;
|
|
4
4
|
channel?: Channel;
|
|
@@ -6,7 +6,7 @@ export interface Video extends BaseObject {
|
|
|
6
6
|
duration?: number;
|
|
7
7
|
interactives?: InteractiveCollection;
|
|
8
8
|
libraries?: LibraryCollection;
|
|
9
|
-
productionYear
|
|
9
|
+
productionYear?: number;
|
|
10
10
|
rating?: Rating;
|
|
11
11
|
series?: Series;
|
|
12
12
|
thumbnail?: Thumbnail;
|
|
@@ -25,4 +25,6 @@ export interface Video extends BaseObject {
|
|
|
25
25
|
isFavourited?: boolean;
|
|
26
26
|
hasSubtitle?: boolean;
|
|
27
27
|
heroBanner?: HeroBanner;
|
|
28
|
+
restrictions?: RestrictedObject[];
|
|
29
|
+
lastProgressPoint?: number;
|
|
28
30
|
}
|
|
@@ -38,7 +38,8 @@ export * from './Organisation';
|
|
|
38
38
|
export * from './TallPoster';
|
|
39
39
|
export * from './Share';
|
|
40
40
|
export * from './Restriction';
|
|
41
|
-
export * from './
|
|
41
|
+
export * from './Video';
|
|
42
42
|
export * from './Following';
|
|
43
43
|
export * from './UserChannel';
|
|
44
44
|
export * from './Group';
|
|
45
|
+
export * from './VideoHistory';
|
|
@@ -26,5 +26,5 @@ export declare const ImageHelper: {
|
|
|
26
26
|
Rfc3986EncodeURIComponent(str: string): string;
|
|
27
27
|
_createCategoryMappedUrl(mappingOptions: CategoryMapperImageOptions, options?: ImageOptions): string;
|
|
28
28
|
_createUrl(baseUrl: string, options?: ImageOptions): string;
|
|
29
|
-
legacyCreateThumbnailUrl(thumbnail: string | HashObject<any
|
|
29
|
+
legacyCreateThumbnailUrl(thumbnail: string | Core.Model | HashObject<any>, options?: ImageOptions): string;
|
|
30
30
|
};
|
package/dist/online-app.css
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
._3MysI:focus{border-color:#D7D7D7;box-shadow:none}.ahMdW{position:absolute;top:100%;left:0;right:0;z-index:100}.xstWL:last-child{border-bottom:none !important}._3YTCa{background-color:#f8f8f8}
|
|
2
|
-
|
|
3
|
-
._1Gjzn{height:calc((1.25rem + .625rem) * 5);overflow-y:auto}
|
|
4
|
-
|
|
5
1
|
._2v9CT :first-child{margin-left:0 !important}.AYBvQ:after{content:none}
|
|
6
2
|
|
|
7
3
|
._3OUhC{width:1.5rem;height:1.5rem;position:absolute}._3t3VL{vertical-align:top;position:relative}._3t3VL._2KLHo{padding-left:36px}._3t3VL._2KLHo ._3OUhC{left:.375rem;top:50%;margin-top:-.75rem}._3t3VL._2KLHo svg{vertical-align:top}._3t3VL._2rQWb{padding:1rem}._3t3VL._2rQWb ._3OUhC{top:50%;left:50%;transform:translate3D(-50%, -50%, 0)}
|
|
8
4
|
|
|
9
5
|
._286KF{position:absolute;bottom:1.25rem;right:1.25rem}
|
|
10
6
|
|
|
7
|
+
._4eCbo{position:relative;padding:1.25rem}._4eCbo h1{font-size:2.4rem}._2WBLn{position:absolute;top:2.85rem;right:1.25rem}._2W38E{display:flex}._3YWHl .btn,._2W38E .btn{margin-left:.625rem}._3YWHl .dropdown-toggle,._2W38E .dropdown-toggle{padding:0;height:100%}._3xry5{padding-top:1.25rem}._2_mFA{width:25%}._2_mFA h1{height:2.7rem}._1C-uu{height:1.4rem;width:30%}._3fZ4_{display:inline-block;height:3rem;width:9rem;margin-left:.625rem}
|
|
8
|
+
|
|
11
9
|
._1KxF9{background-color:#f8f8f8}
|
|
12
10
|
|
|
13
11
|
._1YW-E{width:100%;height:100%}
|
|
@@ -34,11 +32,11 @@
|
|
|
34
32
|
|
|
35
33
|
._1SFgo{color:inherit;display:block;font-size:.78571em}._1SFgo:hover ._1YAi8{text-decoration:underline}
|
|
36
34
|
|
|
37
|
-
._1MQy4{position:absolute;width:100%;height:100%;z-index:1;padding:.3125rem;color:#fff}._2obuZ{position:absolute;top:0;right:0;padding-top:.625rem;padding-right:.625rem;z-index:5;transform:translate3d(0, 0, 0)}._2obuZ ._1UfdO{background-color:rgba(241,241,241,0.5)}.Q1km-{color:inherit;line-height:1.2;position:absolute;bottom:0;left:0;padding:.625rem;padding-top:0;width:100%}.Q1km-._2_7sb{transform:scale(0.
|
|
35
|
+
._1MQy4{position:absolute;width:100%;height:100%;z-index:1;padding:.3125rem;color:#fff}._2obuZ{position:absolute;top:0;right:0;padding-top:.625rem;padding-right:.625rem;z-index:5;transform:translate3d(0, 0, 0)}._2obuZ ._1UfdO{background-color:rgba(241,241,241,0.5)}.Q1km-{color:inherit;line-height:1.2;position:absolute;bottom:0;left:0;padding:.625rem;padding-top:0;width:100%}.Q1km-._2_7sb{transform:scale(0.9);margin-left:-1rem;margin-bottom:-0.2rem}.Of_Cn::after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.5) 5%, rgba(0,0,0,0.4) 10%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.02) 60%, rgba(0,0,0,0) 80%)}.B9cJG{position:absolute;top:50%;left:50%;z-index:4;color:#fff;transform:translate3D(-50%, -50%, 0);transition:opacity 100ms ease-in-out;width:2.75rem;height:2.75rem}
|
|
38
36
|
|
|
39
37
|
._3nE2p{position:absolute;width:100%;height:100%;cursor:pointer;z-index:2;background-color:#333;opacity:0;transition:opacity 100ms ease-in-out}.KdGwU{width:3.75rem;height:3.75rem}.KdGwU,._1cBmC{position:absolute;top:50%;left:50%;z-index:4;color:#fff;opacity:0;transform:translate3D(-50%, -50%, 0);transition:opacity 100ms ease-in-out}._3si6K:hover ._3nE2p{opacity:0.5}._3si6K:hover ._1cBmC,._3si6K:hover .KdGwU{opacity:1}
|
|
40
38
|
|
|
41
|
-
._1JIh4{color:inherit;line-height:1.2;position:absolute;bottom:0;left:0;padding:.625rem;padding-top:0}._1OKu_{margin-top:.3125rem;line-height:1.2}._1BBKk{position:absolute;width:100%;height:100%;z-index:1;padding:.3125rem;color:#fff}._23tXc{position:absolute;top:0;right:0;padding-top:.625rem;padding-right:.625rem;z-index:5}._23tXc ._2lJ57{background-color:rgba(241,241,241,0.5)}._28ZUf{position:absolute;bottom:.3125rem;right:.3125rem}._1o4aT::after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.5) 5%, rgba(0,0,0,0.4) 10%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.02) 60%, rgba(0,0,0,0) 80%)}
|
|
39
|
+
._1JIh4{color:inherit;line-height:1.2;position:absolute;bottom:0;left:0;padding:.625rem;padding-top:0}._1OKu_{margin-top:.3125rem;line-height:1.2}._1BBKk{position:absolute;width:100%;height:100%;z-index:1;padding:.3125rem;color:#fff}._23tXc{position:absolute;top:0;right:0;padding-top:.625rem;padding-right:.625rem;z-index:5}._23tXc ._2lJ57{background-color:rgba(241,241,241,0.5)}._28ZUf{position:absolute;bottom:.3125rem;right:.3125rem}._3YP9l{position:absolute;bottom:0;left:0;right:0;height:0.25rem}._3YP9l+._28ZUf{bottom:.5625rem}._1o4aT::after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.5) 5%, rgba(0,0,0,0.4) 10%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.02) 60%, rgba(0,0,0,0) 80%)}
|
|
42
40
|
|
|
43
41
|
.yvetE{display:flex;flex-wrap:wrap}._1InnN{border-radius:.25rem}
|
|
44
42
|
|
|
@@ -50,7 +48,7 @@
|
|
|
50
48
|
|
|
51
49
|
._10Pgb:not(:last-child){margin-right:.625rem}
|
|
52
50
|
|
|
53
|
-
._8IgrO{width:25%}.q46rm{width:33.33333%}.IeeJA{transform:scale(1.
|
|
51
|
+
._8IgrO{width:25%}.q46rm{width:33.33333%}.IeeJA{transform:scale(1.15);z-index:10;border-radius:.5rem;position:relative}._1s6UK{transition:transform .2s ease}@media (max-width: 767px){._8IgrO{width:33.33333%}}@media (max-width: 575px){._8IgrO,.q46rm{width:50%}}@media (max-width: 0){._8IgrO,.q46rm{width:100%}}
|
|
54
52
|
|
|
55
53
|
._1Znll{width:0.75rem;height:0.75rem}
|
|
56
54
|
|
|
@@ -68,9 +66,15 @@
|
|
|
68
66
|
|
|
69
67
|
.VG65e{max-width:90%}@media (max-width: 1499px){.VG65e{max-width:100%}}
|
|
70
68
|
|
|
69
|
+
.V8i9e{padding:1.25rem;position:relative}._1HPtF{position:absolute;bottom:1.25rem;right:1.25rem}._1tEqa{width:25%;height:3.3rem;position:absolute;bottom:1.25rem;left:1.25rem}._1e5Lw{height:1.4rem;width:30%}._3tau7{display:inline-block;height:3rem;width:9rem;margin-left:.625rem}
|
|
70
|
+
|
|
71
71
|
._3X1Cy{height:2.25rem;width:4rem;padding-right:1rem}._2ptUi{height:2.25rem;width:9.1875rem;padding-right:2rem}._xR5L{height:2.25rem;width:9.625rem;display:inline-block}._1Aoj8{height:6rem}
|
|
72
72
|
|
|
73
73
|
.yq9UD{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem;border:2px solid #f1f1f1;border-top:1px solid #f1f1f1}.yq9UD ._2qv3A{max-height:2.4rem;min-height:2.4rem}.hVZjz{overflow:hidden;padding-bottom:100%;border-top-left-radius:.5rem;border-top-right-radius:.5rem;border:2px solid #f1f1f1;border-bottom:none}.TKEXX{position:absolute;top:0;bottom:0}.TKEXX img{height:100%;width:auto;margin-left:-21.875%}
|
|
74
74
|
|
|
75
75
|
._1_J-g{position:relative;width:100%;height:25.75rem;background-size:cover;background-repeat:no-repeat;background-position:top}._2lGAa{width:40%;position:absolute;left:3.75rem;bottom:4.25rem}.l9z_z{font-size:1.125rem}._1WkeY{width:35%;right:auto;margin:0 0 1.875rem 0;justify-content:left;left:3.75rem}._1WkeY .ERQVF{border-radius:50%;height:.625rem;width:.625rem}._2kV9l{height:25.75rem}
|
|
76
76
|
|
|
77
|
+
.HD1yl{padding-bottom:10rem}._1avTz{height:1rem}._33THd{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%}
|
|
78
|
+
|
|
79
|
+
._1X-lC{height:10rem}
|
|
80
|
+
|