@clickview/library-editor 1.1.18 → 1.1.19-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.
Files changed (1529) hide show
  1. package/dist/css/0.chunk.css +6 -0
  2. package/dist/css/1.chunk.css +2 -0
  3. package/dist/css/10.chunk.css +2 -0
  4. package/dist/css/12.chunk.css +14 -0
  5. package/dist/css/13.chunk.css +14 -0
  6. package/dist/css/14.chunk.css +8 -0
  7. package/dist/css/16.chunk.css +2 -0
  8. package/dist/css/17.chunk.css +2 -0
  9. package/dist/css/18.chunk.css +2 -0
  10. package/dist/css/2.chunk.css +4 -0
  11. package/dist/css/20.chunk.css +18 -0
  12. package/dist/css/21.chunk.css +18 -0
  13. package/dist/css/22.chunk.css +10 -0
  14. package/dist/css/23.chunk.css +12 -0
  15. package/dist/css/24.chunk.css +14 -0
  16. package/dist/css/25.chunk.css +10 -0
  17. package/dist/css/26.chunk.css +10 -0
  18. package/dist/css/27.chunk.css +8 -0
  19. package/dist/css/28.chunk.css +8 -0
  20. package/dist/css/29.chunk.css +8 -0
  21. package/dist/css/30.chunk.css +6 -0
  22. package/dist/css/31.chunk.css +6 -0
  23. package/dist/css/32.chunk.css +4 -0
  24. package/dist/css/36.chunk.css +4 -0
  25. package/dist/css/37.chunk.css +4 -0
  26. package/dist/css/38.chunk.css +2 -0
  27. package/dist/css/39.chunk.css +2 -0
  28. package/dist/css/4.chunk.css +6 -0
  29. package/dist/css/40.chunk.css +4 -0
  30. package/dist/css/41.chunk.css +4 -0
  31. package/dist/css/42.chunk.css +2 -0
  32. package/dist/css/43.chunk.css +2 -0
  33. package/dist/css/44.chunk.css +2 -0
  34. package/dist/css/45.chunk.css +2 -0
  35. package/dist/css/46.chunk.css +2 -0
  36. package/dist/css/47.chunk.css +2 -0
  37. package/dist/css/48.chunk.css +2 -0
  38. package/dist/css/5.chunk.css +16 -0
  39. package/dist/css/50.chunk.css +2 -0
  40. package/dist/css/51.chunk.css +2 -0
  41. package/dist/css/54.chunk.css +2 -0
  42. package/dist/css/55.chunk.css +2 -0
  43. package/dist/css/56.chunk.css +2 -0
  44. package/dist/css/57.chunk.css +2 -0
  45. package/dist/css/58.chunk.css +2 -0
  46. package/dist/css/59.chunk.css +2 -0
  47. package/dist/css/6.chunk.css +14 -0
  48. package/dist/css/61.chunk.css +2 -0
  49. package/dist/css/62.chunk.css +2 -0
  50. package/dist/css/7.chunk.css +2 -0
  51. package/dist/css/8.chunk.css +2 -0
  52. package/dist/css/9.chunk.css +4 -0
  53. package/dist/css/library-editor-app.css +124 -0
  54. package/dist/en.json +1 -1
  55. package/dist/libs/analytics/src/Analytics.d.ts +10 -0
  56. package/dist/libs/analytics/src/AnalyticsHelper.d.ts +30 -0
  57. package/dist/libs/analytics/src/AnalyticsService.d.ts +52 -0
  58. package/dist/libs/analytics/src/clients/BaseAnalyticsClient.d.ts +24 -0
  59. package/dist/libs/analytics/src/clients/CollectionApiClient.d.ts +48 -0
  60. package/dist/libs/analytics/src/clients/DebuggerClient.d.ts +7 -0
  61. package/dist/libs/analytics/src/clients/GoogleAnalyticsClient.d.ts +22 -0
  62. package/dist/libs/analytics/src/constants/ApplicationOptionsKey.d.ts +1 -0
  63. package/dist/libs/analytics/src/constants/CountryRegionMapping.d.ts +7 -0
  64. package/dist/libs/analytics/src/constants/EventFirehose.d.ts +4 -0
  65. package/dist/libs/analytics/src/constants/GlobalChannels.d.ts +3 -0
  66. package/dist/libs/analytics/src/constants/Regions.d.ts +6 -0
  67. package/dist/libs/analytics/src/constants/Services.d.ts +4 -0
  68. package/dist/libs/analytics/src/enrichers/BaseAnalyticsEnricher.d.ts +19 -0
  69. package/dist/libs/analytics/src/enrichers/CoreContextEnricher.d.ts +22 -0
  70. package/dist/libs/analytics/src/enrichers/UserDataEnricher.d.ts +10 -0
  71. package/dist/libs/analytics/src/enums/CountryCode.d.ts +5 -0
  72. package/dist/libs/analytics/src/enums/RegionName.d.ts +5 -0
  73. package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +214 -0
  74. package/dist/libs/analytics/src/interfaces/Config.d.ts +3 -0
  75. package/dist/libs/analytics/src/interfaces/Folder.d.ts +3 -0
  76. package/dist/libs/analytics/src/interfaces/HashObject.d.ts +3 -0
  77. package/dist/libs/analytics/src/interfaces/Owner.d.ts +3 -0
  78. package/dist/libs/analytics/src/interfaces/Playlist.d.ts +3 -0
  79. package/dist/libs/analytics/src/interfaces/Rating.d.ts +4 -0
  80. package/dist/libs/analytics/src/interfaces/Region.d.ts +5 -0
  81. package/dist/libs/analytics/src/interfaces/RegionalUrl.d.ts +5 -0
  82. package/dist/libs/analytics/src/interfaces/Resource.d.ts +5 -0
  83. package/dist/libs/analytics/src/interfaces/Series.d.ts +3 -0
  84. package/dist/libs/analytics/src/interfaces/Subtitle.d.ts +4 -0
  85. package/dist/libs/analytics/src/interfaces/User.d.ts +6 -0
  86. package/dist/libs/analytics/src/interfaces/VersionData.d.ts +4 -0
  87. package/dist/libs/analytics/src/interfaces/Video.d.ts +16 -0
  88. package/dist/libs/analytics/src/interfaces/index.d.ts +15 -0
  89. package/dist/libs/analytics/src/interfaces/primitives/BaseObject.d.ts +7 -0
  90. package/dist/libs/analytics/src/models/AnalyticsEvent.d.ts +49 -0
  91. package/dist/libs/analytics/src/models/CollectionEvent.d.ts +55 -0
  92. package/dist/libs/analytics/src/services/ContextService.d.ts +19 -0
  93. package/dist/libs/analytics/src/transport/EventTransport.d.ts +39 -0
  94. package/dist/libs/analytics/src/utils/CollectionApiClientHelper.d.ts +6 -0
  95. package/dist/libs/analytics/src/utils/DataFormatHelper.d.ts +14 -0
  96. package/dist/libs/analytics/src/utils/EventWhitelistHelper.d.ts +19 -0
  97. package/dist/libs/analytics/src/utils/ObjectFormatHelper.d.ts +5 -0
  98. package/dist/libs/analytics/src/utils/TypeHelper.d.ts +4 -0
  99. package/dist/libs/analytics/src/utils/UploadDataFormatHelper.d.ts +10 -0
  100. package/dist/libs/analytics/src/utils/UserAgentHelper.d.ts +10 -0
  101. package/dist/libs/analytics/src/utils/VideoAnalyticsTracker.d.ts +50 -0
  102. package/dist/libs/analytics/src/utils/VideoDataFormatHelper.d.ts +42 -0
  103. package/dist/libs/common/src/backbone/constants/BehaviorChannels.d.ts +5 -0
  104. package/dist/libs/common/src/backbone/constants/Caches.d.ts +3 -0
  105. package/dist/libs/common/src/backbone/constants/CommonChannels.d.ts +5 -0
  106. package/dist/libs/common/src/backbone/constants/CommonServices.d.ts +5 -0
  107. package/dist/libs/common/src/backbone/constants/DataProviders.d.ts +4 -0
  108. package/dist/libs/common/src/backbone/constants/Webplayer.d.ts +65 -0
  109. package/dist/libs/common/src/backbone/core/AppLink.d.ts +37 -0
  110. package/dist/libs/common/src/backbone/core/BaseAppRouter.d.ts +95 -0
  111. package/dist/libs/common/src/backbone/core/BaseApplication.d.ts +76 -0
  112. package/dist/libs/common/src/backbone/core/BaseBehavior.d.ts +6 -0
  113. package/dist/libs/common/src/backbone/core/BaseCollection.d.ts +7 -0
  114. package/dist/libs/common/src/backbone/core/BaseCollectionView.d.ts +16 -0
  115. package/dist/libs/common/src/backbone/core/BaseError.d.ts +18 -0
  116. package/dist/libs/common/src/backbone/core/BaseLayoutView.d.ts +11 -0
  117. package/dist/libs/common/src/backbone/core/BaseModel.d.ts +27 -0
  118. package/dist/libs/common/src/backbone/core/BaseNestedModel.d.ts +21 -0
  119. package/dist/libs/common/src/backbone/core/BaseService.d.ts +10 -0
  120. package/dist/libs/common/src/backbone/core/BaseView.d.ts +127 -0
  121. package/dist/libs/common/src/backbone/core/EventNames.d.ts +16 -0
  122. package/dist/libs/common/src/backbone/core/LayoutService.d.ts +31 -0
  123. package/dist/libs/common/src/backbone/core/ListenToRadio.d.ts +3 -0
  124. package/dist/libs/common/src/backbone/core/LocationUtils.d.ts +23 -0
  125. package/dist/libs/common/src/backbone/core/Middleware.d.ts +10 -0
  126. package/dist/libs/common/src/backbone/core/Shell.d.ts +79 -0
  127. package/dist/libs/common/src/backbone/core/Types.d.ts +12 -0
  128. package/dist/libs/common/src/backbone/core/index.d.ts +18 -0
  129. package/dist/libs/common/src/backbone/enums/DataServiceErrorType.d.ts +8 -0
  130. package/dist/libs/common/src/backbone/enums/HttpVerbs.d.ts +6 -0
  131. package/dist/libs/common/src/backbone/errors/DevError.d.ts +4 -0
  132. package/dist/libs/common/src/backbone/errors/NotImplementedError.d.ts +5 -0
  133. package/dist/libs/common/src/backbone/index.d.ts +2 -0
  134. package/dist/libs/common/src/backbone/interfaces/BaseCollectionIdentifier.d.ts +18 -0
  135. package/dist/libs/common/src/backbone/interfaces/ChainableDataService.d.ts +9 -0
  136. package/dist/libs/common/src/backbone/interfaces/DataCache.d.ts +8 -0
  137. package/dist/libs/common/src/backbone/interfaces/DataProvider.d.ts +15 -0
  138. package/dist/libs/common/src/backbone/interfaces/DataServiceError.d.ts +7 -0
  139. package/dist/libs/common/src/backbone/interfaces/DataServiceRequests.d.ts +218 -0
  140. package/dist/libs/common/src/backbone/interfaces/Pagination.d.ts +33 -0
  141. package/dist/libs/common/src/backbone/interfaces/StickitBinding.d.ts +38 -0
  142. package/dist/libs/common/src/backbone/interfaces/Xhr.d.ts +9 -0
  143. package/dist/libs/common/src/backbone/interfaces/index.d.ts +9 -0
  144. package/dist/libs/common/src/backbone/runtime/InputValidation.d.ts +2 -0
  145. package/dist/libs/common/src/backbone/services/BaseAlertService.d.ts +69 -0
  146. package/dist/libs/common/src/backbone/services/BaseDataService.d.ts +82 -0
  147. package/dist/libs/common/src/backbone/services/EnvironmentVariables.d.ts +13 -0
  148. package/dist/libs/common/src/backbone/services/InstanceManager.d.ts +33 -0
  149. package/dist/libs/common/src/backbone/services/LanguageService.d.ts +22 -0
  150. package/dist/libs/common/src/backbone/services/ScrollService.d.ts +19 -0
  151. package/dist/libs/common/src/backbone/services/ViewModelService.d.ts +68 -0
  152. package/dist/libs/common/src/backbone/services/caches/FifoMemoryCache.d.ts +20 -0
  153. package/dist/libs/common/src/backbone/services/data-providers/AjaxDataProvider.d.ts +31 -0
  154. package/dist/libs/common/src/backbone/services/data-providers/SignalRDataProvider.d.ts +46 -0
  155. package/dist/libs/common/src/backbone/utils/ConcurrencyHelper.d.ts +13 -0
  156. package/dist/libs/common/src/backbone/utils/DataServiceErrorHelper.d.ts +2 -0
  157. package/dist/libs/common/src/backbone/utils/FunctionHelper.d.ts +8 -0
  158. package/dist/libs/common/src/backbone/utils/LocalStorageHelper.d.ts +58 -0
  159. package/dist/libs/common/src/backbone/utils/UrlHelper.d.ts +13 -0
  160. package/dist/libs/common/src/backbone/utils/UserAgentHelper.d.ts +7 -0
  161. package/dist/libs/common/src/react/interfaces/HashObject.d.ts +3 -0
  162. package/dist/libs/common/src/react/utils/FetchHelper.d.ts +50 -0
  163. package/dist/libs/common/src/react/utils/ObjectHelper.d.ts +10 -0
  164. package/dist/libs/shared/src/apps/notifications/collections/NotificationCollection.d.ts +9 -0
  165. package/dist/libs/shared/src/apps/notifications/components/notification-items/notification-item/NotificationItemComponent.d.ts +23 -0
  166. package/dist/libs/shared/src/apps/notifications/components/notification-list/NotificationListComponent.d.ts +26 -0
  167. package/dist/libs/shared/src/apps/notifications/components/notification-status/NotificationStatusComponent.d.ts +15 -0
  168. package/dist/libs/shared/src/apps/notifications/enums/AppLinkReferrer.d.ts +3 -0
  169. package/dist/libs/shared/src/apps/notifications/enums/NotificationActions.d.ts +3 -0
  170. package/dist/libs/shared/src/apps/notifications/enums/NotificationAlertType.d.ts +7 -0
  171. package/dist/libs/shared/src/apps/notifications/enums/NotificationAppLinkModules.d.ts +7 -0
  172. package/dist/libs/shared/src/apps/notifications/enums/NotificationModules.d.ts +4 -0
  173. package/dist/libs/shared/src/apps/notifications/enums/NotificationStatus.d.ts +5 -0
  174. package/dist/libs/shared/src/apps/notifications/enums/NotificationType.d.ts +16 -0
  175. package/dist/libs/shared/src/apps/notifications/interfaces/NotificationCollectionRequest.d.ts +5 -0
  176. package/dist/libs/shared/src/apps/notifications/interfaces/index.d.ts +1 -0
  177. package/dist/libs/shared/src/apps/notifications/models/Notification.d.ts +6 -0
  178. package/dist/libs/shared/src/apps/notifications/services/NotificationDataService.d.ts +14 -0
  179. package/dist/libs/shared/src/apps/notifications/services/NotificationService.d.ts +33 -0
  180. package/dist/libs/shared/src/apps/notifications/services/NotificationSocketService.d.ts +8 -0
  181. package/dist/libs/shared/src/apps/notifications/services/data-providers/NotificationsSocketDataProvider.d.ts +4 -0
  182. package/dist/libs/shared/src/apps/notifications/utils/NotificationAppLinkHelper.d.ts +10 -0
  183. package/dist/libs/shared/src/apps/notifications/utils/NotificationsHelper.d.ts +18 -0
  184. package/dist/libs/shared/src/apps/notifications/views/header/NotificationHeaderView.d.ts +16 -0
  185. package/dist/libs/shared/src/apps/notifications/views/notifications/NotificationsView.d.ts +27 -0
  186. package/dist/libs/shared/src/apps/notifications/views/popover/NotificationsPopoverView.d.ts +34 -0
  187. package/dist/libs/shared/src/apps/search/components/confirm-selection/ConfirmSelectionComponent.d.ts +12 -0
  188. package/dist/libs/shared/src/apps/search/components/instant-search/index.d.ts +4 -0
  189. package/dist/libs/shared/src/apps/search/components/instant-search/recent-search/RecentSearchResultComponent.d.ts +15 -0
  190. package/dist/libs/shared/src/apps/search/components/instant-search/series/SeriesSearchResultComponent.d.ts +9 -0
  191. package/dist/libs/shared/src/apps/search/components/instant-search/tag/TagSearchResultComponent.d.ts +9 -0
  192. package/dist/libs/shared/src/apps/search/components/instant-search/video-result/VideoSearchResultComponent.d.ts +18 -0
  193. package/dist/libs/shared/src/apps/search/components/search-context/SearchContextComponent.d.ts +18 -0
  194. package/dist/libs/shared/src/apps/search/components/search-tips/SearchTipsComponent.d.ts +11 -0
  195. package/dist/libs/shared/src/apps/search/constants/TypeaheadConfiguration.d.ts +12 -0
  196. package/dist/libs/shared/src/apps/search/enums/FilterTypes.d.ts +14 -0
  197. package/dist/libs/shared/src/apps/search/enums/SearchQueryType.d.ts +18 -0
  198. package/dist/libs/shared/src/apps/search/enums/SearchTypes.d.ts +8 -0
  199. package/dist/libs/shared/src/apps/search/interfaces/SearchTypes.d.ts +26 -0
  200. package/dist/libs/shared/src/apps/search/interfaces/index.d.ts +1 -0
  201. package/dist/libs/shared/src/apps/search/services/ContextualSearchService.d.ts +34 -0
  202. package/dist/libs/shared/src/apps/search/utils/InstantSearchHelper.d.ts +21 -0
  203. package/dist/libs/shared/src/apps/search/utils/RecentSearchHelper.d.ts +12 -0
  204. package/dist/libs/shared/src/apps/search/utils/SearchHelper.d.ts +5 -0
  205. package/dist/libs/shared/src/apps/search/utils/TypeaheadHelper.d.ts +75 -0
  206. package/dist/libs/shared/src/apps/search/views/search-bar/SearchBarView.d.ts +105 -0
  207. package/dist/libs/shared/src/apps/search/views/search-bar/templates/index.d.ts +9 -0
  208. package/dist/libs/shared/src/apps/upload/collections/PendingItemsCollection.d.ts +8 -0
  209. package/dist/libs/shared/src/apps/upload/constants/UploadConstants.d.ts +39 -0
  210. package/dist/libs/shared/src/apps/upload/enums/FileLifestyle.d.ts +4 -0
  211. package/dist/libs/shared/src/apps/upload/enums/PendingItemStatus.d.ts +5 -0
  212. package/dist/libs/shared/src/apps/upload/errors/file-type/FileTypeError.d.ts +15 -0
  213. package/dist/libs/shared/src/apps/upload/errors/internet-connectivity/InternetConnectivityError.d.ts +7 -0
  214. package/dist/libs/shared/src/apps/upload/services/BasePendingItemsService.d.ts +26 -0
  215. package/dist/libs/shared/src/apps/upload/services/DropzoneWrapper.d.ts +30 -0
  216. package/dist/libs/shared/src/apps/upload/services/UploadService.d.ts +65 -0
  217. package/dist/libs/shared/src/apps/upload/utils/FileExtensionsHelper.d.ts +9 -0
  218. package/dist/libs/shared/src/apps/upload/utils/PendingItemsHelper.d.ts +9 -0
  219. package/dist/libs/shared/src/constants/AppVariables.d.ts +4 -0
  220. package/dist/libs/shared/src/constants/BootstrapKeys.d.ts +5 -0
  221. package/dist/libs/shared/src/constants/DataPrefixes.d.ts +12 -0
  222. package/dist/libs/shared/src/constants/RadioChannels.d.ts +20 -0
  223. package/dist/libs/shared/src/constants/SharedServices.d.ts +25 -0
  224. package/dist/libs/shared/src/enums/ClassificationType.d.ts +4 -0
  225. package/dist/libs/shared/src/enums/CurationStatus.d.ts +12 -0
  226. package/dist/libs/shared/src/enums/CustomerType.d.ts +11 -0
  227. package/dist/libs/shared/src/enums/GlanceFormat.d.ts +3 -0
  228. package/dist/libs/shared/src/enums/Images.d.ts +26 -0
  229. package/dist/libs/shared/src/enums/LibraryType.d.ts +5 -0
  230. package/dist/libs/shared/src/enums/MediaQueries.d.ts +18 -0
  231. package/dist/libs/shared/src/enums/PartialLoading.d.ts +4 -0
  232. package/dist/libs/shared/src/enums/ThemeType.d.ts +3 -0
  233. package/dist/libs/shared/src/enums/UserRole.d.ts +15 -0
  234. package/dist/libs/shared/src/enums/VideoOrigin.d.ts +14 -0
  235. package/dist/libs/shared/src/enums/WidgetContents.d.ts +6 -0
  236. package/dist/libs/shared/src/errors/primitives/AlertError.d.ts +4 -0
  237. package/dist/libs/shared/src/errors/primitives/DialogError.d.ts +9 -0
  238. package/dist/libs/shared/src/errors/primitives/ErrorPageError.d.ts +7 -0
  239. package/dist/libs/shared/src/images/svg/ImportedSvgs.d.ts +81 -0
  240. package/dist/libs/shared/src/images/svg/actions/index.d.ts +21 -0
  241. package/dist/libs/shared/src/images/svg/arrows/index.d.ts +9 -0
  242. package/dist/libs/shared/src/images/svg/index.d.ts +2 -0
  243. package/dist/libs/shared/src/images/svg/objects/index.d.ts +33 -0
  244. package/dist/libs/shared/src/images/svg/player/index.d.ts +14 -0
  245. package/dist/libs/shared/src/images/svg/settings.d.ts +1 -0
  246. package/dist/libs/shared/src/images/svg/status/index.d.ts +13 -0
  247. package/dist/libs/shared/src/interfaces/AppLinkWithLabel.d.ts +5 -0
  248. package/dist/libs/shared/src/interfaces/DialogOptions.d.ts +13 -0
  249. package/dist/libs/shared/src/interfaces/ImageUrls.d.ts +16 -0
  250. package/dist/libs/shared/src/interfaces/QueryParams.d.ts +3 -0
  251. package/dist/libs/shared/src/interfaces/RegionalUrl.d.ts +5 -0
  252. package/dist/libs/shared/src/interfaces/WidgetContext.d.ts +9 -0
  253. package/dist/libs/shared/src/interfaces/app-variables/BaseNotificationsAppVariables.d.ts +16 -0
  254. package/dist/libs/shared/src/interfaces/app-variables/BaseSearchAppVariables.d.ts +14 -0
  255. package/dist/libs/shared/src/interfaces/app-variables/index.d.ts +2 -0
  256. package/dist/libs/shared/src/interfaces/collections/AudienceCollection.d.ts +4 -0
  257. package/dist/libs/shared/src/interfaces/collections/CategoryCollection.d.ts +4 -0
  258. package/dist/libs/shared/src/interfaces/collections/ClipCollection.d.ts +4 -0
  259. package/dist/libs/shared/src/interfaces/collections/CompanyCollection.d.ts +3 -0
  260. package/dist/libs/shared/src/interfaces/collections/CustomerCollection.d.ts +4 -0
  261. package/dist/libs/shared/src/interfaces/collections/FolderCollection.d.ts +4 -0
  262. package/dist/libs/shared/src/interfaces/collections/InteractiveCollection.d.ts +4 -0
  263. package/dist/libs/shared/src/interfaces/collections/LibraryCollection.d.ts +4 -0
  264. package/dist/libs/shared/src/interfaces/collections/LinkCollection.d.ts +4 -0
  265. package/dist/libs/shared/src/interfaces/collections/PersonCollection.d.ts +3 -0
  266. package/dist/libs/shared/src/interfaces/collections/PlaylistCollection.d.ts +4 -0
  267. package/dist/libs/shared/src/interfaces/collections/PresentationAudienceCollection.d.ts +4 -0
  268. package/dist/libs/shared/src/interfaces/collections/ResourceCollection.d.ts +3 -0
  269. package/dist/libs/shared/src/interfaces/collections/SeriesCollection.d.ts +4 -0
  270. package/dist/libs/shared/src/interfaces/collections/TagCollection.d.ts +4 -0
  271. package/dist/libs/shared/src/interfaces/collections/UserCollection.d.ts +3 -0
  272. package/dist/libs/shared/src/interfaces/collections/VideoCollection.d.ts +4 -0
  273. package/dist/libs/shared/src/interfaces/collections/WidgetCollection.d.ts +3 -0
  274. package/dist/libs/shared/src/interfaces/collections/index.d.ts +20 -0
  275. package/dist/libs/shared/src/interfaces/collections/primitives/BasePaginatedCollection.d.ts +7 -0
  276. package/dist/libs/shared/src/interfaces/collections/primitives/index.d.ts +1 -0
  277. package/dist/libs/shared/src/interfaces/index.d.ts +13 -0
  278. package/dist/libs/shared/src/interfaces/models/Audience.d.ts +3 -0
  279. package/dist/libs/shared/src/interfaces/models/Banner.d.ts +3 -0
  280. package/dist/libs/shared/src/interfaces/models/Category.d.ts +3 -0
  281. package/dist/libs/shared/src/interfaces/models/Channel.d.ts +3 -0
  282. package/dist/libs/shared/src/interfaces/models/Classification.d.ts +20 -0
  283. package/dist/libs/shared/src/interfaces/models/Clip.d.ts +6 -0
  284. package/dist/libs/shared/src/interfaces/models/Company.d.ts +3 -0
  285. package/dist/libs/shared/src/interfaces/models/Config.d.ts +9 -0
  286. package/dist/libs/shared/src/interfaces/models/Cover.d.ts +3 -0
  287. package/dist/libs/shared/src/interfaces/models/Customer.d.ts +5 -0
  288. package/dist/libs/shared/src/interfaces/models/Folder.d.ts +7 -0
  289. package/dist/libs/shared/src/interfaces/models/Following.d.ts +4 -0
  290. package/dist/libs/shared/src/interfaces/models/Glance.d.ts +7 -0
  291. package/dist/libs/shared/src/interfaces/models/HeroBanner.d.ts +3 -0
  292. package/dist/libs/shared/src/interfaces/models/Image.d.ts +7 -0
  293. package/dist/libs/shared/src/interfaces/models/Interactive.d.ts +5 -0
  294. package/dist/libs/shared/src/interfaces/models/LanguageConfig.d.ts +5 -0
  295. package/dist/libs/shared/src/interfaces/models/Library.d.ts +3 -0
  296. package/dist/libs/shared/src/interfaces/models/Link.d.ts +3 -0
  297. package/dist/libs/shared/src/interfaces/models/Organisation.d.ts +3 -0
  298. package/dist/libs/shared/src/interfaces/models/Person.d.ts +3 -0
  299. package/dist/libs/shared/src/interfaces/models/Playlist.d.ts +10 -0
  300. package/dist/libs/shared/src/interfaces/models/Poster.d.ts +3 -0
  301. package/dist/libs/shared/src/interfaces/models/Presentation.d.ts +3 -0
  302. package/dist/libs/shared/src/interfaces/models/PresentationAudience.d.ts +6 -0
  303. package/dist/libs/shared/src/interfaces/models/Rating.d.ts +5 -0
  304. package/dist/libs/shared/src/interfaces/models/Resource.d.ts +9 -0
  305. package/dist/libs/shared/src/interfaces/models/Restriction.d.ts +6 -0
  306. package/dist/libs/shared/src/interfaces/models/Season.d.ts +4 -0
  307. package/dist/libs/shared/src/interfaces/models/Series.d.ts +10 -0
  308. package/dist/libs/shared/src/interfaces/models/Share.d.ts +9 -0
  309. package/dist/libs/shared/src/interfaces/models/Subject.d.ts +13 -0
  310. package/dist/libs/shared/src/interfaces/models/Tag.d.ts +3 -0
  311. package/dist/libs/shared/src/interfaces/models/TallPoster.d.ts +3 -0
  312. package/dist/libs/shared/src/interfaces/models/Theme.d.ts +11 -0
  313. package/dist/libs/shared/src/interfaces/models/Thumbnail.d.ts +3 -0
  314. package/dist/libs/shared/src/interfaces/models/User.d.ts +53 -0
  315. package/dist/libs/shared/src/interfaces/models/Video.d.ts +26 -0
  316. package/dist/libs/shared/src/interfaces/models/VideoWithRestrictions.d.ts +5 -0
  317. package/dist/libs/shared/src/interfaces/models/Widget.d.ts +15 -0
  318. package/dist/libs/shared/src/interfaces/models/index.d.ts +42 -0
  319. package/dist/libs/shared/src/interfaces/models/primitives/BaseObject.d.ts +7 -0
  320. package/dist/libs/shared/src/interfaces/models/primitives/index.d.ts +1 -0
  321. package/dist/libs/shared/src/interfaces/props/ViewProps.d.ts +8 -0
  322. package/dist/libs/shared/src/interfaces/props/index.d.ts +1 -0
  323. package/dist/libs/shared/src/interfaces/requests/ReorderRequest.d.ts +12 -0
  324. package/dist/libs/shared/src/interfaces/requests/UpdateVideoRequest.d.ts +5 -0
  325. package/dist/libs/shared/src/interfaces/requests/index.d.ts +2 -0
  326. package/dist/libs/shared/src/interfaces/services/BaseLibraryDataService.d.ts +10 -0
  327. package/dist/libs/shared/src/interfaces/services/BaseSeriesDataService.d.ts +4 -0
  328. package/dist/libs/shared/src/interfaces/services/BaseVideoDataService.d.ts +5 -0
  329. package/dist/libs/shared/src/interfaces/services/BaseVideoUploadDataService.d.ts +8 -0
  330. package/dist/libs/shared/src/interfaces/services/index.d.ts +4 -0
  331. package/dist/libs/shared/src/legacy/behaviors/empty-state/EmptyStateBehavior.d.ts +22 -0
  332. package/dist/libs/shared/src/legacy/behaviors/popover/PopoverBehavior.d.ts +40 -0
  333. package/dist/libs/shared/src/legacy/behaviors/tooltip/TooltipBehavior.d.ts +26 -0
  334. package/dist/libs/shared/src/legacy/components/empty-state/EmptyStateComponent.d.ts +24 -0
  335. package/dist/libs/shared/src/legacy/components/pagination/PaginationComponent.d.ts +29 -0
  336. package/dist/libs/shared/src/legacy/components/thumbnail/ThumbnailComponent.d.ts +34 -0
  337. package/dist/libs/shared/src/legacy/constants/empty-state-components/EmptyStateComponents.d.ts +6 -0
  338. package/dist/libs/shared/src/legacy/enums/EmptyState.d.ts +3 -0
  339. package/dist/libs/shared/src/legacy/enums/SortType.d.ts +7 -0
  340. package/dist/libs/shared/src/legacy/interfaces/CollectionIdentifier.d.ts +7 -0
  341. package/dist/libs/shared/src/legacy/interfaces/index.d.ts +1 -0
  342. package/dist/libs/shared/src/legacy/utils/EmptyStateHelper.d.ts +4 -0
  343. package/dist/libs/shared/src/legacy/utils/LangHelper.d.ts +5 -0
  344. package/dist/libs/shared/src/services/ContextService.d.ts +38 -0
  345. package/dist/libs/shared/src/services/LanguageDataService.d.ts +7 -0
  346. package/dist/libs/shared/src/services/UserDataService.d.ts +23 -0
  347. package/dist/libs/shared/src/utils/EmbedHelper.d.ts +8 -0
  348. package/dist/libs/shared/src/utils/ImageHelper.d.ts +30 -0
  349. package/dist/libs/shared/src/utils/LibraryDataServiceHelper.d.ts +13 -0
  350. package/dist/libs/shared/src/utils/MaskHelper.d.ts +15 -0
  351. package/dist/libs/shared/src/utils/SvgHelper.d.ts +19 -0
  352. package/dist/libs/shared/src/utils/TextHelper.d.ts +3 -0
  353. package/dist/projects/library-editor/src/app.d.ts +224 -0
  354. package/dist/projects/library-editor/src/apps/content-updates/ContentUpdatesApplication.d.ts +18 -0
  355. package/dist/projects/library-editor/src/apps/content-updates/collections/SubjectCollection.d.ts +5 -0
  356. package/dist/projects/library-editor/src/apps/content-updates/collections/VideoGroupCollection.d.ts +5 -0
  357. package/dist/projects/library-editor/src/apps/content-updates/components/awaiting-review-header/AwaitingReviewHeaderComponent.d.ts +14 -0
  358. package/dist/projects/library-editor/src/apps/content-updates/components/content-updates-header/ContentUpdatesHeaderComponent.d.ts +19 -0
  359. package/dist/projects/library-editor/src/apps/content-updates/components/content-updates-left-nav/ContentUpdatesLeftNavComponent.d.ts +18 -0
  360. package/dist/projects/library-editor/src/apps/content-updates/components/past-releases-filters/PastReleasesFiltersComponent.d.ts +20 -0
  361. package/dist/projects/library-editor/src/apps/content-updates/components/past-releases-header/PastReleasesHeaderComponent.d.ts +24 -0
  362. package/dist/projects/library-editor/src/apps/content-updates/components/video-group-list/VideoGroupListComponent.d.ts +37 -0
  363. package/dist/projects/library-editor/src/apps/content-updates/models/Subject.d.ts +3 -0
  364. package/dist/projects/library-editor/src/apps/content-updates/models/VideoGroup.d.ts +7 -0
  365. package/dist/projects/library-editor/src/apps/content-updates/services/ContentUpdatesDataService.d.ts +18 -0
  366. package/dist/projects/library-editor/src/apps/content-updates/utils/ContentUpdatesHelper.d.ts +7 -0
  367. package/dist/projects/library-editor/src/apps/content-updates/views/add-to-library/AddToLibraryView.d.ts +47 -0
  368. package/dist/projects/library-editor/src/apps/content-updates/views/awaiting-review/AwaitingReviewView.d.ts +36 -0
  369. package/dist/projects/library-editor/src/apps/content-updates/views/disable-review/DisableReviewView.d.ts +26 -0
  370. package/dist/projects/library-editor/src/apps/content-updates/views/generate-past-releases-pdf/GeneratePastReleasesPdfView.d.ts +41 -0
  371. package/dist/projects/library-editor/src/apps/content-updates/views/past-releases/PastReleasesView.d.ts +55 -0
  372. package/dist/projects/library-editor/src/apps/dashboard/DashboardApplication.d.ts +9 -0
  373. package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-action-tile/DashboardActionTileComponent.d.ts +20 -0
  374. package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-info-tile/DashboardInfoTileComponent.d.ts +7 -0
  375. package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-notifications/DashboardNotificationsComponents.d.ts +15 -0
  376. package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-tile-container/DashboardTileContainerComponent.d.ts +11 -0
  377. package/dist/projects/library-editor/src/apps/dashboard/components/dashboard-tile-list/DashboardTileListComponent.d.ts +14 -0
  378. package/dist/projects/library-editor/src/apps/dashboard/views/DashboardView.d.ts +38 -0
  379. package/dist/projects/library-editor/src/apps/default/DefaultApplication.d.ts +21 -0
  380. package/dist/projects/library-editor/src/apps/default/views/dev-error/DevErrorView.d.ts +11 -0
  381. package/dist/projects/library-editor/src/apps/default/views/error-view/ErrorView.d.ts +12 -0
  382. package/dist/projects/library-editor/src/apps/default/views/not-found/NotFoundView.d.ts +11 -0
  383. package/dist/projects/library-editor/src/apps/index.d.ts +16 -0
  384. package/dist/projects/library-editor/src/apps/library-editor/LibraryEditorApplication.d.ts +46 -0
  385. package/dist/projects/library-editor/src/apps/library-editor/behaviors/draggable-folder/DraggableFolderBehavior.d.ts +9 -0
  386. package/dist/projects/library-editor/src/apps/library-editor/behaviors/draggable-video/DraggableVideoBehavior.d.ts +24 -0
  387. package/dist/projects/library-editor/src/apps/library-editor/behaviors/droppable/DroppableBehavior.d.ts +19 -0
  388. package/dist/projects/library-editor/src/apps/library-editor/behaviors/shared/DraggableItemComponent.d.ts +15 -0
  389. package/dist/projects/library-editor/src/apps/library-editor/components/add-links/AddLinksComponent.d.ts +31 -0
  390. package/dist/projects/library-editor/src/apps/library-editor/components/banner/BannerComponent.d.ts +19 -0
  391. package/dist/projects/library-editor/src/apps/library-editor/components/chapter-form/ChapterFormComponent.d.ts +66 -0
  392. package/dist/projects/library-editor/src/apps/library-editor/components/chapter-list/ChapterComponentCollection.d.ts +25 -0
  393. package/dist/projects/library-editor/src/apps/library-editor/components/chapter-list/ChapterItemComponent.d.ts +37 -0
  394. package/dist/projects/library-editor/src/apps/library-editor/components/chapters/ChaptersComponent.d.ts +21 -0
  395. package/dist/projects/library-editor/src/apps/library-editor/components/concatenate-request/ConcatenateRequestComponent.d.ts +24 -0
  396. package/dist/projects/library-editor/src/apps/library-editor/components/customer-logo/CustomerLogoComponent.d.ts +19 -0
  397. package/dist/projects/library-editor/src/apps/library-editor/components/edit-image/EditImageComponent.d.ts +28 -0
  398. package/dist/projects/library-editor/src/apps/library-editor/components/edit-images-wrapper/EditImagesWrapperComponent.d.ts +24 -0
  399. package/dist/projects/library-editor/src/apps/library-editor/components/edit-links/LinkItemComponent.d.ts +16 -0
  400. package/dist/projects/library-editor/src/apps/library-editor/components/edit-links/VideoLinksComponent.d.ts +23 -0
  401. package/dist/projects/library-editor/src/apps/library-editor/components/edit-thumbnail/EditThumbnailComponent.d.ts +22 -0
  402. package/dist/projects/library-editor/src/apps/library-editor/components/edit-video/EditVideoDetailsComponent.d.ts +48 -0
  403. package/dist/projects/library-editor/src/apps/library-editor/components/edit-video-tabs/EditVideoTabsComponent.d.ts +24 -0
  404. package/dist/projects/library-editor/src/apps/library-editor/components/expandable-tag-list/ExpandableTagListComponent.d.ts +26 -0
  405. package/dist/projects/library-editor/src/apps/library-editor/components/file-select/FileSelectComponent.d.ts +30 -0
  406. package/dist/projects/library-editor/src/apps/library-editor/components/file-uploads/FileUploadComponent.d.ts +15 -0
  407. package/dist/projects/library-editor/src/apps/library-editor/components/file-uploads/FileUploadsComponentCollection.d.ts +13 -0
  408. package/dist/projects/library-editor/src/apps/library-editor/components/folder-actions/FolderActionsDropdownComponent.d.ts +18 -0
  409. package/dist/projects/library-editor/src/apps/library-editor/components/folder-details/FolderDetailsComponent.d.ts +35 -0
  410. package/dist/projects/library-editor/src/apps/library-editor/components/folder-select/FolderSelectComponent.d.ts +41 -0
  411. package/dist/projects/library-editor/src/apps/library-editor/components/language-select/LanguageSelectComponent.d.ts +28 -0
  412. package/dist/projects/library-editor/src/apps/library-editor/components/language-select/LanguageSelectTypeaheadHelper.d.ts +7 -0
  413. package/dist/projects/library-editor/src/apps/library-editor/components/left-nav-libraries/LeftNavLibrariesComponent.d.ts +45 -0
  414. package/dist/projects/library-editor/src/apps/library-editor/components/library-actions/LibraryActionsComponent.d.ts +26 -0
  415. package/dist/projects/library-editor/src/apps/library-editor/components/library-folders/LibraryFolderListComponent.d.ts +31 -0
  416. package/dist/projects/library-editor/src/apps/library-editor/components/library-select/LibrarySelectComponent.d.ts +27 -0
  417. package/dist/projects/library-editor/src/apps/library-editor/components/save/SaveComponent.d.ts +33 -0
  418. package/dist/projects/library-editor/src/apps/library-editor/components/sort-select/SortSelectComponent.d.ts +29 -0
  419. package/dist/projects/library-editor/src/apps/library-editor/components/sub-folders/SubFolderComponent.d.ts +15 -0
  420. package/dist/projects/library-editor/src/apps/library-editor/components/sub-folders/SubFoldersComponent.d.ts +9 -0
  421. package/dist/projects/library-editor/src/apps/library-editor/components/suggest-edit/SuggestEditComponent.d.ts +31 -0
  422. package/dist/projects/library-editor/src/apps/library-editor/components/tag-list/TagComponentCollection.d.ts +21 -0
  423. package/dist/projects/library-editor/src/apps/library-editor/components/tag-list/TagItemComponent.d.ts +28 -0
  424. package/dist/projects/library-editor/src/apps/library-editor/components/tags/TagsComponent.d.ts +30 -0
  425. package/dist/projects/library-editor/src/apps/library-editor/components/video-collection-actions/VideoCollectionActionsComponent.d.ts +24 -0
  426. package/dist/projects/library-editor/src/apps/library-editor/components/video-header/VideoHeaderComponent.d.ts +23 -0
  427. package/dist/projects/library-editor/src/apps/library-editor/components/video-list-header/VideoListHeaderComponent.d.ts +34 -0
  428. package/dist/projects/library-editor/src/apps/library-editor/components/video-resources/ResourceItemComponent.d.ts +22 -0
  429. package/dist/projects/library-editor/src/apps/library-editor/components/video-resources/VideoResourcesComponent.d.ts +44 -0
  430. package/dist/projects/library-editor/src/apps/library-editor/components/video-sidebar-info/VideoSidebarInfoComponent.d.ts +26 -0
  431. package/dist/projects/library-editor/src/apps/library-editor/components/video-subtitles/SubtitleItemComponent.d.ts +18 -0
  432. package/dist/projects/library-editor/src/apps/library-editor/components/video-subtitles/VideoSubtitlesComponent.d.ts +26 -0
  433. package/dist/projects/library-editor/src/apps/library-editor/constants/VideoCollectionTypes.d.ts +3 -0
  434. package/dist/projects/library-editor/src/apps/library-editor/errors/folder-empty/FolderEmptyError.d.ts +8 -0
  435. package/dist/projects/library-editor/src/apps/library-editor/errors/folder-max-depth/FolderMaxDepthError.d.ts +7 -0
  436. package/dist/projects/library-editor/src/apps/library-editor/errors/folder-not-empty/FolderNotEmptyError.d.ts +7 -0
  437. package/dist/projects/library-editor/src/apps/library-editor/errors/folder-not-found/FolderNotFound.d.ts +6 -0
  438. package/dist/projects/library-editor/src/apps/library-editor/errors/forbidden-folder/ForbiddenFolderError.d.ts +6 -0
  439. package/dist/projects/library-editor/src/apps/library-editor/errors/forbidden-video/ForbiddenVideoError.d.ts +6 -0
  440. package/dist/projects/library-editor/src/apps/library-editor/errors/image-dimensions-too-small/ImageDimensionsTooSmallError.d.ts +9 -0
  441. package/dist/projects/library-editor/src/apps/library-editor/errors/library-has-subscribers/LibraryHasSubscribersError.d.ts +7 -0
  442. package/dist/projects/library-editor/src/apps/library-editor/errors/library-not-empty/LibraryNotEmptyError.d.ts +7 -0
  443. package/dist/projects/library-editor/src/apps/library-editor/errors/max-custom-libraries/MaxCustomLibrariesError.d.ts +9 -0
  444. package/dist/projects/library-editor/src/apps/library-editor/errors/series-not-found/SeriesNotFoundError.d.ts +6 -0
  445. package/dist/projects/library-editor/src/apps/library-editor/errors/too-many-resources/TooManyResourcesError.d.ts +8 -0
  446. package/dist/projects/library-editor/src/apps/library-editor/errors/too-many-subtitles/TooManySubtitlesError.d.ts +8 -0
  447. package/dist/projects/library-editor/src/apps/library-editor/errors/video-not-found/VideoNotFoundError.d.ts +6 -0
  448. package/dist/projects/library-editor/src/apps/library-editor/errors/video-write-permission/VideoWritePermissionError.d.ts +6 -0
  449. package/dist/projects/library-editor/src/apps/library-editor/models/ChapterConcatenateRequest.d.ts +3 -0
  450. package/dist/projects/library-editor/src/apps/library-editor/services/ChapterDataService.d.ts +15 -0
  451. package/dist/projects/library-editor/src/apps/library-editor/services/CompanyDataService.d.ts +7 -0
  452. package/dist/projects/library-editor/src/apps/library-editor/services/ExportDataService.d.ts +11 -0
  453. package/dist/projects/library-editor/src/apps/library-editor/services/FieldsDataService.d.ts +12 -0
  454. package/dist/projects/library-editor/src/apps/library-editor/services/FolderDragDropService.d.ts +27 -0
  455. package/dist/projects/library-editor/src/apps/library-editor/services/LibraryDataService.d.ts +65 -0
  456. package/dist/projects/library-editor/src/apps/library-editor/services/LinkDataService.d.ts +14 -0
  457. package/dist/projects/library-editor/src/apps/library-editor/services/PersonDataService.d.ts +7 -0
  458. package/dist/projects/library-editor/src/apps/library-editor/services/RatingsDataService.d.ts +7 -0
  459. package/dist/projects/library-editor/src/apps/library-editor/services/ResourceDataService.d.ts +13 -0
  460. package/dist/projects/library-editor/src/apps/library-editor/services/SeriesDataService.d.ts +16 -0
  461. package/dist/projects/library-editor/src/apps/library-editor/services/SubtitleDataService.d.ts +11 -0
  462. package/dist/projects/library-editor/src/apps/library-editor/services/TagDataService.d.ts +9 -0
  463. package/dist/projects/library-editor/src/apps/library-editor/services/VideoDataService.d.ts +45 -0
  464. package/dist/projects/library-editor/src/apps/library-editor/services/VideoDragDropService.d.ts +26 -0
  465. package/dist/projects/library-editor/src/apps/library-editor/utils/ChapterHelper.d.ts +18 -0
  466. package/dist/projects/library-editor/src/apps/library-editor/utils/EditVideoHelpers.d.ts +93 -0
  467. package/dist/projects/library-editor/src/apps/library-editor/utils/VideoDetailsHelper.d.ts +17 -0
  468. package/dist/projects/library-editor/src/apps/library-editor/views/add-to-exchange/AddToExchangeView.d.ts +34 -0
  469. package/dist/projects/library-editor/src/apps/library-editor/views/banner-upload/BannerUploadView.d.ts +32 -0
  470. package/dist/projects/library-editor/src/apps/library-editor/views/delete-folder/DeleteFolderView.d.ts +28 -0
  471. package/dist/projects/library-editor/src/apps/library-editor/views/delete-library/DeleteLibraryView.d.ts +23 -0
  472. package/dist/projects/library-editor/src/apps/library-editor/views/delete-videos/DeleteVideosView.d.ts +29 -0
  473. package/dist/projects/library-editor/src/apps/library-editor/views/edit-chapters/EditChaptersView.d.ts +71 -0
  474. package/dist/projects/library-editor/src/apps/library-editor/views/edit-folder-images/EditFolderImagesView.d.ts +51 -0
  475. package/dist/projects/library-editor/src/apps/library-editor/views/edit-library/RenameLibraryView.d.ts +29 -0
  476. package/dist/projects/library-editor/src/apps/library-editor/views/edit-link/EditLinkView.d.ts +30 -0
  477. package/dist/projects/library-editor/src/apps/library-editor/views/edit-resource/EditResourceView.d.ts +34 -0
  478. package/dist/projects/library-editor/src/apps/library-editor/views/edit-resources/EditResourcesView.d.ts +92 -0
  479. package/dist/projects/library-editor/src/apps/library-editor/views/edit-video/EditVideoView.d.ts +125 -0
  480. package/dist/projects/library-editor/src/apps/library-editor/views/generate-pdf/GeneratePdfView.d.ts +35 -0
  481. package/dist/projects/library-editor/src/apps/library-editor/views/left-navigation/LeftNavigationView.d.ts +33 -0
  482. package/dist/projects/library-editor/src/apps/library-editor/views/library/LibraryView.d.ts +31 -0
  483. package/dist/projects/library-editor/src/apps/library-editor/views/move-folder/MoveFolderView.d.ts +44 -0
  484. package/dist/projects/library-editor/src/apps/library-editor/views/move-video/MoveVideoView.d.ts +50 -0
  485. package/dist/projects/library-editor/src/apps/library-editor/views/new-folder/NewFolderView.d.ts +44 -0
  486. package/dist/projects/library-editor/src/apps/library-editor/views/new-library/NewLibraryView.d.ts +26 -0
  487. package/dist/projects/library-editor/src/apps/library-editor/views/no-library/NoLibraryView.d.ts +10 -0
  488. package/dist/projects/library-editor/src/apps/library-editor/views/publish-library/PublishLibraryView.d.ts +19 -0
  489. package/dist/projects/library-editor/src/apps/library-editor/views/rename-folder/RenameFolderView.d.ts +39 -0
  490. package/dist/projects/library-editor/src/apps/library-editor/views/suggest-an-edit/SuggestAnEditView.d.ts +58 -0
  491. package/dist/projects/library-editor/src/apps/library-editor/views/thumbnail-upload/ThumbnailUploadView.d.ts +34 -0
  492. package/dist/projects/library-editor/src/apps/library-editor/views/video-collection/VideoCollectionView.d.ts +105 -0
  493. package/dist/projects/library-editor/src/apps/library-editor/views/video-details/VideoDetailsView.d.ts +44 -0
  494. package/dist/projects/library-editor/src/apps/migration-wizard/MigrationWizardApplication.d.ts +45 -0
  495. package/dist/projects/library-editor/src/apps/migration-wizard/collections/HomeFolderCollection.d.ts +6 -0
  496. package/dist/projects/library-editor/src/apps/migration-wizard/collections/SmartSelectVideoCollection.d.ts +5 -0
  497. package/dist/projects/library-editor/src/apps/migration-wizard/components/banner/BannerComponent.d.ts +18 -0
  498. package/dist/projects/library-editor/src/apps/migration-wizard/components/empty-video-list/EmptyVideoListComponent.d.ts +14 -0
  499. package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-actions/ErroredVideoActionsComponent.d.ts +22 -0
  500. package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-footer/ErroredVideoFooterComponent.d.ts +21 -0
  501. package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-item/ErroredVideoItemComponent.d.ts +30 -0
  502. package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-list/ErroredVideoListComponent.d.ts +12 -0
  503. package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-metadata/ErroredVideoMetadataComponent.d.ts +8 -0
  504. package/dist/projects/library-editor/src/apps/migration-wizard/components/errored-video-preview/ErroredVideoPreviewComponent.d.ts +17 -0
  505. package/dist/projects/library-editor/src/apps/migration-wizard/components/generate-report/GenerateReportComponent.d.ts +25 -0
  506. package/dist/projects/library-editor/src/apps/migration-wizard/components/generate-report-button/GenerateReportButtonComponent.d.ts +10 -0
  507. package/dist/projects/library-editor/src/apps/migration-wizard/components/migration-video-item/MigrationVideoItemComponent.d.ts +30 -0
  508. package/dist/projects/library-editor/src/apps/migration-wizard/components/progress-bar/ProgressBarComponent.d.ts +19 -0
  509. package/dist/projects/library-editor/src/apps/migration-wizard/components/progress-circle/ProgressCircleComponent.d.ts +20 -0
  510. package/dist/projects/library-editor/src/apps/migration-wizard/components/search-bar/SearchBarComponent.d.ts +19 -0
  511. package/dist/projects/library-editor/src/apps/migration-wizard/components/selected-video-item/SelectedVideoItemComponent.d.ts +9 -0
  512. package/dist/projects/library-editor/src/apps/migration-wizard/components/sorting-row/SortingRowComponent.d.ts +35 -0
  513. package/dist/projects/library-editor/src/apps/migration-wizard/components/status-bar/StatusBarComponent.d.ts +28 -0
  514. package/dist/projects/library-editor/src/apps/migration-wizard/components/video-list/VideoListCollection.d.ts +36 -0
  515. package/dist/projects/library-editor/src/apps/migration-wizard/components/video-list-collection/VideoListCollectionComponent.d.ts +16 -0
  516. package/dist/projects/library-editor/src/apps/migration-wizard/errors/already-migrated/AlreadyMigratedError.d.ts +6 -0
  517. package/dist/projects/library-editor/src/apps/migration-wizard/errors/backup-progress/BackupProgressError.d.ts +8 -0
  518. package/dist/projects/library-editor/src/apps/migration-wizard/errors/migration-finalisation/MigrationFinalisationError.d.ts +8 -0
  519. package/dist/projects/library-editor/src/apps/migration-wizard/errors/migration-progress/MigrationProgressError.d.ts +8 -0
  520. package/dist/projects/library-editor/src/apps/migration-wizard/errors/smart-migration-api-call/SmartMigrationApiCallError.d.ts +9 -0
  521. package/dist/projects/library-editor/src/apps/migration-wizard/filters/MigrationFilters.d.ts +8 -0
  522. package/dist/projects/library-editor/src/apps/migration-wizard/models/BackupToolBuild.d.ts +3 -0
  523. package/dist/projects/library-editor/src/apps/migration-wizard/models/CustomerMetadata.d.ts +9 -0
  524. package/dist/projects/library-editor/src/apps/migration-wizard/models/FinalisationTask.d.ts +3 -0
  525. package/dist/projects/library-editor/src/apps/migration-wizard/models/HomeFolder.d.ts +8 -0
  526. package/dist/projects/library-editor/src/apps/migration-wizard/models/MigrationOptions.d.ts +3 -0
  527. package/dist/projects/library-editor/src/apps/migration-wizard/models/SelectedVideo.d.ts +3 -0
  528. package/dist/projects/library-editor/src/apps/migration-wizard/models/SmartSelectVideo.d.ts +4 -0
  529. package/dist/projects/library-editor/src/apps/migration-wizard/models/VideoCount.d.ts +3 -0
  530. package/dist/projects/library-editor/src/apps/migration-wizard/services/FolderCacheService.d.ts +22 -0
  531. package/dist/projects/library-editor/src/apps/migration-wizard/services/LocalOptionsService.d.ts +10 -0
  532. package/dist/projects/library-editor/src/apps/migration-wizard/services/MigrationVideoDataService.d.ts +56 -0
  533. package/dist/projects/library-editor/src/apps/migration-wizard/services/SelectedVideoService.d.ts +19 -0
  534. package/dist/projects/library-editor/src/apps/migration-wizard/utils/FolderHelper.d.ts +8 -0
  535. package/dist/projects/library-editor/src/apps/migration-wizard/utils/VideoHelper.d.ts +29 -0
  536. package/dist/projects/library-editor/src/apps/migration-wizard/views/current-section-header/CurrentSectionHeaderView.d.ts +28 -0
  537. package/dist/projects/library-editor/src/apps/migration-wizard/views/generate-csv-report/GenerateCsvReportView.d.ts +27 -0
  538. package/dist/projects/library-editor/src/apps/migration-wizard/views/migration-error/MigrationErrorView.d.ts +40 -0
  539. package/dist/projects/library-editor/src/apps/migration-wizard/views/migration-progress/MigrationProgressView.d.ts +32 -0
  540. package/dist/projects/library-editor/src/apps/migration-wizard/views/publish-library-banner/PublishLibraryBannerView.d.ts +30 -0
  541. package/dist/projects/library-editor/src/apps/migration-wizard/views/publish-library-complete/PublishLibraryCompleteView.d.ts +15 -0
  542. package/dist/projects/library-editor/src/apps/migration-wizard/views/publish-library-progress/PublishLibraryProgressView.d.ts +18 -0
  543. package/dist/projects/library-editor/src/apps/migration-wizard/views/publisher-backup/PublisherBackupView.d.ts +19 -0
  544. package/dist/projects/library-editor/src/apps/migration-wizard/views/publisher-backup-complete/PublisherBackupCompleteView.d.ts +23 -0
  545. package/dist/projects/library-editor/src/apps/migration-wizard/views/publisher-backup-progress/PublisherBackupProgressView.d.ts +23 -0
  546. package/dist/projects/library-editor/src/apps/migration-wizard/views/publisher-backup-welcome/PublisherBackupWelcomeView.d.ts +19 -0
  547. package/dist/projects/library-editor/src/apps/migration-wizard/views/remigrate-video/RemigrateVideoView.d.ts +32 -0
  548. package/dist/projects/library-editor/src/apps/migration-wizard/views/selected-videos/SelectedVideosView.d.ts +32 -0
  549. package/dist/projects/library-editor/src/apps/migration-wizard/views/show-video-popup/ShowPublisherVideoPopupView.d.ts +26 -0
  550. package/dist/projects/library-editor/src/apps/migration-wizard/views/smart-migration/SmartMigrationView.d.ts +58 -0
  551. package/dist/projects/library-editor/src/apps/migration-wizard/views/start/StartView.d.ts +40 -0
  552. package/dist/projects/library-editor/src/apps/migration-wizard/views/videos-added/VideosAddedView.d.ts +24 -0
  553. package/dist/projects/library-editor/src/apps/notifications/NotificationsApplication.d.ts +11 -0
  554. package/dist/projects/library-editor/src/apps/notifications/constants/NotificationsAppVariables.d.ts +8 -0
  555. package/dist/projects/library-editor/src/apps/notifications/utils/NotificationsHelper.d.ts +10 -0
  556. package/dist/projects/library-editor/src/apps/search/SearchApplication.d.ts +16 -0
  557. package/dist/projects/library-editor/src/apps/search/collections/FilterCollection.d.ts +9 -0
  558. package/dist/projects/library-editor/src/apps/search/collections/OptionCollection.d.ts +5 -0
  559. package/dist/projects/library-editor/src/apps/search/components/filters/FiltersComponent.d.ts +27 -0
  560. package/dist/projects/library-editor/src/apps/search/components/filters/filter-button-list/FilterButtonItemComponent.d.ts +37 -0
  561. package/dist/projects/library-editor/src/apps/search/components/filters/filter-button-list/FilterButtonListComponent.d.ts +19 -0
  562. package/dist/projects/library-editor/src/apps/search/components/filters/filter-list/FilterItemComponent.d.ts +17 -0
  563. package/dist/projects/library-editor/src/apps/search/components/filters/filter-list/FilterListComponent.d.ts +24 -0
  564. package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/FilterOptionsComponent.d.ts +34 -0
  565. package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/bool-filter-options/BoolFilterOptionsComponent.d.ts +15 -0
  566. package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/duration-filter-options/DurationFilterOptionListComponent.d.ts +27 -0
  567. package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionItemComponent.d.ts +19 -0
  568. package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionsListComponent.d.ts +21 -0
  569. package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/range-filter-options/RangeFilterOptionListComponent.d.ts +23 -0
  570. package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsComponent.d.ts +27 -0
  571. package/dist/projects/library-editor/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsListComponent.d.ts +19 -0
  572. package/dist/projects/library-editor/src/apps/search/components/filters/more-filters-button/MoreFiltersButtonComponent.d.ts +42 -0
  573. package/dist/projects/library-editor/src/apps/search/components/results/SearchResultsComponent.d.ts +22 -0
  574. package/dist/projects/library-editor/src/apps/search/components/search-header/SearchHeaderComponent.d.ts +11 -0
  575. package/dist/projects/library-editor/src/apps/search/models/Filter.d.ts +8 -0
  576. package/dist/projects/library-editor/src/apps/search/models/Option.d.ts +4 -0
  577. package/dist/projects/library-editor/src/apps/search/models/Query.d.ts +3 -0
  578. package/dist/projects/library-editor/src/apps/search/models/SearchAppVariables.d.ts +4 -0
  579. package/dist/projects/library-editor/src/apps/search/services/SearchDataService.d.ts +12 -0
  580. package/dist/projects/library-editor/src/apps/search/utils/SearchHelper.d.ts +11 -0
  581. package/dist/projects/library-editor/src/apps/search/views/search/SearchView.d.ts +57 -0
  582. package/dist/projects/library-editor/src/apps/staff-requests/StaffRequestsApplication.d.ts +15 -0
  583. package/dist/projects/library-editor/src/apps/staff-requests/collections/StaffRequestCollection.d.ts +5 -0
  584. package/dist/projects/library-editor/src/apps/staff-requests/collections/StaffRequestMessageCollection.d.ts +5 -0
  585. package/dist/projects/library-editor/src/apps/staff-requests/components/staff-request-actions/StaffRequestActionsComponent.d.ts +42 -0
  586. package/dist/projects/library-editor/src/apps/staff-requests/components/staff-request-details/StaffRequestDetailsComponent.d.ts +30 -0
  587. package/dist/projects/library-editor/src/apps/staff-requests/components/staff-request-list/StaffRequestListComponent.d.ts +29 -0
  588. package/dist/projects/library-editor/src/apps/staff-requests/models/StaffRequest.d.ts +18 -0
  589. package/dist/projects/library-editor/src/apps/staff-requests/models/StaffRequestMessage.d.ts +7 -0
  590. package/dist/projects/library-editor/src/apps/staff-requests/services/StaffRequestDataService.d.ts +14 -0
  591. package/dist/projects/library-editor/src/apps/staff-requests/views/approve-staff-request/ApproveStaffRequestView.d.ts +34 -0
  592. package/dist/projects/library-editor/src/apps/staff-requests/views/reject-staff-request/RejectStaffRequestView.d.ts +34 -0
  593. package/dist/projects/library-editor/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +44 -0
  594. package/dist/projects/library-editor/src/apps/upload/UploadApplication.d.ts +23 -0
  595. package/dist/projects/library-editor/src/apps/upload/components/processing-progress/ProcessProgressComponentCollection.d.ts +38 -0
  596. package/dist/projects/library-editor/src/apps/upload/components/progress-info/ProgressInfoComponent.d.ts +10 -0
  597. package/dist/projects/library-editor/src/apps/upload/components/upload-actions/UploadActionsComponent.d.ts +21 -0
  598. package/dist/projects/library-editor/src/apps/upload/components/upload-folder-select/UploadFolderSelectComponent.d.ts +35 -0
  599. package/dist/projects/library-editor/src/apps/upload/components/upload-progress/UploadProgressComponent.d.ts +10 -0
  600. package/dist/projects/library-editor/src/apps/upload/components/upload-video/UploadVideoComponent.d.ts +47 -0
  601. package/dist/projects/library-editor/src/apps/upload/components/upload-video/UploadVideoComponentCollection.d.ts +19 -0
  602. package/dist/projects/library-editor/src/apps/upload/errors/no-libraries-upload/NoLibrariesUploadError.d.ts +7 -0
  603. package/dist/projects/library-editor/src/apps/upload/services/ImageUploadDataService.d.ts +8 -0
  604. package/dist/projects/library-editor/src/apps/upload/services/PendingItemsService.d.ts +7 -0
  605. package/dist/projects/library-editor/src/apps/upload/services/VideoUploadDataService.d.ts +17 -0
  606. package/dist/projects/library-editor/src/apps/upload/services/VideoUploadService.d.ts +8 -0
  607. package/dist/projects/library-editor/src/apps/upload/views/file-select/FileSelectView.d.ts +25 -0
  608. package/dist/projects/library-editor/src/apps/upload/views/progress-summary/ProgressSummaryView.d.ts +18 -0
  609. package/dist/projects/library-editor/src/apps/upload/views/upload-button/UploadButtonView.d.ts +26 -0
  610. package/dist/projects/library-editor/src/apps/upload/views/upload-complete/UploadCompleteView.d.ts +14 -0
  611. package/dist/projects/library-editor/src/apps/upload/views/upload-videos/UploadVideosView.d.ts +62 -0
  612. package/dist/projects/library-editor/src/apps/video-access/VideoAccessApplication.d.ts +12 -0
  613. package/dist/projects/library-editor/src/apps/video-access/views/restricted-video-list/RestrictedVideoListView.d.ts +34 -0
  614. package/dist/projects/library-editor/src/shared/alerts/VideoAlerts.d.ts +9 -0
  615. package/dist/projects/library-editor/src/shared/behaviors/backbone-validation/BackboneValidationBehavior.d.ts +14 -0
  616. package/dist/projects/library-editor/src/shared/behaviors/file-drop/FileDropBehavior.d.ts +19 -0
  617. package/dist/projects/library-editor/src/shared/behaviors/file-drop/FileDropMaskBehavior.d.ts +19 -0
  618. package/dist/projects/library-editor/src/shared/behaviors/file-select/FileSelectBehavior.d.ts +16 -0
  619. package/dist/projects/library-editor/src/shared/behaviors/image-select-behavior/ImageSelectBehavior.d.ts +23 -0
  620. package/dist/projects/library-editor/src/shared/behaviors/lazy-load/LazyLoadBehavior.d.ts +31 -0
  621. package/dist/projects/library-editor/src/shared/behaviors/lock-layout-file-drop/LockLayoutFileDropBehavior.d.ts +7 -0
  622. package/dist/projects/library-editor/src/shared/behaviors/popup/PopupBehavior.d.ts +65 -0
  623. package/dist/projects/library-editor/src/shared/behaviors/stickit/StickitBehavior.d.ts +6 -0
  624. package/dist/projects/library-editor/src/shared/collections/ChannelCollection.d.ts +6 -0
  625. package/dist/projects/library-editor/src/shared/collections/ChapterCollection.d.ts +7 -0
  626. package/dist/projects/library-editor/src/shared/collections/DirectorCollection.d.ts +6 -0
  627. package/dist/projects/library-editor/src/shared/collections/DistributorCollection.d.ts +6 -0
  628. package/dist/projects/library-editor/src/shared/collections/FieldsCollection.d.ts +5 -0
  629. package/dist/projects/library-editor/src/shared/collections/FolderCollection.d.ts +7 -0
  630. package/dist/projects/library-editor/src/shared/collections/InteractivesCollection.d.ts +6 -0
  631. package/dist/projects/library-editor/src/shared/collections/LibraryCollection.d.ts +7 -0
  632. package/dist/projects/library-editor/src/shared/collections/LinkCollection.d.ts +6 -0
  633. package/dist/projects/library-editor/src/shared/collections/LocalCacheDeviceCollection.d.ts +5 -0
  634. package/dist/projects/library-editor/src/shared/collections/LocalCacheDownloadCollection.d.ts +5 -0
  635. package/dist/projects/library-editor/src/shared/collections/MetadataCollection.d.ts +4 -0
  636. package/dist/projects/library-editor/src/shared/collections/ProducerCollection.d.ts +6 -0
  637. package/dist/projects/library-editor/src/shared/collections/ProductionCompanyCollection.d.ts +6 -0
  638. package/dist/projects/library-editor/src/shared/collections/RatingCollection.d.ts +4 -0
  639. package/dist/projects/library-editor/src/shared/collections/ResourceCollection.d.ts +6 -0
  640. package/dist/projects/library-editor/src/shared/collections/RestrictedObjectCollection.d.ts +5 -0
  641. package/dist/projects/library-editor/src/shared/collections/RestrictionCollection.d.ts +5 -0
  642. package/dist/projects/library-editor/src/shared/collections/SeasonCollection.d.ts +6 -0
  643. package/dist/projects/library-editor/src/shared/collections/SettingsCollection.d.ts +5 -0
  644. package/dist/projects/library-editor/src/shared/collections/SubtitleCollection.d.ts +6 -0
  645. package/dist/projects/library-editor/src/shared/collections/TagCollection.d.ts +6 -0
  646. package/dist/projects/library-editor/src/shared/collections/VideoCollection.d.ts +6 -0
  647. package/dist/projects/library-editor/src/shared/components/alert/AlertComponentCollection.d.ts +11 -0
  648. package/dist/projects/library-editor/src/shared/components/alert/AlertItemComponent.d.ts +44 -0
  649. package/dist/projects/library-editor/src/shared/components/breadcrumbs/BreadcrumbComponentCollection.d.ts +18 -0
  650. package/dist/projects/library-editor/src/shared/components/breadcrumbs/BreadcrumbsComponent.d.ts +27 -0
  651. package/dist/projects/library-editor/src/shared/components/bulk-video-actions/BulkVideoActionsComponent.d.ts +26 -0
  652. package/dist/projects/library-editor/src/shared/components/checkbox/BulkCheckboxComponent.d.ts +27 -0
  653. package/dist/projects/library-editor/src/shared/components/checkbox/CheckboxComponent.d.ts +25 -0
  654. package/dist/projects/library-editor/src/shared/components/clear-button/ClearButtonComponent.d.ts +18 -0
  655. package/dist/projects/library-editor/src/shared/components/date-picker/DatePickerComponent.d.ts +47 -0
  656. package/dist/projects/library-editor/src/shared/components/dialog/DialogView.d.ts +22 -0
  657. package/dist/projects/library-editor/src/shared/components/dropdown/DropdownButtonComponent.d.ts +36 -0
  658. package/dist/projects/library-editor/src/shared/components/dropdown/DropdownComponentCollection.d.ts +38 -0
  659. package/dist/projects/library-editor/src/shared/components/dropdown/DropdownItemComponent.d.ts +57 -0
  660. package/dist/projects/library-editor/src/shared/components/edit-video/edit-additional-info/EditAdditionalInfoComponent.d.ts +38 -0
  661. package/dist/projects/library-editor/src/shared/components/edit-video/edit-basic-info/EditBasicInfoComponent.d.ts +32 -0
  662. package/dist/projects/library-editor/src/shared/components/edit-video/edit-broadcast/EditBroadcastComponent.d.ts +22 -0
  663. package/dist/projects/library-editor/src/shared/components/edit-video/edit-broadcast/ToggleBroadcastComponent.d.ts +24 -0
  664. package/dist/projects/library-editor/src/shared/components/edit-video/edit-production-info/EditProductionInfoComponent.d.ts +61 -0
  665. package/dist/projects/library-editor/src/shared/components/edit-video/edit-season-info/EditSeasonInfoComponent.d.ts +33 -0
  666. package/dist/projects/library-editor/src/shared/components/edit-video/extra-info/ExtraInfoComponent.d.ts +16 -0
  667. package/dist/projects/library-editor/src/shared/components/edit-video/extra-info/ExtraInfoItemComponent.d.ts +17 -0
  668. package/dist/projects/library-editor/src/shared/components/edit-video/select-rating/SelectRatingCollectionComponent.d.ts +17 -0
  669. package/dist/projects/library-editor/src/shared/components/edit-video/select-rating/SelectRatingComponent.d.ts +40 -0
  670. package/dist/projects/library-editor/src/shared/components/edit-video/select-rating/SelectRatingItemComponent.d.ts +20 -0
  671. package/dist/projects/library-editor/src/shared/components/fields/FieldsComponent.d.ts +9 -0
  672. package/dist/projects/library-editor/src/shared/components/image-cropper/ImageCropperComponent.d.ts +34 -0
  673. package/dist/projects/library-editor/src/shared/components/left-nav/LeftNavComponent.d.ts +30 -0
  674. package/dist/projects/library-editor/src/shared/components/left-nav/LeftNavNodeComponent.d.ts +48 -0
  675. package/dist/projects/library-editor/src/shared/components/page-footer/PageFooterComponent.d.ts +15 -0
  676. package/dist/projects/library-editor/src/shared/components/page-header/PageHeaderComponent.d.ts +25 -0
  677. package/dist/projects/library-editor/src/shared/components/partial-loading/PartialLoadingComponent.d.ts +16 -0
  678. package/dist/projects/library-editor/src/shared/components/partial-loading/PartialLoadingComponentCollection.d.ts +20 -0
  679. package/dist/projects/library-editor/src/shared/components/resizing-text-area/ResizingTextAreaComponent.d.ts +23 -0
  680. package/dist/projects/library-editor/src/shared/components/select/SelectComponent.d.ts +54 -0
  681. package/dist/projects/library-editor/src/shared/components/spinner-button/SpinnerButtonComponent.d.ts +73 -0
  682. package/dist/projects/library-editor/src/shared/components/tabs/TabsComponent.d.ts +28 -0
  683. package/dist/projects/library-editor/src/shared/components/top-navigation/TopNavigationComponentCollection.d.ts +29 -0
  684. package/dist/projects/library-editor/src/shared/components/tree-dropdown/TreeDropdownComponent.d.ts +32 -0
  685. package/dist/projects/library-editor/src/shared/components/typeahead-input/SearchTypeaheadComponent.d.ts +74 -0
  686. package/dist/projects/library-editor/src/shared/components/typeahead-list/TypeaheadListComponent.d.ts +33 -0
  687. package/dist/projects/library-editor/src/shared/components/user-options-dropdown/UserOptionsDropdownComponent.d.ts +20 -0
  688. package/dist/projects/library-editor/src/shared/components/video-actions/VideoActionComponentCollection.d.ts +31 -0
  689. package/dist/projects/library-editor/src/shared/components/video-actions/VideoActionsComponent.d.ts +42 -0
  690. package/dist/projects/library-editor/src/shared/components/video-basic-info/VideoBasicInfoComponent.d.ts +33 -0
  691. package/dist/projects/library-editor/src/shared/components/video-description/VideoDescriptionComponent.d.ts +33 -0
  692. package/dist/projects/library-editor/src/shared/components/video-item/VideoItemComponent.d.ts +58 -0
  693. package/dist/projects/library-editor/src/shared/components/video-item/video-item-actions/base/VideoItemActionsComponent.d.ts +23 -0
  694. package/dist/projects/library-editor/src/shared/components/video-item/video-item-actions/video-item-processing-actions/VideoItemProcessingActionsComponent.d.ts +25 -0
  695. package/dist/projects/library-editor/src/shared/components/video-item/video-item-actions/video-item-review-actions/VideoItemReviewActionsComponent.d.ts +26 -0
  696. package/dist/projects/library-editor/src/shared/components/video-item/video-item-actions/video-item-video-access-actions/VideoItemVideoAccessActionsComponent.d.ts +22 -0
  697. package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/base/VideoItemMetadataComponent.d.ts +24 -0
  698. package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-awaiting-review-metadata/VideoItemAwaitingReviewMetadataComponent.d.ts +22 -0
  699. package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-badges/VideoItemBadgesComponent.d.ts +20 -0
  700. package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-past-releases-metadata/VideoItemPastReleasesMetadataComponent.d.ts +25 -0
  701. package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-processing-metadata/VideoItemProcessingMetadataComponent.d.ts +19 -0
  702. package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-search-metadata/VideoItemSearchMetadataComponent.d.ts +22 -0
  703. package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-series/VideoItemSeriesComponent.d.ts +22 -0
  704. package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-item-video-access-metadata/VideoItemVideoAccessMetadataComponent.d.ts +27 -0
  705. package/dist/projects/library-editor/src/shared/components/video-item/video-item-metadata/video-sources-metadata/VideoSourcesMetadataComponent.d.ts +22 -0
  706. package/dist/projects/library-editor/src/shared/components/video-item-preview/VideoItemPreviewComponent.d.ts +37 -0
  707. package/dist/projects/library-editor/src/shared/components/video-list/VideoListComponent.d.ts +44 -0
  708. package/dist/projects/library-editor/src/shared/components/video-preview/VideoPreviewComponent.d.ts +30 -0
  709. package/dist/projects/library-editor/src/shared/components/web-player/WebPlayerComponent.d.ts +53 -0
  710. package/dist/projects/library-editor/src/shared/constants/CacheDurations.d.ts +4 -0
  711. package/dist/projects/library-editor/src/shared/constants/Services.d.ts +62 -0
  712. package/dist/projects/library-editor/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +6 -0
  713. package/dist/projects/library-editor/src/shared/errors/authentication/AuthenticationError.d.ts +8 -0
  714. package/dist/projects/library-editor/src/shared/errors/customer-setting/CustomerSettingError.d.ts +8 -0
  715. package/dist/projects/library-editor/src/shared/errors/email-not-verified/EmailNotVerifiedError.d.ts +8 -0
  716. package/dist/projects/library-editor/src/shared/errors/forbidden-access/ForbiddenAccessError.d.ts +11 -0
  717. package/dist/projects/library-editor/src/shared/errors/local-cache-device-not-found/LocalCacheDeviceNotFoundError.d.ts +7 -0
  718. package/dist/projects/library-editor/src/shared/errors/no-beta-access/NoBetaAccessError.d.ts +8 -0
  719. package/dist/projects/library-editor/src/shared/errors/not-found/NotFoundError.d.ts +5 -0
  720. package/dist/projects/library-editor/src/shared/errors/old-version/OldVersionError.d.ts +8 -0
  721. package/dist/projects/library-editor/src/shared/errors/too-many-files/TooManyFilesError.d.ts +7 -0
  722. package/dist/projects/library-editor/src/shared/filters/BetaAccessFilter.d.ts +3 -0
  723. package/dist/projects/library-editor/src/shared/filters/CustomerSettingsFilter.d.ts +8 -0
  724. package/dist/projects/library-editor/src/shared/filters/RoleFilter.d.ts +4 -0
  725. package/dist/projects/library-editor/src/shared/filters/VerifiedEmailFilter.d.ts +3 -0
  726. package/dist/projects/library-editor/src/shared/index.d.ts +9 -0
  727. package/dist/projects/library-editor/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +5 -0
  728. package/dist/projects/library-editor/src/shared/interfaces/RecentVideoCollectionIdentifier.d.ts +20 -0
  729. package/dist/projects/library-editor/src/shared/interfaces/RecentVideoSubjectCollectionIdentifier.d.ts +16 -0
  730. package/dist/projects/library-editor/src/shared/interfaces/VideoCollectionIdentifier.d.ts +5 -0
  731. package/dist/projects/library-editor/src/shared/layouts/manage-layout/ManageLayoutView.d.ts +47 -0
  732. package/dist/projects/library-editor/src/shared/models/Avatar.d.ts +3 -0
  733. package/dist/projects/library-editor/src/shared/models/Banner.d.ts +3 -0
  734. package/dist/projects/library-editor/src/shared/models/Channel.d.ts +3 -0
  735. package/dist/projects/library-editor/src/shared/models/Chapter.d.ts +3 -0
  736. package/dist/projects/library-editor/src/shared/models/Company.d.ts +3 -0
  737. package/dist/projects/library-editor/src/shared/models/Config.d.ts +3 -0
  738. package/dist/projects/library-editor/src/shared/models/Customer.d.ts +3 -0
  739. package/dist/projects/library-editor/src/shared/models/Director.d.ts +3 -0
  740. package/dist/projects/library-editor/src/shared/models/DisabledSpinnerModel.d.ts +5 -0
  741. package/dist/projects/library-editor/src/shared/models/Distributor.d.ts +3 -0
  742. package/dist/projects/library-editor/src/shared/models/Folder.d.ts +14 -0
  743. package/dist/projects/library-editor/src/shared/models/Image.d.ts +3 -0
  744. package/dist/projects/library-editor/src/shared/models/Interactives.d.ts +3 -0
  745. package/dist/projects/library-editor/src/shared/models/LanguageConfig.d.ts +7 -0
  746. package/dist/projects/library-editor/src/shared/models/Library.d.ts +10 -0
  747. package/dist/projects/library-editor/src/shared/models/Link.d.ts +3 -0
  748. package/dist/projects/library-editor/src/shared/models/LocalCacheDevice.d.ts +3 -0
  749. package/dist/projects/library-editor/src/shared/models/LocalCacheDownload.d.ts +3 -0
  750. package/dist/projects/library-editor/src/shared/models/Logo.d.ts +3 -0
  751. package/dist/projects/library-editor/src/shared/models/Metadata.d.ts +3 -0
  752. package/dist/projects/library-editor/src/shared/models/Owner.d.ts +3 -0
  753. package/dist/projects/library-editor/src/shared/models/Person.d.ts +3 -0
  754. package/dist/projects/library-editor/src/shared/models/Phrases.d.ts +3 -0
  755. package/dist/projects/library-editor/src/shared/models/Playlist.d.ts +3 -0
  756. package/dist/projects/library-editor/src/shared/models/Producer.d.ts +3 -0
  757. package/dist/projects/library-editor/src/shared/models/ProductionCompany.d.ts +3 -0
  758. package/dist/projects/library-editor/src/shared/models/Rating.d.ts +3 -0
  759. package/dist/projects/library-editor/src/shared/models/Resource.d.ts +3 -0
  760. package/dist/projects/library-editor/src/shared/models/RestrictedObject.d.ts +3 -0
  761. package/dist/projects/library-editor/src/shared/models/Restriction.d.ts +3 -0
  762. package/dist/projects/library-editor/src/shared/models/Season.d.ts +3 -0
  763. package/dist/projects/library-editor/src/shared/models/Series.d.ts +7 -0
  764. package/dist/projects/library-editor/src/shared/models/Setting.d.ts +3 -0
  765. package/dist/projects/library-editor/src/shared/models/SharedResource.d.ts +3 -0
  766. package/dist/projects/library-editor/src/shared/models/Subtitle.d.ts +3 -0
  767. package/dist/projects/library-editor/src/shared/models/Tag.d.ts +3 -0
  768. package/dist/projects/library-editor/src/shared/models/Thumbnail.d.ts +3 -0
  769. package/dist/projects/library-editor/src/shared/models/User.d.ts +10 -0
  770. package/dist/projects/library-editor/src/shared/models/Video.d.ts +49 -0
  771. package/dist/projects/library-editor/src/shared/services/AlertService.d.ts +15 -0
  772. package/dist/projects/library-editor/src/shared/services/ConfigDataService.d.ts +23 -0
  773. package/dist/projects/library-editor/src/shared/services/CustomerDataService.d.ts +7 -0
  774. package/dist/projects/library-editor/src/shared/services/DownloadProxyDataServices.d.ts +8 -0
  775. package/dist/projects/library-editor/src/shared/services/IntercomService.d.ts +6 -0
  776. package/dist/projects/library-editor/src/shared/services/LocalCacheDataService.d.ts +12 -0
  777. package/dist/projects/library-editor/src/shared/services/NavigationLockService.d.ts +16 -0
  778. package/dist/projects/library-editor/src/shared/services/PageTitleService.d.ts +8 -0
  779. package/dist/projects/library-editor/src/shared/services/PageVisibilityService.d.ts +14 -0
  780. package/dist/projects/library-editor/src/shared/services/PartialLoadingService.d.ts +10 -0
  781. package/dist/projects/library-editor/src/shared/services/RestrictedVideoDataService.d.ts +15 -0
  782. package/dist/projects/library-editor/src/shared/services/SettingsDataService.d.ts +12 -0
  783. package/dist/projects/library-editor/src/shared/services/UserDataService.d.ts +20 -0
  784. package/dist/projects/library-editor/src/shared/services/VideoMixinService.d.ts +18 -0
  785. package/dist/projects/library-editor/src/shared/utils/BulkCheckboxHelper.d.ts +18 -0
  786. package/dist/projects/library-editor/src/shared/utils/CancelProcessingHelper.d.ts +4 -0
  787. package/dist/projects/library-editor/src/shared/utils/CollectionHelper.d.ts +10 -0
  788. package/dist/projects/library-editor/src/shared/utils/DialogHelper.d.ts +9 -0
  789. package/dist/projects/library-editor/src/shared/utils/DurationHelper.d.ts +7 -0
  790. package/dist/projects/library-editor/src/shared/utils/FolderTreeHelpers.d.ts +36 -0
  791. package/dist/projects/library-editor/src/shared/utils/ImageHelper.d.ts +32 -0
  792. package/dist/projects/library-editor/src/shared/utils/LocalCacheHelper.d.ts +7 -0
  793. package/dist/projects/library-editor/src/shared/utils/PartialLoadingHelper.d.ts +6 -0
  794. package/dist/projects/library-editor/src/shared/utils/PermissionsHelper.d.ts +13 -0
  795. package/dist/projects/library-editor/src/shared/utils/RatingHelper.d.ts +6 -0
  796. package/dist/projects/library-editor/src/shared/utils/RestrictedAccessHelper.d.ts +13 -0
  797. package/dist/projects/library-editor/src/shared/utils/SortHelper.d.ts +16 -0
  798. package/dist/projects/library-editor/src/shared/utils/TabHelper.d.ts +9 -0
  799. package/dist/projects/library-editor/src/shared/utils/VideoHelper.d.ts +11 -0
  800. package/dist/projects/library-editor/src/shared/utils/search/RawSearchHelper.d.ts +25 -0
  801. package/dist/projects/library-editor/src/shared/views/download-to-local-cache/DownloadToLocalCacheView.d.ts +28 -0
  802. package/dist/projects/library-editor/src/shared/views/download-video/DownloadVideoView.d.ts +19 -0
  803. package/dist/projects/library-editor/src/shared/views/restrict-access/RestrictAccessComponent.d.ts +7 -0
  804. package/dist/projects/library-editor/src/shared/views/restrict-access/RestrictAccessGroupComponent.d.ts +24 -0
  805. package/dist/projects/library-editor/src/shared/views/restrict-access/RestrictAccessView.d.ts +67 -0
  806. package/dist/projects/library-editor/src/shared/views/share/ShareView.d.ts +48 -0
  807. package/dist/projects/library-editor/src/shared/views/top-navigation/TopNavigationView.d.ts +35 -0
  808. package/dist/projects/library-editor/src/shared/views/user-options/UserOptionsView.d.ts +18 -0
  809. package/dist/projects/library-editor/src/startup/ConsoleOutput.d.ts +3 -0
  810. package/dist/projects/library-editor/src/startup/RegisterAjaxMiddleware.d.ts +3 -0
  811. package/dist/projects/library-editor/src/startup/RegisterAnalytics.d.ts +3 -0
  812. package/dist/projects/library-editor/src/startup/RegisterApplicationVariables.d.ts +3 -0
  813. package/dist/projects/library-editor/src/startup/RegisterApplications.d.ts +3 -0
  814. package/dist/projects/library-editor/src/startup/RegisterCaches.d.ts +3 -0
  815. package/dist/projects/library-editor/src/startup/RegisterDataProviders.d.ts +3 -0
  816. package/dist/projects/library-editor/src/startup/RegisterDataServices.d.ts +3 -0
  817. package/dist/projects/library-editor/src/startup/RegisterErrorHandlers.d.ts +3 -0
  818. package/dist/projects/library-editor/src/startup/RegisterHandlebarsHelpers.d.ts +3 -0
  819. package/dist/projects/library-editor/src/startup/RegisterLayouts.d.ts +3 -0
  820. package/dist/projects/library-editor/src/startup/RegisterRuntimeEnvironment.d.ts +3 -0
  821. package/dist/projects/library-editor/src/startup/RegisterServices.d.ts +3 -0
  822. package/dist/projects/library-editor/src/startup/RegisterViewDataExtensions.d.ts +15 -0
  823. package/dist/projects/library-editor/src/startup/index.d.ts +14 -0
  824. package/dist/scripts/0-48b01028ea.chunk.js +1 -0
  825. package/dist/scripts/1-098c567081.chunk.js +1 -0
  826. package/dist/scripts/10-b4b24c05f8.chunk.js +1 -0
  827. package/dist/scripts/11-e79fc84dc9.chunk.js +11 -0
  828. package/dist/scripts/12-58284faf21.chunk.js +1 -0
  829. package/dist/scripts/13-2c4cd203ec.chunk.js +1 -0
  830. package/dist/scripts/14-2eeb73cd11.chunk.js +1 -0
  831. package/dist/scripts/15-6fa6f47a8b.chunk.js +1 -0
  832. package/dist/scripts/16-68c900303f.chunk.js +1 -0
  833. package/dist/scripts/17-af7eca54ed.chunk.js +1 -0
  834. package/dist/scripts/18-087b42c483.chunk.js +1 -0
  835. package/dist/scripts/2-c70309751f.chunk.js +1 -0
  836. package/dist/scripts/20-caf95bbe64.chunk.js +1 -0
  837. package/dist/scripts/21-5d5cda7f47.chunk.js +1 -0
  838. package/dist/scripts/22-f2b4962990.chunk.js +1 -0
  839. package/dist/scripts/23-d575c690b9.chunk.js +1 -0
  840. package/dist/scripts/24-dc5b027075.chunk.js +1 -0
  841. package/dist/scripts/25-956d1e9caf.chunk.js +1 -0
  842. package/dist/scripts/26-7a3d12d816.chunk.js +1 -0
  843. package/dist/scripts/27-dc6045c275.chunk.js +1 -0
  844. package/dist/scripts/28-e7ce349a42.chunk.js +1 -0
  845. package/dist/scripts/29-e281d8346a.chunk.js +1 -0
  846. package/dist/scripts/3-afb156ea3e.chunk.js +1 -0
  847. package/dist/scripts/30-d4b6c1cd1d.chunk.js +1 -0
  848. package/dist/scripts/31-c1d42342dd.chunk.js +1 -0
  849. package/dist/scripts/32-1b1e4c86f5.chunk.js +1 -0
  850. package/dist/scripts/33-7ef65d086d.chunk.js +1 -0
  851. package/dist/scripts/34-6d7e7405af.chunk.js +1 -0
  852. package/dist/scripts/35-7d7e41a203.chunk.js +1 -0
  853. package/dist/scripts/36-37f9fd0ad1.chunk.js +1 -0
  854. package/dist/scripts/37-06db9481cd.chunk.js +1 -0
  855. package/dist/scripts/38-528abd1bba.chunk.js +1 -0
  856. package/dist/scripts/39-80001e779c.chunk.js +1 -0
  857. package/dist/scripts/4-f8a4d0b62a.chunk.js +1 -0
  858. package/dist/scripts/40-d59ee7c3e1.chunk.js +1 -0
  859. package/dist/scripts/41-8c75d122fc.chunk.js +1 -0
  860. package/dist/scripts/42-a68ee26f34.chunk.js +1 -0
  861. package/dist/scripts/43-bde1af67cb.chunk.js +1 -0
  862. package/dist/scripts/44-abdd275e46.chunk.js +1 -0
  863. package/dist/scripts/45-6b745e57af.chunk.js +1 -0
  864. package/dist/scripts/46-bee29b02a3.chunk.js +1 -0
  865. package/dist/scripts/47-c142425de4.chunk.js +1 -0
  866. package/dist/scripts/48-81efa76f40.chunk.js +1 -0
  867. package/dist/scripts/49-cbd218d6e4.chunk.js +1 -0
  868. package/dist/scripts/5-1b6768e719.chunk.js +1 -0
  869. package/dist/scripts/50-ec2f179d8c.chunk.js +1 -0
  870. package/dist/scripts/51-9b91910fc0.chunk.js +1 -0
  871. package/dist/scripts/52-d2e93491a5.chunk.js +1 -0
  872. package/dist/scripts/53-1c8ff136ad.chunk.js +1 -0
  873. package/dist/scripts/54-34116d34e6.chunk.js +1 -0
  874. package/dist/scripts/55-02803101de.chunk.js +1 -0
  875. package/dist/scripts/56-19ec4b6ccd.chunk.js +1 -0
  876. package/dist/scripts/57-17e93c944c.chunk.js +1 -0
  877. package/dist/scripts/58-dd77463e63.chunk.js +1 -0
  878. package/dist/scripts/59-08e8830b9c.chunk.js +1 -0
  879. package/dist/scripts/6-e87b3c0be1.chunk.js +1 -0
  880. package/dist/scripts/60-720797bb78.chunk.js +1 -0
  881. package/dist/scripts/61-66e55ae6e1.chunk.js +1 -0
  882. package/dist/scripts/62-beb29b208b.chunk.js +1 -0
  883. package/dist/scripts/63-bbc787afe7.chunk.js +1 -0
  884. package/dist/scripts/64-b10c083c61.chunk.js +1 -0
  885. package/dist/scripts/65-40c1cc2f53.chunk.js +1 -0
  886. package/dist/scripts/66-32ae3ca73f.chunk.js +1 -0
  887. package/dist/scripts/67-1f082de6fd.chunk.js +1 -0
  888. package/dist/scripts/68-f53fbad25f.chunk.js +1 -0
  889. package/dist/scripts/69-984061e3b8.chunk.js +1 -0
  890. package/dist/scripts/7-7d12e809a2.chunk.js +1 -0
  891. package/dist/scripts/70-8edf7afb7b.chunk.js +1 -0
  892. package/dist/scripts/71-6365b9e3d4.chunk.js +1 -0
  893. package/dist/scripts/72-85505b2300.chunk.js +1 -0
  894. package/dist/scripts/8-76e9f1bbc7.chunk.js +1 -0
  895. package/dist/scripts/9-a04919dbb2.chunk.js +1 -0
  896. package/dist/scripts/bundle-f3260e8016.min.js +1 -0
  897. package/dist/scripts/bundles.json +3 -0
  898. package/package.json +99 -102
  899. package/typings/utils/globals.d.ts +1 -0
  900. package/dist/bundle.js +0 -11
  901. package/dist/library-editor-app.css +0 -312
  902. package/dist/src/apps/content-updates/ContentUpdatesApplication.d.ts +0 -18
  903. package/dist/src/apps/content-updates/collections/SubjectCollection.d.ts +0 -5
  904. package/dist/src/apps/content-updates/collections/VideoGroupCollection.d.ts +0 -5
  905. package/dist/src/apps/content-updates/components/awaiting-review-header/AwaitingReviewHeaderComponent.d.ts +0 -14
  906. package/dist/src/apps/content-updates/components/content-updates-header/ContentUpdatesHeaderComponent.d.ts +0 -19
  907. package/dist/src/apps/content-updates/components/content-updates-left-nav/ContentUpdatesLeftNavComponent.d.ts +0 -18
  908. package/dist/src/apps/content-updates/components/past-releases-filters/PastReleasesFiltersComponent.d.ts +0 -20
  909. package/dist/src/apps/content-updates/components/past-releases-header/PastReleasesHeaderComponent.d.ts +0 -24
  910. package/dist/src/apps/content-updates/components/video-group-list/VideoGroupListComponent.d.ts +0 -36
  911. package/dist/src/apps/content-updates/models/Subject.d.ts +0 -3
  912. package/dist/src/apps/content-updates/models/VideoGroup.d.ts +0 -7
  913. package/dist/src/apps/content-updates/services/ContentUpdatesDataService.d.ts +0 -17
  914. package/dist/src/apps/content-updates/utils/ContentUpdatesHelper.d.ts +0 -7
  915. package/dist/src/apps/content-updates/views/add-to-library/AddToLibraryView.d.ts +0 -47
  916. package/dist/src/apps/content-updates/views/awaiting-review/AwaitingReviewView.d.ts +0 -36
  917. package/dist/src/apps/content-updates/views/disable-review/DisableReviewView.d.ts +0 -26
  918. package/dist/src/apps/content-updates/views/generate-past-releases-pdf/GeneratePastReleasesPdfView.d.ts +0 -41
  919. package/dist/src/apps/content-updates/views/index.d.ts +0 -5
  920. package/dist/src/apps/content-updates/views/past-releases/PastReleasesView.d.ts +0 -55
  921. package/dist/src/apps/dashboard/DashboardApplication.d.ts +0 -9
  922. package/dist/src/apps/dashboard/components/dashboard-action-tile/DashboardActionTileComponent.d.ts +0 -20
  923. package/dist/src/apps/dashboard/components/dashboard-info-tile/DashboardInfoTileComponent.d.ts +0 -7
  924. package/dist/src/apps/dashboard/components/dashboard-notifications/DashboardNotificationsComponents.d.ts +0 -15
  925. package/dist/src/apps/dashboard/components/dashboard-tile-container/DashboardTileContainerComponent.d.ts +0 -11
  926. package/dist/src/apps/dashboard/components/dashboard-tile-list/DashboardTileListComponent.d.ts +0 -14
  927. package/dist/src/apps/dashboard/views/DashboardView.d.ts +0 -38
  928. package/dist/src/apps/default/DefaultApplication.d.ts +0 -21
  929. package/dist/src/apps/default/views/dev-error/DevErrorView.d.ts +0 -11
  930. package/dist/src/apps/default/views/error-view/ErrorView.d.ts +0 -12
  931. package/dist/src/apps/default/views/not-found/NotFoundView.d.ts +0 -11
  932. package/dist/src/apps/index.d.ts +0 -18
  933. package/dist/src/apps/library-editor/LibraryEditorApplication.d.ts +0 -46
  934. package/dist/src/apps/library-editor/behaviors/draggable-folder/DraggableFolderBehavior.d.ts +0 -9
  935. package/dist/src/apps/library-editor/behaviors/draggable-video/DraggableVideoBehavior.d.ts +0 -24
  936. package/dist/src/apps/library-editor/behaviors/droppable/DroppableBehavior.d.ts +0 -19
  937. package/dist/src/apps/library-editor/behaviors/shared/DraggableItemComponent.d.ts +0 -15
  938. package/dist/src/apps/library-editor/components/add-links/AddLinksComponent.d.ts +0 -31
  939. package/dist/src/apps/library-editor/components/banner/BannerComponent.d.ts +0 -19
  940. package/dist/src/apps/library-editor/components/chapter-form/ChapterFormComponent.d.ts +0 -66
  941. package/dist/src/apps/library-editor/components/chapter-list/ChapterComponentCollection.d.ts +0 -25
  942. package/dist/src/apps/library-editor/components/chapter-list/ChapterItemComponent.d.ts +0 -37
  943. package/dist/src/apps/library-editor/components/chapters/ChaptersComponent.d.ts +0 -21
  944. package/dist/src/apps/library-editor/components/concatenate-request/ConcatenateRequestComponent.d.ts +0 -24
  945. package/dist/src/apps/library-editor/components/customer-logo/CustomerLogoComponent.d.ts +0 -19
  946. package/dist/src/apps/library-editor/components/edit-image/EditImageComponent.d.ts +0 -27
  947. package/dist/src/apps/library-editor/components/edit-images-wrapper/EditImagesWrapperComponent.d.ts +0 -23
  948. package/dist/src/apps/library-editor/components/edit-links/LinkItemComponent.d.ts +0 -16
  949. package/dist/src/apps/library-editor/components/edit-links/VideoLinksComponent.d.ts +0 -23
  950. package/dist/src/apps/library-editor/components/edit-thumbnail/EditThumbnailComponent.d.ts +0 -22
  951. package/dist/src/apps/library-editor/components/edit-video/EditVideoDetailsComponent.d.ts +0 -45
  952. package/dist/src/apps/library-editor/components/edit-video-tabs/EditVideoTabsComponent.d.ts +0 -24
  953. package/dist/src/apps/library-editor/components/expandable-tag-list/ExpandableTagListComponent.d.ts +0 -26
  954. package/dist/src/apps/library-editor/components/file-select/FileSelectComponent.d.ts +0 -30
  955. package/dist/src/apps/library-editor/components/file-uploads/FileUploadComponent.d.ts +0 -15
  956. package/dist/src/apps/library-editor/components/file-uploads/FileUploadsComponentCollection.d.ts +0 -13
  957. package/dist/src/apps/library-editor/components/folder-actions/FolderActionsDropdownComponent.d.ts +0 -18
  958. package/dist/src/apps/library-editor/components/folder-details/FolderDetailsComponent.d.ts +0 -34
  959. package/dist/src/apps/library-editor/components/folder-select/FolderSelectComponent.d.ts +0 -41
  960. package/dist/src/apps/library-editor/components/index.d.ts +0 -38
  961. package/dist/src/apps/library-editor/components/language-select/LanguageSelectComponent.d.ts +0 -28
  962. package/dist/src/apps/library-editor/components/language-select/LanguageSelectTypeaheadHelper.d.ts +0 -7
  963. package/dist/src/apps/library-editor/components/left-nav-libraries/LeftNavLibrariesComponent.d.ts +0 -45
  964. package/dist/src/apps/library-editor/components/library-actions/LibraryActionsComponent.d.ts +0 -26
  965. package/dist/src/apps/library-editor/components/library-folders/LibraryFolderListComponent.d.ts +0 -31
  966. package/dist/src/apps/library-editor/components/library-select/LibrarySelectComponent.d.ts +0 -27
  967. package/dist/src/apps/library-editor/components/save/SaveComponent.d.ts +0 -32
  968. package/dist/src/apps/library-editor/components/sort-select/SortSelectComponent.d.ts +0 -29
  969. package/dist/src/apps/library-editor/components/sub-folders/SubFolderComponent.d.ts +0 -15
  970. package/dist/src/apps/library-editor/components/sub-folders/SubFoldersComponent.d.ts +0 -9
  971. package/dist/src/apps/library-editor/components/suggest-edit/SuggestEditComponent.d.ts +0 -31
  972. package/dist/src/apps/library-editor/components/tag-list/TagComponentCollection.d.ts +0 -21
  973. package/dist/src/apps/library-editor/components/tag-list/TagItemComponent.d.ts +0 -28
  974. package/dist/src/apps/library-editor/components/tags/TagsComponent.d.ts +0 -30
  975. package/dist/src/apps/library-editor/components/video-collection-actions/VideoCollectionActionsComponent.d.ts +0 -24
  976. package/dist/src/apps/library-editor/components/video-header/VideoHeaderComponent.d.ts +0 -22
  977. package/dist/src/apps/library-editor/components/video-list-header/VideoListHeaderComponent.d.ts +0 -34
  978. package/dist/src/apps/library-editor/components/video-resources/ResourceItemComponent.d.ts +0 -22
  979. package/dist/src/apps/library-editor/components/video-resources/VideoResourcesComponent.d.ts +0 -44
  980. package/dist/src/apps/library-editor/components/video-sidebar-info/VideoSidebarInfoComponent.d.ts +0 -25
  981. package/dist/src/apps/library-editor/components/video-subtitles/SubtitleItemComponent.d.ts +0 -18
  982. package/dist/src/apps/library-editor/components/video-subtitles/VideoSubtitlesComponent.d.ts +0 -26
  983. package/dist/src/apps/library-editor/constants/VideoCollectionTypes.d.ts +0 -2
  984. package/dist/src/apps/library-editor/errors/folder-empty/FolderEmptyError.d.ts +0 -8
  985. package/dist/src/apps/library-editor/errors/folder-max-depth/FolderMaxDepthError.d.ts +0 -7
  986. package/dist/src/apps/library-editor/errors/folder-not-empty/FolderNotEmptyError.d.ts +0 -7
  987. package/dist/src/apps/library-editor/errors/folder-not-found/FolderNotFound.d.ts +0 -6
  988. package/dist/src/apps/library-editor/errors/forbidden-folder/ForbiddenFolderError.d.ts +0 -6
  989. package/dist/src/apps/library-editor/errors/forbidden-video/ForbiddenVideoError.d.ts +0 -6
  990. package/dist/src/apps/library-editor/errors/image-dimensions-too-small/ImageDimensionsTooSmallError.d.ts +0 -9
  991. package/dist/src/apps/library-editor/errors/library-has-subscribers/LibraryHasSubscribersError.d.ts +0 -7
  992. package/dist/src/apps/library-editor/errors/library-not-empty/LibraryNotEmptyError.d.ts +0 -7
  993. package/dist/src/apps/library-editor/errors/max-custom-libraries/MaxCustomLibrariesError.d.ts +0 -9
  994. package/dist/src/apps/library-editor/errors/series-not-found/SeriesNotFoundError.d.ts +0 -6
  995. package/dist/src/apps/library-editor/errors/too-many-resources/TooManyResourcesError.d.ts +0 -8
  996. package/dist/src/apps/library-editor/errors/too-many-subtitles/TooManySubtitlesError.d.ts +0 -8
  997. package/dist/src/apps/library-editor/errors/video-not-found/VideoNotFoundError.d.ts +0 -6
  998. package/dist/src/apps/library-editor/errors/video-write-permission/VideoWritePermissionError.d.ts +0 -6
  999. package/dist/src/apps/library-editor/models/ChapterConcatenateRequest.d.ts +0 -3
  1000. package/dist/src/apps/library-editor/services/ChapterDataService.d.ts +0 -15
  1001. package/dist/src/apps/library-editor/services/CompanyDataService.d.ts +0 -7
  1002. package/dist/src/apps/library-editor/services/ExportDataService.d.ts +0 -11
  1003. package/dist/src/apps/library-editor/services/FieldsDataService.d.ts +0 -11
  1004. package/dist/src/apps/library-editor/services/FolderDragDropService.d.ts +0 -27
  1005. package/dist/src/apps/library-editor/services/LibraryDataService.d.ts +0 -61
  1006. package/dist/src/apps/library-editor/services/LinkDataService.d.ts +0 -14
  1007. package/dist/src/apps/library-editor/services/PersonDataService.d.ts +0 -7
  1008. package/dist/src/apps/library-editor/services/RatingsDataService.d.ts +0 -7
  1009. package/dist/src/apps/library-editor/services/ResourceDataService.d.ts +0 -13
  1010. package/dist/src/apps/library-editor/services/SeriesDataService.d.ts +0 -15
  1011. package/dist/src/apps/library-editor/services/SubtitleDataService.d.ts +0 -11
  1012. package/dist/src/apps/library-editor/services/TagDataService.d.ts +0 -9
  1013. package/dist/src/apps/library-editor/services/VideoDataService.d.ts +0 -39
  1014. package/dist/src/apps/library-editor/services/VideoDragDropService.d.ts +0 -26
  1015. package/dist/src/apps/library-editor/services/index.d.ts +0 -15
  1016. package/dist/src/apps/library-editor/utils/ChapterHelper.d.ts +0 -18
  1017. package/dist/src/apps/library-editor/utils/EditVideoHelpers.d.ts +0 -93
  1018. package/dist/src/apps/library-editor/utils/VideoDetailsHelper.d.ts +0 -16
  1019. package/dist/src/apps/library-editor/views/add-to-exchange/AddToExchangeView.d.ts +0 -34
  1020. package/dist/src/apps/library-editor/views/banner-upload/BannerUploadView.d.ts +0 -32
  1021. package/dist/src/apps/library-editor/views/delete-folder/DeleteFolderView.d.ts +0 -28
  1022. package/dist/src/apps/library-editor/views/delete-library/DeleteLibraryView.d.ts +0 -23
  1023. package/dist/src/apps/library-editor/views/delete-videos/DeleteVideosView.d.ts +0 -29
  1024. package/dist/src/apps/library-editor/views/edit-chapters/EditChaptersView.d.ts +0 -71
  1025. package/dist/src/apps/library-editor/views/edit-folder-images/EditFolderImagesView.d.ts +0 -50
  1026. package/dist/src/apps/library-editor/views/edit-library/RenameLibraryView.d.ts +0 -29
  1027. package/dist/src/apps/library-editor/views/edit-link/EditLinkView.d.ts +0 -30
  1028. package/dist/src/apps/library-editor/views/edit-resource/EditResourceView.d.ts +0 -34
  1029. package/dist/src/apps/library-editor/views/edit-resources/EditResourcesView.d.ts +0 -92
  1030. package/dist/src/apps/library-editor/views/edit-video/EditVideoView.d.ts +0 -125
  1031. package/dist/src/apps/library-editor/views/generate-pdf/GeneratePdfView.d.ts +0 -35
  1032. package/dist/src/apps/library-editor/views/left-navigation/LeftNavigationView.d.ts +0 -33
  1033. package/dist/src/apps/library-editor/views/library/LibraryView.d.ts +0 -31
  1034. package/dist/src/apps/library-editor/views/move-folder/MoveFolderView.d.ts +0 -44
  1035. package/dist/src/apps/library-editor/views/move-video/MoveVideoView.d.ts +0 -49
  1036. package/dist/src/apps/library-editor/views/new-folder/NewFolderView.d.ts +0 -44
  1037. package/dist/src/apps/library-editor/views/new-library/NewLibraryView.d.ts +0 -26
  1038. package/dist/src/apps/library-editor/views/no-library/NoLibraryView.d.ts +0 -10
  1039. package/dist/src/apps/library-editor/views/publish-library/PublishLibraryView.d.ts +0 -19
  1040. package/dist/src/apps/library-editor/views/rename-folder/RenameFolderView.d.ts +0 -39
  1041. package/dist/src/apps/library-editor/views/suggest-an-edit/SuggestAnEditView.d.ts +0 -58
  1042. package/dist/src/apps/library-editor/views/thumbnail-upload/ThumbnailUploadView.d.ts +0 -33
  1043. package/dist/src/apps/library-editor/views/video-collection/VideoCollectionView.d.ts +0 -101
  1044. package/dist/src/apps/library-editor/views/video-details/VideoDetailsView.d.ts +0 -44
  1045. package/dist/src/apps/migration-wizard/MigrationWizardApplication.d.ts +0 -45
  1046. package/dist/src/apps/migration-wizard/collections/HomeFolderCollection.d.ts +0 -6
  1047. package/dist/src/apps/migration-wizard/collections/SmartSelectVideoCollection.d.ts +0 -5
  1048. package/dist/src/apps/migration-wizard/components/banner/BannerComponent.d.ts +0 -18
  1049. package/dist/src/apps/migration-wizard/components/empty-video-list/EmptyVideoListComponent.d.ts +0 -14
  1050. package/dist/src/apps/migration-wizard/components/errored-video-actions/ErroredVideoActionsComponent.d.ts +0 -22
  1051. package/dist/src/apps/migration-wizard/components/errored-video-footer/ErroredVideoFooterComponent.d.ts +0 -21
  1052. package/dist/src/apps/migration-wizard/components/errored-video-item/ErroredVideoItemComponent.d.ts +0 -30
  1053. package/dist/src/apps/migration-wizard/components/errored-video-list/ErroredVideoListComponent.d.ts +0 -12
  1054. package/dist/src/apps/migration-wizard/components/errored-video-metadata/ErroredVideoMetadataComponent.d.ts +0 -8
  1055. package/dist/src/apps/migration-wizard/components/errored-video-preview/ErroredVideoPreviewComponent.d.ts +0 -17
  1056. package/dist/src/apps/migration-wizard/components/generate-report/GenerateReportComponent.d.ts +0 -25
  1057. package/dist/src/apps/migration-wizard/components/generate-report-button/GenerateReportButtonComponent.d.ts +0 -10
  1058. package/dist/src/apps/migration-wizard/components/migration-video-item/MigrationVideoItemComponent.d.ts +0 -30
  1059. package/dist/src/apps/migration-wizard/components/progress-bar/ProgressBarComponent.d.ts +0 -19
  1060. package/dist/src/apps/migration-wizard/components/progress-circle/ProgressCircleComponent.d.ts +0 -20
  1061. package/dist/src/apps/migration-wizard/components/search-bar/SearchBarComponent.d.ts +0 -19
  1062. package/dist/src/apps/migration-wizard/components/selected-video-item/SelectedVideoItemComponent.d.ts +0 -9
  1063. package/dist/src/apps/migration-wizard/components/sorting-row/SortingRowComponent.d.ts +0 -35
  1064. package/dist/src/apps/migration-wizard/components/status-bar/StatusBarComponent.d.ts +0 -28
  1065. package/dist/src/apps/migration-wizard/components/video-list/VideoListCollection.d.ts +0 -36
  1066. package/dist/src/apps/migration-wizard/components/video-list-collection/VideoListCollectionComponent.d.ts +0 -16
  1067. package/dist/src/apps/migration-wizard/errors/already-migrated/AlreadyMigratedError.d.ts +0 -6
  1068. package/dist/src/apps/migration-wizard/errors/backup-progress/BackupProgressError.d.ts +0 -8
  1069. package/dist/src/apps/migration-wizard/errors/migration-finalisation/MigrationFinalisationError.d.ts +0 -8
  1070. package/dist/src/apps/migration-wizard/errors/migration-progress/MigrationProgressError.d.ts +0 -8
  1071. package/dist/src/apps/migration-wizard/errors/smart-migration-api-call/SmartMigrationApiCallError.d.ts +0 -9
  1072. package/dist/src/apps/migration-wizard/filters/MigrationFilters.d.ts +0 -8
  1073. package/dist/src/apps/migration-wizard/models/BackupToolBuild.d.ts +0 -3
  1074. package/dist/src/apps/migration-wizard/models/CustomerMetadata.d.ts +0 -9
  1075. package/dist/src/apps/migration-wizard/models/FinalisationTask.d.ts +0 -3
  1076. package/dist/src/apps/migration-wizard/models/HomeFolder.d.ts +0 -8
  1077. package/dist/src/apps/migration-wizard/models/MigrationOptions.d.ts +0 -3
  1078. package/dist/src/apps/migration-wizard/models/SelectedVideo.d.ts +0 -3
  1079. package/dist/src/apps/migration-wizard/models/SmartSelectVideo.d.ts +0 -4
  1080. package/dist/src/apps/migration-wizard/models/VideoCount.d.ts +0 -3
  1081. package/dist/src/apps/migration-wizard/services/FolderCacheService.d.ts +0 -22
  1082. package/dist/src/apps/migration-wizard/services/LocalOptionsService.d.ts +0 -10
  1083. package/dist/src/apps/migration-wizard/services/MigrationVideoDataService.d.ts +0 -56
  1084. package/dist/src/apps/migration-wizard/services/SelectedVideoService.d.ts +0 -19
  1085. package/dist/src/apps/migration-wizard/services/index.d.ts +0 -4
  1086. package/dist/src/apps/migration-wizard/utils/FolderHelper.d.ts +0 -8
  1087. package/dist/src/apps/migration-wizard/utils/VideoHelper.d.ts +0 -29
  1088. package/dist/src/apps/migration-wizard/views/current-section-header/CurrentSectionHeaderView.d.ts +0 -28
  1089. package/dist/src/apps/migration-wizard/views/generate-csv-report/GenerateCsvReportView.d.ts +0 -27
  1090. package/dist/src/apps/migration-wizard/views/index.d.ts +0 -13
  1091. package/dist/src/apps/migration-wizard/views/migration-error/MigrationErrorView.d.ts +0 -39
  1092. package/dist/src/apps/migration-wizard/views/migration-progress/MigrationProgressView.d.ts +0 -32
  1093. package/dist/src/apps/migration-wizard/views/publish-library-banner/PublishLibraryBannerView.d.ts +0 -30
  1094. package/dist/src/apps/migration-wizard/views/publish-library-complete/PublishLibraryCompleteView.d.ts +0 -15
  1095. package/dist/src/apps/migration-wizard/views/publish-library-progress/PublishLibraryProgressView.d.ts +0 -18
  1096. package/dist/src/apps/migration-wizard/views/publisher-backup/PublisherBackupView.d.ts +0 -19
  1097. package/dist/src/apps/migration-wizard/views/publisher-backup-complete/PublisherBackupCompleteView.d.ts +0 -23
  1098. package/dist/src/apps/migration-wizard/views/publisher-backup-progress/PublisherBackupProgressView.d.ts +0 -23
  1099. package/dist/src/apps/migration-wizard/views/publisher-backup-welcome/PublisherBackupWelcomeView.d.ts +0 -19
  1100. package/dist/src/apps/migration-wizard/views/remigrate-video/RemigrateVideoView.d.ts +0 -32
  1101. package/dist/src/apps/migration-wizard/views/selected-videos/SelectedVideosView.d.ts +0 -32
  1102. package/dist/src/apps/migration-wizard/views/show-video-popup/ShowPublisherVideoPopupView.d.ts +0 -26
  1103. package/dist/src/apps/migration-wizard/views/smart-migration/SmartMigrationView.d.ts +0 -58
  1104. package/dist/src/apps/migration-wizard/views/start/StartView.d.ts +0 -40
  1105. package/dist/src/apps/migration-wizard/views/videos-added/VideosAddedView.d.ts +0 -24
  1106. package/dist/src/apps/notifications/NotificationsApplication.d.ts +0 -11
  1107. package/dist/src/apps/notifications/constants/NotificationsAppVariables.d.ts +0 -7
  1108. package/dist/src/apps/notifications/utils/NotificationsHelper.d.ts +0 -10
  1109. package/dist/src/apps/search/SearchApplication.d.ts +0 -16
  1110. package/dist/src/apps/search/collections/FilterCollection.d.ts +0 -9
  1111. package/dist/src/apps/search/collections/OptionCollection.d.ts +0 -5
  1112. package/dist/src/apps/search/components/filters/FiltersComponent.d.ts +0 -27
  1113. package/dist/src/apps/search/components/filters/filter-button-list/FilterButtonItemComponent.d.ts +0 -37
  1114. package/dist/src/apps/search/components/filters/filter-button-list/FilterButtonListComponent.d.ts +0 -19
  1115. package/dist/src/apps/search/components/filters/filter-list/FilterItemComponent.d.ts +0 -17
  1116. package/dist/src/apps/search/components/filters/filter-list/FilterListComponent.d.ts +0 -24
  1117. package/dist/src/apps/search/components/filters/filter-options/FilterOptionsComponent.d.ts +0 -34
  1118. package/dist/src/apps/search/components/filters/filter-options/bool-filter-options/BoolFilterOptionsComponent.d.ts +0 -15
  1119. package/dist/src/apps/search/components/filters/filter-options/duration-filter-options/DurationFilterOptionListComponent.d.ts +0 -27
  1120. package/dist/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionItemComponent.d.ts +0 -19
  1121. package/dist/src/apps/search/components/filters/filter-options/filter-option-list/FilterOptionsListComponent.d.ts +0 -21
  1122. package/dist/src/apps/search/components/filters/filter-options/range-filter-options/RangeFilterOptionListComponent.d.ts +0 -23
  1123. package/dist/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsComponent.d.ts +0 -27
  1124. package/dist/src/apps/search/components/filters/filter-options/tag-filter-options/TagFilterOptionsListComponent.d.ts +0 -19
  1125. package/dist/src/apps/search/components/filters/more-filters-button/MoreFiltersButtonComponent.d.ts +0 -42
  1126. package/dist/src/apps/search/components/results/SearchResultsComponent.d.ts +0 -22
  1127. package/dist/src/apps/search/components/search-header/SearchHeaderComponent.d.ts +0 -11
  1128. package/dist/src/apps/search/models/Filter.d.ts +0 -8
  1129. package/dist/src/apps/search/models/Option.d.ts +0 -4
  1130. package/dist/src/apps/search/models/Query.d.ts +0 -3
  1131. package/dist/src/apps/search/models/SearchAppVariables.d.ts +0 -4
  1132. package/dist/src/apps/search/services/SearchDataService.d.ts +0 -12
  1133. package/dist/src/apps/search/utils/SearchHelper.d.ts +0 -11
  1134. package/dist/src/apps/search/views/search/SearchView.d.ts +0 -57
  1135. package/dist/src/apps/staff-requests/StaffRequestsApplication.d.ts +0 -15
  1136. package/dist/src/apps/staff-requests/collections/StaffRequestCollection.d.ts +0 -5
  1137. package/dist/src/apps/staff-requests/collections/StaffRequestMessageCollection.d.ts +0 -5
  1138. package/dist/src/apps/staff-requests/components/staff-request-actions/StaffRequestActionsComponent.d.ts +0 -42
  1139. package/dist/src/apps/staff-requests/components/staff-request-details/StaffRequestDetailsComponent.d.ts +0 -30
  1140. package/dist/src/apps/staff-requests/components/staff-request-list/StaffRequestListComponent.d.ts +0 -29
  1141. package/dist/src/apps/staff-requests/models/StaffRequest.d.ts +0 -14
  1142. package/dist/src/apps/staff-requests/models/StaffRequestMessage.d.ts +0 -7
  1143. package/dist/src/apps/staff-requests/services/StaffRequestDataService.d.ts +0 -14
  1144. package/dist/src/apps/staff-requests/views/approve-staff-request/ApproveStaffRequestView.d.ts +0 -34
  1145. package/dist/src/apps/staff-requests/views/reject-staff-request/RejectStaffRequestView.d.ts +0 -34
  1146. package/dist/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +0 -44
  1147. package/dist/src/apps/upload/UploadApplication.d.ts +0 -23
  1148. package/dist/src/apps/upload/components/processing-progress/ProcessProgressComponentCollection.d.ts +0 -38
  1149. package/dist/src/apps/upload/components/progress-info/ProgressInfoComponent.d.ts +0 -10
  1150. package/dist/src/apps/upload/components/upload-actions/UploadActionsComponent.d.ts +0 -21
  1151. package/dist/src/apps/upload/components/upload-folder-select/UploadFolderSelectComponent.d.ts +0 -35
  1152. package/dist/src/apps/upload/components/upload-progress/UploadProgressComponent.d.ts +0 -10
  1153. package/dist/src/apps/upload/components/upload-video/UploadVideoComponent.d.ts +0 -46
  1154. package/dist/src/apps/upload/components/upload-video/UploadVideoComponentCollection.d.ts +0 -18
  1155. package/dist/src/apps/upload/errors/no-libraries-upload/NoLibrariesUploadError.d.ts +0 -7
  1156. package/dist/src/apps/upload/services/ImageUploadDataService.d.ts +0 -8
  1157. package/dist/src/apps/upload/services/PendingItemsService.d.ts +0 -7
  1158. package/dist/src/apps/upload/services/VideoUploadDataService.d.ts +0 -17
  1159. package/dist/src/apps/upload/services/VideoUploadService.d.ts +0 -8
  1160. package/dist/src/apps/upload/views/file-select/FileSelectView.d.ts +0 -25
  1161. package/dist/src/apps/upload/views/progress-summary/ProgressSummaryView.d.ts +0 -18
  1162. package/dist/src/apps/upload/views/upload-button/UploadButtonView.d.ts +0 -26
  1163. package/dist/src/apps/upload/views/upload-complete/UploadCompleteView.d.ts +0 -14
  1164. package/dist/src/apps/upload/views/upload-videos/UploadVideosView.d.ts +0 -61
  1165. package/dist/src/apps/video-access/VideoAccessApplication.d.ts +0 -12
  1166. package/dist/src/apps/video-access/views/restricted-video-list/RestrictedVideoListView.d.ts +0 -34
  1167. package/dist/src/index.d.ts +0 -194
  1168. package/dist/src/shared/alerts/VideoAlerts.d.ts +0 -8
  1169. package/dist/src/shared/behaviors/backbone-validation/BackboneValidationBehavior.d.ts +0 -14
  1170. package/dist/src/shared/behaviors/file-drop/FileDropBehavior.d.ts +0 -19
  1171. package/dist/src/shared/behaviors/file-drop/FileDropMaskBehavior.d.ts +0 -19
  1172. package/dist/src/shared/behaviors/file-select/FileSelectBehavior.d.ts +0 -16
  1173. package/dist/src/shared/behaviors/image-select-behavior/ImageSelectBehavior.d.ts +0 -23
  1174. package/dist/src/shared/behaviors/lazy-load/LazyLoadBehavior.d.ts +0 -31
  1175. package/dist/src/shared/behaviors/lock-layout-file-drop/LockLayoutFileDropBehavior.d.ts +0 -7
  1176. package/dist/src/shared/behaviors/popup/PopupBehavior.d.ts +0 -65
  1177. package/dist/src/shared/behaviors/stickit/StickitBehavior.d.ts +0 -6
  1178. package/dist/src/shared/collections/ChannelCollection.d.ts +0 -6
  1179. package/dist/src/shared/collections/ChapterCollection.d.ts +0 -7
  1180. package/dist/src/shared/collections/DirectorCollection.d.ts +0 -6
  1181. package/dist/src/shared/collections/DistributorCollection.d.ts +0 -6
  1182. package/dist/src/shared/collections/FieldsCollection.d.ts +0 -5
  1183. package/dist/src/shared/collections/FolderCollection.d.ts +0 -7
  1184. package/dist/src/shared/collections/InteractivesCollection.d.ts +0 -6
  1185. package/dist/src/shared/collections/LibraryCollection.d.ts +0 -7
  1186. package/dist/src/shared/collections/LinkCollection.d.ts +0 -6
  1187. package/dist/src/shared/collections/LocalCacheDeviceCollection.d.ts +0 -5
  1188. package/dist/src/shared/collections/LocalCacheDownloadCollection.d.ts +0 -5
  1189. package/dist/src/shared/collections/MetadataCollection.d.ts +0 -4
  1190. package/dist/src/shared/collections/ProducerCollection.d.ts +0 -6
  1191. package/dist/src/shared/collections/ProductionCompanyCollection.d.ts +0 -6
  1192. package/dist/src/shared/collections/RatingCollection.d.ts +0 -4
  1193. package/dist/src/shared/collections/ResourceCollection.d.ts +0 -6
  1194. package/dist/src/shared/collections/RestrictedObjectCollection.d.ts +0 -5
  1195. package/dist/src/shared/collections/RestrictionCollection.d.ts +0 -5
  1196. package/dist/src/shared/collections/SeasonCollection.d.ts +0 -6
  1197. package/dist/src/shared/collections/SettingsCollection.d.ts +0 -5
  1198. package/dist/src/shared/collections/SubtitleCollection.d.ts +0 -6
  1199. package/dist/src/shared/collections/TagCollection.d.ts +0 -6
  1200. package/dist/src/shared/collections/VideoCollection.d.ts +0 -6
  1201. package/dist/src/shared/collections/index.d.ts +0 -23
  1202. package/dist/src/shared/components/alert/AlertComponentCollection.d.ts +0 -11
  1203. package/dist/src/shared/components/alert/AlertItemComponent.d.ts +0 -44
  1204. package/dist/src/shared/components/breadcrumbs/BreadcrumbComponentCollection.d.ts +0 -18
  1205. package/dist/src/shared/components/breadcrumbs/BreadcrumbsComponent.d.ts +0 -26
  1206. package/dist/src/shared/components/bulk-video-actions/BulkVideoActionsComponent.d.ts +0 -26
  1207. package/dist/src/shared/components/checkbox/BulkCheckboxComponent.d.ts +0 -27
  1208. package/dist/src/shared/components/checkbox/CheckboxComponent.d.ts +0 -25
  1209. package/dist/src/shared/components/clear-button/ClearButtonComponent.d.ts +0 -18
  1210. package/dist/src/shared/components/date-picker/DatePickerComponent.d.ts +0 -47
  1211. package/dist/src/shared/components/dialog/DialogView.d.ts +0 -22
  1212. package/dist/src/shared/components/dropdown/DropdownButtonComponent.d.ts +0 -36
  1213. package/dist/src/shared/components/dropdown/DropdownComponentCollection.d.ts +0 -38
  1214. package/dist/src/shared/components/dropdown/DropdownItemComponent.d.ts +0 -57
  1215. package/dist/src/shared/components/edit-video/edit-additional-info/EditAdditionalInfoComponent.d.ts +0 -37
  1216. package/dist/src/shared/components/edit-video/edit-basic-info/EditBasicInfoComponent.d.ts +0 -32
  1217. package/dist/src/shared/components/edit-video/edit-broadcast/EditBroadcastComponent.d.ts +0 -22
  1218. package/dist/src/shared/components/edit-video/edit-broadcast/ToggleBroadcastComponent.d.ts +0 -24
  1219. package/dist/src/shared/components/edit-video/edit-production-info/EditProductionInfoComponent.d.ts +0 -61
  1220. package/dist/src/shared/components/edit-video/edit-season-info/EditSeasonInfoComponent.d.ts +0 -33
  1221. package/dist/src/shared/components/edit-video/extra-info/ExtraInfoComponent.d.ts +0 -16
  1222. package/dist/src/shared/components/edit-video/extra-info/ExtraInfoItemComponent.d.ts +0 -17
  1223. package/dist/src/shared/components/edit-video/select-rating/SelectRatingCollectionComponent.d.ts +0 -17
  1224. package/dist/src/shared/components/edit-video/select-rating/SelectRatingComponent.d.ts +0 -40
  1225. package/dist/src/shared/components/edit-video/select-rating/SelectRatingItemComponent.d.ts +0 -20
  1226. package/dist/src/shared/components/fields/FieldsComponent.d.ts +0 -9
  1227. package/dist/src/shared/components/image-cropper/ImageCropperComponent.d.ts +0 -34
  1228. package/dist/src/shared/components/index.d.ts +0 -44
  1229. package/dist/src/shared/components/left-nav/LeftNavComponent.d.ts +0 -30
  1230. package/dist/src/shared/components/left-nav/LeftNavNodeComponent.d.ts +0 -48
  1231. package/dist/src/shared/components/page-footer/PageFooterComponent.d.ts +0 -15
  1232. package/dist/src/shared/components/page-header/PageHeaderComponent.d.ts +0 -25
  1233. package/dist/src/shared/components/partial-loading/PartialLoadingComponent.d.ts +0 -16
  1234. package/dist/src/shared/components/partial-loading/PartialLoadingComponentCollection.d.ts +0 -20
  1235. package/dist/src/shared/components/resizing-text-area/ResizingTextAreaComponent.d.ts +0 -23
  1236. package/dist/src/shared/components/select/SelectComponent.d.ts +0 -54
  1237. package/dist/src/shared/components/spinner-button/SpinnerButtonComponent.d.ts +0 -73
  1238. package/dist/src/shared/components/tabs/TabsComponent.d.ts +0 -28
  1239. package/dist/src/shared/components/top-navigation/TopNavigationComponentCollection.d.ts +0 -29
  1240. package/dist/src/shared/components/tree-dropdown/TreeDropdownComponent.d.ts +0 -32
  1241. package/dist/src/shared/components/typeahead-input/SearchTypeaheadComponent.d.ts +0 -74
  1242. package/dist/src/shared/components/typeahead-list/TypeaheadListComponent.d.ts +0 -33
  1243. package/dist/src/shared/components/user-options-dropdown/UserOptionsDropdownComponent.d.ts +0 -20
  1244. package/dist/src/shared/components/video-actions/VideoActionComponentCollection.d.ts +0 -31
  1245. package/dist/src/shared/components/video-actions/VideoActionsComponent.d.ts +0 -41
  1246. package/dist/src/shared/components/video-basic-info/VideoBasicInfoComponent.d.ts +0 -32
  1247. package/dist/src/shared/components/video-description/VideoDescriptionComponent.d.ts +0 -33
  1248. package/dist/src/shared/components/video-item/VideoItemComponent.d.ts +0 -56
  1249. package/dist/src/shared/components/video-item/video-item-actions/base/VideoItemActionsComponent.d.ts +0 -23
  1250. package/dist/src/shared/components/video-item/video-item-actions/video-item-processing-actions/VideoItemProcessingActionsComponent.d.ts +0 -25
  1251. package/dist/src/shared/components/video-item/video-item-actions/video-item-review-actions/VideoItemReviewActionsComponent.d.ts +0 -26
  1252. package/dist/src/shared/components/video-item/video-item-actions/video-item-video-access-actions/VideoItemVideoAccessActionsComponent.d.ts +0 -22
  1253. package/dist/src/shared/components/video-item/video-item-metadata/base/VideoItemMetadataComponent.d.ts +0 -24
  1254. package/dist/src/shared/components/video-item/video-item-metadata/video-item-awaiting-review-metadata/VideoItemAwaitingReviewMetadataComponent.d.ts +0 -21
  1255. package/dist/src/shared/components/video-item/video-item-metadata/video-item-badges/VideoItemBadgesComponent.d.ts +0 -20
  1256. package/dist/src/shared/components/video-item/video-item-metadata/video-item-past-releases-metadata/VideoItemPastReleasesMetadataComponent.d.ts +0 -24
  1257. package/dist/src/shared/components/video-item/video-item-metadata/video-item-processing-metadata/VideoItemProcessingMetadataComponent.d.ts +0 -19
  1258. package/dist/src/shared/components/video-item/video-item-metadata/video-item-search-metadata/VideoItemSearchMetadataComponent.d.ts +0 -22
  1259. package/dist/src/shared/components/video-item/video-item-metadata/video-item-series/VideoItemSeriesComponent.d.ts +0 -22
  1260. package/dist/src/shared/components/video-item/video-item-metadata/video-item-video-access-metadata/VideoItemVideoAccessMetadataComponent.d.ts +0 -26
  1261. package/dist/src/shared/components/video-item/video-item-metadata/video-sources-metadata/VideoSourcesMetadataComponent.d.ts +0 -22
  1262. package/dist/src/shared/components/video-item-preview/VideoItemPreviewComponent.d.ts +0 -37
  1263. package/dist/src/shared/components/video-list/VideoListComponent.d.ts +0 -43
  1264. package/dist/src/shared/components/video-preview/VideoPreviewComponent.d.ts +0 -30
  1265. package/dist/src/shared/components/web-player/WebPlayerComponent.d.ts +0 -53
  1266. package/dist/src/shared/constants/Services.d.ts +0 -61
  1267. package/dist/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +0 -6
  1268. package/dist/src/shared/errors/authentication/AuthenticationError.d.ts +0 -7
  1269. package/dist/src/shared/errors/customer-setting/CustomerSettingError.d.ts +0 -8
  1270. package/dist/src/shared/errors/email-not-verified/EmailNotVerifiedError.d.ts +0 -8
  1271. package/dist/src/shared/errors/forbidden-access/ForbiddenAccessError.d.ts +0 -11
  1272. package/dist/src/shared/errors/local-cache-device-not-found/LocalCacheDeviceNotFoundError.d.ts +0 -6
  1273. package/dist/src/shared/errors/no-beta-access/NoBetaAccessError.d.ts +0 -8
  1274. package/dist/src/shared/errors/not-found/NotFoundError.d.ts +0 -5
  1275. package/dist/src/shared/errors/old-version/OldVersionError.d.ts +0 -7
  1276. package/dist/src/shared/errors/too-many-files/TooManyFilesError.d.ts +0 -6
  1277. package/dist/src/shared/filters/BetaAccessFilter.d.ts +0 -3
  1278. package/dist/src/shared/filters/CustomerSettingsFilter.d.ts +0 -8
  1279. package/dist/src/shared/filters/RoleFilter.d.ts +0 -4
  1280. package/dist/src/shared/filters/VerifiedEmailFilter.d.ts +0 -3
  1281. package/dist/src/shared/index.d.ts +0 -14
  1282. package/dist/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +0 -4
  1283. package/dist/src/shared/interfaces/RecentVideoCollectionIdentifier.d.ts +0 -20
  1284. package/dist/src/shared/interfaces/RecentVideoSubjectCollectionIdentifier.d.ts +0 -16
  1285. package/dist/src/shared/interfaces/VideoCollectionIdentifier.d.ts +0 -4
  1286. package/dist/src/shared/layouts/manage-layout/ManageLayoutView.d.ts +0 -47
  1287. package/dist/src/shared/models/Avatar.d.ts +0 -3
  1288. package/dist/src/shared/models/Banner.d.ts +0 -3
  1289. package/dist/src/shared/models/Channel.d.ts +0 -3
  1290. package/dist/src/shared/models/Chapter.d.ts +0 -3
  1291. package/dist/src/shared/models/Company.d.ts +0 -3
  1292. package/dist/src/shared/models/Config.d.ts +0 -3
  1293. package/dist/src/shared/models/Customer.d.ts +0 -3
  1294. package/dist/src/shared/models/Director.d.ts +0 -3
  1295. package/dist/src/shared/models/DisabledSpinnerModel.d.ts +0 -5
  1296. package/dist/src/shared/models/Distributor.d.ts +0 -3
  1297. package/dist/src/shared/models/Folder.d.ts +0 -12
  1298. package/dist/src/shared/models/Image.d.ts +0 -3
  1299. package/dist/src/shared/models/Interactives.d.ts +0 -3
  1300. package/dist/src/shared/models/LanguageConfig.d.ts +0 -7
  1301. package/dist/src/shared/models/Library.d.ts +0 -10
  1302. package/dist/src/shared/models/Link.d.ts +0 -3
  1303. package/dist/src/shared/models/LocalCacheDevice.d.ts +0 -3
  1304. package/dist/src/shared/models/LocalCacheDownload.d.ts +0 -3
  1305. package/dist/src/shared/models/Logo.d.ts +0 -3
  1306. package/dist/src/shared/models/Metadata.d.ts +0 -3
  1307. package/dist/src/shared/models/Owner.d.ts +0 -3
  1308. package/dist/src/shared/models/Person.d.ts +0 -3
  1309. package/dist/src/shared/models/Phrases.d.ts +0 -3
  1310. package/dist/src/shared/models/Playlist.d.ts +0 -3
  1311. package/dist/src/shared/models/Producer.d.ts +0 -3
  1312. package/dist/src/shared/models/ProductionCompany.d.ts +0 -3
  1313. package/dist/src/shared/models/Rating.d.ts +0 -3
  1314. package/dist/src/shared/models/Resource.d.ts +0 -3
  1315. package/dist/src/shared/models/RestrictedObject.d.ts +0 -3
  1316. package/dist/src/shared/models/Restriction.d.ts +0 -3
  1317. package/dist/src/shared/models/Season.d.ts +0 -3
  1318. package/dist/src/shared/models/Series.d.ts +0 -7
  1319. package/dist/src/shared/models/Setting.d.ts +0 -3
  1320. package/dist/src/shared/models/SharedResource.d.ts +0 -3
  1321. package/dist/src/shared/models/Subtitle.d.ts +0 -3
  1322. package/dist/src/shared/models/Tag.d.ts +0 -3
  1323. package/dist/src/shared/models/Thumbnail.d.ts +0 -3
  1324. package/dist/src/shared/models/User.d.ts +0 -10
  1325. package/dist/src/shared/models/Video.d.ts +0 -29
  1326. package/dist/src/shared/models/index.d.ts +0 -38
  1327. package/dist/src/shared/services/AlertService.d.ts +0 -15
  1328. package/dist/src/shared/services/ConfigDataService.d.ts +0 -23
  1329. package/dist/src/shared/services/CustomerDataService.d.ts +0 -7
  1330. package/dist/src/shared/services/DownloadProxyDataServices.d.ts +0 -7
  1331. package/dist/src/shared/services/IntercomService.d.ts +0 -8
  1332. package/dist/src/shared/services/LocalCacheDataService.d.ts +0 -11
  1333. package/dist/src/shared/services/NavigationLockService.d.ts +0 -17
  1334. package/dist/src/shared/services/PageTitleService.d.ts +0 -10
  1335. package/dist/src/shared/services/PageVisibilityService.d.ts +0 -14
  1336. package/dist/src/shared/services/PartialLoadingService.d.ts +0 -12
  1337. package/dist/src/shared/services/RestrictedVideoDataService.d.ts +0 -13
  1338. package/dist/src/shared/services/SettingsDataService.d.ts +0 -12
  1339. package/dist/src/shared/services/UserDataService.d.ts +0 -20
  1340. package/dist/src/shared/services/VideoMixinService.d.ts +0 -16
  1341. package/dist/src/shared/services/index.d.ts +0 -14
  1342. package/dist/src/shared/utils/BulkCheckboxHelper.d.ts +0 -18
  1343. package/dist/src/shared/utils/CancelProcessingHelper.d.ts +0 -4
  1344. package/dist/src/shared/utils/CollectionHelper.d.ts +0 -10
  1345. package/dist/src/shared/utils/DialogHelper.d.ts +0 -9
  1346. package/dist/src/shared/utils/FolderTreeHelpers.d.ts +0 -36
  1347. package/dist/src/shared/utils/ImageHelper.d.ts +0 -31
  1348. package/dist/src/shared/utils/LocalCacheHelper.d.ts +0 -7
  1349. package/dist/src/shared/utils/PartialLoadingHelper.d.ts +0 -6
  1350. package/dist/src/shared/utils/PermissionsHelper.d.ts +0 -13
  1351. package/dist/src/shared/utils/RatingHelper.d.ts +0 -6
  1352. package/dist/src/shared/utils/RestrictedAccessHelper.d.ts +0 -13
  1353. package/dist/src/shared/utils/SortHelper.d.ts +0 -16
  1354. package/dist/src/shared/utils/TabHelper.d.ts +0 -9
  1355. package/dist/src/shared/utils/VideoHelper.d.ts +0 -11
  1356. package/dist/src/shared/utils/search/RawSearchHelper.d.ts +0 -21
  1357. package/dist/src/shared/views/download-to-local-cache/DownloadToLocalCacheView.d.ts +0 -28
  1358. package/dist/src/shared/views/download-video/DownloadVideoView.d.ts +0 -19
  1359. package/dist/src/shared/views/index.d.ts +0 -9
  1360. package/dist/src/shared/views/restrict-access/RestrictAccessComponent.d.ts +0 -7
  1361. package/dist/src/shared/views/restrict-access/RestrictAccessGroupComponent.d.ts +0 -24
  1362. package/dist/src/shared/views/restrict-access/RestrictAccessView.d.ts +0 -67
  1363. package/dist/src/shared/views/share/ShareView.d.ts +0 -48
  1364. package/dist/src/shared/views/top-navigation/TopNavigationView.d.ts +0 -35
  1365. package/dist/src/shared/views/user-options/UserOptionsView.d.ts +0 -18
  1366. /package/dist/{src/shared → libs/shared/src}/constants/CacheDurations.d.ts +0 -0
  1367. /package/dist/{src/shared → libs/shared/src}/utils/DurationHelper.d.ts +0 -0
  1368. /package/dist/{src → projects/library-editor/src}/apps/content-updates/collections/index.d.ts +0 -0
  1369. /package/dist/{src → projects/library-editor/src}/apps/content-updates/components/index.d.ts +0 -0
  1370. /package/dist/{src → projects/library-editor/src}/apps/content-updates/enums/PastReleaseFilterType.d.ts +0 -0
  1371. /package/dist/{src → projects/library-editor/src}/apps/content-updates/enums/ReleaseDateType.d.ts +0 -0
  1372. /package/dist/{src → projects/library-editor/src}/apps/content-updates/enums/index.d.ts +0 -0
  1373. /package/dist/{src → projects/library-editor/src}/apps/content-updates/models/index.d.ts +0 -0
  1374. /package/dist/{src → projects/library-editor/src}/apps/content-updates/services/index.d.ts +0 -0
  1375. /package/dist/{src → projects/library-editor/src}/apps/content-updates/utils/Constants.d.ts +0 -0
  1376. /package/dist/{src → projects/library-editor/src}/apps/content-updates/utils/PastReleasesHelper.d.ts +0 -0
  1377. /package/dist/{src → projects/library-editor/src}/apps/content-updates/utils/index.d.ts +0 -0
  1378. /package/dist/{src → projects/library-editor/src}/apps/dashboard/components/index.d.ts +0 -0
  1379. /package/dist/{src → projects/library-editor/src}/apps/library-editor/behaviors/index.d.ts +0 -0
  1380. /package/dist/{src → projects/library-editor/src}/apps/library-editor/behaviors/shared/DragOptions.d.ts +0 -0
  1381. /package/dist/{src → projects/library-editor/src}/apps/library-editor/behaviors/shared/index.d.ts +0 -0
  1382. /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/CheckboxTypes.d.ts +0 -0
  1383. /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/EditVideoBackButtonBlacklist.d.ts +0 -0
  1384. /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/EditVideoBackButtonKey.d.ts +0 -0
  1385. /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/LibraryEditorActions.d.ts +0 -0
  1386. /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/LibraryEditorRadioChannels.d.ts +0 -0
  1387. /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/MetadataTypes.d.ts +0 -0
  1388. /package/dist/{src → projects/library-editor/src}/apps/library-editor/constants/index.d.ts +0 -0
  1389. /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/MediaConcatenateStatus.d.ts +0 -0
  1390. /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/ObjectOwnerType.d.ts +0 -0
  1391. /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/TagBehavior.d.ts +0 -0
  1392. /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/TagOrientation.d.ts +0 -0
  1393. /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/VideoCollectionSource.d.ts +0 -0
  1394. /package/dist/{src → projects/library-editor/src}/apps/library-editor/enums/index.d.ts +0 -0
  1395. /package/dist/{src → projects/library-editor/src}/apps/library-editor/errors/index.d.ts +0 -0
  1396. /package/dist/{src → projects/library-editor/src}/apps/library-editor/models/index.d.ts +0 -0
  1397. /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/AddToLibraryCacheHelper.d.ts +0 -0
  1398. /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/DownloadHelper.d.ts +0 -0
  1399. /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/FolderValidation.d.ts +0 -0
  1400. /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/LanguageValidation.d.ts +0 -0
  1401. /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/LibraryValidation.d.ts +0 -0
  1402. /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/UploadVideoValidation.d.ts +0 -0
  1403. /package/dist/{src → projects/library-editor/src}/apps/library-editor/utils/index.d.ts +0 -0
  1404. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/collections/index.d.ts +0 -0
  1405. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/components/index.d.ts +0 -0
  1406. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/contants/MigrationErrorActions.d.ts +0 -0
  1407. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/contants/MigrationViewModels.d.ts +0 -0
  1408. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/CloudSyncStatus.d.ts +0 -0
  1409. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/FinalisationTaskStatus.d.ts +0 -0
  1410. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/FinalisationType.d.ts +0 -0
  1411. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/LocalOption.d.ts +0 -0
  1412. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/MigrationOption.d.ts +0 -0
  1413. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/MigrationReportType.d.ts +0 -0
  1414. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/SortField.d.ts +0 -0
  1415. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/ValidationResult.d.ts +0 -0
  1416. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/ValidationResultErrorType.d.ts +0 -0
  1417. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/VideoMigrationStatus.d.ts +0 -0
  1418. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/enums/index.d.ts +0 -0
  1419. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/errors/index.d.ts +0 -0
  1420. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/filters/index.d.ts +0 -0
  1421. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/interfaces/SelectedVideos.d.ts +0 -0
  1422. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/models/index.d.ts +0 -0
  1423. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/KeyContactHelper.d.ts +0 -0
  1424. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/MigrationErrorHelper.d.ts +0 -0
  1425. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/MigrationHelper.d.ts +0 -0
  1426. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/MigrationRadioChannels.d.ts +0 -0
  1427. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/MigrationWarningsSvgs.d.ts +0 -0
  1428. /package/dist/{src → projects/library-editor/src}/apps/migration-wizard/utils/ReportHelper.d.ts +0 -0
  1429. /package/dist/{src → projects/library-editor/src}/apps/notifications/constants/index.d.ts +0 -0
  1430. /package/dist/{src → projects/library-editor/src}/apps/notifications/utils/Constants.d.ts +0 -0
  1431. /package/dist/{src → projects/library-editor/src}/apps/notifications/utils/index.d.ts +0 -0
  1432. /package/dist/{src → projects/library-editor/src}/apps/search/collections/index.d.ts +0 -0
  1433. /package/dist/{src → projects/library-editor/src}/apps/search/components/filters/filter-button-list/index.d.ts +0 -0
  1434. /package/dist/{src → projects/library-editor/src}/apps/search/components/filters/filter-options/index.d.ts +0 -0
  1435. /package/dist/{src → projects/library-editor/src}/apps/search/components/filters/index.d.ts +0 -0
  1436. /package/dist/{src → projects/library-editor/src}/apps/search/constants/SearchRadioChannels.d.ts +0 -0
  1437. /package/dist/{src → projects/library-editor/src}/apps/search/constants/index.d.ts +0 -0
  1438. /package/dist/{src → projects/library-editor/src}/apps/search/models/index.d.ts +0 -0
  1439. /package/dist/{src → projects/library-editor/src}/apps/search/services/index.d.ts +0 -0
  1440. /package/dist/{src → projects/library-editor/src}/apps/search/utils/Constants.d.ts +0 -0
  1441. /package/dist/{src → projects/library-editor/src}/apps/search/utils/Enums.d.ts +0 -0
  1442. /package/dist/{src → projects/library-editor/src}/apps/search/utils/FilterHelper.d.ts +0 -0
  1443. /package/dist/{src → projects/library-editor/src}/apps/search/utils/FilterLabelGenerators.d.ts +0 -0
  1444. /package/dist/{src → projects/library-editor/src}/apps/search/utils/FilterQueryGenerators.d.ts +0 -0
  1445. /package/dist/{src → projects/library-editor/src}/apps/search/utils/FilterRouteQueryParamGenerators.d.ts +0 -0
  1446. /package/dist/{src → projects/library-editor/src}/apps/search/utils/index.d.ts +0 -0
  1447. /package/dist/{src → projects/library-editor/src}/apps/staff-requests/collections/index.d.ts +0 -0
  1448. /package/dist/{src → projects/library-editor/src}/apps/staff-requests/enums/StaffRequestStatus.d.ts +0 -0
  1449. /package/dist/{src → projects/library-editor/src}/apps/staff-requests/enums/index.d.ts +0 -0
  1450. /package/dist/{src → projects/library-editor/src}/apps/staff-requests/models/index.d.ts +0 -0
  1451. /package/dist/{src → projects/library-editor/src}/apps/staff-requests/services/index.d.ts +0 -0
  1452. /package/dist/{src → projects/library-editor/src}/apps/staff-requests/utils/StaffRequestApprovalValidation.d.ts +0 -0
  1453. /package/dist/{src → projects/library-editor/src}/apps/staff-requests/utils/StaffRequestRejectionValidation.d.ts +0 -0
  1454. /package/dist/{src → projects/library-editor/src}/apps/staff-requests/utils/index.d.ts +0 -0
  1455. /package/dist/{src → projects/library-editor/src}/apps/upload/components/index.d.ts +0 -0
  1456. /package/dist/{src → projects/library-editor/src}/apps/upload/errors/index.d.ts +0 -0
  1457. /package/dist/{src → projects/library-editor/src}/apps/upload/services/index.d.ts +0 -0
  1458. /package/dist/{src → projects/library-editor/src}/shared/alerts/index.d.ts +0 -0
  1459. /package/dist/{src → projects/library-editor/src}/shared/behaviors/file-drop/FileDropHelper.d.ts +0 -0
  1460. /package/dist/{src → projects/library-editor/src}/shared/behaviors/index.d.ts +0 -0
  1461. /package/dist/{src → projects/library-editor/src}/shared/components/partial-loading/index.d.ts +0 -0
  1462. /package/dist/{src → projects/library-editor/src}/shared/components/typeahead-input/templates/index.d.ts +0 -0
  1463. /package/dist/{src → projects/library-editor/src}/shared/components/video-item/index.d.ts +0 -0
  1464. /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/VideoItemBehaviors.d.ts +0 -0
  1465. /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/VideoItemComponentHelper.d.ts +0 -0
  1466. /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/VideoItemComponentTypes.d.ts +0 -0
  1467. /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/VideoItemComponents.d.ts +0 -0
  1468. /package/dist/{src → projects/library-editor/src}/shared/components/video-item/utils/index.d.ts +0 -0
  1469. /package/dist/{src → projects/library-editor/src}/shared/components/video-item/video-item-actions/index.d.ts +0 -0
  1470. /package/dist/{src → projects/library-editor/src}/shared/components/video-item/video-item-metadata/index.d.ts +0 -0
  1471. /package/dist/{src → projects/library-editor/src}/shared/constants/Actions.d.ts +0 -0
  1472. /package/dist/{src → projects/library-editor/src}/shared/constants/BootstrapKeys.d.ts +0 -0
  1473. /package/dist/{src → projects/library-editor/src}/shared/constants/DataPrefixes.d.ts +0 -0
  1474. /package/dist/{src → projects/library-editor/src}/shared/constants/DataServiceErrors.d.ts +0 -0
  1475. /package/dist/{src → projects/library-editor/src}/shared/constants/EventNames.d.ts +0 -0
  1476. /package/dist/{src → projects/library-editor/src}/shared/constants/FolderTreeIds.d.ts +0 -0
  1477. /package/dist/{src → projects/library-editor/src}/shared/constants/FormattedCustomerSettingNames.d.ts +0 -0
  1478. /package/dist/{src → projects/library-editor/src}/shared/constants/ImageSizes.d.ts +0 -0
  1479. /package/dist/{src → projects/library-editor/src}/shared/constants/ImageUrls.d.ts +0 -0
  1480. /package/dist/{src → projects/library-editor/src}/shared/constants/LayoutRegions.d.ts +0 -0
  1481. /package/dist/{src → projects/library-editor/src}/shared/constants/Layouts.d.ts +0 -0
  1482. /package/dist/{src → projects/library-editor/src}/shared/constants/LazyLoadBrowserSupport.d.ts +0 -0
  1483. /package/dist/{src → projects/library-editor/src}/shared/constants/MarketingSiteArticles.d.ts +0 -0
  1484. /package/dist/{src → projects/library-editor/src}/shared/constants/Misc.d.ts +0 -0
  1485. /package/dist/{src → projects/library-editor/src}/shared/constants/OnlineUrls.d.ts +0 -0
  1486. /package/dist/{src → projects/library-editor/src}/shared/constants/PartialLoadingComponents.d.ts +0 -0
  1487. /package/dist/{src → projects/library-editor/src}/shared/constants/RadioChannels.d.ts +0 -0
  1488. /package/dist/{src → projects/library-editor/src}/shared/constants/Search.d.ts +0 -0
  1489. /package/dist/{src → projects/library-editor/src}/shared/constants/SupportArticles.d.ts +0 -0
  1490. /package/dist/{src → projects/library-editor/src}/shared/constants/Webplayer.d.ts +0 -0
  1491. /package/dist/{src → projects/library-editor/src}/shared/constants/WithStatements.d.ts +0 -0
  1492. /package/dist/{src → projects/library-editor/src}/shared/constants/index.d.ts +0 -0
  1493. /package/dist/{src → projects/library-editor/src}/shared/enums/CitationType.d.ts +0 -0
  1494. /package/dist/{src → projects/library-editor/src}/shared/enums/CustomerRegions.d.ts +0 -0
  1495. /package/dist/{src → projects/library-editor/src}/shared/enums/EmptyStates.d.ts +0 -0
  1496. /package/dist/{src → projects/library-editor/src}/shared/enums/FileIdType.d.ts +0 -0
  1497. /package/dist/{src → projects/library-editor/src}/shared/enums/ImageType.d.ts +0 -0
  1498. /package/dist/{src → projects/library-editor/src}/shared/enums/MasterObjectTypes.d.ts +0 -0
  1499. /package/dist/{src → projects/library-editor/src}/shared/enums/MasterType.d.ts +0 -0
  1500. /package/dist/{src → projects/library-editor/src}/shared/enums/PartialLoading.d.ts +0 -0
  1501. /package/dist/{src → projects/library-editor/src}/shared/enums/RestrictedObjectType.d.ts +0 -0
  1502. /package/dist/{src → projects/library-editor/src}/shared/enums/SchoolTypes.d.ts +0 -0
  1503. /package/dist/{src → projects/library-editor/src}/shared/enums/Settings.d.ts +0 -0
  1504. /package/dist/{src → projects/library-editor/src}/shared/enums/SharedResourcePrivacy.d.ts +0 -0
  1505. /package/dist/{src → projects/library-editor/src}/shared/enums/SortTypes.d.ts +0 -0
  1506. /package/dist/{src → projects/library-editor/src}/shared/enums/StaffRequestOption.d.ts +0 -0
  1507. /package/dist/{src → projects/library-editor/src}/shared/enums/TimeType.d.ts +0 -0
  1508. /package/dist/{src → projects/library-editor/src}/shared/enums/UploadInteractionType.d.ts +0 -0
  1509. /package/dist/{src → projects/library-editor/src}/shared/enums/UserRole.d.ts +0 -0
  1510. /package/dist/{src → projects/library-editor/src}/shared/enums/YearGroups.d.ts +0 -0
  1511. /package/dist/{src → projects/library-editor/src}/shared/enums/index.d.ts +0 -0
  1512. /package/dist/{src → projects/library-editor/src}/shared/errors/index.d.ts +0 -0
  1513. /package/dist/{src → projects/library-editor/src}/shared/filters/index.d.ts +0 -0
  1514. /package/dist/{src → projects/library-editor/src}/shared/interfaces/index.d.ts +0 -0
  1515. /package/dist/{src → projects/library-editor/src}/shared/layouts/index.d.ts +0 -0
  1516. /package/dist/{src → projects/library-editor/src}/shared/utils/LazyLoadHelper.d.ts +0 -0
  1517. /package/dist/{src → projects/library-editor/src}/shared/utils/RadioChannelHelper.d.ts +0 -0
  1518. /package/dist/{src → projects/library-editor/src}/shared/utils/SettingsHelper.d.ts +0 -0
  1519. /package/dist/{src → projects/library-editor/src}/shared/utils/SpinnerHelper.d.ts +0 -0
  1520. /package/dist/{src → projects/library-editor/src}/shared/utils/SubtitleLanguageValidation.d.ts +0 -0
  1521. /package/dist/{src → projects/library-editor/src}/shared/utils/TextHelper.d.ts +0 -0
  1522. /package/dist/{src → projects/library-editor/src}/shared/utils/TimeHelper.d.ts +0 -0
  1523. /package/dist/{src → projects/library-editor/src}/shared/utils/index.d.ts +0 -0
  1524. /package/dist/{src → projects/library-editor/src}/shared/utils/search/index.d.ts +0 -0
  1525. /package/dist/{src → projects/library-editor/src}/shared/utils/search/raw-search-components/add-new/AddNewSuggestion.d.ts +0 -0
  1526. /package/dist/{src → projects/library-editor/src}/shared/utils/search/raw-search-components/index.d.ts +0 -0
  1527. /package/dist/{src → projects/library-editor/src}/shared/utils/search/raw-search-templates/index.d.ts +0 -0
  1528. /package/dist/{src → projects/library-editor/src}/styles/index.d.ts +0 -0
  1529. /package/dist/{typings → projects/library-editor/typings}/libs/LazyLoad.d.ts +0 -0
