@clickview/player 0.0.6-rc.0 → 0.0.7-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/dist/en.json +1 -1
  2. package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +21 -3
  3. package/dist/libs/common/src/backbone/core/AppLink.d.ts +0 -4
  4. package/dist/libs/common/src/backbone/core/BaseError.d.ts +8 -0
  5. package/dist/libs/common/src/backbone/interfaces/StickitBinding.d.ts +0 -5
  6. package/dist/libs/common/src/backbone/interfaces/Xhr.d.ts +2 -2
  7. package/dist/libs/shared/src/apps/notifications/enums/NotificationType.d.ts +3 -1
  8. package/dist/libs/shared/src/apps/search/interfaces/FilterProps.d.ts +8 -0
  9. package/dist/libs/shared/src/apps/search/interfaces/SearchFilter.d.ts +29 -0
  10. package/dist/libs/shared/src/apps/search/interfaces/SearchResults.d.ts +26 -0
  11. package/dist/libs/shared/src/apps/search/interfaces/SearchTypes.d.ts +26 -0
  12. package/dist/libs/shared/src/apps/search/interfaces/index.d.ts +4 -0
  13. package/dist/libs/shared/src/apps/search/reducers/FilterReducer.d.ts +36 -0
  14. package/dist/libs/shared/src/apps/search/reducers/index.d.ts +1 -0
  15. package/dist/libs/shared/src/constants/AppVariables.d.ts +0 -1
  16. package/dist/libs/shared/src/enums/MasterType.d.ts +1 -0
  17. package/dist/libs/shared/src/enums/SettingName.d.ts +1 -0
  18. package/dist/libs/shared/src/hooks/useNavLock.d.ts +2 -0
  19. package/dist/libs/shared/src/images/svg/ImportedSvgs.d.ts +7 -4
  20. package/dist/libs/shared/src/images/svg/actions/index.d.ts +3 -1
  21. package/dist/libs/shared/src/images/svg/objects/index.d.ts +3 -1
  22. package/dist/libs/shared/src/images/svg/status/index.d.ts +2 -1
  23. package/dist/libs/shared/src/interfaces/FavouriteVideoFunc.d.ts +2 -0
  24. package/dist/libs/shared/src/interfaces/app-variables/BaseNotificationsAppVariables.d.ts +6 -3
  25. package/dist/libs/shared/src/interfaces/index.d.ts +2 -0
  26. package/dist/libs/shared/src/interfaces/models/Config.d.ts +1 -0
  27. package/dist/libs/shared/src/interfaces/models/InteractiveMetadata.d.ts +1 -1
  28. package/dist/libs/shared/src/interfaces/models/User.d.ts +14 -1
  29. package/dist/libs/shared/src/interfaces/models/interactive-results/InteractiveResultSet.d.ts +5 -0
  30. package/dist/libs/shared/src/interfaces/models/interactive-results/StudentResult.d.ts +2 -1
  31. package/dist/libs/shared/src/interfaces/requests/index.d.ts +0 -1
  32. package/dist/libs/shared/src/interfaces/responses/ShareSearchResponse.d.ts +5 -0
  33. package/dist/libs/shared/src/interfaces/responses/index.d.ts +1 -0
  34. package/dist/libs/shared/src/utils/ImageHelper.d.ts +2 -1
  35. package/dist/player-app.css +23 -21
  36. package/dist/player-app.js +13 -13
  37. package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-item.d.ts +1 -0
  38. package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-items.d.ts +1 -0
  39. package/dist/projects/player/src/components/cog-button/cog-button.d.ts +7 -5
  40. package/dist/projects/player/src/components/cog-button/collapsible-heading-menu-item.d.ts +15 -0
  41. package/dist/projects/player/src/components/collapserator/collapserator.d.ts +1 -1
  42. package/dist/projects/player/src/components/keyboard-shortcuts-button/keyboard-shortcuts-button.d.ts +1 -0
  43. package/dist/projects/player/src/components/menu/menu.d.ts +7 -0
  44. package/dist/projects/player/src/components/play-pause-feedback/play-pause-feedback.d.ts +1 -0
  45. package/dist/projects/player/src/components/play-toggle/play-toggle.d.ts +1 -0
  46. package/dist/projects/player/src/components/player/player.d.ts +4 -0
  47. package/dist/projects/player/src/components/subs-caps-button/off-text-track-menu-item.d.ts +1 -0
  48. package/dist/projects/player/src/components/subs-caps-button/subs-caps-button.d.ts +1 -0
  49. package/dist/projects/player/src/components/subs-caps-button/subtitle-search-menu-item.d.ts +2 -1
  50. package/dist/projects/player/src/components/subtitle-search-button/subtitle-search-button.d.ts +2 -0
  51. package/dist/projects/player/src/components/subtitle-search-button/subtitle-search-input.d.ts +1 -0
  52. package/dist/projects/player/src/players/base-player.d.ts +13 -3
  53. package/dist/projects/player/src/players/interactive-player.d.ts +4 -0
  54. package/dist/projects/player/src/players/player.d.ts +1 -5
  55. package/dist/projects/player/src/players/reports/reports-player.d.ts +14 -0
  56. package/dist/projects/player/src/plugins/engagement-overlay-plugin/components/engagement-overlay.d.ts +1 -0
  57. package/dist/projects/player/src/plugins/engagement-overlay-plugin/engagement-overlay-plugin.d.ts +30 -0
  58. package/dist/projects/player/src/plugins/fullscreen-on-rotate-plugin/fullscreen-on-rotate-plugin.d.ts +29 -0
  59. package/dist/projects/player/src/plugins/interactive-plugin/hooks/useStateManager.d.ts +2 -0
  60. package/dist/projects/player/src/plugins/interactive-plugin/interactive-plugin.d.ts +2 -0
  61. package/dist/projects/player/src/plugins/next-video-plugin/next-video-plugin.d.ts +2 -1
  62. package/dist/projects/player/src/plugins/open-externally-plugin/open-externally-plugin.d.ts +30 -0
  63. package/dist/projects/player/src/plugins/persist-subtitle-settings-plugin/persist-subtitle-settings-plugin.d.ts +0 -1
  64. package/dist/projects/player/src/plugins/persist-volume-plugin/persist-volume-plugin.d.ts +25 -0
  65. package/dist/projects/player/src/plugins/picture-in-picture-plugin/picture-in-picture-plugin.d.ts +0 -1
  66. package/dist/projects/player/src/plugins/progress-reporter-plugin/progress-reporter-plugin.d.ts +1 -0
  67. package/dist/projects/player/src/plugins/progressive-files-plugin/progressive-files-plugin.d.ts +3 -0
  68. package/dist/projects/player/src/plugins/touch-controls-plugin/touch-controls-plugin.d.ts +40 -0
  69. package/dist/projects/player/src/react/ReportsPlayer.d.ts +3 -0
  70. package/dist/projects/player/src/services/analytics-service.d.ts +6 -2
  71. package/package.json +5 -4
  72. package/dist/libs/analytics/src/utils/VideoDataFormatHelper.d.ts +0 -42
  73. package/dist/libs/shared/src/images/svg/player/index.d.ts +0 -14
  74. package/dist/libs/shared/src/interfaces/requests/CreateViewKeyRequest.d.ts +0 -3
  75. package/dist/projects/player/src/plugins/example-plugin/components/example-button/example-button.d.ts +0 -1
  76. package/dist/projects/player/src/plugins/example-plugin/example-plugin.d.ts +0 -2
  77. package/dist/projects/player/src/utils/scrollbar-helper.d.ts +0 -6
  78. /package/dist/projects/player/src/{plugins/example-plugin/components/example-react-button/example-react-button.d.ts → components/seek-bar/seek-bar.d.ts} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.