@clickview/player 0.0.24-rc.1 → 0.0.24

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 (30) hide show
  1. package/dist/libs/common/src/react/utils/ArrayHelper.d.ts +1 -2
  2. package/dist/libs/shared/src/interfaces/CurriculumData.d.ts +1 -0
  3. package/dist/player-app.js +1 -1
  4. package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-item.d.ts +3 -3
  5. package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-items.d.ts +3 -3
  6. package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-load-progress.d.ts +3 -3
  7. package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-play-progress.d.ts +3 -3
  8. package/dist/projects/player/src/components/chapters-button/chapter-menu-item.d.ts +3 -3
  9. package/dist/projects/player/src/components/landing-splash/landing-splash.d.ts +3 -3
  10. package/dist/projects/player/src/components/landing-splash/metadata/splash-metadata.d.ts +3 -3
  11. package/dist/projects/player/src/components/landing-splash/metadata/splash-title/splash-title.d.ts +3 -3
  12. package/dist/projects/player/src/components/landing-splash/metadata/splash-warning/splash-warning.d.ts +3 -3
  13. package/dist/projects/player/src/components/subs-caps-button/SubCapsMenuItem.d.ts +3 -3
  14. package/dist/projects/player/src/components/subs-caps-button/subtitle-search-menu-item.d.ts +3 -3
  15. package/dist/projects/player/src/components/subs-caps-button/subtitle-size-menu-item.d.ts +3 -3
  16. package/dist/projects/player/src/components/text-track-settings/text-track-settings.d.ts +3 -3
  17. package/dist/projects/player/src/components/thumbnail-display/thumbnail-display.d.ts +3 -3
  18. package/dist/projects/player/src/plugins/chromecast-plugin/session-manager.d.ts +3 -3
  19. package/dist/projects/player/src/plugins/chromecast-plugin/tech/chromecast-tech-ui/chromecast-tech-ui.d.ts +3 -3
  20. package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector-handle.d.ts +3 -3
  21. package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector.d.ts +3 -3
  22. package/dist/projects/player/src/plugins/create-clip-plugin/components/create-clip-progress-indicator/create-clip-progress-indicator.d.ts +3 -3
  23. package/dist/projects/player/src/plugins/engagement-overlay-plugin/components/engagement-overlay/engagement-overlay.d.ts +3 -3
  24. package/dist/projects/player/src/plugins/interactive-plugin/components/seek-bar/interactive-bar-items.d.ts +3 -3
  25. package/dist/projects/player/src/plugins/points-of-interest-plugin/components/point-of-interest-indicator/point-of-interest-indicator.d.ts +3 -3
  26. package/dist/projects/player/src/plugins/progress-reporter-plugin/components/progress-reporter-display.d.ts +3 -3
  27. package/dist/projects/player/src/plugins/touch-controls-plugin/components/touch-controls/touch-controls.d.ts +3 -3
  28. package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-handle/drag-handle.d.ts +3 -3
  29. package/dist/projects/player/src/plugins/whiteboard-mode-plugin/components/drag-targets/drag-targets.d.ts +3 -3
  30. package/package.json +3 -3
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import * as _ from 'underscore';
3
2
  import { HashObject } from '../interfaces';
4
3
  declare type Iterator<T, TResult = T> = (value: T, index: number, list: T[]) => TResult;
@@ -28,7 +27,7 @@ export declare const ArrayHelper: {
28
27
  * @param arr array of values
29
28
  * @param value value to be added or removed.
30
29
  */
31
- addOrRemove<T_15 = import("react").Key>(arr: T_15[], value: T_15): T_15[];
30
+ addOrRemove<T_15 = string | number>(arr: T_15[], value: T_15): T_15[];
32
31
  /**
33
32
  * This is the same addOrRemove function above, except it doesn't mutate the array in the argument
34
33
  * and returns a branch new array.
@@ -4,4 +4,5 @@ export declare type CurriculumData = {
4
4
  currentCurriculum: Presentation;
5
5
  curriculumLinks: Curriculum[][];
6
6
  availableCurriculums: Presentation[];
7
+ customerHasCurriculumLinks: boolean;
7
8
  };