@clickview/player 0.0.24 → 0.0.25-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/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +4 -2
- package/dist/libs/common/src/react/utils/ArrayHelper.d.ts +2 -1
- package/dist/libs/shared/src/enums/SettingName.d.ts +4 -0
- package/dist/libs/shared/src/interfaces/DefaultPlaybackQuality.d.ts +1 -0
- package/dist/libs/shared/src/interfaces/index.d.ts +1 -0
- package/dist/player-app.js +1 -1
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-item.d.ts +3 -3
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-items.d.ts +3 -3
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-load-progress.d.ts +3 -3
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-play-progress.d.ts +3 -3
- package/dist/projects/player/src/components/chapters-button/chapter-menu-item.d.ts +3 -3
- package/dist/projects/player/src/components/landing-splash/landing-splash.d.ts +3 -3
- package/dist/projects/player/src/components/landing-splash/metadata/splash-metadata.d.ts +3 -3
- package/dist/projects/player/src/components/landing-splash/metadata/splash-title/splash-title.d.ts +3 -3
- package/dist/projects/player/src/components/landing-splash/metadata/splash-warning/splash-warning.d.ts +3 -3
- package/dist/projects/player/src/components/subs-caps-button/SubCapsMenuItem.d.ts +3 -3
- package/dist/projects/player/src/components/subs-caps-button/subtitle-search-menu-item.d.ts +3 -3
- package/dist/projects/player/src/components/subs-caps-button/subtitle-size-menu-item.d.ts +3 -3
- package/dist/projects/player/src/components/text-track-settings/text-track-settings.d.ts +3 -3
- package/dist/projects/player/src/components/thumbnail-display/thumbnail-display.d.ts +3 -3
- package/dist/projects/player/src/plugins/chromecast-plugin/session-manager.d.ts +3 -3
- package/dist/projects/player/src/plugins/chromecast-plugin/tech/chromecast-tech-ui/chromecast-tech-ui.d.ts +3 -3
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector-handle.d.ts +3 -3
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector.d.ts +3 -3
- package/dist/projects/player/src/plugins/create-clip-plugin/components/create-clip-progress-indicator/create-clip-progress-indicator.d.ts +3 -3
- package/dist/projects/player/src/plugins/engagement-overlay-plugin/components/engagement-overlay/engagement-overlay.d.ts +3 -3
- package/dist/projects/player/src/plugins/interactive-plugin/components/seek-bar/interactive-bar-items.d.ts +3 -3
- package/dist/projects/player/src/plugins/points-of-interest-plugin/components/point-of-interest-indicator/point-of-interest-indicator.d.ts +3 -3
- package/dist/projects/player/src/plugins/progress-reporter-plugin/components/progress-reporter-display.d.ts +3 -3
- package/dist/projects/player/src/plugins/touch-controls-plugin/components/touch-controls/touch-controls.d.ts +3 -3
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-handle/drag-handle.d.ts +3 -3
- package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-targets/drag-targets.d.ts +3 -3
- package/package.json +3 -3
|
@@ -199,6 +199,7 @@ export declare enum LocationContext {
|
|
|
199
199
|
ClipListItem = "clip_list_item",
|
|
200
200
|
ContentUpdatesClassificationBanner = "content_updates_classification_banner",
|
|
201
201
|
PreferencesSettings = "preferences_settings",
|
|
202
|
+
TopicsOnboarding = "topics_onboarding",
|
|
202
203
|
MyUploads = "my_uploads",
|
|
203
204
|
SlidingList = "sliding_list",
|
|
204
205
|
HeroBannerItem = "hero_banner_item",
|
|
@@ -208,15 +209,16 @@ export declare enum LocationContext {
|
|
|
208
209
|
ClassificationHero = "classification_hero",
|
|
209
210
|
Dashboard = "dashboard",
|
|
210
211
|
ProductBanner = "product_banner",
|
|
211
|
-
Settings = "settings",
|
|
212
212
|
UserOptions = "user_options",
|
|
213
|
+
Settings = "settings",
|
|
213
214
|
StudentFeed = "student_feed",
|
|
214
215
|
SharedByMe = "shared_by_me",
|
|
215
216
|
SharedWithMe = "shared_with_me",
|
|
216
217
|
TopVideos = "top_videos",
|
|
217
218
|
VideoViewsList = "video_views_list",
|
|
218
219
|
LiteUpgradeFeedbackPopup = "lite_upgrade_feedback_popup",
|
|
219
|
-
LiteUpgradeBanner = "lite_upgrade_banner"
|
|
220
|
+
LiteUpgradeBanner = "lite_upgrade_banner",
|
|
221
|
+
LiteUpgradeOnboarding = "lite_upgrade_onboarding"
|
|
220
222
|
}
|
|
221
223
|
export declare enum WorkflowPhase {
|
|
222
224
|
Start = "start",
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import * as _ from 'underscore';
|
|
2
3
|
import { HashObject } from '../interfaces';
|
|
3
4
|
declare type Iterator<T, TResult = T> = (value: T, index: number, list: T[]) => TResult;
|
|
@@ -27,7 +28,7 @@ export declare const ArrayHelper: {
|
|
|
27
28
|
* @param arr array of values
|
|
28
29
|
* @param value value to be added or removed.
|
|
29
30
|
*/
|
|
30
|
-
addOrRemove<T_15 =
|
|
31
|
+
addOrRemove<T_15 = import("react").Key>(arr: T_15[], value: T_15): T_15[];
|
|
31
32
|
/**
|
|
32
33
|
* This is the same addOrRemove function above, except it doesn't mutate the array in the argument
|
|
33
34
|
* and returns a branch new array.
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
import { EntitySetting } from 'libs/shared/interfaces';
|
|
2
|
+
export declare type SettingsLookup = {
|
|
3
|
+
[key in SettingName]: EntitySetting<any>;
|
|
4
|
+
};
|
|
1
5
|
export declare enum SettingName {
|
|
2
6
|
MustCompleteOnboarding = "must_complete_onboarding",
|
|
3
7
|
StudentWorkspaceSharing = "student_ws_sharing",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare type DefaultPlaybackQuality = 480 | 720 | 1080;
|