@@ -0,0 +1,35 @@
1
+ import { ObjectHash } from 'backbone';
2
+ import { Core } from "../../../../../../libs/common/src/backbone";
3
+ interface TopNavigationViewOptions extends Core.ViewOptions {
4
+ selected?: Core.AppLink;
5
+ }
6
+ export declare class TopNavigationView extends Core.View {
7
+ options: TopNavigationViewOptions;
8
+ private contentUpdatesDataService;
9
+ private settingsDataService;
10
+ private migrationVideoDataService;
11
+ private staffRequestDataService;
12
+ private currentUser;
13
+ private settings;
14
+ private migrationMetadata;
15
+ private contentUpdatesCollection;
16
+ private staffRequestCollection;
17
+ private errorCount;
18
+ constructor(options: TopNavigationViewOptions);
19
+ initialize(): void;
20
+ get name(): string;
21
+ get title(): boolean;
22
+ get className(): string;
23
+ get template(): string;
24
+ get lang(): string;
25
+ regions(): ObjectHash;
26
+ private initializeDataServices;
27
+ private bindListeners;
28
+ private initNavCollection;
29
+ private getPublisherArchiveIcon;
30
+ private filterNavItems;
31
+ get requiredResources(): Core.RequiredResourceHash;
32
+ onBeforeRender(): boolean;
33
+ onRender(): void;
34
+ }
35
+ export {};
@@ -0,0 +1,18 @@
1
+ import { ObjectHash } from 'backbone';
2
+ import { Core } from "../../../../../../libs/common/src/backbone";
3
+ import { User } from "../../models/User";
4
+ export declare class UserOptionsView extends Core.View {
5
+ currentUser: User;
6
+ private config;
7
+ get name(): string;
8
+ get title(): boolean;
9
+ get template(): string;
10
+ get lang(): string;
11
+ get className(): string;
12
+ get channelName(): string;
13
+ regions(): ObjectHash;
14
+ private renderOptions;
15
+ viewOptions(): ObjectHash;
16
+ get requiredResources(): Core.RequiredResourceHash;
17
+ onRender(): void;
18
+ }
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function ConsoleOutput(shell: Core.Shell, options: any, next: any): void;
3
+ export { ConsoleOutput };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterAjaxMiddleware(shell: Core.Shell, next: any): void;
3
+ export { RegisterAjaxMiddleware };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterAnalytics(shell: Core.Shell, next: Function): void;
3
+ export { RegisterAnalytics };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterApplicationVariables(shell: Core.Shell, next: Function): void;
3
+ export { RegisterApplicationVariables };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterApplications(shell: Core.Shell, next: Function): void;
3
+ export { RegisterApplications };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterCaches(shell: Core.Shell, next: Function): void;
3
+ export { RegisterCaches };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterDataProviders(shell: Core.Shell, next: Function): void;
3
+ export { RegisterDataProviders };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterDataServices(shell: Core.Shell, next: Function): void;
3
+ export { RegisterDataServices };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterErrorHandlers(shell: Core.Shell, next: Function): void;
3
+ export { RegisterErrorHandlers };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterHandlebarsHelpers(shell: Core.Shell, next: Function): void;
3
+ export { RegisterHandlebarsHelpers };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterLayouts(shell: Core.Shell, next: Function): void;
3
+ export { RegisterLayouts };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterRuntimeEnvironment(shell: Core.Shell, options: any, next: any): void;
3
+ export { RegisterRuntimeEnvironment };
@@ -0,0 +1,3 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ declare function RegisterServices(shell: Core.Shell, next: Function): void;
3
+ export { RegisterServices };
@@ -0,0 +1,15 @@
1
+ import { Core } from "../../../../libs/common/src/backbone";
2
+ /**
3
+ * A "view data extension", is a set of data that you want to make available in all handlebars templates.
4
+ * By default, templates receive its component's model data, and anything passed to `viewOptions()`
5
+ * (accessible as `{{options.example}}`).
6
+ *
7
+ * In this middleware, you can extend this view data with `common/CoreView`'s static `AddViewDataExtension()` method.
8
+ * This takes an object of the data you'd like to be added, or a function which returns an object of data for
9
+ * situations where a CoreView's `this` is needed. For example, `languageNamespaceExtension` adds a `languageNamespace`
10
+ * property to all templates (accessible by `{{languageNamespace}}`).
11
+ *
12
+ * See `serializeData()` in `common/BaseView.ts` to see how these extension objects are processed.
13
+ */
14
+ declare function RegisterViewDataExtensions(shell: Core.Shell, next: Function): void;
15
+ export { RegisterViewDataExtensions };
@@ -0,0 +1,14 @@
1
+ export * from './RegisterAjaxMiddleware';
2
+ export * from './RegisterAnalytics';
3
+ export * from './RegisterApplications';
4
+ export * from './RegisterCaches';
5
+ export * from './RegisterDataProviders';
6
+ export * from './RegisterDataServices';
7
+ export * from './RegisterLayouts';
8
+ export * from './RegisterRuntimeEnvironment';
9
+ export * from './RegisterServices';
10
+ export * from './RegisterErrorHandlers';
11
+ export * from './ConsoleOutput';
12
+ export * from './RegisterHandlebarsHelpers';
13
+ export * from './RegisterViewDataExtensions';
14
+ export * from './RegisterApplicationVariables';
@@ -0,0 +1 @@
1
+ (window.webpackJsonp_clickview_library_editor=window.webpackJsonp_clickview_library_editor||[]).push([[0],{667:function(t,e,n){t.exports={dragItem:"_2TIZ7",svgContainer:"_3JzEU",dragText:"_1Kdwj"}},668:function(t,e,n){var o=n(8);t.exports=(o.default||o).template({compiler:[8,">= 4.3.0"],main:function(t,e,n,o,r){t.propertyIsEnumerable;var i,s=t.lambda,a=t.escapeExpression;return'<span class="'+a(s(null!=(i=null!=(i=null!=e?e.options:e)?i.styles:i)?i.svgContainer:i,e))+' mr-2">'+(null!=(i=s(null!=(i=null!=e?e.options:e)?i.svg:i,e))?i:"")+'</span>\r\n<span class="'+a(s(null!=(i=null!=(i=null!=e?e.options:e)?i.styles:i)?i.dragText:i,e))+'">'+a(s(null!=(i=null!=e?e.options:e)?i.text:i,e))+"</span>"},useData:!0})},669:function(t,e,n){"use strict";var o=n(1),r=n(2),i=n(7),s=n(13),a=n(4),l=n(11),c=n(0),u=n(679),p=n(684),f=n(844),h=n.n(f);function d(t){return(d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function y(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function b(t,e){return(b=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function v(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,o=m(t);if(e){var r=m(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return g(this,n)}}function g(t,e){return!e||"object"!==d(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function m(t){return(m=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var k=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&b(t,e)}(g,t);var e,n,f,d=v(g);function g(t){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,g),d.call(this,t)}return e=g,(n=[{key:"initialize",value:function(){this.listenTo(this.model,"change:name",this.render);var t=this.getChildren();t&&this.listenTo(t,"add remove",this.render),this.listenTo(this,"open:sub:folders",this.onOpenSubFolders)}},{key:"events",value:function(){return{"click .ui-node":"onClick"}}},{key:"regions",value:function(){return{children:{el:"ul",replaceElement:!0},actions:{el:".actions-region",replaceElement:!0}}}},{key:"hasChildren",value:function(){var t=this.getChildren();return!!t&&!!t.length}},{key:"getChildren",value:function(){return this.options.childrenProperty?this.model.get(this.options.childrenProperty):null}},{key:"getText",value:function(){return this.options.textProperty?this.model.get(this.options.textProperty):this.model.get("name")}},{key:"isSelected",value:function(){return l.f.isSelected(this.options.folderTreeId,this.model.get("id"))}},{key:"isParent",value:function(){return l.f.isParent(this.options.folderTreeId,this.model.get("id"))}},{key:"isDisabled",value:function(){return this.options.disabledIds&&this.options.disabledIds[this.model.get("id").toString()]}},{key:"getAnchorClass",value:function(){var t="position-relative ".concat(this.options.styles.node);return this.isSelected()?t+=" text-white font-weight-bold":this.isDisabled()?t+=" text-muted":t+=" text-dark",t}},{key:"getAppLink",value:function(){if(!this.options.appLink)return{};var t=this.options.linkArgs,e=this.options.linkParams;return{application:this.options.appLink.application,action:this.options.appLink.action,args:o.isFunction(t)?t(this.model):null,params:o.isFunction(e)?e(this.model):null}}},{key:"onClick",value:function(t){t.stopPropagation();var e=this.getRegion("children"),n=i.Radio.channel(this.options.channelName);if(this.isDisabled()||(this.$el.addClass(this.options.styles.selected),this.getUI("text").addClass("text-white font-weight-bold")),this.options.isSelector&&n.trigger("folder:selected",this.model,this.isDisabled()),this.isDisabled()||this.isSelected()&&this.isCurrentPath()){if(t.stopImmediatePropagation(),t.preventDefault(),!this.hasChildren())return void(this.options.isSelector&&n.trigger("re:render:selector"));var o=!e.hasView();return o?this.openChildren():this.closeChildren(),void(this.options.isSelector&&o&&n.trigger("re:render:selector"))}this.hasChildren()&&(this.openChildren(),this.options.isSelector&&i.Radio.channel(this.options.channelName).trigger("re:render:selector"))}},{key:"isCurrentPath",value:function(){var t=r.a.AppLinkHelper.getCurrentAppLink(),e=this.getAppLink();return!o.keys(e).length||t.application===e.application&&t.action===e.action}},{key:"closeChildren",value:function(){var t=this.getRegion("children");this.$el.addClass(this.options.styles.collapsed),this.$el.removeClass(this.options.styles.parent),t.empty()}},{key:"openChildren",value:function(){this.$el.removeClass(this.options.styles.collapsed),this.renderChildren()}},{key:"onOpenSubFolders",value:function(t){this.renderedSubChildren||this.renderChildren(t)}},{key:"renderChildren",value:function(t){var e=this.getChildren();if(e&&e.length){var n={styles:this.options.styles,channelName:this.options.channelName,appLink:this.options.appLink,linkArgs:this.options.linkArgs,linkParams:this.options.linkParams,childrenProperty:this.options.childrenProperty,textProperty:this.options.textProperty,actions:this.options.actions,folderTreeId:this.options.folderTreeId,analyticsOptions:this.options.analyticsOptions,extraClass:this.options.extraClass,isSelector:this.options.isSelector,disabledIds:this.options.disabledIds};n.extraClasses=t,n.collection=e,this.showChildView("children",new D(n)),this.renderedSubChildren=!0}}},{key:"viewOptions",value:function(){var t="".concat(this.options.styles.item," ").concat(this.options.styles.customItem||"");return this.isDisabled()&&this.renderedSubChildren&&(t+=" ".concat(this.options.styles.disabledActive)),{children:this.getChildren(),itemClass:t,anchorClass:this.getAnchorClass(),caretClass:this.options.styles.caret,showCaret:this.hasChildren(),svg:s.a.getSvg(s.b.Caret),extraClasses:this.options.extraClasses,textStyle:this.options.styles.text,text:this.getText()}}},{key:"onRender",value:function(){this.resetClassName(),this.options.actions&&this.showChildView("actions",new this.options.actions({model:this.model,extraClasses:"rounded-circle mr-1 ".concat(this.options.styles.actions),buttonClass:"text-muted",analyticsOptions:this.options.analyticsOptions})),(this.isSelected()||this.isParent())&&this.renderChildren()}},{key:"name",get:function(){return"LeftNavNodeComponent"}},{key:"elements",get:function(){return{anchor:".ui-node",text:".ui-text"}}},{key:"tagName",get:function(){return"li"}},{key:"className",get:function(){var t="position-relative";return this.isSelected()&&(t+=" ".concat(this.options.styles.selected)),this.isParent()&&(t+=" ".concat(this.options.styles.parent)),t}},{key:"behaviors",get:function(){return this.options.isSelector?[]:[{behaviorClass:u.a,ui:"anchor",channelNames:[c.w.VIDEO_DRAG_DROP,c.w.FOLDER_DRAG_DROP],analyticsOptions:{location:a.k.LeftNav}},{behaviorClass:p.a}]}},{key:"appLinks",get:function(){return this.options.appLink?{"@ui.anchor":this.getAppLink()}:{}}},{key:"template",get:function(){return h.a}}])&&y(e.prototype,n),f&&y(e,f),g}(r.a.Component),w=n(786),C=n.n(w);function O(t){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function _(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function S(t,e){return(S=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function P(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,o=R(t);if(e){var r=R(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return x(this,n)}}function x(t,e){return!e||"object"!==O(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function R(t){return(R=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}n.d(e,"a",(function(){return D}));var D=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&S(t,e)}(s,t);var e,n,r,i=P(s);function s(t){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),t.styles=o.extend({},C.a,t.styles),i.call(this,t)}return e=s,(n=[{key:"name",get:function(){return"LeftNavComponent"}},{key:"tagName",get:function(){return"ul"}},{key:"childView",get:function(){return k}},{key:"className",get:function(){var t="".concat(this.options.styles.folderTree," position-relative");return this.options.extraClass?"".concat(t," ").concat(this.options.extraClass):t}},{key:"viewComparator",get:function(){return"name"}},{key:"childViewOptions",get:function(){return{styles:this.options.styles,channelName:this.options.channelName,appLink:this.options.appLink,linkArgs:this.options.linkArgs,linkParams:this.options.linkParams,childrenProperty:this.options.childrenProperty,textProperty:this.options.textProperty,actions:this.options.actions,extraClass:this.options.extraClass,folderTreeId:this.options.folderTreeId,analyticsOptions:this.options.analyticsOptions,isSelector:this.options.isSelector,disabledIds:this.options.disabledIds}}}])&&_(e.prototype,n),r&&_(e,r),s}(r.a.ComponentCollection)},679:function(t,e,n){"use strict";n.d(e,"a",(function(){return d}));var o=n(1),r=n(7),i=n(2),s=n(91);function a(t){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function l(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function c(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function u(t,e){return(u=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function p(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,o=h(t);if(e){var r=h(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return f(this,n)}}function f(t,e){return!e||"object"!==a(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function h(t){return(h=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var d=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&u(t,e)}(f,t);var e,n,i,a=p(f);function f(){return l(this,f),a.apply(this,arguments)}return e=f,(n=[{key:"getDroppableElement",value:function(){return this.options.ui?this.view.getUI(this.options.ui):this.$el}},{key:"drop",value:function(){var t=this;o.each(this.options.channelNames,(function(e){r.Radio.channel(e).trigger("drag:drop",t.view.model,t.options.analyticsOptions)}))}},{key:"accept",value:function(){var t=this,e=!1;return o.each(this.options.channelNames,(function(n){!0===r.Radio.channel(n).request("accept",t.view.model)&&(e=!0)})),e}},{key:"over",value:function(){var t=this;this.isHoveringOver=!0,window.setTimeout((function(){t.isHoveringOver&&t.view.trigger("open:sub:folders",s.active)}),500)}},{key:"out",value:function(){this.isHoveringOver=!1}},{key:"onRender",value:function(){var t={tolerance:"pointer",drop:o.bind(this.drop,this),accept:o.bind(this.accept,this),over:o.bind(this.over,this),out:o.bind(this.out,this)};t.classes={"ui-droppable":s.droppable,"ui-droppable-active":s.active,"ui-droppable-hover":s.hover},this.getDroppableElement().droppable(t)}},{key:"onBeforeDestroy",value:function(){this.getDroppableElement().droppable("instance")&&this.getDroppableElement().droppable("destroy")}}])&&c(e.prototype,n),i&&c(e,i),f}(i.a.Behavior)},683:function(t,e,n){"use strict";var o=n(667),r=n.n(o),i=n(668),s=n.n(i);function a(t){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function l(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function c(t,e){return(c=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function u(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,o=f(t);if(e){var r=f(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return p(this,n)}}function p(t,e){return!e||"object"!==a(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var h=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&c(t,e)}(a,t);var e,n,o,i=u(a);function a(t){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.call(this,t)}return e=a,(n=[{key:"viewOptions",value:function(){return Object.assign({styles:r.a},this.options)}},{key:"name",get:function(){return"DraggableItemComponent"}},{key:"template",get:function(){return s.a}},{key:"className",get:function(){return"".concat(r.a.dragItem," p-3")}}])&&l(e.prototype,n),o&&l(e,o),a}(n(2).a.Component),d={delay:150,cursorAt:{left:-20,top:10},refreshPositions:!0};n.d(e,"c",(function(){return r.a})),n.d(e,"b",(function(){return h})),n.d(e,"a",(function(){return d}))},684:function(t,e,n){"use strict";n.d(e,"a",(function(){return g}));var o=n(1),r=n(7),i=n(2),s=n(13),a=n(0),l=n(683),c=n(691),u=n.n(c);function p(t){return(p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function f(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function h(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function d(t,e){return(d=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function y(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,o=v(t);if(e){var r=v(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return b(this,n)}}function b(t,e){return!e||"object"!==p(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function v(t){return(v=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var g=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&d(t,e)}(p,t);var e,n,i,c=y(p);function p(){return f(this,p),c.apply(this,arguments)}return e=p,(n=[{key:"getClassMappings",value:function(){return{"ui-draggable":l.c.draggable,"ui-draggable-handle":l.c.handle,"ui-draggable-disabled":l.c.disabled,"ui-draggable-dragging":l.c.dragging}}},{key:"helper",value:function(){return new l.b({text:this.view.model.get("name"),svg:s.a.getSvg(s.b.Folder)}).render().el}},{key:"start",value:function(){r.Radio.channel(a.w.FOLDER_DRAG_DROP).trigger("drag:start",this.view.model),this.view.$el.addClass(u.a.draggingFolder)}},{key:"stop",value:function(){r.Radio.channel(a.w.FOLDER_DRAG_DROP).trigger("drag:stop"),this.view.$el.removeClass(u.a.draggingFolder)}},{key:"onRender",value:function(){var t={helper:o.bind(this.helper,this),start:o.bind(this.start,this),stop:o.bind(this.stop,this)};t.classes=this.getClassMappings(),this.view.$el.draggable(o.extend({},l.a,t))}},{key:"onBeforeDestroy",value:function(){this.view.$el.draggable("instance")&&this.view.$el.draggable("destroy")}}])&&h(e.prototype,n),i&&h(e,i),p}(i.a.Behavior)},691:function(t,e,n){t.exports={dragging:"_2wBn3",draggingFolder:"_1r3AS"}},786:function(t,e,n){t.exports={folderTree:"_1inFA",text:"_2ovSq",caret:"_2pwp9",library:"_2WHiz",selected:"_200l0",parent:"_205QS",disabledActive:"_25EPE",disabled:"_387cT",collapsed:"_1-_q7",actions:"_3Il7t",node:"_23bpP",libraryContainer:"EuNKs",item:"ahYSz"}},844:function(t,e,n){var o=n(8);t.exports=(o.default||o).template({1:function(t,e,n,o,r){t.propertyIsEnumerable;var i,s=t.lambda;return' <span class="'+t.escapeExpression(s(null!=(i=null!=e?e.options:e)?i.caretClass:i,e))+' d-inline-block position-absolute">\r\n '+(null!=(i=s(null!=(i=null!=e?e.options:e)?i.svg:i,e))?i:"")+"\r\n </span>\r\n"},3:function(t,e,n,o,r){return"<ul></ul>\r\n"},compiler:[8,">= 4.3.0"],main:function(t,e,n,o,r){t.propertyIsEnumerable;var i,s=t.lambda,a=t.escapeExpression,l=null!=e?e:t.nullContext||{};return'<div class="position-relative '+a(s(null!=(i=null!=e?e.options:e)?i.itemClass:i,e))+'">\r\n <a class="'+a(s(null!=(i=null!=e?e.options:e)?i.anchorClass:i,e))+' d-block ui-node">\r\n'+(null!=(i=n.if.call(l,null!=(i=null!=e?e.options:e)?i.showCaret:i,{name:"if",hash:{},fn:t.program(1,r,0),inverse:t.noop,data:r}))?i:"")+' <span class="'+a(s(null!=(i=null!=e?e.options:e)?i.textStyle:i,e))+" ui-text "+a(s(null!=(i=null!=e?e.options:e)?i.extraClasses:i,e))+'">'+a(s(null!=(i=null!=e?e.options:e)?i.text:i,e))+'</span>\r\n </a>\r\n <div class="actions-region"></div>\r\n</div>\r\n'+(null!=(i=n.if.call(l,null!=(i=null!=(i=null!=e?e.options:e)?i.children:i)?i.length:i,{name:"if",hash:{},fn:t.program(3,r,0),inverse:t.noop,data:r}))?i:"")},useData:!0})}}]);
@@ -0,0 +1 @@
1
+ (window.webpackJsonp_clickview_library_editor=window.webpackJsonp_clickview_library_editor||[]).push([[1],{653:function(e,t,r){"use strict";r.d(t,"a",(function(){return h})),r.d(t,"k",(function(){return d})),r.d(t,"g",(function(){return y})),r.d(t,"e",(function(){return g})),r.d(t,"j",(function(){return v})),r.d(t,"i",(function(){return b})),r.d(t,"c",(function(){return w})),r.d(t,"b",(function(){return S})),r.d(t,"d",(function(){return P})),r.d(t,"f",(function(){return E})),r.d(t,"h",(function(){return m}));var n=r(2),i=r(1),o=r(16),a=r(23),s=r(3),u="libraryEditor.utils",c=["tags","thumbnail","chapters","resources","subtitles","disabled","links","restrictions","categories"];function l(e,t){if(e){var r=i.reduce(e,(function(e,r,n){var o=t[n];return r||o?i.isObject(r)&&i.isObject(o)&&!i.isUndefined(r.id)&&r.id===o.id?e:i.isArray(r)?f(r,o).length?e.concat(n):e:i.isEqual(r,o)?e:e.concat(n):e}),[]);if(r.length)return i.object(i.map(r,(function(r){return i.isArray(t[r])?[r,f(e[r],t[r])]:[r,t[r]]})))}}function f(e,t){var r=[];return i.each(t,(function(t){var n=i.findWhere(e,{id:t.id});if(!i.isUndefined(n)||0!==Object.keys(t).length){var o=i.isUndefined(n)?t:l(n,t);o&&(t.id<0&&!t.value||(!n||t.id<0?r.push(t):(o.id=t.id,r.push(o))))}})),r}var h={getChanges:function(e,t){var r=l(i.omit(e.toJSON(),c),i.omit(t.toJSON(),c));if(r)return i.object(i.map(i.keys(r),(function(e){return[e,h.formatChanges(e,r[e])]})))},formatChanges:function(e,t){if(!t)return null;if(i.isObject(t)&&i.isEmpty(t))return null;switch(e){case"name":case"description":case"productionYear":case"dateBroadcast":case"fields":case"episodeNumber":return t;case"channel":case"series":case"rating":case"season":return{id:t.id};case"distributors":case"producers":case"directors":case"productionCompanies":return i.map(t,(function(e){return e.id}));case"dateModified":case"hasBroadcast":return;default:n.a.ErrorHelper.throw(new o.a("There are no formatting settings for ".concat(e)))}},updateModelState:function(e,t,r){var o=["distributors","producers","directors","productionCompanies"];for(var a in i.each(i.keys(r),(function(e){o.includes(e)&&(r[e]=t.get(e).toJSON())})),t.set(i.clone(r),{silent:!0}),e.set(t.toJSON(),{silent:!0}),r){if(!r[a]&&e.associations[a]){var s=e.get(a);(s instanceof n.a.Model||s instanceof n.a.NestedModel)&&s.clear()}}},getRemovedObjectIds:function(e,t){var r=["distributors","productionCompanies","producers","directors"],n={};return i.each(i.keys(e.toJSON()),(function(o){if(i.contains(r,o)){var a=e.get(o).map((function(e){return e.id})),s=t.get(o).map((function(e){return e.id})),u=i.filter(a,(function(e){return!i.contains(s,e)}));u.length&&(n[o]=u)}})),n}},d={name:[{required:!0,msg:function(){return s.a.getPhrase(u,"videoTitleRequired")}},{maxLength:255,msg:function(){return s.a.getPhrase(u,"videoTitleExceeds")}}],description:[{required:!1},{maxLength:65535,msg:function(){return s.a.getPhrase(u,"videoDescriptionExceeds")}}],episodeNumber:function(e,t,r){return e&&e<1?s.a.getPhrase(u,"episodeNumberLessThanOne"):e&&e>2147483647?s.a.getPhrase(u,"episodeNumberExceeds"):e%1!=0?s.a.getPhrase(u,"episodeNumberNotWhole"):r.season&&r.season.get("number")>=0&&null===e?s.a.getPhrase(u,"episodeNumberNoSeason"):""},season:function(e,t,r){return r.season&&r.season.get("number")||e&&e.number||!r.episodeNumber?"":s.a.getPhrase(u,"seasonNoEpisodeNumber")}},p=a().year(),g={productionYear:function(e,t,r){return e||0===e?(e=+e,isNaN(e)?"Production year must be a number.":e<1900||e>p?s.a.getPhrase(u,"validProductionYears",{currentYear:p}):void 0):""}},y={name:[{required:!0,msg:function(){return s.a.getPhrase(u,"resourceNameRequired")}}]},v={suggestion:[{required:!0,msg:function(){return s.a.getPhrase(u,"suggestEditRequired")}},{maxLength:65535,msg:function(){return s.a.getPhrase(u,"suggestEditExceeds")}}],reason:[{required:!0,msg:function(){return s.a.getPhrase(u,"suggestEditReasonRequired")}},{maxLength:65535,msg:function(){return s.a.getPhrase(u,"suggestEditReasonExceeds")}}]},m={number:function(e,t,r){return e?+e<1?s.a.getPhrase(u,"seasonLessThanOne"):+e>255?s.a.getPhrase(u,"seasonExceeds"):+e%1!=0?s.a.getPhrase(u,"seasonNotWhole"):"":s.a.getPhrase(u,"seasonRequired")}},b={empty:function(){return s.a.getPhrase(u,"suggestEditRatingRequired")},original:function(){return s.a.getPhrase(u,"suggestEditRatingInvalid")}},E={url:[{required:!0,pattern:"url",msg:function(){return s.a.getPhrase(u,"linkUrlRequired")}},{maxLength:65535,msg:function(){return s.a.getPhrase(u,"linkUrlExceeds")}}],name:[{required:!0,msg:function(){return s.a.getPhrase(u,"linkNameRequired")}},{maxLength:255,msg:function(){return s.a.getPhrase(u,"linkNameExceeds")}}]},w={name:[{maxLength:128,msg:function(){return s.a.getPhrase(u,"fieldNameExceeds")}}],value:[{maxLength:16e3,msg:function(){return s.a.getPhrase(u,"fieldValueExceeds")}}]},S={fields:function(e){return e&&e.length?e.all((function(e){return!1!==e.isValid()}))?"":s.a.getPhrase(u,"fieldsInvalid"):""}};function P(){return[{id:-1,name:"Admin Notes",value:"",placeholder:"Notes that only admins will see"}]}},654:function(e,t,r){"use strict";r.d(t,"a",(function(){return l}));var n=r(1),i=r(34),o=r(106),a=r(3),s="libraryEditor.utils",u={name:[{required:!0,msg:function(){return a.a.getPhrase(s,"folderNameRequired")}},{maxLength:255,msg:function(){return a.a.getPhrase(s,"folderNameExceeds")}}]},c=function(e,t){return{parentId:function(r){return r?i.a.calculateDestinationFolderDepth(e,r,t)>o.a.MAX_FOLDER_DEPTH?a.a.getPhrase(s,"maxFolderDepth",{maxDepth:o.a.MAX_FOLDER_DEPTH}):"":a.a.getPhrase(s,"selectParentFolder")}}},l=function(e){var t=e.validateName,r=e.validateParent,i=e.folder,o=e.collection;return t&&r?n.extend({},u,c(i,o)):t?u:r?c(i,o):void 0}},655:function(e,t,r){"use strict";r.d(t,"a",(function(){return f}));var n=r(13),i=r(3),o=r(118),a=r(665),s=r(6);function u(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var c,l="libraryEditor.utils";!function(e){e.Pdf="pdf",e.Image="image",e.PowerPoint="powerpoint",e.Document="document",e.Excel="excel",e.Zip="archive",e.File="text"}(c||(c={}));var f={mapRatingToClass:function(e){if(!e)return"";return function(e){switch(!0){case e<32:return"bg-purple";case e<48:return"bg-success";case e<80:return"bg-info";case e<96:return"bg-danger";case e<128:return"bg-pink";case e>=128:return"bg-warning";default:return""}}(e)},mapSourceToDisplayName:function(e){switch(e.get("type")){case s.h.HostedLibrary:case s.h.CustomLibrary:return e.get("name");case s.h.Exchange:return i.a.getPhrase(l,"exchange");case s.h.Workspace:return i.a.getPhrase(l,"workspace");default:return""}},mapSourceToClass:function(e){switch(e){case s.h.HostedLibrary:case s.h.CustomLibrary:return"bg-info";case s.h.Exchange:return"bg-success";case s.h.Workspace:default:return"bg-danger"}},isInteractive:function(e){return!(!e||!e.interactives)&&!!e.interactives.length},mapTypeToSvg:function(e){var t,r=(u(t={},c.Pdf,n.b.FilePDF),u(t,c.Image,n.b.FileImg),u(t,c.PowerPoint,n.b.FilePowerpoint),u(t,c.Document,n.b.FileWord),u(t,c.Excel,n.b.FileExcel),u(t,c.Zip,n.b.FileZip),u(t,c.File,n.b.File),t)[e];return r||(r=n.b.Folder),n.a.getSvg(r)},mapTypeToClass:function(e){switch(e){case c.Pdf:return"icon-red";case c.Image:return"icon-purple";case c.Document:return"icon-blue";case c.Excel:return"icon-green";case c.PowerPoint:return"icon-orange";case c.Zip:return"icon-teal";case c.File:return"icon-gray";default:return""}},mapTypeToExtension:function(e){if(!e)return"";return{pdf:"pdf",image:"png",powerpoint:"pptx"}[e.toLowerCase()]},mapTypeToName:function(e){if(!e)return"";switch(e){case c.Pdf:return i.a.getPhrase(l,"pdf");case c.Image:return i.a.getPhrase(l,"image");case c.Document:return i.a.getPhrase(l,"document");case c.Excel:return i.a.getPhrase(l,"spreadsheet");case c.PowerPoint:return i.a.getPhrase(l,"presentation");case c.Zip:return i.a.getPhrase(l,"zipArchive");case c.File:return i.a.getPhrase(l,"file");default:return""}},translateMetadataCollectionNames:function(e){return new a.a(e.map((function(e){return Object.assign(Object.assign({},e.toJSON()),{name:f.translateMetadataName(e.get("name"))})})))},translateMetadataName:function(e){var t="suggestEdit";switch(e){case o.e.VideoTitle:t+="VideoTitle";break;case o.e.Description:t+="Description";break;case o.e.Rating:t+="Rating";break;case o.e.SeriesTitle:t+="SeriesTitle";break;case o.e.Season:t+="SeasonNumber";break;case o.e.EpisodeNumber:t+="EpisodeNumber";break;case o.e.BroadcastDate:t+="BroadcastDate";break;case o.e.Channel:t+="Channel";break;case o.e.ProductionYear:t+="ProductionYear";break;case o.e.Distributors:t+="Distributors";break;case o.e.ProductionCompanies:t+="ProductionCompanies";break;case o.e.Directors:t+="Directors";break;case o.e.Producers:t+="Producers";break;case o.e.Other:t+="Other"}return i.a.getPhrase(l,t)}}},656:function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3),i="libraryEditor.utils",o={name:[{required:!0,msg:function(){return n.a.getPhrase(i,"libraryNameRequired")}},{maxLength:255,msg:function(){return n.a.getPhrase(i,"libraryNameExceeds")}}]}},658:function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(1),i=r(11),o=r(3),a="libraryEditor.utils",s={isValidChapterTime:function(e,t,r,o){if(o){if(!n.isNumber(t))return u.StartTime.Invalid();if(t<0)return u.StartTime.Invalid();if(t>i.w.millisecondsToSeconds(r))return u.StartTime.Exceeds();if(o.some((function(r){return!(r.id&&r.id===e.id||r.cid===e.cid)&&r.get("startTime")===t})))return u.StartTime.Exists()}},isValidChapterName:function(e,t,r){return t?t.length>255?u.Name.MaxLength():r.some((function(r){return!(r.id&&r.id===e.id||r.cid===e.cid)&&r.get("name").trim()===t.trim()}))?u.Name.Exists():n.isEmpty(t.trim())?u.Name.Invalid():void 0:u.Name.Invalid()},mapPhysicalChapters:function(e){var t=0;return n.map(e,(function(e,r){var n={name:e.title,startTime:t,index:r,isPhysicalChapter:!0};return t+=e.duration,n}))}},u={Name:{Invalid:function(){return o.a.getPhrase(a,"chapterNameInvalid")},Exists:function(){return o.a.getPhrase(a,"chapterNameExists")},MaxLength:function(){return o.a.getPhrase(a,"chapterNameExceeds")}},StartTime:{Invalid:function(){return o.a.getPhrase(a,"chapterStartTimeInvalid")},Exists:function(){return o.a.getPhrase(a,"chapterStartTimeExists")},Exceeds:function(){return o.a.getPhrase(a,"chapterStartTimeExceeds")}}}},659:function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(23),i=r(3),o=r(653),a="libraryEditor.utils",s=(n().year(),{name:[{required:!0,msg:function(){return i.a.getPhrase(a,"videoTitleRequired")}}],folderId:[{required:!0,msg:function(){return i.a.getPhrase(a,"uploadFolderRequired")}}],libraryId:[{required:!0,msg:"Please select an upload library"}],episodeNumber:function(e,t,r){return e&&e<1?"Videos cannot have an episode number less than 1":e&&e>255?"Videos cannot have an episode number greater than 255":e&&e%1!=0?"Episode numbers can only be whole numbers":r.season&&r.season.get("number")>=0&&null===e?"Videos with a season must also have an episode number":""},season:function(e,t,r){return r.season&&r.season.get("number")||e&&e.number||!r.episodeNumber?"":"Videos with an episode number must also have a season"},productionYear:function(){return o.e.productionYear.apply(null,arguments)}})},660:function(e,t,r){"use strict";var n=r(658),i=r(653),o=(r(654),r(3),r(656)),a=(r(659),r(655)),s=r(58),u={getVideoDownloadUrl:function(e,t){return s.a.safeUrlConcat(s.a.makeHttps(e),"/download?token=".concat(t))}};r.d(t,"a",(function(){return n.a})),r.d(t,"e",(function(){return i.g})),r.d(t,"h",(function(){return i.j})),r.d(t,"g",(function(){return i.i})),r.d(t,"d",(function(){return i.f})),r.d(t,"f",(function(){return i.h})),r.d(t,"c",(function(){return o.a})),r.d(t,"i",(function(){return a.a})),r.d(t,"b",(function(){return u}))},665:function(e,t,r){"use strict";function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){return(o=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function a(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=u(e);if(t){var i=u(this).constructor;r=Reflect.construct(n,arguments,i)}else r=n.apply(this,arguments);return s(this,r)}}function s(e,t){return!t||"object"!==n(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function u(e){return(u=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}r.d(t,"a",(function(){return c}));var c=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&o(e,t)}(r,e);var t=a(r);function r(){return i(this,r),t.apply(this,arguments)}return r}(r(2).a.Collection)},780:function(e,t,r){"use strict";var n=r(1),i=r(7),o=r(825);const a={PLAY:"cv-player-play",PAUSE:"cv-player-pause",VIDEO_END:"cv-player-ended",VOLUME_CHANGE:"cv-player-volumechange",CHAPTER_CHANGE:"cv-player-chapterchange",TIME_UPDATE:"cv-player-timeupdate",FULLSCREEN_CHANGE:"cv-player-fullscreenchange",CLIP_POINTS_UPDATE:"cv-player-cliptoolupdate",QUALITY_CHANGE:"cv-player-qualitychange",QUERY_CALLBACK:"cv-player-querycallback",SUBTITLES_ENABLED:"cv-player-hassubtitles",SUBTITLES:"cv-player-subtitles",PONG:"cv-player-pong",FULLSCREEN_CLICK:"_cvwp:fsc",DEVICES_BTN_CLICK:"_cvwp:devices:click"},s={PLAY:"cv-player-play",PAUSE:"cv-player-pause",SET_VOLUME:"cv-player-setvolume",NEXT_CHAPTER:"cv-player-nextchapter",PREV_CHAPTER:"cv-player-previouschapter",CHANGE_CHAPTER:"cv-player-changechapter",TOGGLE_CLIPPING:"cv-player-cliptooltoggle",SET_CLIP_POINTS:"cv-player-cliptoolset",CLIP:"cv-player-setclip",CLEAR_CLIP:"cv-player-clearclip",SEEK_TO:"cv-player-seekto",CONTROLS:"cv-player-showcontrols",SUBTITLES:"cv-player-subtitles",SET_QUALITY:"cv-player-setquality",QUERY:"cv-player-query",ADD_LISTENER:"cv-player-addlistener",REMOVE_LISTENER:"cv-player-removelistener",PING:"cv-player-ping",TOGGLE_DEVICES_BTN:"_cv:toggledevicesbtn",SHOW_DEVICES_BTN:"_cv:showdevicesbtn",SHOW_FS_BTN:"_cv:showfsbtn"},u={GET_AVAILABLE_QUALITIES:"getAvailableQualities",GET_CURRENT_QUALITY:"currentQuality",IS_PAUSED:"paused",GET_CURRENT_TIME:"currentTime",GET_CHAPTERS:"getChapters",HAS_METADATA_CHAPTERS:"hasMetadataChapters"};var c=r(2),l=r(24),f=r(16),h=r(58),d=r(13),p=r(650),g=r(0);const y={toJSON:e=>e instanceof c.a.Model||e instanceof c.a.Collection||e instanceof i.Model||e instanceof i.Collection?e.toJSON():e};var v=r(4),m=r(73),b=r(39);class E extends c.a.Service{constructor(e){super(e),this.captureInterval=60}get name(){return"VideoAnalyticsTracker"}initialize(){this.eventsApi=this.options.eventsApi,this.options.video||c.a.ErrorHelper.throw(new f.a("Video logging requires video to be passed in.")),this.model=this.options.video,this.playbackStatus=this.getNewPlaybackStatus(),this.options.captureInterval&&(this.captureInterval=this.options.captureInterval),this.bindListeners(),this.getChapters()}bindListeners(){this.eventsApi.on(a.TIME_UPDATE,n.bind(this.onPlayerTimeUpdate,this)),this.eventsApi.on(a.VIDEO_END,n.bind(this.onEnd,this)),this.eventsApi.on(a.FULLSCREEN_CHANGE,n.bind(this.onFullScreen,this)),this.eventsApi.on(a.CHAPTER_CHANGE,n.bind(this.onChapterChange,this))}unbindListeners(){this.eventsApi.off(a.TIME_UPDATE),this.eventsApi.off(a.VIDEO_END),this.eventsApi.off(a.FULLSCREEN_CHANGE),this.eventsApi.off(a.CHAPTER_CHANGE)}getChapters(){this.queryWebplayer(u.GET_CHAPTERS,(e,t)=>{this.setInitialChapter(t),this.setVideoDuration(t)})}queryWebplayer(e,t){const r=n.uniqueId(this.name),i=`${a.QUERY_CALLBACK}-${r}`;this.eventsApi.one(i,t),this.eventsApi.trigger(s.QUERY,e,r)}onEnd(){this.setCurrentPosition(this.playbackStatus.totalDuration),this.logVerbose(v.n.Finish),this.resetPlaybackStatus()}onFullScreen(e,t){const r=t?v.n.FullScreenEnter:v.n.FullScreenExit;this.logVerbose(r)}onPlayerTimeUpdate(e,t){this.queryWebplayer(u.IS_PAUSED,(e,r)=>{this.updateTime(t,r)})}onChapterChange(e,t){n.isObject(t)&&this.setCurrentChapter(t.number)}updateTime(e,t){const r=Math.floor(e);r&&r!==this.getCurrentPositon()&&(this.setCurrentPosition(r),t||(this.playbackHasStarted()||(this.logVerbose(v.n.Start),this.setPlaybackStarted()),this.incrementWatchTime(),this.getWatchTime()%this.captureInterval==0&&this.logVerbose(v.n.Playback),8===this.getWatchTime()&&this.logStream()))}setInitialChapter(e){const t=n.find(e,e=>!0===e.current);n.isObject(t)&&this.setCurrentChapter(t.number)}setVideoDuration(e){let t=n.reduce(e,(e,t)=>e+t.duration,0);!n.isNaN(t)&&n.isNumber(t)&&(this.playbackStatus.totalDuration=Math.floor(t))}setCurrentPosition(e){this.playbackStatus.position=e}getCurrentPositon(){return this.playbackStatus.position}setCurrentChapter(e){this.playbackStatus.chapter=e}setPlaybackStarted(){this.playbackStatus.hasStarted=!0}playbackHasStarted(){return this.playbackStatus.hasStarted}getWatchTime(){return this.playbackStatus.totalWatched}incrementWatchTime(){this.playbackStatus.totalWatched+=1}getNewPlaybackStatus(e={}){const{duration:t,watched:r}=e;return{position:0,chapter:0,hasStarted:!1,totalWatched:r||0,totalDuration:t||0}}resetPlaybackStatus(){const e={duration:this.playbackStatus.totalDuration,watched:this.playbackStatus.totalWatched};this.playbackStatus=this.getNewPlaybackStatus(e)}unbindUnload(){$(window).off("unload")}bindUnload(){$(window).on("unload",n.bind(this.logUnload,this))}logUnload(){this.playbackHasStarted()&&this.logVerbose(v.n.Terminate)}logStream(){const e=b.a.buildActionContext(this.options.analyticsOptions);m.a.log(v.q.Stream,this.getPlaybackData(),e)}logVerbose(e){}getPlaybackData(){return{model:y.toJSON(this.model),playbackStatus:n.omit(this.playbackStatus,"hasStarted")}}onDestroy(){this.unbindListeners(),this.unbindUnload(),this.logUnload()}}var w=r(827),S=r.n(w),P=r(828),A=r.n(P);function C(e){return(C="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function T(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function U(e,t){return(U=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function N(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=_(e);if(t){var i=_(this).constructor;r=Reflect.construct(n,arguments,i)}else r=n.apply(this,arguments);return R(this,r)}}function R(e,t){return!t||"object"!==C(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function _(e){return(_=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}r.d(t,"a",(function(){return k}));var k=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&U(e,t)}(v,e);var t,r,u,y=N(v);function v(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,v),y.call(this,e)}return t=v,(r=[{key:"initialize",value:function(){this.enableIeFs=this.isTop(),this.getViewModel()}},{key:"seekTo",value:function(e){this.eventsApi&&this.eventsApi.trigger(s.SEEK_TO,e)}},{key:"seekToChapter",value:function(e){this.eventsApi&&this.eventsApi.trigger("cv-player-changechapter",e)}},{key:"getViewModel",value:function(){var e=this.model.get("id");e||(e=this.model.get("trackingCode")),this.viewModel=l.a.get("".concat(g.z.NAME,"-").concat(e)),this.viewModel.get("initialized")||this.initViewModel(),this.setUrl()}},{key:"initViewModel",value:function(){var e=this.model.pick("id");e.id||(e=this.model.pick("trackingCode")),e.id||e.trackingCode||c.a.ErrorHelper.throw(new f.a("Must provide either a master id or a tracking code to ".concat(this.name)));var t=n.extend({},this.viewModelDefaults,e,this.viewModel.toJSON(),{initialized:!0});this.viewModel.set(t)}},{key:"initWebPlayerEvents",value:function(){if(this.enableIeFs){var e=this.getUI("iframe");e&&0!==e.length&&e.on("load",this.bindWebPlayerEvents.bind(this))}}},{key:"bindWebPlayerEvents",value:function(){if(!this.iframeReady){var e=this.getUI("iframe").get(0);this.eventsApi=new p.CVEventsApi(e.contentWindow),this.eventsApi.on(a.PONG,this.onPong.bind(this)),this.eventsApi.trigger(s.PING),this.eventsApi.on(a.FULLSCREEN_CLICK,this.onFullscreenChange.bind(this)),this.eventsApi.trigger(s.SHOW_FS_BTN),this.eventsApi.on(a.TIME_UPDATE,this.onTimeUpdate.bind(this)),this.eventsApi.on(a.PLAY,this.onPlay.bind(this)),this.eventsApi.on(a.PAUSE,this.onPause.bind(this)),this.eventsApi.on(a.VIDEO_END,this.onEnded.bind(this)),this.options.showDevicesButton&&(this.eventsApi.on(a.DEVICES_BTN_CLICK,this.showDeviceToggle.bind(this)),this.eventsApi.trigger(s.SHOW_DEVICES_BTN)),this.options.captureAnalytics&&(this.tracker=new E({video:this.model.toJSON(),eventsApi:this.eventsApi,analyticsOptions:this.options.analyticsOptions}))}}},{key:"unbindWebPlayerEvents",value:function(){this.eventsApi&&(this.eventsApi.off(a.FULLSCREEN_CLICK),this.eventsApi.off(a.TIME_UPDATE),this.eventsApi.off(a.PLAY),this.eventsApi.off(a.PAUSE),this.eventsApi.off(a.VIDEO_END),this.eventsApi.off(a.PONG),this.eventsApi.off(a.DEVICES_BTN_CLICK))}},{key:"setUrl",value:function(){var e="".concat(this.viewModel.get("webPlayerHost"),"embed"),t=n.omit(this.viewModel.get("parameters"),["p","vid"])||{};t.a=!!this.viewModel.get("autoplay");var r=this.viewModel.get("id");r&&(t.vid=r);var i=this.viewModel.get("trackingCode");i&&(t.p=i),this.viewModel.get("currenttime")&&(t.t=this.viewModel.get("currenttime"),t.a=!this.viewModel.get("paused"));var a=h.a.urlBuilder(e,t),s=Object(o.signUrl)(a,{timestamp:!0});this.viewModel.set({url:s})}},{key:"isTop",value:function(){return window.top===window}},{key:"onTimeUpdate",value:function(e,t){this.viewModel.set("ready",!0),this.viewModel.set("currenttime",t)}},{key:"onPlay",value:function(){this.viewModel.set("ready",!0),this.viewModel.set("paused",!1)}},{key:"onPause",value:function(){this.viewModel.set("ready",!0),this.viewModel.set("paused",!0)}},{key:"onEnded",value:function(){this.viewModel.trigger("ended")}},{key:"onPong",value:function(){this.iframeReady=!0,this.viewModel.set("ready",!0),i.Radio.channel(this.channelName).trigger("loaded"),this.options.parentChannelName&&i.Radio.channel(this.options.parentChannelName).trigger("webplayer:loaded")}},{key:"onFullscreenChange",value:function(e,t,r){t?this.requestFs(r):this.cancelFs(r)}},{key:"requestFs",value:function(e){e||$("html").addClass("player-fullscreen")}},{key:"cancelFs",value:function(e){e||$("html").removeClass("player-fullscreen")}},{key:"showDeviceToggle",value:function(e){this.viewModel.trigger("showDevices",!!e)}},{key:"query",value:function(e,t){var r=this;if(this.iframeReady){var i=n.uniqueId("cveventsapi");this.eventsApi.one("".concat(a.QUERY_CALLBACK,"-").concat(i),(function(e,r){t(r)})),this.eventsApi.trigger(s.QUERY,e,i)}else this.listenToOnce(this.channelName,"loaded",(function(){return r.query(e,t)}))}},{key:"viewOptions",value:function(){return n.extend({},{styles:A.a,playSvg:d.a.getSvg(d.b.Play)},this.viewModel.toJSON())}},{key:"onRender",value:function(){this.initWebPlayerEvents()}},{key:"onBeforeDestroy",value:function(){this.unbindWebPlayerEvents(),this.tracker&&this.tracker.destroy()}},{key:"elements",get:function(){return{iframe:"iframe"}}},{key:"name",get:function(){return"WebPlayerView"}},{key:"template",get:function(){return S.a}},{key:"className",get:function(){return"".concat(A.a.webPlayerContainer," embed-responsive embed-responsive-16by9")}},{key:"channelName",get:function(){return"".concat(this.name).concat(this.cid)}},{key:"defaults",get:function(){return{captureAnalytics:!0,showDevicesButton:!1}}},{key:"viewModelDefaults",get:function(){return{width:640,height:360,autoplay:!!this.options.autoplay,parameters:{s:!1,bc:!1,bf:!1},webPlayerHost:this.options.webPlayerUrl}}}])&&T(t.prototype,r),u&&T(t,u),v}(c.a.Component)},825:function(e,t,r){parcelRequire=function(t,n,i,o){var a,s="function"==typeof parcelRequire&&parcelRequire;function u(e,i){if(!n[e]){if(!t[e]){var o="function"==typeof parcelRequire&&parcelRequire;if(!i&&o)return o(e,!0);if(s)return s(e,!0);if("string"==typeof e)return r(826)(e);var a=new Error("Cannot find module '"+e+"'");throw a.code="MODULE_NOT_FOUND",a}l.resolve=function(r){return t[e][1][r]||r},l.cache={};var c=n[e]=new u.Module(e);t[e][0].call(c.exports,l,c,c.exports,this)}return n[e].exports;function l(e){return u(l.resolve(e))}}u.isParcelRequire=!0,u.Module=function(e){this.id=e,this.bundle=u,this.exports={}},u.modules=t,u.cache=n,u.parent=s,u.register=function(e,r){t[e]=[function(e,t){t.exports=r},{}]};for(var c=0;c<i.length;c++)try{u(i[c])}catch(t){a||(a=t)}if(i.length){var l=u(i[i.length-1]);e.exports=l}if(parcelRequire=u,a)throw a;return u}({Tt42:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.fixedEncodeURIComponent=void 0,r.fixedEncodeURIComponent=function(e){return encodeURIComponent(e).replace(/[!'()*]/g,(function(e){return"%"+e.charCodeAt(0).toString(16)}))}},{}],IQIv:[function(e,t,r){!function(e,n){"object"==typeof r&&void 0!==t?t.exports=n():(e=e||self).jsSHA=n()}(this,(function(){"use strict";var e=function(t,r){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(t,r)},t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";function r(e,t,r,n){var i,o,a,s=t||[0],u=(r=r||0)>>>3,c=-1===n?3:0;for(i=0;i<e.length;i+=1)o=(a=i+u)>>>2,s.length<=o&&s.push(0),s[o]|=e[i]<<8*(c+n*(a%4));return{value:s,binLen:8*e.length+r}}function n(e,n,i){switch(n){case"UTF8":case"UTF16BE":case"UTF16LE":break;default:throw new Error("encoding must be UTF8, UTF16BE, or UTF16LE")}switch(e){case"HEX":return function(e,t,r){return function(e,t,r,n){var i,o,a,s;if(0!=e.length%2)throw new Error("String of HEX type must be in byte increments");var u=t||[0],c=(r=r||0)>>>3,l=-1===n?3:0;for(i=0;i<e.length;i+=2){if(o=parseInt(e.substr(i,2),16),isNaN(o))throw new Error("String of HEX type contains invalid characters");for(a=(s=(i>>>1)+c)>>>2;u.length<=a;)u.push(0);u[a]|=o<<8*(l+n*(s%4))}return{value:u,binLen:4*e.length+r}}(e,t,r,i)};case"TEXT":return function(e,t,r){return function(e,t,r,n,i){var o,a,s,u,c,l,f,h,d=0,p=r||[0],g=(n=n||0)>>>3;if("UTF8"===t)for(f=-1===i?3:0,s=0;s<e.length;s+=1)for(a=[],128>(o=e.charCodeAt(s))?a.push(o):2048>o?(a.push(192|o>>>6),a.push(128|63&o)):55296>o||57344<=o?a.push(224|o>>>12,128|o>>>6&63,128|63&o):(s+=1,o=65536+((1023&o)<<10|1023&e.charCodeAt(s)),a.push(240|o>>>18,128|o>>>12&63,128|o>>>6&63,128|63&o)),u=0;u<a.length;u+=1){for(c=(l=d+g)>>>2;p.length<=c;)p.push(0);p[c]|=a[u]<<8*(f+i*(l%4)),d+=1}else for(f=-1===i?2:0,h="UTF16LE"===t&&1!==i||"UTF16LE"!==t&&1===i,s=0;s<e.length;s+=1){for(o=e.charCodeAt(s),!0===h&&(o=(u=255&o)<<8|o>>>8),c=(l=d+g)>>>2;p.length<=c;)p.push(0);p[c]|=o<<8*(f+i*(l%4)),d+=2}return{value:p,binLen:8*d+n}}(e,n,t,r,i)};case"B64":return function(e,r,n){return function(e,r,n,i){var o,a,s,u,c,l,f=0,h=r||[0],d=(n=n||0)>>>3,p=-1===i?3:0,g=e.indexOf("=");if(-1===e.search(/^[a-zA-Z0-9=+\/]+$/))throw new Error("Invalid character in base-64 string");if(e=e.replace(/=/g,""),-1!==g&&g<e.length)throw new Error("Invalid '=' found in base-64 string");for(o=0;o<e.length;o+=4){for(u=e.substr(o,4),s=0,a=0;a<u.length;a+=1)s|=t.indexOf(u.charAt(a))<<18-6*a;for(a=0;a<u.length-1;a+=1){for(c=(l=f+d)>>>2;h.length<=c;)h.push(0);h[c]|=(s>>>16-8*a&255)<<8*(p+i*(l%4)),f+=1}}return{value:h,binLen:8*f+n}}(e,r,n,i)};case"BYTES":return function(e,t,r){return function(e,t,r,n){var i,o,a,s,u=t||[0],c=(r=r||0)>>>3,l=-1===n?3:0;for(o=0;o<e.length;o+=1)i=e.charCodeAt(o),a=(s=o+c)>>>2,u.length<=a&&u.push(0),u[a]|=i<<8*(l+n*(s%4));return{value:u,binLen:8*e.length+r}}(e,t,r,i)};case"ARRAYBUFFER":try{new ArrayBuffer(0)}catch(e){throw new Error("ARRAYBUFFER not supported by this environment")}return function(e,t,n){return function(e,t,n,i){return r(new Uint8Array(e),t,n,i)}(e,t,n,i)};case"UINT8ARRAY":try{new Uint8Array(0)}catch(e){throw new Error("UINT8ARRAY not supported by this environment")}return function(e,t,n){return r(e,t,n,i)};default:throw new Error("format must be HEX, TEXT, B64, BYTES, ARRAYBUFFER, or UINT8ARRAY")}}function i(e,r,n,i){switch(e){case"HEX":return function(e){return function(e,t,r,n){var i,o,a="",s=t/8,u=-1===r?3:0;for(i=0;i<s;i+=1)o=e[i>>>2]>>>8*(u+r*(i%4)),a+="0123456789abcdef".charAt(o>>>4&15)+"0123456789abcdef".charAt(15&o);return n.outputUpper?a.toUpperCase():a}(e,r,n,i)};case"B64":return function(e){return function(e,r,n,i){var o,a,s,u,c,l="",f=r/8,h=-1===n?3:0;for(o=0;o<f;o+=3)for(u=o+1<f?e[o+1>>>2]:0,c=o+2<f?e[o+2>>>2]:0,s=(e[o>>>2]>>>8*(h+n*(o%4))&255)<<16|(u>>>8*(h+n*((o+1)%4))&255)<<8|c>>>8*(h+n*((o+2)%4))&255,a=0;a<4;a+=1)l+=8*o+6*a<=r?t.charAt(s>>>6*(3-a)&63):i.b64Pad;return l}(e,r,n,i)};case"BYTES":return function(e){return function(e,t,r){var n,i,o="",a=t/8,s=-1===r?3:0;for(n=0;n<a;n+=1)i=e[n>>>2]>>>8*(s+r*(n%4))&255,o+=String.fromCharCode(i);return o}(e,r,n)};case"ARRAYBUFFER":try{new ArrayBuffer(0)}catch(e){throw new Error("ARRAYBUFFER not supported by this environment")}return function(e){return function(e,t,r){var n,i=t/8,o=new ArrayBuffer(i),a=new Uint8Array(o),s=-1===r?3:0;for(n=0;n<i;n+=1)a[n]=e[n>>>2]>>>8*(s+r*(n%4))&255;return o}(e,r,n)};case"UINT8ARRAY":try{new Uint8Array(0)}catch(e){throw new Error("UINT8ARRAY not supported by this environment")}return function(e){return function(e,t,r){var n,i=t/8,o=-1===r?3:0,a=new Uint8Array(i);for(n=0;n<i;n+=1)a[n]=e[n>>>2]>>>8*(o+r*(n%4))&255;return a}(e,r,n)};default:throw new Error("format must be HEX, B64, BYTES, ARRAYBUFFER, or UINT8ARRAY")}}function o(e){var t={outputUpper:!1,b64Pad:"=",outputLen:-1},r=e||{},n="Output length must be a multiple of 8";if(t.outputUpper=r.outputUpper||!1,r.b64Pad&&(t.b64Pad=r.b64Pad),r.outputLen){if(r.outputLen%8!=0)throw new Error(n);t.outputLen=r.outputLen}else if(r.shakeLen){if(r.shakeLen%8!=0)throw new Error(n);t.outputLen=r.shakeLen}if("boolean"!=typeof t.outputUpper)throw new Error("Invalid outputUpper formatting option");if("string"!=typeof t.b64Pad)throw new Error("Invalid b64Pad formatting option");return t}function a(e,t){return e<<t|e>>>32-t}function s(e,t,r){return e^t^r}function u(e,t,r){return e&t^e&r^t&r}function c(e,t){var r=(65535&e)+(65535&t);return(65535&(e>>>16)+(t>>>16)+(r>>>16))<<16|65535&r}function l(e,t,r,n,i){var o=(65535&e)+(65535&t)+(65535&r)+(65535&n)+(65535&i);return(65535&(e>>>16)+(t>>>16)+(r>>>16)+(n>>>16)+(i>>>16)+(o>>>16))<<16|65535&o}function f(e){return[1732584193,4023233417,2562383102,271733878,3285377520]}function h(e,t){var r,n,i,o,f,h,d,p,g=[];for(r=t[0],n=t[1],i=t[2],o=t[3],f=t[4],d=0;d<80;d+=1)g[d]=d<16?e[d]:a(g[d-3]^g[d-8]^g[d-14]^g[d-16],1),h=d<20?l(a(r,5),(p=n)&i^~p&o,f,1518500249,g[d]):d<40?l(a(r,5),s(n,i,o),f,1859775393,g[d]):d<60?l(a(r,5),u(n,i,o),f,2400959708,g[d]):l(a(r,5),s(n,i,o),f,3395469782,g[d]),f=o,o=i,i=a(n,30),n=r,r=h;return t[0]=c(r,t[0]),t[1]=c(n,t[1]),t[2]=c(i,t[2]),t[3]=c(o,t[3]),t[4]=c(f,t[4]),t}function d(e,t,r,n){for(var i,o=15+(t+65>>>9<<4),a=t+r;e.length<=o;)e.push(0);for(e[t>>>5]|=128<<24-t%32,e[o]=4294967295&a,e[o-1]=a/4294967296|0,i=0;i<e.length;i+=16)n=h(e.slice(i,i+16),n);return n}return function(t){function r(e,r,i){var o=this;if("SHA-1"!==e)throw new Error("Chosen SHA variant is not supported");var a=i||{};return(o=t.call(this,e,r,i)||this).t=!0,o.i=o.o,o.u=-1,o.s=n(o.h,o.v,o.u),o.A=h,o.p=function(e){return e.slice()},o.l=f,o.R=d,o.U=[1732584193,4023233417,2562383102,271733878,3285377520],o.T=512,o.m=160,o.F=!1,a.hmacKey&&o.B(function(e,t,r,i){var o="hmacKey must include a value and format";if(!t)throw new Error(o);if(void 0===t.value||!t.format)throw new Error(o);return n(t.format,t.encoding||"UTF8",r)(t.value)}(0,a.hmacKey,o.u)),o}return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}(r,t),r}(function(){function e(e,t,r){var n=r||{};if(this.h=t,this.v=n.encoding||"UTF8",this.numRounds=n.numRounds||1,isNaN(this.numRounds)||this.numRounds!==parseInt(this.numRounds,10)||1>this.numRounds)throw new Error("numRounds must a integer >= 1");this.g=e,this.Y=[],this.I=0,this.C=!1,this.H=0,this.L=!1,this.N=[],this.S=[]}return e.prototype.update=function(e){var t,r=0,n=this.T>>>5,i=this.s(e,this.Y,this.I),o=i.binLen,a=i.value,s=o>>>5;for(t=0;t<s;t+=n)r+this.T<=o&&(this.U=this.A(a.slice(t,t+n),this.U),r+=this.T);this.H+=r,this.Y=a.slice(r>>>5),this.I=o%this.T,this.C=!0},e.prototype.getHash=function(e,t){var r,n,a=this.m,s=o(t);if(!0===this.F){if(-1===s.outputLen)throw new Error("Output length must be specified in options");a=s.outputLen}var u=i(e,a,this.u,s);if(!0===this.L&&this.i)return u(this.i(s));for(n=this.R(this.Y.slice(),this.I,this.H,this.p(this.U),a),r=1;r<this.numRounds;r+=1)!0===this.F&&a%32!=0&&(n[n.length-1]&=16777215>>>24-a%32),n=this.R(n,a,0,this.l(this.g),a);return u(n)},e.prototype.setHMACKey=function(e,t,r){if(!0!==this.t)throw new Error("Variant does not support HMAC");if(!0===this.C)throw new Error("Cannot set MAC key after calling update");var i=n(t,(r||{}).encoding||"UTF8",this.u);this.B(i(e))},e.prototype.B=function(e){var t,r=this.T>>>3,n=r/4-1;if(1!==this.numRounds)throw new Error("Cannot set numRounds with MAC");if(!0===this.L)throw new Error("MAC key already set");for(r<e.binLen/8&&(e.value=this.R(e.value,e.binLen,0,this.l(this.g),this.m));e.value.length<=n;)e.value.push(0);for(t=0;t<=n;t+=1)this.N[t]=909522486^e.value[t],this.S[t]=1549556828^e.value[t];this.U=this.A(this.N,this.U),this.H=this.T,this.L=!0},e.prototype.getHMAC=function(e,t){var r=o(t);return i(e,this.m,this.u,r)(this.o())},e.prototype.o=function(){var e;if(!1===this.L)throw new Error("Cannot call getHMAC without first setting MAC key");var t=this.R(this.Y.slice(),this.I,this.H,this.p(this.U),this.m);return e=this.A(this.S,this.l(this.g)),this.R(t,this.m,this.T,e,this.m)},e}())}))},{}],vhxO:[function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(r,"__esModule",{value:!0}),r.generateHash=void 0;var i=n(e("jssha/dist/sha1"));r.generateHash=function(e){var t=new i.default("SHA-1","TEXT",{encoding:"UTF8"});return t.update(e),t.getHash("B64")}},{"jssha/dist/sha1":"IQIv"}],tgmD:[function(e,t,r){"use strict";t.exports=e=>encodeURIComponent(e).replace(/[!'()*]/g,e=>"%".concat(e.charCodeAt(0).toString(16).toUpperCase()))},{}],YtoU:[function(e,t,r){"use strict";var n="%[a-f0-9]{2}",i=new RegExp(n,"gi"),o=new RegExp("("+n+")+","gi");function a(e,t){try{return decodeURIComponent(e.join(""))}catch(e){}if(1===e.length)return e;t=t||1;var r=e.slice(0,t),n=e.slice(t);return Array.prototype.concat.call([],a(r),a(n))}function s(e){try{return decodeURIComponent(e)}catch(n){for(var t=e.match(i),r=1;r<t.length;r++)t=(e=a(t,r).join("")).match(i);return e}}t.exports=function(e){if("string"!=typeof e)throw new TypeError("Expected `encodedURI` to be of type `string`, got `"+typeof e+"`");try{return e=e.replace(/\+/g," "),decodeURIComponent(e)}catch(t){return function(e){for(var t={"%FE%FF":"��","%FF%FE":"��"},r=o.exec(e);r;){try{t[r[0]]=decodeURIComponent(r[0])}catch(e){var n=s(r[0]);n!==r[0]&&(t[r[0]]=n)}r=o.exec(e)}t["%C2"]="�";for(var i=Object.keys(t),a=0;a<i.length;a++){var u=i[a];e=e.replace(new RegExp(u,"g"),t[u])}return e}(e)}}},{}],SVkH:[function(e,t,r){"use strict";t.exports=function(e,t){if("string"!=typeof e||"string"!=typeof t)throw new TypeError("Expected the arguments to be of type `string`");if(""===t)return[e];var r=e.indexOf(t);return-1===r?[e]:[e.slice(0,r),e.slice(r+t.length)]}},{}],TuMS:[function(e,t,r){"use strict";function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e){return function(e){if(Array.isArray(e))return o(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return o(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var a=e("strict-uri-encode"),s=e("decode-uri-component"),u=e("split-on-first");function c(e){switch(e.arrayFormat){case"index":return function(t){return function(r,n){var o=r.length;return void 0===n||e.skipNull&&null===n||e.skipEmptyString&&""===n?r:[].concat(i(r),null===n?[[f(t,e),"[",o,"]"].join("")]:[[f(t,e),"[",f(o,e),"]=",f(n,e)].join("")])}};case"bracket":return function(t){return function(r,n){return void 0===n||e.skipNull&&null===n||e.skipEmptyString&&""===n?r:[].concat(i(r),null===n?[[f(t,e),"[]"].join("")]:[[f(t,e),"[]=",f(n,e)].join("")])}};case"comma":case"separator":return function(t){return function(r,n){return null==n||0===n.length?r:0===r.length?[[f(t,e),"=",f(n,e)].join("")]:[[r,f(n,e)].join(e.arrayFormatSeparator)]}};default:return function(t){return function(r,n){return void 0===n||e.skipNull&&null===n||e.skipEmptyString&&""===n?r:[].concat(i(r),null===n?[f(t,e)]:[[f(t,e),"=",f(n,e)].join("")])}}}}function l(e){if("string"!=typeof e||1!==e.length)throw new TypeError("arrayFormatSeparator must be single character string")}function f(e,t){return t.encode?t.strict?a(e):encodeURIComponent(e):e}function h(e,t){return t.decode?s(e):e}function d(e){var t=e.indexOf("#");return-1!==t&&(e=e.slice(0,t)),e}function p(e){var t=(e=d(e)).indexOf("?");return-1===t?"":e.slice(t+1)}function g(e,t){return t.parseNumbers&&!Number.isNaN(Number(e))&&"string"==typeof e&&""!==e.trim()?e=Number(e):!t.parseBooleans||null===e||"true"!==e.toLowerCase()&&"false"!==e.toLowerCase()||(e="true"===e.toLowerCase()),e}function y(e,t){l((t=Object.assign({decode:!0,sort:!0,arrayFormat:"none",arrayFormatSeparator:",",parseNumbers:!1,parseBooleans:!1},t)).arrayFormatSeparator);var r=function(e){var t;switch(e.arrayFormat){case"index":return function(e,r,n){t=/\[(\d*)\]$/.exec(e),e=e.replace(/\[\d*\]$/,""),t?(void 0===n[e]&&(n[e]={}),n[e][t[1]]=r):n[e]=r};case"bracket":return function(e,r,n){t=/(\[\])$/.exec(e),e=e.replace(/\[\]$/,""),t?void 0!==n[e]?n[e]=[].concat(n[e],r):n[e]=[r]:n[e]=r};case"comma":case"separator":return function(t,r,n){var i="string"==typeof r&&r.split("").indexOf(e.arrayFormatSeparator)>-1?r.split(e.arrayFormatSeparator).map((function(t){return h(t,e)})):null===r?r:h(r,e);n[t]=i};default:return function(e,t,r){void 0!==r[e]?r[e]=[].concat(r[e],t):r[e]=t}}}(t),i=Object.create(null);if("string"!=typeof e)return i;if(!(e=e.trim().replace(/^[?#&]/,"")))return i;for(var o of e.split("&")){var[a,s]=u(t.decode?o.replace(/\+/g," "):o,"=");s=void 0===s?null:["comma","separator"].includes(t.arrayFormat)?s:h(s,t),r(h(a,t),s,i)}for(var c of Object.keys(i)){var f=i[c];if("object"===n(f)&&null!==f)for(var d of Object.keys(f))f[d]=g(f[d],t);else i[c]=g(f,t)}return!1===t.sort?i:(!0===t.sort?Object.keys(i).sort():Object.keys(i).sort(t.sort)).reduce((function(e,t){var r=i[t];return Boolean(r)&&"object"===n(r)&&!Array.isArray(r)?e[t]=function e(t){return Array.isArray(t)?t.sort():"object"===n(t)?e(Object.keys(t)).sort((function(e,t){return Number(e)-Number(t)})).map((function(e){return t[e]})):t}(r):e[t]=r,e}),Object.create(null))}r.extract=p,r.parse=y,r.stringify=function(e,t){if(!e)return"";l((t=Object.assign({encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:","},t)).arrayFormatSeparator);var r=function(r){return t.skipNull&&function(e){return null==e}(e[r])||t.skipEmptyString&&""===e[r]},n=c(t),i={};for(var o of Object.keys(e))r(o)||(i[o]=e[o]);var a=Object.keys(i);return!1!==t.sort&&a.sort(t.sort),a.map((function(r){var i=e[r];return void 0===i?"":null===i?f(r,t):Array.isArray(i)?i.reduce(n(r),[]).join("&"):f(r,t)+"="+f(i,t)})).filter((function(e){return e.length>0})).join("&")},r.parseUrl=function(e,t){t=Object.assign({decode:!0},t);var[r,n]=u(e,"#");return Object.assign({url:r.split("?")[0]||"",query:y(p(e),t)},t&&t.parseFragmentIdentifier&&n?{fragmentIdentifier:h(n,t)}:{})},r.stringifyUrl=function(e,t){t=Object.assign({encode:!0,strict:!0},t);var n=d(e.url).split("?")[0]||"",i=r.extract(e.url),o=r.parse(i,{sort:!1}),a=Object.assign(o,e.query),s=r.stringify(a,t);s&&(s="?".concat(s));var u=function(e){var t="",r=e.indexOf("#");return-1!==r&&(t=e.slice(r)),t}(e.url);return e.fragmentIdentifier&&(u="#".concat(f(e.fragmentIdentifier,t))),"".concat(n).concat(s).concat(u)}},{"strict-uri-encode":"tgmD","decode-uri-component":"YtoU","split-on-first":"SVkH"}],Q3iA:[function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(r,"__esModule",{value:!0}),r.stringifyUrl=r.parseUrl=void 0;var i=n(e("query-string"));r.parseUrl=function(e){return i.default.parseUrl(e,{decode:!1})},r.stringifyUrl=function(e,t){return i.default.stringifyUrl({url:e,query:t},{encode:!1})}},{"query-string":"TuMS"}],GSDY:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.getSignature=void 0;var n=e("./fixedEncodeURIComponent"),i=e("./generateHash"),o=e("./queryStringHelpers");r.getSignature=function(e){var t=o.parseUrl(e),r=t.query,a={};for(var s in r)a[n.fixedEncodeURIComponent(s)]=n.fixedEncodeURIComponent(r[s]);return i.generateHash(o.stringifyUrl(t.url,a))}},{"./fixedEncodeURIComponent":"Tt42","./generateHash":"vhxO","./queryStringHelpers":"Q3iA"}],yhXp:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.signUrl=void 0;var n=e("./getSignature"),i=e("./queryStringHelpers");r.signUrl=function(e,t){t||(t={timestamp:!1});var r=i.parseUrl(e),o=r.query;return t.timestamp&&(o.exp=(new Date).getTime().toString()),o.sig=encodeURIComponent(n.getSignature(i.stringifyUrl(r.url,o))),i.stringifyUrl(r.url,o)}},{"./getSignature":"GSDY","./queryStringHelpers":"Q3iA"}],hOaR:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.verifyUrl=void 0;var n=e("./getSignature"),i=e("./queryStringHelpers");r.verifyUrl=function(e,t){t||(t={expiryTime:3e5});var r=i.parseUrl(e),o=r.query,a=decodeURIComponent(o.sig);if(!a)return!1;if(o.exp){var s=+o.exp,u=(new Date).getTime();if(isNaN(s))return!1;if(u-s>t.expiryTime)return!1}delete o.sig;var c=i.stringifyUrl(r.url,o);return a===n.getSignature(c)}},{"./getSignature":"GSDY","./queryStringHelpers":"Q3iA"}],QCba:[function(e,t,r){"use strict";var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||t.hasOwnProperty(r)||n(t,e,r)};Object.defineProperty(r,"__esModule",{value:!0}),i(e("./src/signUrl"),r),i(e("./src/verifyUrl"),r)},{"./src/signUrl":"yhXp","./src/verifyUrl":"hOaR"}]},{},["QCba"])},826:function(e,t){function r(e){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}r.keys=function(){return[]},r.resolve=r,e.exports=r,r.id=826},827:function(e,t,r){var n=r(8);e.exports=(n.default||n).template({compiler:[8,">= 4.3.0"],main:function(e,t,r,n,i){e.propertyIsEnumerable;var o,a=e.lambda,s=e.escapeExpression;return'<iframe class="'+s(a(null!=(o=null!=(o=null!=t?t.options:t)?o.styles:o)?o.webPlayer:o,t))+' embed-responsive-item" id="'+s(a(null!=(o=null!=t?t.options:t)?o.id:o,t))+'" allowfullscreen webkitallowfullscreen mozallowfullscreen allow="autoplay; fullscreen" frameborder="0" width="'+s(a(null!=(o=null!=t?t.options:t)?o.width:o,t))+'" height="'+s(a(null!=(o=null!=t?t.options:t)?o.height:o,t))+'" src="'+s(a(null!=(o=null!=t?t.options:t)?o.url:o,t))+'"></iframe>\r\n<div class="'+s(a(null!=(o=null!=(o=null!=t?t.options:t)?o.styles:o)?o.svgContainer:o,t))+'">'+(null!=(o=a(null!=(o=null!=t?t.options:t)?o.playSvg:o,t))?o:"")+"</div>"},useData:!0})},828:function(e,t,r){e.exports={webPlayerContainer:"_2S4VF",webPlayer:"_3569L",svgContainer:"_1WsxD"}}}]);
@@ -0,0 +1 @@
1
+ (window.webpackJsonp_clickview_library_editor=window.webpackJsonp_clickview_library_editor||[]).push([[10],{1092:function(e,n,t){"use strict";t.r(n);var l=t(1),o=t(651),a=t(5),i=t(24),r=t(2),s=t(3),u=t(58);const c="shared.shared-utils",p={getEmbedResolutions:()=>[{label:s.a.getPhrase(c,"responsive"),width:"100%",height:"100%"},{label:s.a.getPhrase(c,"small"),width:"640",height:"360"},{label:s.a.getPhrase(c,"medium"),width:"1014",height:"576"},{label:s.a.getPhrase(c,"large"),width:"1280",height:"720"}]};var h=t(173),d=t(119),f=t(15),b=t(6),m=t(11),y=t(863),g=t.n(y),v=t(864),k=t.n(v),w=t(865),S=t.n(w),x=t(866),C=t.n(x),E=t(0);function P(e){return(P="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function I(e,n){if(!(e instanceof n))throw new TypeError("Cannot call a class as a function")}function O(e,n){for(var t=0;t<n.length;t++){var l=n[t];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(e,l.key,l)}}function z(e,n,t){return n&&O(e.prototype,n),t&&O(e,t),e}function V(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(n&&n.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),n&&D(e,n)}function D(e,n){return(D=Object.setPrototypeOf||function(e,n){return e.__proto__=n,e})(e,n)}function _(e){var n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var t,l=R(e);if(n){var o=R(this).constructor;t=Reflect.construct(l,arguments,o)}else t=l.apply(this,arguments);return M(this,t)}}function M(e,n){return!n||"object"!==P(n)&&"function"!=typeof n?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):n}function R(e){return(R=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}t.d(n,"ShareView",(function(){return U}));var T=function(e){V(t,e);var n=_(t);function t(e){return I(this,t),n.call(this,e)}return z(t,[{key:"viewOptions",value:function(){return{footerTextClass:g.a.footerText,privacyDescription:this.options.privacyDescription}}},{key:"name",get:function(){return"ShareFooterComponent"}},{key:"className",get:function(){return"modal-footer bg-light rounded-bottom"}},{key:"template",get:function(){return S.a}}]),t}(r.a.Component),U=function(e){V(t,e);var n=_(t);function t(e){var l;return I(this,t),(l=n.call(this,e)).clipboards=[],l}return z(t,[{key:"initialize",value:function(){this.setUpViewModel(),this.bindListeners(),this.videoDataService=a.a.getInstance(f.a.Video,this)}},{key:"events",value:function(){return{"click @ui.copy":"onClickCopy","click @ui.embedToggle":"onClickEmbed"}}},{key:"regions",value:function(){return{container:{el:".".concat(g.a.container),replaceElement:!1},footer:{el:".modal-footer",replaceElement:!0}}}},{key:"bindListeners",value:function(){this.listenTo(this.viewModel,"change:autoplay change:selectedVideoSize",this.render),this.listenTo(this.viewModel,"change:public",this.onTogglePublic),this.listenTo(E.e.VIDEO,"".concat(E.f.VIDEOS,":").concat(this.options.videoId,":sync"),this.render)}},{key:"setUpViewModel",value:function(){this.viewModel=i.a.get("share:".concat(this.options.videoId),this.options)}},{key:"onTogglePublic",value:function(){var e=this,n=this.viewModel.get("public")?b.n.Public:b.n.SchoolOnly;this.videoDataService.getSharedResource(this.videoId,n,(function(t){t.set("privacyId",n),e.onSharedResourceSync(t)}))}},{key:"updateViewModel",value:function(){this.viewModel.set("public",this.model.get("privacyId")===b.n.Public,{silent:!0})}},{key:"onSharedResourceSync",value:function(e){this.model=e,this.updateViewModel(),this.render()}},{key:"fetchData",value:function(){this.video=this.videoDataService.getVideo(this.videoId),this.model||this.videoDataService.getSharedResource(this.videoId,null,l.bind(this.onSharedResourceSync,this))}},{key:"buildEmbedString",value:function(){var e=l.extend({},this.model.toJSON(),this.viewModel.toJSON()),n=this.options.videoSizes[e.selectedVideoSize],t="100%"===n.height&&"100%"===n.width;e.videoSize=n,e.baseUrl=u.a.safeUrlConcat(this.config.get("onlineUrl"),"/share/embed"),e.isResponsive=t;var o=C()(e);return t?'<div style="padding:56.25% 0 0 0; position:relative;">'.concat(o,"</div>"):o}},{key:"onClickEmbed",value:function(){this.viewModel.set("showEmbed",!0),this.render()}},{key:"onClickCopy",value:function(e){this.$(e.currentTarget).text(s.a.getPhrase(this.lang,"copied"))}},{key:"getPrivacyDescription",value:function(e){switch(e){case b.n[b.n.Private]:return s.a.getPhrase(this.lang,"private");case b.n[b.n.SchoolOnly]:return s.a.getPhrase(this.lang,"schoolOnly");case b.n[b.n.Public]:return s.a.getPhrase(this.lang,"public");default:return""}}},{key:"initClipboards",value:function(){var e=this;this.destroyClipboards(),this.getUI("copy").each((function(n,t){e.clipboards.push(new o(t))}))}},{key:"destroyClipboards",value:function(){l.each(this.clipboards,(function(e){return e.destroy()})),this.clipboards=[]}},{key:"getCannotPublicShareText",value:function(){return this.video?m.x.isExchangeVideo(this.video)?s.a.getPhrase(this.lang,"cannotShareExchange"):s.a.getPhrase(this.lang,"cannotShareClickView"):""}},{key:"onBeforeDestroy",value:function(){this.destroyClipboards()}},{key:"renderFooter",value:function(){var e=this.model&&this.getPrivacyDescription(this.model.get("privacy"));this.showChildView("footer",new T({privacyDescription:e}))}},{key:"viewOptions",value:function(){return Object.assign(Object.assign({styles:g.a},this.viewModel.toJSON()),{embedString:this.model&&this.buildEmbedString(),spinnerEl:m.q.getSpinner({size:m.r.Large,extraClasses:"mx-auto"}),showLoader:!this.model||!this.video,canPublicShare:this.video&&m.j.canPublicShare(this.video),cannotPublicShareText:this.getCannotPublicShareText()})}},{key:"onBeforeRender",value:function(){this.fetchData()}},{key:"onRender",value:function(){this.initClipboards(),this.renderFooter()}},{key:"name",get:function(){return"ShareView"}},{key:"title",get:function(){return!1}},{key:"template",get:function(){return k.a}},{key:"lang",get:function(){return"shared.share"}},{key:"props",get:function(){return["videoId"]}},{key:"elements",get:function(){return{copy:".copy",embedToggle:".embed-toggle"}}},{key:"defaults",get:function(){return{autoplay:!1,selectedVideoSize:0,videoSizes:p.getEmbedResolutions()}}},{key:"behaviors",get:function(){return[{behaviorClass:h.f,title:s.a.getPhrase(this.lang,"share"),hideCloseButton:!0},{behaviorClass:h.g,bindViewModel:!0}]}},{key:"bindings",get:function(){var e=this;return{"[name=autoplay]":"autoplay","[name=selectedVideoSize]":{observe:"selectedVideoSize",selectOptions:{collection:function(){return l.map(e.options.videoSizes,(function(e,n){return{label:e.label,value:n}}))}}},"[name=public]":"public"}}},{key:"requiredResources",get:function(){return{config:d.b.config}}}]),t}(r.a.View)},863:function(e,n,t){e.exports={container:"_2SYyd",embedInput:"ozkKz",textareaContainer:"_1monr",shareInput:"_36Arj",copyBtn:"_2UGxe",embedCopyBtn:"gaJap",footerText:"_3ydjG"}},864:function(e,n,t){var l=t(8);e.exports=(l.default||l).template({1:function(e,n,t,l,o){var a;e.propertyIsEnumerable;return(null!=(a=e.lambda(null!=(a=null!=n?n.options:n)?a.spinnerEl:a,n))?a:"")+"\r\n"},3:function(e,n,t,l,o){e.propertyIsEnumerable;var a,i,r=e.lambda,s=e.escapeExpression,u=null!=n?n:e.nullContext||{},c=e.hooks.helperMissing;return'\r\n<div class="'+s(r(null!=(a=null!=(a=null!=n?n.options:n)?a.styles:a)?a.container:a,n))+'">\r\n <label for="share-input" class="mb-0 h6">'+s((t.lang||n&&n.lang||c).call(u,"shareLink",{name:"lang",hash:{},data:o}))+'</label>\r\n <div class="input-group mb-2">\r\n <input type="text" autocomplete="off" class="form-control '+s(r(null!=(a=null!=(a=null!=n?n.options:n)?a.styles:a)?a.shareInput:a,n))+'" id="share-input" spellcheck="false" readonly="true" value='+s("function"==typeof(i=null!=(i=t.shortUrl||(null!=n?n.shortUrl:n))?i:c)?i.call(u,{name:"shortUrl",hash:{},data:o}):i)+'>\r\n <div class="input-group-append">\r\n <button class="btn bg-white copy '+s(r(null!=(a=null!=(a=null!=n?n.options:n)?a.styles:a)?a.copyBtn:a,n))+'" type="button" data-clipboard-target="#share-input">'+s((t.lang||n&&n.lang||c).call(u,"copy",{name:"lang",hash:{},data:o}))+"</button>\r\n </div>\r\n </div>\r\n\r\n"+(null!=(a=t.unless.call(u,null!=(a=null!=n?n.options:n)?a.showEmbed:a,{name:"unless",hash:{},fn:e.program(4,o,0),inverse:e.noop,data:o}))?a:"")+"\r\n"+(null!=(a=t.if.call(u,null!=(a=null!=n?n.options:n)?a.showEmbed:a,{name:"if",hash:{},fn:e.program(6,o,0),inverse:e.noop,data:o}))?a:"")+"</div>\r\n"},4:function(e,n,t,l,o){e.propertyIsEnumerable;return' <small class="embed-toggle"><a class="text-info cursor-pointer hover-text-underline">'+e.escapeExpression((t.lang||n&&n.lang||e.hooks.helperMissing).call(null!=n?n:e.nullContext||{},"showOptions",{name:"lang",hash:{},data:o}))+"</a></small>\r\n"},6:function(e,n,t,l,o){e.propertyIsEnumerable;var a,i=null!=n?n:e.nullContext||{},r=e.hooks.helperMissing,s=e.escapeExpression,u=e.lambda;return' <hr class="mt-4">\r\n <label for="link-options-input" class="mb-2 h6">'+s((t.lang||n&&n.lang||r).call(i,"linkOptions",{name:"lang",hash:{},data:o}))+'</label>\r\n <div class="custom-control custom-checkbox mb-2">\r\n <input type="checkbox" autocomplete="off" class="custom-control-input public-checkbox" id="public-checkbox" name="public" '+(null!=(a=t.unless.call(i,null!=(a=null!=n?n.options:n)?a.canPublicShare:a,{name:"unless",hash:{},fn:e.program(7,o,0),inverse:e.noop,data:o}))?a:"")+'>\r\n <label class="custom-control-label" for="public-checkbox">'+s((t.lang||n&&n.lang||r).call(i,"publicCheckbox",{name:"lang",hash:{},data:o}))+"</label>\r\n "+(null!=(a=t.unless.call(i,null!=(a=null!=n?n.options:n)?a.canPublicShare:a,{name:"unless",hash:{},fn:e.program(9,o,0),inverse:e.noop,data:o}))?a:"")+'\r\n </div>\r\n <hr class="mt-4">\r\n <label for="embed-input" class="mb-0 mt-2 h6">'+s((t.lang||n&&n.lang||r).call(i,"embed",{name:"lang",hash:{},data:o}))+'</label>\r\n <div class="input-group mb-2 '+s(u(null!=(a=null!=(a=null!=n?n.options:n)?a.styles:a)?a.textareaContainer:a,n))+'">\r\n <textarea type="text" class="form-control rounded w-100 h-100 '+s(u(null!=(a=null!=(a=null!=n?n.options:n)?a.styles:a)?a.embedInput:a,n))+'" id="embed-input" spellcheck="false" readonly="true">'+s(u(null!=(a=null!=n?n.options:n)?a.embedString:a,n))+'</textarea>\r\n <div class="input-group-append '+s(u(null!=(a=null!=(a=null!=n?n.options:n)?a.styles:a)?a.embedCopyBtn:a,n))+' rounded">\r\n <button class="btn bg-white copy '+s(u(null!=(a=null!=(a=null!=n?n.options:n)?a.styles:a)?a.copyBtn:a,n))+'" type="button" data-clipboard-target="#embed-input">'+s((t.lang||n&&n.lang||r).call(i,"copy",{name:"lang",hash:{},data:o}))+"</button>\r\n </div>\r\n </div>\r\n"+(null!=(a=t.if.call(i,null!=(a=null!=n?n.options:n)?a.videoSizes:a,{name:"if",hash:{},fn:e.program(11,o,0),inverse:e.noop,data:o}))?a:"")+' <div class="custom-control custom-checkbox d-inline-block">\r\n <input type="checkbox" autocomplete="off" class="custom-control-input autoplay-checkbox" id="autoplay-checkbox" name="autoplay">\r\n <label class="custom-control-label" for="autoplay-checkbox">'+s((t.lang||n&&n.lang||r).call(i,"autoplay",{name:"lang",hash:{},data:o}))+"</label>\r\n </div>\r\n"},7:function(e,n,t,l,o){return"disabled"},9:function(e,n,t,l,o){var a;e.propertyIsEnumerable;return'<div class="text-muted">'+e.escapeExpression(e.lambda(null!=(a=null!=n?n.options:n)?a.cannotPublicShareText:a,n))+"</div>"},11:function(e,n,t,l,o){e.propertyIsEnumerable;return' <label for="size-select" class="d-block pt-2 h6">'+e.escapeExpression((t.lang||n&&n.lang||e.hooks.helperMissing).call(null!=n?n:e.nullContext||{},"playerSize",{name:"lang",hash:{},data:o}))+'</label>\r\n <select class="custom-select w-25 mr-4 size-select" id="#size-select" name="selectedVideoSize"></select>\r\n'},compiler:[8,">= 4.3.0"],main:function(e,n,t,l,o){var a;e.propertyIsEnumerable;return null!=(a=t.if.call(null!=n?n:e.nullContext||{},null!=(a=null!=n?n.options:n)?a.showLoader:a,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.program(3,o,0),data:o}))?a:""},useData:!0})},865:function(e,n,t){var l=t(8);e.exports=(l.default||l).template({compiler:[8,">= 4.3.0"],main:function(e,n,t,l,o){e.propertyIsEnumerable;var a,i=e.lambda,r=e.escapeExpression;return'<small class="text-left w-100 mb-0 '+r(i(null!=(a=null!=n?n.options:n)?a.footerTextClass:a,n))+'">'+r(i(null!=(a=null!=n?n.options:n)?a.privacyDescription:a,n))+"</small>"},useData:!0})},866:function(e,n,t){var l=t(8);e.exports=(l.default||l).template({1:function(e,n,t,l,o){return'style="position:absolute; top:0; left:0; width:100%; height:100%;"'},3:function(e,n,t,l,o){e.propertyIsEnumerable;var a,i=e.lambda,r=e.escapeExpression;return'width="'+r(i(null!=(a=null!=n?n.videoSize:n)?a.width:a,n))+'" height="'+r(i(null!=(a=null!=n?n.videoSize:n)?a.height:a,n))+'"'},compiler:[8,">= 4.3.0"],main:function(e,n,t,l,o){e.propertyIsEnumerable;var a,i,r=null!=n?n:e.nullContext||{},s=e.hooks.helperMissing,u=e.escapeExpression;return'<iframe frameborder="0" allowfullscreen webkitallowfullscreen mozallowfullscreen '+(null!=(a=t.if.call(r,null!=n?n.isResponsive:n,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.program(3,o,0),data:o}))?a:"")+' src="'+u("function"==typeof(i=null!=(i=t.baseUrl||(null!=n?n.baseUrl:n))?i:s)?i.call(r,{name:"baseUrl",hash:{},data:o}):i)+"?shareCode="+u("function"==typeof(i=null!=(i=t.shortCode||(null!=n?n.shortCode:n))?i:s)?i.call(r,{name:"shortCode",hash:{},data:o}):i)+"&a="+u("function"==typeof(i=null!=(i=t.autoplay||(null!=n?n.autoplay:n))?i:s)?i.call(r,{name:"autoplay",hash:{},data:o}):i)+'"></iframe>'},useData:!0})}}]);
@@ -0,0 +1,11 @@
1
+ (window.webpackJsonp_clickview_library_editor=window.webpackJsonp_clickview_library_editor||[]).push([[11],{749:function(t,e,i){
2
+ /*!
3
+ * Cropper.js v1.5.3
4
+ * https://fengyuanchen.github.io/cropperjs
5
+ *
6
+ * Copyright 2015-present Chen Fengyuan
7
+ * Released under the MIT license
8
+ *
9
+ * Date: 2019-07-10T12:07:44.557Z
10
+ */
11
+ t.exports=function(){"use strict";function t(e){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var i=0;i<e.length;i++){var a=e[i];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}function a(t){return function(t){if(Array.isArray(t)){for(var e=0,i=new Array(t.length);e<t.length;e++)i[e]=t[e];return i}}(t)||function(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}var n="undefined"!=typeof window,o=n?window:{},r=!!n&&"ontouchstart"in o.document.documentElement,h=!!n&&"PointerEvent"in o,s="".concat("cropper","-crop"),c="".concat("cropper","-disabled"),l="".concat("cropper","-hidden"),d="".concat("cropper","-hide"),p="".concat("cropper","-invisible"),m="".concat("cropper","-modal"),u="".concat("cropper","-move"),g="".concat("cropper","Action"),f="".concat("cropper","Preview"),v=r?"touchstart":"mousedown",w=r?"touchmove":"mousemove",b=r?"touchend touchcancel":"mouseup",x=h?"pointerdown":v,y=h?"pointermove":w,M=h?"pointerup pointercancel":b,C=/^e|w|s|n|se|sw|ne|nw|all|crop|move|zoom$/,D=/^data:image\/jpeg;base64,/,k=/^img|canvas$/i,B={viewMode:0,dragMode:"crop",initialAspectRatio:NaN,aspectRatio:NaN,data:null,preview:"",responsive:!0,restore:!0,checkCrossOrigin:!0,checkOrientation:!0,modal:!0,guides:!0,center:!0,highlight:!0,background:!0,autoCrop:!0,autoCropArea:.8,movable:!0,rotatable:!0,scalable:!0,zoomable:!0,zoomOnTouch:!0,zoomOnWheel:!0,wheelZoomRatio:.1,cropBoxMovable:!0,cropBoxResizable:!0,toggleDragModeOnDblclick:!0,minCanvasWidth:0,minCanvasHeight:0,minCropBoxWidth:0,minCropBoxHeight:0,minContainerWidth:200,minContainerHeight:100,ready:null,cropstart:null,cropmove:null,cropend:null,crop:null,zoom:null},T=Number.isNaN||o.isNaN;function E(t){return"number"==typeof t&&!T(t)}var W=function(t){return t>0&&t<1/0};function N(t){return void 0===t}function H(e){return"object"===t(e)&&null!==e}var z=Object.prototype.hasOwnProperty;function L(t){if(!H(t))return!1;try{var e=t.constructor,i=e.prototype;return e&&i&&z.call(i,"isPrototypeOf")}catch(t){return!1}}function O(t){return"function"==typeof t}var Y=Array.prototype.slice;function X(t){return Array.from?Array.from(t):Y.call(t)}function R(t,e){return t&&O(e)&&(Array.isArray(t)||E(t.length)?X(t).forEach((function(i,a){e.call(t,i,a,t)})):H(t)&&Object.keys(t).forEach((function(i){e.call(t,t[i],i,t)}))),t}var A=Object.assign||function(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),a=1;a<e;a++)i[a-1]=arguments[a];return H(t)&&i.length>0&&i.forEach((function(e){H(e)&&Object.keys(e).forEach((function(i){t[i]=e[i]}))})),t},S=/\.\d*(?:0|9){12}\d*$/;function I(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1e11;return S.test(t)?Math.round(t*e)/e:t}var j=/^width|height|left|top|marginLeft|marginTop$/;function U(t,e){var i=t.style;R(e,(function(t,e){j.test(e)&&E(t)&&(t="".concat(t,"px")),i[e]=t}))}function P(t,e){if(e)if(E(t.length))R(t,(function(t){P(t,e)}));else if(t.classList)t.classList.add(e);else{var i=t.className.trim();i?i.indexOf(e)<0&&(t.className="".concat(i," ").concat(e)):t.className=e}}function q(t,e){e&&(E(t.length)?R(t,(function(t){q(t,e)})):t.classList?t.classList.remove(e):t.className.indexOf(e)>=0&&(t.className=t.className.replace(e,"")))}function $(t,e,i){e&&(E(t.length)?R(t,(function(t){$(t,e,i)})):i?P(t,e):q(t,e))}var _=/([a-z\d])([A-Z])/g;function Q(t){return t.replace(_,"$1-$2").toLowerCase()}function K(t,e){return H(t[e])?t[e]:t.dataset?t.dataset[e]:t.getAttribute("data-".concat(Q(e)))}function Z(t,e,i){H(i)?t[e]=i:t.dataset?t.dataset[e]=i:t.setAttribute("data-".concat(Q(e)),i)}var J=/\s\s*/,G=function(){var t=!1;if(n){var e=!1,i=function(){},a=Object.defineProperty({},"once",{get:function(){return t=!0,e},set:function(t){e=t}});o.addEventListener("test",i,a),o.removeEventListener("test",i,a)}return t}();function V(t,e,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},n=i;e.trim().split(J).forEach((function(e){if(!G){var o=t.listeners;o&&o[e]&&o[e][i]&&(n=o[e][i],delete o[e][i],0===Object.keys(o[e]).length&&delete o[e],0===Object.keys(o).length&&delete t.listeners)}t.removeEventListener(e,n,a)}))}function F(t,e,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},n=i;e.trim().split(J).forEach((function(e){if(a.once&&!G){var o=t.listeners,r=void 0===o?{}:o;n=function(){delete r[e][i],t.removeEventListener(e,n,a);for(var o=arguments.length,h=new Array(o),s=0;s<o;s++)h[s]=arguments[s];i.apply(t,h)},r[e]||(r[e]={}),r[e][i]&&t.removeEventListener(e,r[e][i],a),r[e][i]=n,t.listeners=r}t.addEventListener(e,n,a)}))}function tt(t,e,i){var a;return O(Event)&&O(CustomEvent)?a=new CustomEvent(e,{detail:i,bubbles:!0,cancelable:!0}):(a=document.createEvent("CustomEvent")).initCustomEvent(e,!0,!0,i),t.dispatchEvent(a)}function et(t){var e=t.getBoundingClientRect();return{left:e.left+(window.pageXOffset-document.documentElement.clientLeft),top:e.top+(window.pageYOffset-document.documentElement.clientTop)}}var it=o.location,at=/^(\w+:)\/\/([^:/?#]*):?(\d*)/i;function nt(t){var e=t.match(at);return null!==e&&(e[1]!==it.protocol||e[2]!==it.hostname||e[3]!==it.port)}function ot(t){var e="timestamp=".concat((new Date).getTime());return t+(-1===t.indexOf("?")?"?":"&")+e}function rt(t){var e=t.rotate,i=t.scaleX,a=t.scaleY,n=t.translateX,o=t.translateY,r=[];E(n)&&0!==n&&r.push("translateX(".concat(n,"px)")),E(o)&&0!==o&&r.push("translateY(".concat(o,"px)")),E(e)&&0!==e&&r.push("rotate(".concat(e,"deg)")),E(i)&&1!==i&&r.push("scaleX(".concat(i,")")),E(a)&&1!==a&&r.push("scaleY(".concat(a,")"));var h=r.length?r.join(" "):"none";return{WebkitTransform:h,msTransform:h,transform:h}}function ht(t,e){var i=t.pageX,a=t.pageY,n={endX:i,endY:a};return e?n:A({startX:i,startY:a},n)}function st(t){var e=t.aspectRatio,i=t.height,a=t.width,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"contain",o=W(a),r=W(i);if(o&&r){var h=i*e;"contain"===n&&h>a||"cover"===n&&h<a?i=a/e:a=i*e}else o?i=a/e:r&&(a=i*e);return{width:a,height:i}}function ct(t,e,i,n){var o=e.aspectRatio,r=e.naturalWidth,h=e.naturalHeight,s=e.rotate,c=void 0===s?0:s,l=e.scaleX,d=void 0===l?1:l,p=e.scaleY,m=void 0===p?1:p,u=i.aspectRatio,g=i.naturalWidth,f=i.naturalHeight,v=n.fillColor,w=void 0===v?"transparent":v,b=n.imageSmoothingEnabled,x=void 0===b||b,y=n.imageSmoothingQuality,M=void 0===y?"low":y,C=n.maxWidth,D=void 0===C?1/0:C,k=n.maxHeight,B=void 0===k?1/0:k,T=n.minWidth,E=void 0===T?0:T,W=n.minHeight,N=void 0===W?0:W,H=document.createElement("canvas"),z=H.getContext("2d"),L=st({aspectRatio:u,width:D,height:B}),O=st({aspectRatio:u,width:E,height:N},"cover"),Y=Math.min(L.width,Math.max(O.width,g)),X=Math.min(L.height,Math.max(O.height,f)),R=st({aspectRatio:o,width:D,height:B}),A=st({aspectRatio:o,width:E,height:N},"cover"),S=Math.min(R.width,Math.max(A.width,r)),j=Math.min(R.height,Math.max(A.height,h)),U=[-S/2,-j/2,S,j];return H.width=I(Y),H.height=I(X),z.fillStyle=w,z.fillRect(0,0,Y,X),z.save(),z.translate(Y/2,X/2),z.rotate(c*Math.PI/180),z.scale(d,m),z.imageSmoothingEnabled=x,z.imageSmoothingQuality=M,z.drawImage.apply(z,[t].concat(a(U.map((function(t){return Math.floor(I(t))}))))),z.restore(),H}var lt=String.fromCharCode,dt=/^data:.*,/;function pt(t){var e,i=new DataView(t);try{var a,n,o;if(255===i.getUint8(0)&&216===i.getUint8(1))for(var r=i.byteLength,h=2;h+1<r;){if(255===i.getUint8(h)&&225===i.getUint8(h+1)){n=h;break}h+=1}if(n){var s=n+10;if("Exif"===function(t,e,i){var a="";i+=e;for(var n=e;n<i;n+=1)a+=lt(t.getUint8(n));return a}(i,n+4,4)){var c=i.getUint16(s);if(((a=18761===c)||19789===c)&&42===i.getUint16(s+2,a)){var l=i.getUint32(s+4,a);l>=8&&(o=s+l)}}}if(o){var d,p,m=i.getUint16(o,a);for(p=0;p<m;p+=1)if(d=o+12*p+2,274===i.getUint16(d,a)){d+=8,e=i.getUint16(d,a),i.setUint16(d,1,a);break}}}catch(t){e=1}return e}var mt={render:function(){this.initContainer(),this.initCanvas(),this.initCropBox(),this.renderCanvas(),this.cropped&&this.renderCropBox()},initContainer:function(){var t=this.element,e=this.options,i=this.container,a=this.cropper;P(a,l),q(t,l);var n={width:Math.max(i.offsetWidth,Number(e.minContainerWidth)||200),height:Math.max(i.offsetHeight,Number(e.minContainerHeight)||100)};this.containerData=n,U(a,{width:n.width,height:n.height}),P(t,l),q(a,l)},initCanvas:function(){var t=this.containerData,e=this.imageData,i=this.options.viewMode,a=Math.abs(e.rotate)%180==90,n=a?e.naturalHeight:e.naturalWidth,o=a?e.naturalWidth:e.naturalHeight,r=n/o,h=t.width,s=t.height;t.height*r>t.width?3===i?h=t.height*r:s=t.width/r:3===i?s=t.width/r:h=t.height*r;var c={aspectRatio:r,naturalWidth:n,naturalHeight:o,width:h,height:s};c.left=(t.width-h)/2,c.top=(t.height-s)/2,c.oldLeft=c.left,c.oldTop=c.top,this.canvasData=c,this.limited=1===i||2===i,this.limitCanvas(!0,!0),this.initialImageData=A({},e),this.initialCanvasData=A({},c)},limitCanvas:function(t,e){var i=this.options,a=this.containerData,n=this.canvasData,o=this.cropBoxData,r=i.viewMode,h=n.aspectRatio,s=this.cropped&&o;if(t){var c=Number(i.minCanvasWidth)||0,l=Number(i.minCanvasHeight)||0;r>1?(c=Math.max(c,a.width),l=Math.max(l,a.height),3===r&&(l*h>c?c=l*h:l=c/h)):r>0&&(c?c=Math.max(c,s?o.width:0):l?l=Math.max(l,s?o.height:0):s&&(c=o.width,(l=o.height)*h>c?c=l*h:l=c/h));var d=st({aspectRatio:h,width:c,height:l});c=d.width,l=d.height,n.minWidth=c,n.minHeight=l,n.maxWidth=1/0,n.maxHeight=1/0}if(e)if(r>(s?0:1)){var p=a.width-n.width,m=a.height-n.height;n.minLeft=Math.min(0,p),n.minTop=Math.min(0,m),n.maxLeft=Math.max(0,p),n.maxTop=Math.max(0,m),s&&this.limited&&(n.minLeft=Math.min(o.left,o.left+(o.width-n.width)),n.minTop=Math.min(o.top,o.top+(o.height-n.height)),n.maxLeft=o.left,n.maxTop=o.top,2===r&&(n.width>=a.width&&(n.minLeft=Math.min(0,p),n.maxLeft=Math.max(0,p)),n.height>=a.height&&(n.minTop=Math.min(0,m),n.maxTop=Math.max(0,m))))}else n.minLeft=-n.width,n.minTop=-n.height,n.maxLeft=a.width,n.maxTop=a.height},renderCanvas:function(t,e){var i=this.canvasData,a=this.imageData;if(e){var n=function(t){var e=t.width,i=t.height,a=t.degree;if(90==(a=Math.abs(a)%180))return{width:i,height:e};var n=a%90*Math.PI/180,o=Math.sin(n),r=Math.cos(n),h=e*r+i*o,s=e*o+i*r;return a>90?{width:s,height:h}:{width:h,height:s}}({width:a.naturalWidth*Math.abs(a.scaleX||1),height:a.naturalHeight*Math.abs(a.scaleY||1),degree:a.rotate||0}),o=n.width,r=n.height,h=i.width*(o/i.naturalWidth),s=i.height*(r/i.naturalHeight);i.left-=(h-i.width)/2,i.top-=(s-i.height)/2,i.width=h,i.height=s,i.aspectRatio=o/r,i.naturalWidth=o,i.naturalHeight=r,this.limitCanvas(!0,!1)}(i.width>i.maxWidth||i.width<i.minWidth)&&(i.left=i.oldLeft),(i.height>i.maxHeight||i.height<i.minHeight)&&(i.top=i.oldTop),i.width=Math.min(Math.max(i.width,i.minWidth),i.maxWidth),i.height=Math.min(Math.max(i.height,i.minHeight),i.maxHeight),this.limitCanvas(!1,!0),i.left=Math.min(Math.max(i.left,i.minLeft),i.maxLeft),i.top=Math.min(Math.max(i.top,i.minTop),i.maxTop),i.oldLeft=i.left,i.oldTop=i.top,U(this.canvas,A({width:i.width,height:i.height},rt({translateX:i.left,translateY:i.top}))),this.renderImage(t),this.cropped&&this.limited&&this.limitCropBox(!0,!0)},renderImage:function(t){var e=this.canvasData,i=this.imageData,a=i.naturalWidth*(e.width/e.naturalWidth),n=i.naturalHeight*(e.height/e.naturalHeight);A(i,{width:a,height:n,left:(e.width-a)/2,top:(e.height-n)/2}),U(this.image,A({width:i.width,height:i.height},rt(A({translateX:i.left,translateY:i.top},i)))),t&&this.output()},initCropBox:function(){var t=this.options,e=this.canvasData,i=t.aspectRatio||t.initialAspectRatio,a=Number(t.autoCropArea)||.8,n={width:e.width,height:e.height};i&&(e.height*i>e.width?n.height=n.width/i:n.width=n.height*i),this.cropBoxData=n,this.limitCropBox(!0,!0),n.width=Math.min(Math.max(n.width,n.minWidth),n.maxWidth),n.height=Math.min(Math.max(n.height,n.minHeight),n.maxHeight),n.width=Math.max(n.minWidth,n.width*a),n.height=Math.max(n.minHeight,n.height*a),n.left=e.left+(e.width-n.width)/2,n.top=e.top+(e.height-n.height)/2,n.oldLeft=n.left,n.oldTop=n.top,this.initialCropBoxData=A({},n)},limitCropBox:function(t,e){var i=this.options,a=this.containerData,n=this.canvasData,o=this.cropBoxData,r=this.limited,h=i.aspectRatio;if(t){var s=Number(i.minCropBoxWidth)||0,c=Number(i.minCropBoxHeight)||0,l=r?Math.min(a.width,n.width,n.width+n.left,a.width-n.left):a.width,d=r?Math.min(a.height,n.height,n.height+n.top,a.height-n.top):a.height;s=Math.min(s,a.width),c=Math.min(c,a.height),h&&(s&&c?c*h>s?c=s/h:s=c*h:s?c=s/h:c&&(s=c*h),d*h>l?d=l/h:l=d*h),o.minWidth=Math.min(s,l),o.minHeight=Math.min(c,d),o.maxWidth=l,o.maxHeight=d}e&&(r?(o.minLeft=Math.max(0,n.left),o.minTop=Math.max(0,n.top),o.maxLeft=Math.min(a.width,n.left+n.width)-o.width,o.maxTop=Math.min(a.height,n.top+n.height)-o.height):(o.minLeft=0,o.minTop=0,o.maxLeft=a.width-o.width,o.maxTop=a.height-o.height))},renderCropBox:function(){var t=this.options,e=this.containerData,i=this.cropBoxData;(i.width>i.maxWidth||i.width<i.minWidth)&&(i.left=i.oldLeft),(i.height>i.maxHeight||i.height<i.minHeight)&&(i.top=i.oldTop),i.width=Math.min(Math.max(i.width,i.minWidth),i.maxWidth),i.height=Math.min(Math.max(i.height,i.minHeight),i.maxHeight),this.limitCropBox(!1,!0),i.left=Math.min(Math.max(i.left,i.minLeft),i.maxLeft),i.top=Math.min(Math.max(i.top,i.minTop),i.maxTop),i.oldLeft=i.left,i.oldTop=i.top,t.movable&&t.cropBoxMovable&&Z(this.face,g,i.width>=e.width&&i.height>=e.height?"move":"all"),U(this.cropBox,A({width:i.width,height:i.height},rt({translateX:i.left,translateY:i.top}))),this.cropped&&this.limited&&this.limitCanvas(!0,!0),this.disabled||this.output()},output:function(){this.preview(),tt(this.element,"crop",this.getData())}},ut={initPreview:function(){var t=this.crossOrigin,e=this.options.preview,i=t?this.crossOriginUrl:this.url,a=document.createElement("img");if(t&&(a.crossOrigin=t),a.src=i,this.viewBox.appendChild(a),this.viewBoxImage=a,e){var n=e;"string"==typeof e?n=this.element.ownerDocument.querySelectorAll(e):e.querySelector&&(n=[e]),this.previews=n,R(n,(function(e){var a=document.createElement("img");Z(e,f,{width:e.offsetWidth,height:e.offsetHeight,html:e.innerHTML}),t&&(a.crossOrigin=t),a.src=i,a.style.cssText='display:block;width:100%;height:auto;min-width:0!important;min-height:0!important;max-width:none!important;max-height:none!important;image-orientation:0deg!important;"',e.innerHTML="",e.appendChild(a)}))}},resetPreview:function(){R(this.previews,(function(t){var e=K(t,f);U(t,{width:e.width,height:e.height}),t.innerHTML=e.html,function(t,e){if(H(t[e]))try{delete t[e]}catch(i){t[e]=void 0}else if(t.dataset)try{delete t.dataset[e]}catch(i){t.dataset[e]=void 0}else t.removeAttribute("data-".concat(Q(e)))}(t,f)}))},preview:function(){var t=this.imageData,e=this.canvasData,i=this.cropBoxData,a=i.width,n=i.height,o=t.width,r=t.height,h=i.left-e.left-t.left,s=i.top-e.top-t.top;this.cropped&&!this.disabled&&(U(this.viewBoxImage,A({width:o,height:r},rt(A({translateX:-h,translateY:-s},t)))),R(this.previews,(function(e){var i=K(e,f),c=i.width,l=i.height,d=c,p=l,m=1;a&&(p=n*(m=c/a)),n&&p>l&&(d=a*(m=l/n),p=l),U(e,{width:d,height:p}),U(e.getElementsByTagName("img")[0],A({width:o*m,height:r*m},rt(A({translateX:-h*m,translateY:-s*m},t))))})))}},gt={bind:function(){var t=this.element,e=this.options,i=this.cropper;O(e.cropstart)&&F(t,"cropstart",e.cropstart),O(e.cropmove)&&F(t,"cropmove",e.cropmove),O(e.cropend)&&F(t,"cropend",e.cropend),O(e.crop)&&F(t,"crop",e.crop),O(e.zoom)&&F(t,"zoom",e.zoom),F(i,x,this.onCropStart=this.cropStart.bind(this)),e.zoomable&&e.zoomOnWheel&&F(i,"wheel",this.onWheel=this.wheel.bind(this),{passive:!1,capture:!0}),e.toggleDragModeOnDblclick&&F(i,"dblclick",this.onDblclick=this.dblclick.bind(this)),F(t.ownerDocument,y,this.onCropMove=this.cropMove.bind(this)),F(t.ownerDocument,M,this.onCropEnd=this.cropEnd.bind(this)),e.responsive&&F(window,"resize",this.onResize=this.resize.bind(this))},unbind:function(){var t=this.element,e=this.options,i=this.cropper;O(e.cropstart)&&V(t,"cropstart",e.cropstart),O(e.cropmove)&&V(t,"cropmove",e.cropmove),O(e.cropend)&&V(t,"cropend",e.cropend),O(e.crop)&&V(t,"crop",e.crop),O(e.zoom)&&V(t,"zoom",e.zoom),V(i,x,this.onCropStart),e.zoomable&&e.zoomOnWheel&&V(i,"wheel",this.onWheel,{passive:!1,capture:!0}),e.toggleDragModeOnDblclick&&V(i,"dblclick",this.onDblclick),V(t.ownerDocument,y,this.onCropMove),V(t.ownerDocument,M,this.onCropEnd),e.responsive&&V(window,"resize",this.onResize)}},ft={resize:function(){var t=this.options,e=this.container,i=this.containerData,a=Number(t.minContainerWidth)||200,n=Number(t.minContainerHeight)||100;if(!(this.disabled||i.width<=a||i.height<=n)){var o,r,h=e.offsetWidth/i.width;1===h&&e.offsetHeight===i.height||(t.restore&&(o=this.getCanvasData(),r=this.getCropBoxData()),this.render(),t.restore&&(this.setCanvasData(R(o,(function(t,e){o[e]=t*h}))),this.setCropBoxData(R(r,(function(t,e){r[e]=t*h})))))}},dblclick:function(){var t,e;this.disabled||"none"===this.options.dragMode||this.setDragMode((t=this.dragBox,e=s,(t.classList?t.classList.contains(e):t.className.indexOf(e)>-1)?"move":"crop"))},wheel:function(t){var e=this,i=Number(this.options.wheelZoomRatio)||.1,a=1;this.disabled||(t.preventDefault(),this.wheeling||(this.wheeling=!0,setTimeout((function(){e.wheeling=!1}),50),t.deltaY?a=t.deltaY>0?1:-1:t.wheelDelta?a=-t.wheelDelta/120:t.detail&&(a=t.detail>0?1:-1),this.zoom(-a*i,t)))},cropStart:function(t){var e=t.buttons,i=t.button;if(!(this.disabled||E(e)&&1!==e||E(i)&&0!==i||t.ctrlKey)){var a,n=this.options,o=this.pointers;t.changedTouches?R(t.changedTouches,(function(t){o[t.identifier]=ht(t)})):o[t.pointerId||0]=ht(t),a=Object.keys(o).length>1&&n.zoomable&&n.zoomOnTouch?"zoom":K(t.target,g),C.test(a)&&!1!==tt(this.element,"cropstart",{originalEvent:t,action:a})&&(t.preventDefault(),this.action=a,this.cropping=!1,"crop"===a&&(this.cropping=!0,P(this.dragBox,m)))}},cropMove:function(t){var e=this.action;if(!this.disabled&&e){var i=this.pointers;t.preventDefault(),!1!==tt(this.element,"cropmove",{originalEvent:t,action:e})&&(t.changedTouches?R(t.changedTouches,(function(t){A(i[t.identifier]||{},ht(t,!0))})):A(i[t.pointerId||0]||{},ht(t,!0)),this.change(t))}},cropEnd:function(t){if(!this.disabled){var e=this.action,i=this.pointers;t.changedTouches?R(t.changedTouches,(function(t){delete i[t.identifier]})):delete i[t.pointerId||0],e&&(t.preventDefault(),Object.keys(i).length||(this.action=""),this.cropping&&(this.cropping=!1,$(this.dragBox,m,this.cropped&&this.options.modal)),tt(this.element,"cropend",{originalEvent:t,action:e}))}}},vt={change:function(t){var e,i=this.options,a=this.canvasData,n=this.containerData,o=this.cropBoxData,r=this.pointers,h=this.action,s=i.aspectRatio,c=o.left,d=o.top,p=o.width,m=o.height,u=c+p,g=d+m,f=0,v=0,w=n.width,b=n.height,x=!0;!s&&t.shiftKey&&(s=p&&m?p/m:1),this.limited&&(f=o.minLeft,v=o.minTop,w=f+Math.min(n.width,a.width,a.left+a.width),b=v+Math.min(n.height,a.height,a.top+a.height));var y=r[Object.keys(r)[0]],M={x:y.endX-y.startX,y:y.endY-y.startY},C=function(t){switch(t){case"e":u+M.x>w&&(M.x=w-u);break;case"w":c+M.x<f&&(M.x=f-c);break;case"n":d+M.y<v&&(M.y=v-d);break;case"s":g+M.y>b&&(M.y=b-g)}};switch(h){case"all":c+=M.x,d+=M.y;break;case"e":if(M.x>=0&&(u>=w||s&&(d<=v||g>=b))){x=!1;break}C("e"),(p+=M.x)<0&&(h="w",c-=p=-p),s&&(m=p/s,d+=(o.height-m)/2);break;case"n":if(M.y<=0&&(d<=v||s&&(c<=f||u>=w))){x=!1;break}C("n"),m-=M.y,d+=M.y,m<0&&(h="s",d-=m=-m),s&&(p=m*s,c+=(o.width-p)/2);break;case"w":if(M.x<=0&&(c<=f||s&&(d<=v||g>=b))){x=!1;break}C("w"),p-=M.x,c+=M.x,p<0&&(h="e",c-=p=-p),s&&(m=p/s,d+=(o.height-m)/2);break;case"s":if(M.y>=0&&(g>=b||s&&(c<=f||u>=w))){x=!1;break}C("s"),(m+=M.y)<0&&(h="n",d-=m=-m),s&&(p=m*s,c+=(o.width-p)/2);break;case"ne":if(s){if(M.y<=0&&(d<=v||u>=w)){x=!1;break}C("n"),m-=M.y,d+=M.y,p=m*s}else C("n"),C("e"),M.x>=0?u<w?p+=M.x:M.y<=0&&d<=v&&(x=!1):p+=M.x,M.y<=0?d>v&&(m-=M.y,d+=M.y):(m-=M.y,d+=M.y);p<0&&m<0?(h="sw",d-=m=-m,c-=p=-p):p<0?(h="nw",c-=p=-p):m<0&&(h="se",d-=m=-m);break;case"nw":if(s){if(M.y<=0&&(d<=v||c<=f)){x=!1;break}C("n"),m-=M.y,d+=M.y,p=m*s,c+=o.width-p}else C("n"),C("w"),M.x<=0?c>f?(p-=M.x,c+=M.x):M.y<=0&&d<=v&&(x=!1):(p-=M.x,c+=M.x),M.y<=0?d>v&&(m-=M.y,d+=M.y):(m-=M.y,d+=M.y);p<0&&m<0?(h="se",d-=m=-m,c-=p=-p):p<0?(h="ne",c-=p=-p):m<0&&(h="sw",d-=m=-m);break;case"sw":if(s){if(M.x<=0&&(c<=f||g>=b)){x=!1;break}C("w"),p-=M.x,c+=M.x,m=p/s}else C("s"),C("w"),M.x<=0?c>f?(p-=M.x,c+=M.x):M.y>=0&&g>=b&&(x=!1):(p-=M.x,c+=M.x),M.y>=0?g<b&&(m+=M.y):m+=M.y;p<0&&m<0?(h="ne",d-=m=-m,c-=p=-p):p<0?(h="se",c-=p=-p):m<0&&(h="nw",d-=m=-m);break;case"se":if(s){if(M.x>=0&&(u>=w||g>=b)){x=!1;break}C("e"),m=(p+=M.x)/s}else C("s"),C("e"),M.x>=0?u<w?p+=M.x:M.y>=0&&g>=b&&(x=!1):p+=M.x,M.y>=0?g<b&&(m+=M.y):m+=M.y;p<0&&m<0?(h="nw",d-=m=-m,c-=p=-p):p<0?(h="sw",c-=p=-p):m<0&&(h="ne",d-=m=-m);break;case"move":this.move(M.x,M.y),x=!1;break;case"zoom":this.zoom(function(t){var e=A({},t),i=[];return R(t,(function(t,a){delete e[a],R(e,(function(e){var a=Math.abs(t.startX-e.startX),n=Math.abs(t.startY-e.startY),o=Math.abs(t.endX-e.endX),r=Math.abs(t.endY-e.endY),h=Math.sqrt(a*a+n*n),s=(Math.sqrt(o*o+r*r)-h)/h;i.push(s)}))})),i.sort((function(t,e){return Math.abs(t)<Math.abs(e)})),i[0]}(r),t),x=!1;break;case"crop":if(!M.x||!M.y){x=!1;break}e=et(this.cropper),c=y.startX-e.left,d=y.startY-e.top,p=o.minWidth,m=o.minHeight,M.x>0?h=M.y>0?"se":"ne":M.x<0&&(c-=p,h=M.y>0?"sw":"nw"),M.y<0&&(d-=m),this.cropped||(q(this.cropBox,l),this.cropped=!0,this.limited&&this.limitCropBox(!0,!0))}x&&(o.width=p,o.height=m,o.left=c,o.top=d,this.action=h,this.renderCropBox()),R(r,(function(t){t.startX=t.endX,t.startY=t.endY}))}},wt={crop:function(){return!this.ready||this.cropped||this.disabled||(this.cropped=!0,this.limitCropBox(!0,!0),this.options.modal&&P(this.dragBox,m),q(this.cropBox,l),this.setCropBoxData(this.initialCropBoxData)),this},reset:function(){return this.ready&&!this.disabled&&(this.imageData=A({},this.initialImageData),this.canvasData=A({},this.initialCanvasData),this.cropBoxData=A({},this.initialCropBoxData),this.renderCanvas(),this.cropped&&this.renderCropBox()),this},clear:function(){return this.cropped&&!this.disabled&&(A(this.cropBoxData,{left:0,top:0,width:0,height:0}),this.cropped=!1,this.renderCropBox(),this.limitCanvas(!0,!0),this.renderCanvas(),q(this.dragBox,m),P(this.cropBox,l)),this},replace:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return!this.disabled&&t&&(this.isImg&&(this.element.src=t),e?(this.url=t,this.image.src=t,this.ready&&(this.viewBoxImage.src=t,R(this.previews,(function(e){e.getElementsByTagName("img")[0].src=t})))):(this.isImg&&(this.replaced=!0),this.options.data=null,this.uncreate(),this.load(t))),this},enable:function(){return this.ready&&this.disabled&&(this.disabled=!1,q(this.cropper,c)),this},disable:function(){return this.ready&&!this.disabled&&(this.disabled=!0,P(this.cropper,c)),this},destroy:function(){var t=this.element;return t.cropper?(t.cropper=void 0,this.isImg&&this.replaced&&(t.src=this.originalUrl),this.uncreate(),this):this},move:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t,i=this.canvasData,a=i.left,n=i.top;return this.moveTo(N(t)?t:a+Number(t),N(e)?e:n+Number(e))},moveTo:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t,i=this.canvasData,a=!1;return t=Number(t),e=Number(e),this.ready&&!this.disabled&&this.options.movable&&(E(t)&&(i.left=t,a=!0),E(e)&&(i.top=e,a=!0),a&&this.renderCanvas(!0)),this},zoom:function(t,e){var i=this.canvasData;return t=(t=Number(t))<0?1/(1-t):1+t,this.zoomTo(i.width*t/i.naturalWidth,null,e)},zoomTo:function(t,e,i){var a=this.options,n=this.canvasData,o=n.width,r=n.height,h=n.naturalWidth,s=n.naturalHeight;if((t=Number(t))>=0&&this.ready&&!this.disabled&&a.zoomable){var c=h*t,l=s*t;if(!1===tt(this.element,"zoom",{ratio:t,oldRatio:o/h,originalEvent:i}))return this;if(i){var d=this.pointers,p=et(this.cropper),m=d&&Object.keys(d).length?function(t){var e=0,i=0,a=0;return R(t,(function(t){var n=t.startX,o=t.startY;e+=n,i+=o,a+=1})),{pageX:e/=a,pageY:i/=a}}(d):{pageX:i.pageX,pageY:i.pageY};n.left-=(c-o)*((m.pageX-p.left-n.left)/o),n.top-=(l-r)*((m.pageY-p.top-n.top)/r)}else L(e)&&E(e.x)&&E(e.y)?(n.left-=(c-o)*((e.x-n.left)/o),n.top-=(l-r)*((e.y-n.top)/r)):(n.left-=(c-o)/2,n.top-=(l-r)/2);n.width=c,n.height=l,this.renderCanvas(!0)}return this},rotate:function(t){return this.rotateTo((this.imageData.rotate||0)+Number(t))},rotateTo:function(t){return E(t=Number(t))&&this.ready&&!this.disabled&&this.options.rotatable&&(this.imageData.rotate=t%360,this.renderCanvas(!0,!0)),this},scaleX:function(t){var e=this.imageData.scaleY;return this.scale(t,E(e)?e:1)},scaleY:function(t){var e=this.imageData.scaleX;return this.scale(E(e)?e:1,t)},scale:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t,i=this.imageData,a=!1;return t=Number(t),e=Number(e),this.ready&&!this.disabled&&this.options.scalable&&(E(t)&&(i.scaleX=t,a=!0),E(e)&&(i.scaleY=e,a=!0),a&&this.renderCanvas(!0,!0)),this},getData:function(){var t,e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],i=this.options,a=this.imageData,n=this.canvasData,o=this.cropBoxData;if(this.ready&&this.cropped){t={x:o.left-n.left,y:o.top-n.top,width:o.width,height:o.height};var r=a.width/a.naturalWidth;if(R(t,(function(e,i){t[i]=e/r})),e){var h=Math.round(t.y+t.height),s=Math.round(t.x+t.width);t.x=Math.round(t.x),t.y=Math.round(t.y),t.width=s-t.x,t.height=h-t.y}}else t={x:0,y:0,width:0,height:0};return i.rotatable&&(t.rotate=a.rotate||0),i.scalable&&(t.scaleX=a.scaleX||1,t.scaleY=a.scaleY||1),t},setData:function(t){var e=this.options,i=this.imageData,a=this.canvasData,n={};if(this.ready&&!this.disabled&&L(t)){var o=!1;e.rotatable&&E(t.rotate)&&t.rotate!==i.rotate&&(i.rotate=t.rotate,o=!0),e.scalable&&(E(t.scaleX)&&t.scaleX!==i.scaleX&&(i.scaleX=t.scaleX,o=!0),E(t.scaleY)&&t.scaleY!==i.scaleY&&(i.scaleY=t.scaleY,o=!0)),o&&this.renderCanvas(!0,!0);var r=i.width/i.naturalWidth;E(t.x)&&(n.left=t.x*r+a.left),E(t.y)&&(n.top=t.y*r+a.top),E(t.width)&&(n.width=t.width*r),E(t.height)&&(n.height=t.height*r),this.setCropBoxData(n)}return this},getContainerData:function(){return this.ready?A({},this.containerData):{}},getImageData:function(){return this.sized?A({},this.imageData):{}},getCanvasData:function(){var t=this.canvasData,e={};return this.ready&&R(["left","top","width","height","naturalWidth","naturalHeight"],(function(i){e[i]=t[i]})),e},setCanvasData:function(t){var e=this.canvasData,i=e.aspectRatio;return this.ready&&!this.disabled&&L(t)&&(E(t.left)&&(e.left=t.left),E(t.top)&&(e.top=t.top),E(t.width)?(e.width=t.width,e.height=t.width/i):E(t.height)&&(e.height=t.height,e.width=t.height*i),this.renderCanvas(!0)),this},getCropBoxData:function(){var t,e=this.cropBoxData;return this.ready&&this.cropped&&(t={left:e.left,top:e.top,width:e.width,height:e.height}),t||{}},setCropBoxData:function(t){var e,i,a=this.cropBoxData,n=this.options.aspectRatio;return this.ready&&this.cropped&&!this.disabled&&L(t)&&(E(t.left)&&(a.left=t.left),E(t.top)&&(a.top=t.top),E(t.width)&&t.width!==a.width&&(e=!0,a.width=t.width),E(t.height)&&t.height!==a.height&&(i=!0,a.height=t.height),n&&(e?a.height=a.width/n:i&&(a.width=a.height*n)),this.renderCropBox()),this},getCroppedCanvas:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!this.ready||!window.HTMLCanvasElement)return null;var e=this.canvasData,i=ct(this.image,this.imageData,e,t);if(!this.cropped)return i;var n=this.getData(),o=n.x,r=n.y,h=n.width,s=n.height,c=i.width/Math.floor(e.naturalWidth);1!==c&&(o*=c,r*=c,h*=c,s*=c);var l=h/s,d=st({aspectRatio:l,width:t.maxWidth||1/0,height:t.maxHeight||1/0}),p=st({aspectRatio:l,width:t.minWidth||0,height:t.minHeight||0},"cover"),m=st({aspectRatio:l,width:t.width||(1!==c?i.width:h),height:t.height||(1!==c?i.height:s)}),u=m.width,g=m.height;u=Math.min(d.width,Math.max(p.width,u)),g=Math.min(d.height,Math.max(p.height,g));var f=document.createElement("canvas"),v=f.getContext("2d");f.width=I(u),f.height=I(g),v.fillStyle=t.fillColor||"transparent",v.fillRect(0,0,u,g);var w=t.imageSmoothingEnabled,b=void 0===w||w,x=t.imageSmoothingQuality;v.imageSmoothingEnabled=b,x&&(v.imageSmoothingQuality=x);var y,M,C,D,k,B,T=i.width,E=i.height,W=o,N=r;W<=-h||W>T?(W=0,y=0,C=0,k=0):W<=0?(C=-W,W=0,k=y=Math.min(T,h+W)):W<=T&&(C=0,k=y=Math.min(h,T-W)),y<=0||N<=-s||N>E?(N=0,M=0,D=0,B=0):N<=0?(D=-N,N=0,B=M=Math.min(E,s+N)):N<=E&&(D=0,B=M=Math.min(s,E-N));var H=[W,N,y,M];if(k>0&&B>0){var z=u/h;H.push(C*z,D*z,k*z,B*z)}return v.drawImage.apply(v,[i].concat(a(H.map((function(t){return Math.floor(I(t))}))))),f},setAspectRatio:function(t){var e=this.options;return this.disabled||N(t)||(e.aspectRatio=Math.max(0,t)||NaN,this.ready&&(this.initCropBox(),this.cropped&&this.renderCropBox())),this},setDragMode:function(t){var e=this.options,i=this.dragBox,a=this.face;if(this.ready&&!this.disabled){var n="crop"===t,o=e.movable&&"move"===t;t=n||o?t:"none",e.dragMode=t,Z(i,g,t),$(i,s,n),$(i,u,o),e.cropBoxMovable||(Z(a,g,t),$(a,s,n),$(a,u,o))}return this}},bt=o.Cropper,xt=function(){function t(i){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(e(this,t),!i||!k.test(i.tagName))throw new Error("The first argument is required and must be an <img> or <canvas> element.");this.element=i,this.options=A({},B,L(a)&&a),this.cropped=!1,this.disabled=!1,this.pointers={},this.ready=!1,this.reloading=!1,this.replaced=!1,this.sized=!1,this.sizing=!1,this.init()}var a,n,r;return a=t,r=[{key:"noConflict",value:function(){return window.Cropper=bt,t}},{key:"setDefaults",value:function(t){A(B,L(t)&&t)}}],(n=[{key:"init",value:function(){var t,e=this.element,i=e.tagName.toLowerCase();if(!e.cropper){if(e.cropper=this,"img"===i){if(this.isImg=!0,t=e.getAttribute("src")||"",this.originalUrl=t,!t)return;t=e.src}else"canvas"===i&&window.HTMLCanvasElement&&(t=e.toDataURL());this.load(t)}}},{key:"load",value:function(t){var e=this;if(t){this.url=t,this.imageData={};var i=this.element,a=this.options;if(a.rotatable||a.scalable||(a.checkOrientation=!1),a.checkOrientation&&window.ArrayBuffer)if(D.test(t))this.read((n=t.replace(dt,""),o=atob(n),r=new ArrayBuffer(o.length),R(h=new Uint8Array(r),(function(t,e){h[e]=o.charCodeAt(e)})),r));else{var n,o,r,h,s=new XMLHttpRequest,c=this.clone.bind(this);this.reloading=!0,this.xhr=s,s.onabort=c,s.onerror=c,s.ontimeout=c,s.onprogress=function(){"image/jpeg"!==s.getResponseHeader("content-type")&&s.abort()},s.onload=function(){e.read(s.response)},s.onloadend=function(){e.reloading=!1,e.xhr=null},a.checkCrossOrigin&&nt(t)&&i.crossOrigin&&(t=ot(t)),s.open("GET",t),s.responseType="arraybuffer",s.withCredentials="use-credentials"===i.crossOrigin,s.send()}else this.clone()}}},{key:"read",value:function(t){var e=this.options,i=this.imageData,a=pt(t),n=0,o=1,r=1;if(a>1){this.url=function(t,e){for(var i=[],a=new Uint8Array(t);a.length>0;)i.push(lt.apply(null,X(a.subarray(0,8192)))),a=a.subarray(8192);return"data:".concat(e,";base64,").concat(btoa(i.join("")))}(t,"image/jpeg");var h=function(t){var e=0,i=1,a=1;switch(t){case 2:i=-1;break;case 3:e=-180;break;case 4:a=-1;break;case 5:e=90,a=-1;break;case 6:e=90;break;case 7:e=90,i=-1;break;case 8:e=-90}return{rotate:e,scaleX:i,scaleY:a}}(a);n=h.rotate,o=h.scaleX,r=h.scaleY}e.rotatable&&(i.rotate=n),e.scalable&&(i.scaleX=o,i.scaleY=r),this.clone()}},{key:"clone",value:function(){var t,e,i=this.element,a=this.url;this.options.checkCrossOrigin&&nt(a)&&((t=i.crossOrigin)||(t="anonymous"),e=ot(a)),this.crossOrigin=t,this.crossOriginUrl=e;var n=document.createElement("img");t&&(n.crossOrigin=t),n.src=e||a,this.image=n,n.onload=this.start.bind(this),n.onerror=this.stop.bind(this),P(n,d),i.parentNode.insertBefore(n,i.nextSibling)}},{key:"start",value:function(){var t=this,e=this.isImg?this.element:this.image;e.onload=null,e.onerror=null,this.sizing=!0;var i=o.navigator&&/(?:iPad|iPhone|iPod).*?AppleWebKit/i.test(o.navigator.userAgent),a=function(e,i){A(t.imageData,{naturalWidth:e,naturalHeight:i,aspectRatio:e/i}),t.sizing=!1,t.sized=!0,t.build()};if(!e.naturalWidth||i){var n=document.createElement("img"),r=document.body||document.documentElement;this.sizingImage=n,n.onload=function(){a(n.width,n.height),i||r.removeChild(n)},n.src=e.src,i||(n.style.cssText="left:0;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;opacity:0;position:absolute;top:0;z-index:-1;",r.appendChild(n))}else a(e.naturalWidth,e.naturalHeight)}},{key:"stop",value:function(){var t=this.image;t.onload=null,t.onerror=null,t.parentNode.removeChild(t),this.image=null}},{key:"build",value:function(){if(this.sized&&!this.ready){var t=this.element,e=this.options,i=this.image,a=t.parentNode,n=document.createElement("div");n.innerHTML='<div class="cropper-container" touch-action="none"><div class="cropper-wrap-box"><div class="cropper-canvas"></div></div><div class="cropper-drag-box"></div><div class="cropper-crop-box"><span class="cropper-view-box"></span><span class="cropper-dashed dashed-h"></span><span class="cropper-dashed dashed-v"></span><span class="cropper-center"></span><span class="cropper-face"></span><span class="cropper-line line-e" data-cropper-action="e"></span><span class="cropper-line line-n" data-cropper-action="n"></span><span class="cropper-line line-w" data-cropper-action="w"></span><span class="cropper-line line-s" data-cropper-action="s"></span><span class="cropper-point point-e" data-cropper-action="e"></span><span class="cropper-point point-n" data-cropper-action="n"></span><span class="cropper-point point-w" data-cropper-action="w"></span><span class="cropper-point point-s" data-cropper-action="s"></span><span class="cropper-point point-ne" data-cropper-action="ne"></span><span class="cropper-point point-nw" data-cropper-action="nw"></span><span class="cropper-point point-sw" data-cropper-action="sw"></span><span class="cropper-point point-se" data-cropper-action="se"></span></div></div>';var o=n.querySelector(".".concat("cropper","-container")),r=o.querySelector(".".concat("cropper","-canvas")),h=o.querySelector(".".concat("cropper","-drag-box")),s=o.querySelector(".".concat("cropper","-crop-box")),c=s.querySelector(".".concat("cropper","-face"));this.container=a,this.cropper=o,this.canvas=r,this.dragBox=h,this.cropBox=s,this.viewBox=o.querySelector(".".concat("cropper","-view-box")),this.face=c,r.appendChild(i),P(t,l),a.insertBefore(o,t.nextSibling),this.isImg||q(i,d),this.initPreview(),this.bind(),e.initialAspectRatio=Math.max(0,e.initialAspectRatio)||NaN,e.aspectRatio=Math.max(0,e.aspectRatio)||NaN,e.viewMode=Math.max(0,Math.min(3,Math.round(e.viewMode)))||0,P(s,l),e.guides||P(s.getElementsByClassName("".concat("cropper","-dashed")),l),e.center||P(s.getElementsByClassName("".concat("cropper","-center")),l),e.background&&P(o,"".concat("cropper","-bg")),e.highlight||P(c,p),e.cropBoxMovable&&(P(c,u),Z(c,g,"all")),e.cropBoxResizable||(P(s.getElementsByClassName("".concat("cropper","-line")),l),P(s.getElementsByClassName("".concat("cropper","-point")),l)),this.render(),this.ready=!0,this.setDragMode(e.dragMode),e.autoCrop&&this.crop(),this.setData(e.data),O(e.ready)&&F(t,"ready",e.ready,{once:!0}),tt(t,"ready")}}},{key:"unbuild",value:function(){this.ready&&(this.ready=!1,this.unbind(),this.resetPreview(),this.cropper.parentNode.removeChild(this.cropper),q(this.element,l))}},{key:"uncreate",value:function(){this.ready?(this.unbuild(),this.ready=!1,this.cropped=!1):this.sizing?(this.sizingImage.onload=null,this.sizing=!1,this.sized=!1):this.reloading?(this.xhr.onabort=null,this.xhr.abort()):this.image&&this.stop()}}])&&i(a.prototype,n),r&&i(a,r),t}();return A(xt.prototype,mt,ut,gt,ft,vt,wt),xt}()}}]);