@clickview/online 0.0.10-dev.0 → 0.0.10-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/en.json +1 -1
- package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +2 -0
- package/dist/libs/common/src/backbone/core/BaseAppRouter.d.ts +5 -1
- package/dist/libs/common/src/backbone/core/index.d.ts +1 -1
- package/dist/libs/common/src/backbone/utils/LocalStorageHelper.d.ts +1 -1
- package/dist/libs/common/src/react/flight/FlightHelpers.d.ts +1 -1
- package/dist/libs/common/src/react/hooks/UseViewModel.d.ts +5 -1
- package/dist/libs/common/src/react/utils/TimeHelper.d.ts +1 -0
- package/dist/libs/shared/src/apps/playlists/components/playlist-list/PlaylistItem.d.ts +1 -2
- package/dist/libs/shared/src/apps/playlists/components/sort-select/PlaylistSortSelect.d.ts +7 -0
- package/dist/libs/shared/src/apps/playlists/utils/PlaylistSortHelper.d.ts +2 -1
- package/dist/libs/shared/src/apps/playlists/utils/PlaylistStateUpdateHelper.d.ts +0 -2
- package/dist/libs/shared/src/apps/playlists/utils/RecentPlaylistHelper.d.ts +2 -4
- package/dist/libs/shared/src/apps/subjects/components/audience-filter/AudienceFilter.d.ts +3 -3
- package/dist/libs/shared/src/apps/subjects/components/coming-soon/ComingSoon.d.ts +1 -0
- package/dist/libs/shared/src/apps/subjects/hooks/useAudienceFilter.d.ts +10 -0
- package/dist/libs/shared/src/components/banner-header/BannerHeader.d.ts +1 -0
- package/dist/libs/shared/src/components/breadcrumbs/Breadcrumbs.d.ts +3 -1
- package/dist/libs/shared/src/components/search-bar/SearchBar.d.ts +10 -0
- package/dist/libs/shared/src/components/search-bar/SearchInput.d.ts +2 -1
- package/dist/libs/shared/src/components/spotlight/Spotlight.d.ts +12 -0
- package/dist/libs/shared/src/components/thumbnails/video/VideoThumbnail.d.ts +6 -5
- package/dist/libs/shared/src/components/widgets/dynamic-widget/DynamicWidget.d.ts +1 -1
- package/dist/libs/shared/src/components/widgets/items/video-widget-item/VideoWidgetItem.d.ts +2 -0
- package/dist/libs/shared/src/constants/BootstrapKeys.d.ts +1 -0
- package/dist/libs/shared/src/constants/SharedViewModelKeys.d.ts +4 -0
- package/dist/libs/shared/src/constants/WithStatements.d.ts +9 -0
- package/dist/libs/shared/src/enums/MediaQueries.d.ts +3 -1
- package/dist/libs/shared/src/enums/PermissionName.d.ts +23 -0
- package/dist/libs/shared/src/enums/ResourceFileType.d.ts +9 -0
- package/dist/libs/shared/src/enums/SettingName.d.ts +0 -1
- package/dist/libs/shared/src/flight-requests/PlaylistRequests.d.ts +3 -3
- package/dist/libs/shared/src/flight-requests/SettingRequests.d.ts +2 -1
- package/dist/libs/shared/src/flight-requests/UserRequests.d.ts +2 -0
- package/dist/libs/shared/src/interfaces/app-variables/BaseSearchAppVariables.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/collections/ClassificationCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/ClassroomCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/ClassroomGroupCollection.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/collections/InteractiveCollection.d.ts +2 -2
- package/dist/libs/shared/src/interfaces/collections/index.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/Classroom.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/models/ClassroomGroup.d.ts +18 -0
- package/dist/libs/shared/src/interfaces/models/Clip.d.ts +4 -3
- package/dist/libs/shared/src/interfaces/models/Curriculum.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/models/InteractiveMetadata.d.ts +14 -0
- package/dist/libs/shared/src/interfaces/models/Resource.d.ts +2 -2
- package/dist/libs/shared/src/interfaces/models/User.d.ts +4 -2
- package/dist/libs/shared/src/interfaces/models/Video.d.ts +6 -2
- package/dist/libs/shared/src/interfaces/models/VideoHistory.d.ts +4 -1
- package/dist/libs/shared/src/interfaces/models/Widget.d.ts +1 -1
- package/dist/libs/shared/src/interfaces/models/YearGroup.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/index.d.ts +5 -1
- package/dist/libs/shared/src/interfaces/models/interactive/ActionableItem.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/interactive/Interaction.d.ts +16 -0
- package/dist/libs/shared/src/interfaces/models/interactive/InteractionType.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/interactive/InteractionTypeId.d.ts +8 -0
- package/dist/libs/shared/src/interfaces/models/interactive/Interactive.d.ts +7 -0
- package/dist/libs/shared/src/interfaces/models/interactive/Timepoint.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/models/interactive/index.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/models/primitives/BaseObject.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/models/primitives/VirtualObject.d.ts +5 -0
- package/dist/libs/shared/src/interfaces/models/primitives/index.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/requests/CreateOrUpdateClipRequest.d.ts +6 -0
- package/dist/libs/shared/src/interfaces/requests/CreateViewKeyRequest.d.ts +0 -2
- package/dist/libs/shared/src/interfaces/requests/index.d.ts +1 -0
- package/dist/libs/shared/src/utils/FavouriteHelpers.d.ts +30 -0
- package/dist/libs/shared/src/utils/RecentItemHelper.d.ts +11 -0
- package/dist/libs/shared/src/utils/UserHelper.d.ts +0 -3
- package/dist/libs/shared/src/utils/VideoDetailsHelper.d.ts +0 -9
- package/dist/libs/shared/src/utils/VideoHelper.d.ts +5 -0
- package/dist/online-app.css +19 -15
- package/dist/online-app.js +5 -5
- package/dist/projects/online/src/apps/content-updates/components/index.d.ts +1 -1
- package/dist/projects/online/src/apps/playlists/components/left-nav/LeftNav.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/components/left-nav/left-nav-item/LeftNavItem.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/components/playlist-header/PlaylistHeader.d.ts +1 -0
- package/dist/projects/online/src/apps/playlists/components/playlist-list-header/PlaylistListHeader.d.ts +0 -1
- package/dist/projects/online/src/apps/playlists/filters/MigrationFilter.d.ts +1 -1
- package/dist/projects/online/src/apps/playlists/views/playlists/PlaylistsView.d.ts +1 -1
- package/dist/projects/online/src/index.d.ts +4 -2
- package/dist/projects/online/src/shared/constants/Actions.d.ts +1 -2
- package/dist/projects/online/src/shared/hooks/UseSetOnlinePageTitle.d.ts +1 -0
- package/dist/projects/online/src/shared/utils/OnlineHelper.d.ts +1 -0
- package/dist/projects/online/src/styles/index.d.ts +1 -0
- package/package.json +4 -4
- package/dist/libs/shared/src/apps/subjects/hooks/useAudienceParams.d.ts +0 -5
- package/dist/libs/shared/src/apps/subjects/reducers/AudienceReducer.d.ts +0 -11
- package/dist/libs/shared/src/enums/PlayerMediaType.d.ts +0 -4
- package/dist/libs/shared/src/interfaces/models/Interactive.d.ts +0 -9
- package/dist/libs/shared/src/utils/CollectionHelper.d.ts +0 -16
- package/dist/projects/online/src/apps/playlists/components/legacy-playlist-list/LegacyPartialPlaylistList.d.ts +0 -2
- package/dist/projects/online/src/apps/playlists/components/legacy-playlist-list/LegacyPlaylistItem.d.ts +0 -7
- package/dist/projects/online/src/apps/playlists/components/legacy-playlist-list/LegacyPlaylistList.d.ts +0 -7
- /package/dist/projects/online/src/apps/content-updates/components/classification-banner/{ClassifictionBannerContainer.d.ts → ClassificationBanner.d.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { BasePaginatedCollection } from "./..";
|
|
2
|
-
import {
|
|
3
|
-
export interface InteractiveCollection extends BasePaginatedCollection<
|
|
2
|
+
import { InteractiveMetadata } from "./..";
|
|
3
|
+
export interface InteractiveCollection extends BasePaginatedCollection<InteractiveMetadata> {
|
|
4
4
|
}
|
|
@@ -20,3 +20,6 @@ export * from './ClipCollection';
|
|
|
20
20
|
export * from './FolderCollection';
|
|
21
21
|
export * from './CustomerCollection';
|
|
22
22
|
export * from './SubtitleCollection';
|
|
23
|
+
export * from './ClassificationCollection';
|
|
24
|
+
export * from './ClassroomCollection';
|
|
25
|
+
export * from './ClassroomGroupCollection';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { BaseObject, UserCollection } from "./..";
|
|
2
|
+
export declare enum ClassroomGroupColour {
|
|
3
|
+
White = "colour:0",
|
|
4
|
+
Pink = "colour:1",
|
|
5
|
+
Pizazz = "colour:2",
|
|
6
|
+
Emerald = "colour:3",
|
|
7
|
+
PuertoRico = "colour:4",
|
|
8
|
+
PictonBlue = "colour:5",
|
|
9
|
+
EastSide = "colour:6",
|
|
10
|
+
Portage = "colour:7"
|
|
11
|
+
}
|
|
12
|
+
export interface ClassroomGroup extends BaseObject {
|
|
13
|
+
description: string;
|
|
14
|
+
metadata: {
|
|
15
|
+
colour: ClassroomGroupColour;
|
|
16
|
+
};
|
|
17
|
+
users?: UserCollection;
|
|
18
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { BaseObject, User } from "./..";
|
|
1
|
+
import { BaseObject, User, Video } from "./..";
|
|
2
2
|
export interface Clip extends BaseObject {
|
|
3
|
-
description
|
|
3
|
+
description?: string;
|
|
4
4
|
startTime: number;
|
|
5
5
|
endTime: number;
|
|
6
|
-
owner
|
|
6
|
+
owner?: User;
|
|
7
|
+
video?: Video;
|
|
7
8
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CurriculumType } from "../../enums/CurriculumType";
|
|
2
|
+
import { VirtualObject } from './primitives/VirtualObject';
|
|
2
3
|
export interface Curriculum<T = CurriculumType> {
|
|
3
4
|
backboneClassificationIds: number[];
|
|
4
5
|
canBePreferred: boolean;
|
|
@@ -12,3 +13,6 @@ export interface Curriculum<T = CurriculumType> {
|
|
|
12
13
|
slug: string;
|
|
13
14
|
type: T;
|
|
14
15
|
}
|
|
16
|
+
export interface CurriculumLinks extends VirtualObject {
|
|
17
|
+
value: Curriculum[][];
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BaseObject, VirtualObject } from "./..";
|
|
2
|
+
import { User } from './User';
|
|
3
|
+
import { Thumbnail } from './Thumbnail';
|
|
4
|
+
import { Video } from './Video';
|
|
5
|
+
export interface InteractiveMetadata extends BaseObject {
|
|
6
|
+
interactiveId: string;
|
|
7
|
+
owner: User;
|
|
8
|
+
description?: string;
|
|
9
|
+
thumbnail?: Thumbnail;
|
|
10
|
+
video?: Video;
|
|
11
|
+
}
|
|
12
|
+
export interface HasInteractive extends VirtualObject {
|
|
13
|
+
value: boolean;
|
|
14
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BaseObject } from './primitives';
|
|
2
2
|
import { Thumbnail } from './Thumbnail';
|
|
3
|
-
import {
|
|
3
|
+
import { ResourceFileType } from "../../enums/ResourceFileType";
|
|
4
4
|
import { Pdf } from './Pdf';
|
|
5
5
|
export declare type ResourceType = 'teacher-pack' | 'student-activity' | 'additional-materials' | 'atom-guide';
|
|
6
6
|
interface ResourceMetadata {
|
|
7
|
-
type:
|
|
7
|
+
type: ResourceFileType;
|
|
8
8
|
resourceType?: ResourceType;
|
|
9
9
|
}
|
|
10
10
|
export interface Resource extends BaseObject {
|
|
@@ -5,7 +5,8 @@ import { OnlineUserRole } from "../../enums/UserRole";
|
|
|
5
5
|
import { UserGroup } from "../../enums/UserGroup";
|
|
6
6
|
import { ObjectStatus } from "../../enums/ObjectStatus";
|
|
7
7
|
import { CustomerCollection } from '../collections';
|
|
8
|
-
|
|
8
|
+
import { YearGroup } from './YearGroup';
|
|
9
|
+
export declare type OnlineYearGroup = 'Kindergarten' | 'Year 1' | 'Year 2' | 'Year 3' | 'Year 4' | 'Year 5' | 'Year 6' | 'Year 7' | 'Year 8' | 'Year 9' | 'Year 10' | 'Year 11' | 'Year 12' | 'Year 13' | 'Staff';
|
|
9
10
|
/**
|
|
10
11
|
* Master User
|
|
11
12
|
*/
|
|
@@ -19,7 +20,8 @@ export interface User extends BaseObject {
|
|
|
19
20
|
status: ObjectStatus;
|
|
20
21
|
role: UserRole;
|
|
21
22
|
customers: CustomerCollection;
|
|
22
|
-
yearGroup:
|
|
23
|
+
yearGroup: OnlineYearGroup;
|
|
24
|
+
masterYearGroup: YearGroup;
|
|
23
25
|
userType: UserGroup;
|
|
24
26
|
avatar?: Avatar;
|
|
25
27
|
isPrimaryContact: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseObject, CompanyCollection, PersonCollection, CategoryCollection, Channel, InteractiveCollection, LibraryCollection, Rating, Series, Thumbnail, TagCollection, Season, AudienceCollection, ResourceCollection, LinkCollection, ClipCollection, Glance, HeroBanner, RestrictedObject } from "./..";
|
|
1
|
+
import { BaseObject, CompanyCollection, PersonCollection, CategoryCollection, Channel, InteractiveCollection, LibraryCollection, Rating, Series, Thumbnail, TagCollection, Season, AudienceCollection, ResourceCollection, LinkCollection, ClipCollection, Glance, HeroBanner, RestrictedObject, VideoProgress, UserCollection, HasInteractive, CurriculumLinks } from "./..";
|
|
2
2
|
export interface Video extends BaseObject {
|
|
3
3
|
categories?: CategoryCollection;
|
|
4
4
|
channel?: Channel;
|
|
@@ -22,9 +22,13 @@ export interface Video extends BaseObject {
|
|
|
22
22
|
clips?: ClipCollection;
|
|
23
23
|
links?: LinkCollection;
|
|
24
24
|
glance?: Glance;
|
|
25
|
-
isFavourited?: boolean;
|
|
26
25
|
hasSubtitle?: boolean;
|
|
27
26
|
heroBanner?: HeroBanner;
|
|
28
27
|
restrictions?: RestrictedObject[];
|
|
29
28
|
lastProgressPoint?: number;
|
|
29
|
+
favouritedBy?: UserCollection;
|
|
30
|
+
_hasinteractives?: HasInteractive;
|
|
31
|
+
_videoprogress?: VideoProgress;
|
|
32
|
+
_hasCurriculumLinks?: boolean;
|
|
33
|
+
_curriculumLinks?: CurriculumLinks;
|
|
30
34
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseObject } from './primitives';
|
|
1
|
+
import { BaseObject, VirtualObject } from './primitives';
|
|
2
2
|
export interface VideoHistory extends Omit<BaseObject, 'id' | 'name'> {
|
|
3
3
|
videoId: string;
|
|
4
4
|
userId: string;
|
|
@@ -7,3 +7,6 @@ export interface VideoHistory extends Omit<BaseObject, 'id' | 'name'> {
|
|
|
7
7
|
lastTimeWatched: string;
|
|
8
8
|
lastProgressPoint: number;
|
|
9
9
|
}
|
|
10
|
+
export interface VideoProgress extends VirtualObject {
|
|
11
|
+
progress: number;
|
|
12
|
+
}
|
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
export * from './primitives';
|
|
2
|
+
export * from './interactive';
|
|
2
3
|
export * from './Audience';
|
|
3
4
|
export * from './Avatar';
|
|
4
5
|
export * from './Banner';
|
|
5
6
|
export * from './Category';
|
|
6
7
|
export * from './Channel';
|
|
8
|
+
export * from './Classroom';
|
|
9
|
+
export * from './ClassroomGroup';
|
|
7
10
|
export * from './Config';
|
|
8
11
|
export * from './Cover';
|
|
9
12
|
export * from './Curriculum';
|
|
10
13
|
export * from './EntitySetting';
|
|
11
14
|
export * from './HeroBanner';
|
|
12
15
|
export * from './Image';
|
|
13
|
-
export * from './
|
|
16
|
+
export * from './InteractiveMetadata';
|
|
14
17
|
export * from './Library';
|
|
15
18
|
export * from './Playlist';
|
|
16
19
|
export * from './Rating';
|
|
@@ -51,3 +54,4 @@ export * from './Subtitle';
|
|
|
51
54
|
export * from './Language';
|
|
52
55
|
export * from './FileUpload';
|
|
53
56
|
export * from './PlayerViewKey';
|
|
57
|
+
export * from './YearGroup';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { HashObject } from "../../../../../common/src/react/interfaces/HashObject";
|
|
2
|
+
import { ActionableItem } from './ActionableItem';
|
|
3
|
+
import { InteractionType } from './InteractionType';
|
|
4
|
+
import { InteractionTypeId } from './InteractionTypeId';
|
|
5
|
+
import { BaseObject } from '../primitives';
|
|
6
|
+
export interface Interaction extends Omit<BaseObject, 'type'> {
|
|
7
|
+
typeId: InteractionTypeId;
|
|
8
|
+
type: InteractionType;
|
|
9
|
+
timepointId: string;
|
|
10
|
+
order: number;
|
|
11
|
+
interactiveId: string;
|
|
12
|
+
errorMessage?: string;
|
|
13
|
+
description?: string;
|
|
14
|
+
data: HashObject;
|
|
15
|
+
actionableItems?: ActionableItem[];
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseObject } from "../primitives/BaseObject";
|
|
2
|
+
import { Interaction } from './Interaction';
|
|
3
|
+
export interface Timepoint extends BaseObject {
|
|
4
|
+
interactiveId: string;
|
|
5
|
+
shouldPause: number;
|
|
6
|
+
visibleAt: number;
|
|
7
|
+
visibleFor?: number;
|
|
8
|
+
interactions?: Interaction[];
|
|
9
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { HashObject } from "../../../common/src/react/interfaces/HashObject";
|
|
2
|
+
import { User } from '../interfaces';
|
|
3
|
+
export declare const FavouriteHelper: {
|
|
4
|
+
/**
|
|
5
|
+
* This helper is based on a *critical* assumption that the with statement
|
|
6
|
+
* retrieving the favouritedBy collection uses a filter for the current user's id.
|
|
7
|
+
*
|
|
8
|
+
* The reason we're not passing the current user as an arg is that we would need to
|
|
9
|
+
* drill the user object all the way down to low level componenets.
|
|
10
|
+
*
|
|
11
|
+
* @param object
|
|
12
|
+
*/
|
|
13
|
+
isFavouritedByCurrentUser(object: HashObject<any>): boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Determine whether the user has favourited the object
|
|
16
|
+
*
|
|
17
|
+
* @param object
|
|
18
|
+
*/
|
|
19
|
+
isFavouritedByUser(object: HashObject<any>, user: User): boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Determine whether the object can be favourited.
|
|
22
|
+
*
|
|
23
|
+
* Based on the premise that the existence of the assoc property means that the object
|
|
24
|
+
* does support being favourited. Ensure that your with statement is correctly retrieving
|
|
25
|
+
* the favouritedBy assoc.
|
|
26
|
+
*
|
|
27
|
+
* @param object
|
|
28
|
+
*/
|
|
29
|
+
canFavourite(object: HashObject<any>): boolean;
|
|
30
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { StorageHelper } from "../../../common/src/backbone/utils/LocalStorageHelper";
|
|
2
|
+
interface AddRecentItemOptions {
|
|
3
|
+
id: string;
|
|
4
|
+
limit?: number;
|
|
5
|
+
}
|
|
6
|
+
export declare const RecentItemHelper: {
|
|
7
|
+
getRecentItem(cacheKey: string, dataSource: StorageHelper): string[];
|
|
8
|
+
setRecentItem(cacheKey: string, ids: string[], dataSource: StorageHelper): void;
|
|
9
|
+
addRecentItem(cacheKey: string, dataSource: StorageHelper, options: AddRecentItemOptions): string[];
|
|
10
|
+
};
|
|
11
|
+
export {};
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import { UserGroup } from "../enums/UserGroup";
|
|
2
|
-
import { YearGroup } from "../interfaces";
|
|
3
1
|
export declare const UserHelper: {
|
|
4
2
|
getInitials(firstName: string, lastName: string): string;
|
|
5
|
-
getAvailableYearGroups(countryCode: string, userType: UserGroup): YearGroup[];
|
|
6
3
|
};
|
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
import { Library, Video } from "../interfaces";
|
|
2
2
|
import { MasterObjectTypes } from "../enums/MasterObjectTypes";
|
|
3
|
-
export declare enum FileType {
|
|
4
|
-
Pdf = "pdf",
|
|
5
|
-
Image = "image",
|
|
6
|
-
PowerPoint = "powerpoint",
|
|
7
|
-
Document = "document",
|
|
8
|
-
Excel = "excel",
|
|
9
|
-
Zip = "archive",
|
|
10
|
-
File = "text"
|
|
11
|
-
}
|
|
12
3
|
export declare const VideoDetailsHelper: {
|
|
13
4
|
mapRatingToClass(ratingValue: number): string;
|
|
14
5
|
mapSourceToDisplayName(library: Library): string;
|
package/dist/online-app.css
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
.cv-icon-button{margin-left:1rem;padding-left:3.2rem !important;padding-right:1.2rem}.cv-icon-button .std{left:.6rem !important;width:2rem;height:2rem;margin-top:-1rem !important}
|
|
2
|
+
|
|
1
3
|
._Sfw5 .alert-region{position:relative}._Sfw5 .alert-region ul{bottom:0;right:1.25rem;position:fixed;list-style-type:none}
|
|
2
4
|
|
|
3
5
|
._3OUhC{width:1.5rem;height:1.5rem;position:absolute}._3t3VL{vertical-align:top;position:relative}._3t3VL._2KLHo{padding-left:36px;white-space:nowrap}._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)}
|
|
@@ -6,7 +8,7 @@
|
|
|
6
8
|
|
|
7
9
|
._286KF{position:absolute;bottom:1.25rem;right:1.25rem}._3TSgh{max-height:4.8rem;word-break:break-word}
|
|
8
10
|
|
|
9
|
-
._2_mFA{width:25%}._2_mFA h1{height:2.4rem}._4eCbo{
|
|
11
|
+
._2_mFA{width:25%}._2_mFA h1{height:2.4rem}._4eCbo{padding:2rem}._4eCbo ._2JckH h1{font-size:2.4rem;margin:0;word-break:break-word}._4eCbo::after{content:"";clear:both;display:table}._2WBLn{float:right}._3YWHl .dropdown-toggle,._2WBLn .dropdown-toggle{padding:0;margin-left:1rem;height:100%}._3HWMX,._3xry5{margin-top:1rem}.A7JOJ{display:flex;align-items:center;margin:0;position:absolute;top:15px;left:15px;color:#fff}.A7JOJ:hover{text-decoration:underline}._3lrGQ{display:flex;align-items:center;padding-bottom:.3125rem;color:#979797;transform:translateX(-.3125rem)}._3lrGQ:hover{text-decoration:underline}._1C-uu{height:1.4rem;width:30%}._3fZ4_{display:inline-block;height:3rem;width:9rem;margin-left:1rem}
|
|
10
12
|
|
|
11
13
|
._3eqgp{min-height:70vh}
|
|
12
14
|
|
|
@@ -24,15 +26,13 @@
|
|
|
24
26
|
|
|
25
27
|
._6o0Z2{padding-bottom:100%}._2JLPt::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%)}._3MCKL{position:absolute;left:.625rem;right:.625rem;bottom:.625rem;z-index:1}._3MCKL ._1Ukz7{display:block;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;word-break:break-word}._13tO6{height:2rem;width:17rem}.CwjTl{position:absolute;right:.625rem;top:.625rem;z-index:1;width:3rem;height:3rem}
|
|
26
28
|
|
|
27
|
-
.xaJc0{position:relative;padding-bottom:1rem}.xaJc0 h1{font-size:1.6rem;line-height:3rem;margin:0}.BHhcf{float:right}.
|
|
28
|
-
|
|
29
|
-
._3_HvF{padding-top:1.25rem}._2WwOM{float:right}._2WwOM .show{display:block}._1L-T5{padding:0;background-color:transparent !important;border:none !important;color:#979797}
|
|
29
|
+
.xaJc0{position:relative;padding-bottom:1rem}.xaJc0 h1{font-size:1.6rem;line-height:3rem;margin:0}.BHhcf{float:right}._2Ldf8,._2VJVr{margin-left:1rem}._2Ldf8{padding:0;height:3rem}._2VJVr .dropdown-toggle{padding-left:1.2rem;padding-right:1.2rem}._2VJVr .dropdown-toggle::after{display:inline-block;content:'';width:0;height:0;margin-left:0.5rem;margin-left:0.6rem;vertical-align:0.1rem;border-top:0.5rem solid;border-right:0.5rem solid transparent;border-left:0.5rem solid transparent}._2hy6F{width:25%}._2hy6F h1{height:3rem}._2DiYF{display:inline-block;height:3rem;width:9rem;margin-left:1rem}
|
|
30
30
|
|
|
31
|
-
._1GNc4{margin:
|
|
31
|
+
.tjtmr>.row{margin:0 -1rem}._1GNc4{margin:1rem 0;padding:0 1rem}._1GNc4 a{color:#fff}._1GNc4 h5{font-size:2.1rem;margin:0}._1GNc4 .audience-label{padding:.25rem 1rem;margin:.5rem 0}._3KJuQ{margin:1rem}._3EMA5{background-color:#4E9ACE}.TwV9j{background-color:#6bbfca}._3Rfa2{background-color:#FFCD52}._YAdT{background-color:#F7847B}._8IqB3{background-color:#51ADA3}.mjDAH{background-color:#605DB4}._2lw5O{background-color:#BB8EC7}._17Eh6{background-color:#60B789}
|
|
32
32
|
|
|
33
33
|
._3PyFK{position:absolute;top:50%;left:1.25rem;transform:translateY(-50%);height:100%;width:3rem}._2qsr-{position:absolute;top:50%;transform:translateY(-50%);height:1rem;width:1rem}._2qsr- svg{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;height:100%}.Egane{height:100%;width:100%;background-color:#7A76E8;border-radius:50%;display:inline-block}
|
|
34
34
|
|
|
35
|
-
._3A1z7{position:relative;padding:.5rem 1rem;line-height:2.4rem}._1orYF{display:block;margin
|
|
35
|
+
._3A1z7{position:relative;padding:.5rem 1rem;line-height:2.4rem}._1orYF{display:block;margin:0 2rem;word-break:break-word}._1N9oK{position:absolute;top:.5rem;right:1rem}._1N9oK .dropdown{display:none}._1N9oK .show{display:block}.E1Yrs{padding:0;background-color:transparent !important;border:none !important;color:#979797}._3A1z7:hover .dropdown{display:block}
|
|
36
36
|
|
|
37
37
|
._3p-bQ{padding:0 1.25rem !important}
|
|
38
38
|
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
|
|
49
49
|
._1SFgo{color:inherit;font-size:.78571em}._1SFgo:hover ._2iyL0{text-decoration:underline}
|
|
50
50
|
|
|
51
|
-
._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}
|
|
52
|
-
|
|
53
|
-
._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}
|
|
54
|
-
|
|
55
51
|
._1orVM{position:absolute;top:50%;transform:translateY(-50%);left:0.5rem;right:0.5rem;background-color:#fff;height:.15rem;border-radius:.15rem}.H5qiB{border-radius:.15rem;background-color:#4E9ACE;position:absolute;height:100%}._2q0q5,._3YlVt,._29iun{position:absolute;top:50%;transform:translateY(-50%);width:0.2rem;height:0.66667rem;border-radius:0.2rem}._3YlVt{left:0}._29iun{right:0}
|
|
56
52
|
|
|
57
53
|
._3R_jy{position:absolute;top:50%;transform:translateY(-50%);left:0.5rem;right:0.5rem;background-color:#fff;height:.2rem;border-radius:.2rem}._3R_jy._1sl_Q{background-color:#fff}._3R_jy._15A86{background-color:#eaeaea}._2LSyV{position:absolute;top:50%;transform:translateY(-50%);width:0.2rem;height:0.5rem;border-radius:0.2rem}
|
|
58
54
|
|
|
55
|
+
._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}._1EuSH{position:absolute;bottom:0;left:0;right:0;height:.25rem}._1EuSH+._10TYY{bottom:.5625rem}._3QyHR,._1KUiQ{position:absolute;bottom:0;left:0;right:0;background-color:#1B2D71;height:1.25rem;opacity:.9}._3QyHR+._10TYY,._1KUiQ+._10TYY{bottom:1.5625rem}
|
|
56
|
+
|
|
57
|
+
._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}
|
|
58
|
+
|
|
59
59
|
._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}._1PMuv{position:absolute;bottom:0;left:0;right:0;height:.25rem}._1PMuv+._28ZUf{bottom:.5625rem}._3rsmD,._1fES_{position:absolute;bottom:0;left:0;right:0;background-color:#1B2D71;height:1.25rem;opacity:.9}._3rsmD+._28ZUf,._1fES_+._28ZUf{bottom:1.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%)}
|
|
60
60
|
|
|
61
61
|
.yvetE{display:flex;flex-wrap:wrap}._3ZfKv{background-color:#f1f1f1;color:#B5B5B5}._3ZfKv:hover{background-color:#f1f1f1;color:#B5B5B5}
|
|
@@ -106,15 +106,15 @@
|
|
|
106
106
|
|
|
107
107
|
.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%}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){.TKEXX img{margin-left:-10%}}
|
|
108
108
|
|
|
109
|
+
._2LCWy{z-index:1010}._2yXuY{z-index:1020;transform:translateX(1.875rem);margin-left:-3.75rem;padding:0 1.875rem;border-radius:1rem}._3qk29{position:absolute;left:0;max-width:60%;border-radius:1rem}._3JICx{font-size:1.25rem;font-weight:500}@media (max-width: 499px){._3JICx{font-size:1.125rem;font-weight:500}}._3wqEj{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%;z-index:1000}
|
|
110
|
+
|
|
109
111
|
._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:flex-start;left:3.75rem}._1WkeY .ERQVF{border-radius:50%;height:.625rem;width:.625rem}._2kV9l{height:25.75rem}
|
|
110
112
|
|
|
111
113
|
.u0IPv{width:6rem}._2OjUz{width:4rem;height:4rem;display:flex;justify-content:center;align-items:center}._1vUhp{background-color:#60B789;border:5px solid #fff;color:#fff}
|
|
112
114
|
|
|
113
115
|
._4hF1C{height:1rem}._3nPRd{position:absolute;top:0;bottom:0;left:0;background-image:linear-gradient(to right, #4dd782, #6bbfca)}
|
|
114
116
|
|
|
115
|
-
._2LrDT{background-color:#
|
|
116
|
-
|
|
117
|
-
._29t8W{z-index:1010}._3Ck7-{z-index:1020;transform:translateX(1.875rem);margin-left:-3.75rem;padding:0 1.875rem;border-radius:1rem}._30kiN{position:absolute;top:-8.825rem;left:0;max-width:60%;height:8.2rem;border-radius:1rem}@media (max-width: 697px){._30kiN{height:9.2rem;top:-9.825rem}}@media (max-width: 499px){._30kiN{max-width:75%}}@media (max-width: 403px){._30kiN{height:10.2rem;top:-10.825rem}}._3zKZE{font-size:1.25rem;font-weight:500}@media (max-width: 499px){._3zKZE{font-size:1.125rem;font-weight:500}}
|
|
117
|
+
._2LrDT{background-color:#ECFDFF;border-radius:0.5rem;padding:1.25rem}._34z_v{width:50%;padding:0 .3125rem}@media (max-width: 992px){._34z_v{width:70%}}@media (max-width: 800px){._34z_v{width:60%}}@media (max-width: 576px){._34z_v{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}}._2sJ9h{display:flex;align-items:flex-start;width:50%;margin-top:1.25rem;padding:0 .3125rem}@media (max-width: 992px){._2sJ9h{width:30%;justify-content:center;align-items:center;margin:0}}@media (max-width: 800px){._2sJ9h{width:40%;justify-content:flex-end}}.opjqI{font-weight:700;font-size:1.25rem}@media (max-width: 800px){.opjqI{font-size:1.125rem;font-weight:500}}@media (max-width: 576px){.opjqI{text-align:center;font-size:1.25rem}}@media (max-width: 576px){._2-gez{text-align:center}}@media (max-width: 649px){.rh96M{display:none}}._3vDa6{width:50%}@media (max-width: 576px){._3vDa6{width:90%}}._26mBM{padding:0 1.25rem}@media (max-width: 1200px){._26mBM{padding:0 .3125rem}}@media (max-width: 992px){._26mBM{display:none}}
|
|
118
118
|
|
|
119
119
|
._30U3G{padding-bottom:10rem}._30U3G:hover{opacity:.95}.ZCDEq{background-color:#4E9ACE}._3sa05{height:1rem}._21yyN{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%}
|
|
120
120
|
|
|
@@ -122,11 +122,15 @@
|
|
|
122
122
|
|
|
123
123
|
._2il2i{margin:0}._2il2i a{color:#777}._2il2i a:hover{color:#F8981D;text-decoration:none}._3oPrw{display:inline-block;width:13.125rem;padding:0.4375rem 1.25rem;line-height:0.875rem;border-radius:0.125rem;background-color:#F8981D;border:1px solid #F8981D}._3oPrw a:hover{text-decoration:none}._3zAfP{margin-left:14.375rem}
|
|
124
124
|
|
|
125
|
-
.
|
|
125
|
+
.f6lVD{background-color:#f8f8f8}
|
|
126
|
+
|
|
127
|
+
._3-Sp5{border:0.125rem dashed #f1f1f1;border-radius:.25rem;position:relative}.TuDHp{display:none}._3Dz1H{position:relative}._3Dz1H ._3-Sp5{border-color:#F8981D}._3Dz1H .TuDHp h3{position:absolute;top:50%;width:100%;text-align:center;margin-top:-1rem}._3Dz1H .TuDHp{display:block;position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,0.6)}
|
|
126
128
|
|
|
127
129
|
.QNFLR{width:1.5rem;height:1.5rem}._1q_ig{height:0.1875rem}
|
|
128
130
|
|
|
129
|
-
._186X3{width:1.5rem;height:1.5rem}._3_l1b{cursor:pointer}
|
|
131
|
+
._2GdEa{background-color:#f8f8f8}._186X3{width:1.5rem;height:1.5rem}._3_l1b{cursor:pointer}
|
|
132
|
+
|
|
133
|
+
._1wmT9{background-color:#f8f8f8}
|
|
130
134
|
|
|
131
135
|
.-L0yF: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}._1wn3m:hover ._1BwBs{color:#313543 !important}.qxZOe{padding-left:2.25rem}._3U4W-{padding-right:2.25rem}._2rgzF{padding-right:2.25rem}._1DLw5{position:absolute;top:50%;transform:translateY(-50%)}.AZCtZ{left:.375rem}._1R52s{right:.375rem}
|
|
132
136
|
|