@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 @@
1
+ (window.webpackJsonp_clickview_library_editor=window.webpackJsonp_clickview_library_editor||[]).push([[23],{1086:function(e,t,n){"use strict";n.r(t);var r=n(2),o=n(0),i=n(1),l=n(4),a=n(13),s=n(87),u=n(11),c=n(796),f=n(851),p=n.n(f),h=n(852),d=n.n(h);function y(e){return(y="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 m(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function g(e,t){return(g=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function b(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 n,r=k(e);if(t){var o=k(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return v(this,n)}}function v(e,t){return!t||"object"!==y(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 k(e){return(k=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var w=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&&g(e,t)}(h,e);var t,n,r,f=b(h);function h(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,h),f.call(this,e)}return t=h,(n=[{key:"regions",value:function(){return{actions:{el:".video-actions-region",replaceElement:!1}}}},{key:"viewOptions",value:function(){return{styles:p.a,lockSvg:a.a.getSvg(a.b.Lock),hasRestriction:!i.isUndefined(this.model.get("restrictions")),restrictionMessage:u.n.getRestrictionTooltipMessage(this.model)}}},{key:"onRender",value:function(){this.showChildView("actions",new c.a({model:this.model,showActionLabels:!0,application:o.b.LIBRARY_EDITOR,customerHasLocalCache:this.options.customerHasLocalCache,customerHasExchange:this.options.customerHasExchange,collectionIdentifier:this.options.collectionIdentifier,routeToFolderOnDelete:!0,analyticsOptions:{entity:l.e.Video,location:l.k.VideoDetailsHeader,descriptor:l.l.Single},config:this.options.config}))}},{key:"name",get:function(){return"VideoHeaderComponent"}},{key:"template",get:function(){return d.a}},{key:"className",get:function(){return"d-flex align-items-center justify-content-between p-3 w-100"}},{key:"behaviors",get:function(){return[{behaviorClass:s.a,selector:".".concat(p.a.svgContainer)}]}}])&&m(t.prototype,n),r&&m(t,r),h}(r.a.Component),E=n(721),C=n(698),O=n(713),S=n(86),x=n(689),R=n(655),_=n(105),I=n(853),j=n.n(I),P=n(854),D=n.n(P);function T(e){return(T="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 V(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function L(e,t){return(L=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 n,r=B(e);if(t){var o=B(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return A(this,n)}}function A(e,t){return!t||"object"!==T(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 B(e){return(B=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var M=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&&L(e,t)}(i,e);var t,n,r,o=N(i);function i(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,i),o.call(this,e)}return t=i,(n=[{key:"initialize",value:function(){this.isClickViewContent=this.model&&!u.j.canEditVideo(this.model)}},{key:"regions",value:function(){return{preview:{el:".video-preview-region",replaceElement:!0},folders:{el:".folders-region",replaceElement:!0},tags:{el:".tags-region",replaceElement:!0}}}},{key:"renderVideoPreview",value:function(){this.showChildView("preview",new C.a({model:this.model,webPlayerUrl:this.options.webPlayerUrl,channelName:this.options.channelName,analyticsOptions:{location:l.k.VideoDetails}}))}},{key:"renderTags",value:function(){this.model.get("tags")&&this.model.get("tags").length&&this.showChildView("tags",new x.a({collection:this.model.get("tags"),orientation:_.d.Flex,behavior:_.c.Link}))}},{key:"renderFolders",value:function(){this.model.get("categories")&&this.model.get("categories").length&&this.showChildView("folders",new O.a({model:this.model,showFolder:!0,hideLabel:!0}))}},{key:"viewOptions",value:function(){return{styles:D.a,interactive:R.a.isInteractive(this.model),duration:u.e.ToDisplayDuration(this.model.get("duration")),folders:this.model.categories&&this.model.categories.length,multipleFolders:this.model.categories.length>1,tags:this.model.get("tags")&&this.model.get("tags").length,isClickViewContent:this.isClickViewContent,hasCustomerTags:this.isClickViewContent&&u.j.filterObjectsByOwnerType(this.model.tags,_.b.Customer,this.options.currentUser.get("customerId")).length}}},{key:"onRender",value:function(){this.renderVideoPreview(),this.renderTags(),this.renderFolders()}},{key:"name",get:function(){return"VideoSidebarInfoComponent"}},{key:"lang",get:function(){return"libraryEditor.videoSidebarInfo"}},{key:"className",get:function(){return"py-3 h-100"}},{key:"template",get:function(){return j.a}},{key:"requiredResources",get:function(){return{currentUser:S.b.currentUser}}}])&&V(t.prototype,n),r&&V(t,r),i}(r.a.Component),H=n(794),U=n(783),F=n(741),Y=n(782),q=n(685),z=n(859),J=n.n(z),W=n(860),Q=n.n(W),Z=n(861),G=n.n(Z);function K(e){return(K="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 $(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function X(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function ee(e,t,n){return t&&X(e.prototype,t),n&&X(e,n),e}function te(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&&ne(e,t)}function ne(e,t){return(ne=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function re(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 n,r=ie(e);if(t){var o=ie(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return oe(this,n)}}function oe(e,t){return!t||"object"!==K(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 ie(e){return(ie=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var le=function(e){te(n,e);var t=re(n);function n(){return $(this,n),t.apply(this,arguments)}return ee(n,[{key:"regions",value:function(){return{description:{el:".description-region",replaceElement:!0}}}},{key:"viewOptions",value:function(){return{styles:G.a}}},{key:"renderDescription",value:function(){this.model.get("value")&&this.showChildView("description",new q.a({model:new r.a.Model({description:this.model.get("value")}),linkify:!0,size:q.b.Large,truncate:!0,allowExpand:!0}))}},{key:"onRender",value:function(){this.renderDescription()}},{key:"name",get:function(){return"FieldComponent"}},{key:"template",get:function(){return J.a}},{key:"className",get:function(){return"row mb-0"}}]),n}(r.a.Component),ae=function(e){te(n,e);var t=re(n);function n(){return $(this,n),t.apply(this,arguments)}return ee(n,[{key:"name",get:function(){return"FieldsComponentCollection"}},{key:"childView",get:function(){return le}}]),n}(r.a.ComponentCollection),se=function(e){te(n,e);var t=re(n);function n(){return $(this,n),t.apply(this,arguments)}return ee(n,[{key:"regions",value:function(){return{fields:{el:".fields-region",replaceElement:!0}}}},{key:"onRender",value:function(){this.showChildView("fields",new ae({collection:this.collection}))}},{key:"name",get:function(){return"FieldsComponent"}},{key:"template",get:function(){return Q.a}},{key:"className",get:function(){return"py-3 border-top"}}]),n}(r.a.Component),ue=n(26),ce=n(5),fe=n(15),pe=n(119),he=n(6),de=n(181),ye=n(68),me=n(180),ge=n(89),be=n(678),ve=n(862),ke=n.n(ve);function we(e){return(we="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 Ee(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ce(e,t){return(Ce=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function Oe(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 n,r=xe(e);if(t){var o=xe(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return Se(this,n)}}function Se(e,t){return!t||"object"!==we(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 xe(e){return(xe=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.d(t,"VideoDetailsView",(function(){return Re}));var Re=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&&Ce(e,t)}(a,e);var t,n,i,l=Oe(a);function a(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,a),l.call(this,e)}return t=a,(n=[{key:"initialize",value:function(){this.bindListeners(),this.videoDataService=ce.a.getInstance(fe.a.Video,this),this.videoMixinService=ce.a.getInstance(fe.b.VideoMixin,this),this.localCacheDataService=ce.a.getInstance(fe.a.LocalCache,this),this.migrationVideoDataService=ce.a.getInstance(fe.a.MigrationVideo,this)}},{key:"bindListeners",value:function(){this.listenTo(o.e.VIDEO,"".concat(ue.a.VIDEOS,":").concat(this.options.videoId,":sync"),this.render),this.listenTo(o.e.VIDEO,"".concat(ue.a.VIDEOS,":").concat(this.options.videoId,":error"),this.onError),this.listenTo(o.e.VIDEO,"".concat(ue.a.RESTRICTED_OBJECTS,":").concat(this.options.videoId,":sync"),this.render),this.listenTo(o.e.VIDEO,"cache:cleared",this.render),this.listenTo(o.e.LIBRARY,"libraries:sync",this.render),this.listenTo(o.e.RESTRICTED_VIDEO,"".concat(ue.a.UPDATE_VIDEO_RESTRICTION,":sync"),this.updateRestriction),this.listenTo(o.e.RESTRICTED_VIDEO,"".concat(ue.a.RESTRICTED_OBJECTS,":").concat(this.options.videoId,":sync"),this.render),this.listenTo(o.e.LOCAL_CACHE,"".concat(ue.a.LOCAL_CACHE_DEVICES,":sync"),this.render),this.listenTo(o.e.LOCAL_CACHE,"".concat(ue.a.LOCAL_CACHE_DEVICES,":error"),this.onError)}},{key:"onError",value:function(e){switch(e.type){case ye.a.NotFound:r.a.ErrorHelper.throw(new de.a);break;case ye.a.Forbidden:r.a.ErrorHelper.throw(new me.a)}}},{key:"regions",value:function(){return{breadcrumbs:{el:".breadcrumbs-region",replaceElement:!1},header:{replaceElement:!0,el:".video-header-region",partialLoading:he.j.VideoHeader},main:{replaceElement:!0,el:".main-video-information-region",partialLoading:he.j.VideoSidebarInfo},basic:{replaceElement:!1,el:".basic-video-information-region",partialLoading:he.j.VideoBasicInfo},chapters:{replaceElement:!0,el:".video-chapters-region"},resources:{replaceElement:!0,el:".video-resources-region"},fields:{replaceElement:!0,el:".fields-region"},links:{replaceElement:!0,el:".video-links-region"}}}},{key:"updateRestriction",value:function(){this.videoMixinService.getAndMixinVideoRestriction(this.video)}},{key:"renderBreadcrumbs",value:function(){this.folder&&this.showChildView("breadcrumbs",new Y.a({folder:this.folder,libraries:this.libraries,enableLastItemAppLink:!0}))}},{key:"renderVideoHeader",value:function(){this.showChildView("header",new w({model:this.video,customerHasLocalCache:u.i.customerHasLocalCache(this.devices,this.currentUser.get("customerId")),customerHasExchange:this.exchanges.any(),collectionIdentifier:this.folder&&new be.d(this.folder.id,u.p.GetCurrentSortType()),config:this.config}))}},{key:"renderSidebarInfo",value:function(){this.showChildView("main",new M({model:this.video,webPlayerUrl:this.config.get("webPlayerUrl"),channelName:this.channelName,currentUser:this.currentUser}))}},{key:"renderBasicInfo",value:function(){this.video&&this.showChildView("basic",new F.a({model:this.video,showHeading:!0,showPublisherVideoDetails:!!this.publisherVideo,config:this.config}))}},{key:"renderFields",value:function(){this.video.fields&&this.video.fields.length&&this.showChildView("fields",new se({collection:this.video.fields}))}},{key:"renderChapters",value:function(){var e=this.video.chapters;e&&e.length>0&&this.showChildView("chapters",new H.a({channelName:this.channelName,collection:this.video.chapters}))}},{key:"renderResources",value:function(){var e=this.video.resources;e&&e.length>0&&this.showChildView("resources",new E.a({model:this.video}))}},{key:"renderLinks",value:function(){var e=this.video.links;e&&e.length&&this.showChildView("links",new U.a({model:this.video,headingText:"Links"}))}},{key:"onBeforeRender",value:function(){var e=this;return this.video=this.videoDataService.getVideo(this.options.videoId),this.video&&(this.folder=this.video.categories.first()),this.devices=this.localCacheDataService.getDevices(this.currentUser.get("customerId")),this.migrationVideoDataService.getCustomerVideoByMasterId(this.options.videoId,(function(t){var n=!!e.publisherVideo;e.publisherVideo=t,n&&e.isRendered()&&e.renderBasicInfo()})),!!this.video}},{key:"viewOptions",value:function(){if(this.video){var e=this.video,t=e.chapters,n=e.resources,r=e.fields,o=e.links;return{hasFolder:!!this.folder,hasChapters:t&&t.length,hasResources:n&&n.length,hasFields:r&&r.length,hasLinks:o&&o.length}}}},{key:"onRender",value:function(){this.renderBreadcrumbs(),this.renderVideoHeader(),this.renderSidebarInfo(),this.renderBasicInfo(),this.renderFields(),this.renderChapters(),this.renderResources(),this.renderLinks()}},{key:"name",get:function(){return"VideoDetailsView"}},{key:"title",get:function(){return this.video&&this.video.get("name")}},{key:"channelName",get:function(){return"".concat(this.name).concat(this.cid)}},{key:"template",get:function(){return ke.a}},{key:"className",get:function(){return"container-fluid h-100 bg-white"}},{key:"requiredResources",get:function(){return{config:pe.b.config,currentUser:S.b.currentUser,libraries:ge.b.libraries,exchanges:ge.b.exchanges}}}])&&Ee(t.prototype,n),i&&Ee(t,i),a}(r.a.View)},678:function(e,t,n){"use strict";var r=n(121),o=n(1),i=n(120),l=n(0),a=n(88),s=n(174);function u(e){return(u="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 c(e){return function(e){if(Array.isArray(e))return f(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(e,t)}(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 f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function p(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function h(e,t){return(h=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function d(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 n,r=m(e);if(t){var o=m(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return y(this,n)}}function y(e,t){return!t||"object"!==u(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 m(e){return(m=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var g=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&&h(e,t)}(u,e);var t,n,r,i=d(u);function u(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,u),(t=i.call(this,{collectionPrefix:"".concat(l.f.RECENT_VIDEOS,":collection"),cursor:e.cursor,sort:e.sort})).setAdditionalData(e),t}return t=u,(n=[{key:"setAdditionalData",value:function(e){var t=e.libraryIds,n=e.dateQueryString,r=e.subjects;t&&(this.libraryIds=t),r&&(o.isArray(r)&&r.length&&(this.subjects=r),o.isArray(r)||(this.subjects=[r]));var i=o.findWhere(s.g,{queryString:n})||s.e;this.dateOption=new a.b(i)}},{key:"toString",value:function(){var e=this.subjects&&this.subjects.length&&this.subjects.map((function(e){return escape(e.get("name"))}))||[];return[this.collectionPrefix,this.libraryIds,this.dateOption.get("from"),this.dateOption.get("to")].concat(c(e),[this.cursor]).filter(Boolean).join(":")}},{key:"toParams",value:function(){var e={};return this.libraryIds&&(e.libraryIds=this.libraryIds),this.dateOption&&(e.from=this.dateOption.get("from"),e.to=this.dateOption.get("to")),this.subjects&&(e.subjectIds=o.flatten(this.subjects.map((function(e){return e.get("subjectIds")})))),this.cursor&&(e.cursor=this.cursor),e}}])&&p(t.prototype,n),r&&p(t,r),u}(i.a);function b(e){return(b="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 v(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function k(e,t){return(k=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function w(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 n,r=C(e);if(t){var o=C(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return E(this,n)}}function E(e,t){return!t||"object"!==b(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 C(e){return(C=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var O=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&&k(e,t)}(u,e);var t,n,r,i=w(u);function u(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,u),(t=i.call(this,{collectionPrefix:"".concat(l.f.RECENT_SUBJECTS,":collection"),sort:e.sort})).setAdditionalData(e),t}return t=u,(n=[{key:"setAdditionalData",value:function(e){var t=e.libraryIds,n=e.dateQueryString;t&&(this.libraryIds=t);var r=o.findWhere(s.g,{queryString:n})||s.e;this.dateOption=new a.b(r)}},{key:"toString",value:function(){return[this.collectionPrefix,this.libraryIds,this.dateOption.get("from"),this.dateOption.get("to")].filter(Boolean).join(":")}},{key:"toParams",value:function(){var e={};return this.libraryIds&&(e.libraryIds=this.libraryIds),this.dateOption&&(e.from=this.dateOption.get("from"),e.to=this.dateOption.get("to")),e}}])&&v(t.prototype,n),r&&v(t,r),u}(i.a);function S(e){return(S="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 x(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function R(e,t){return(R=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function _(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 n,r=j(e);if(t){var o=j(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return I(this,n)}}function I(e,t){return!t||"object"!==S(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 j(e){return(j=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var P=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&&R(e,t)}(n,e);var t=_(n);function n(e,r){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";return x(this,n),t.call(this,{collectionPrefix:l.f.LIBRARY_FOLDERS,id:e,sort:r,cursor:o})}return n}(i.a);n.d(t,"d",(function(){return r.a})),n.d(t,"b",(function(){return g})),n.d(t,"c",(function(){return O})),n.d(t,"a",(function(){return P}))},721:function(e,t,n){"use strict";var r=n(2),o=n(735),i=n.n(o),l=n(7),a=n(13),s=n(736),u=n.n(s),c=n(737),f=n.n(c),p=n(655),h=n(11),d=n(0),y=n(4),m=n(39),g=n(3);function b(e){return(b="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 v(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function k(e,t){return(k=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function w(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 n,r=C(e);if(t){var o=C(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return E(this,n)}}function E(e,t){return!t||"object"!==b(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 C(e){return(C=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var O=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&&k(e,t)}(i,e);var t,n,r,o=w(i);function i(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,i),o.call(this,e)}return t=i,(n=[{key:"events",value:function(){return{"click .delete":"onClickDelete","click .edit":"onClickEdit"}}},{key:"onClickEdit",value:function(){var e=m.a.mergeOptions(this.options.analyticsOptions,{actionType:y.q.Edit,entity:y.e.Resource,workflowPhase:y.r.Start}),t={id:this.model.get("id"),parentId:+this.options.videoId};m.a.logUserAction(t,e)}},{key:"onClickDelete",value:function(){var e=this;new h.d({title:g.a.getPhrase(this.lang,"removeHeading"),text:g.a.getPhrase(this.lang,"removeBody",{resourceName:this.model.get("name")}),buttons:[{text:g.a.getPhrase(this.lang,"remove"),className:"btn btn-danger",success:!0},{text:g.a.getPhrase(this.lang,"cancel"),className:"btn btn-secondary",close:!0}],channelName:"".concat(this.name).concat(this.cid)}).render().done((function(){l.Radio.channel(e.options.channelName).trigger("delete:resource",e.model.get("id"))}))}},{key:"viewOptions",value:function(){var e=this.model.get("metadata"),t=e?e.type:"";return{editable:this.options.editable,styles:u.a,extension:p.a.mapTypeToExtension(t),svg:p.a.mapTypeToSvg(t),iconClass:p.a.mapTypeToClass(t),resourceType:p.a.mapTypeToName(t),editSvg:a.a.getSvg(a.b.Edit),trashSvg:a.a.getSvg(a.b.Delete)}}},{key:"name",get:function(){return"ResourceItemComponent"}},{key:"template",get:function(){return f.a}},{key:"className",get:function(){return"mb-2"}},{key:"lang",get:function(){return"libraryEditor.videoResources"}},{key:"appLinks",get:function(){return{".edit":{application:d.b.LIBRARY_EDITOR,action:d.a.LibraryEditor.EDIT_RESOURCE,args:[this.options.videoId,this.model.get("id")]}}}}])&&v(t.prototype,n),r&&v(t,r),i}(r.a.Component);function S(e){return(S="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 x(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function R(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function _(e,t,n){return t&&R(e.prototype,t),n&&R(e,n),e}function I(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&&j(e,t)}function j(e,t){return(j=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function P(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 n,r=T(e);if(t){var o=T(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return D(this,n)}}function D(e,t){return!t||"object"!==S(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 T(e){return(T=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.d(t,"b",(function(){return V})),n.d(t,"a",(function(){return L}));var V=function(e){I(n,e);var t=P(n);function n(e){return x(this,n),t.call(this,e)}return _(n,[{key:"name",get:function(){return"VideoResourcesComponentCollection"}},{key:"className",get:function(){return"mt-3"}},{key:"childView",get:function(){return O}},{key:"childViewOptions",get:function(){return{editable:this.options.editable,videoId:this.options.videoId,channelName:this.options.channelName,analyticsOptions:this.options.analyticsOptions}}}]),n}(r.a.ComponentCollection),L=function(e){I(n,e);var t=P(n);function n(e){return x(this,n),t.call(this,e)}return _(n,[{key:"regions",value:function(){return{resources:{replaceElement:!0,el:".resource-list-region"}}}},{key:"renderResources",value:function(){var e=new V({collection:this.options.customCollection||this.model.resources,editable:this.options.editable||!1,videoId:this.options.videoId||this.model.get("id"),channelName:this.options.parentChannelName||this.channelName});this.showChildView("resources",e)}},{key:"viewOptions",value:function(){return{resourcesHeadingText:this.options.headerText||g.a.getPhrase(this.lang,"heading"),emptyStateText:this.options.emptyStateText}}},{key:"onRender",value:function(){this.renderResources()}},{key:"name",get:function(){return"VideoResourcesComponent"}},{key:"template",get:function(){return i.a}},{key:"lang",get:function(){return"libraryEditor.videoResources"}},{key:"channelName",get:function(){return"".concat(this.name).concat(this.cid)}},{key:"className",get:function(){return this.options.customCollection?"":"py-3 border-top"}}]),n}(r.a.Component)},733:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){return'<nav class="breadcrumbs-region" aria-label="breadcrumb"></nav>'},useData:!0})},734:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({1:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return e.escapeExpression("function"==typeof(i=null!=(i=n.name||(null!=t?t.name:t))?i:e.hooks.helperMissing)?i.call(null!=t?t:e.nullContext||{},{name:"name",hash:{},data:o}):i)+"\r\n"},3:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return'<a class="info-link">'+e.escapeExpression("function"==typeof(i=null!=(i=n.name||(null!=t?t.name:t))?i:e.hooks.helperMissing)?i.call(null!=t?t:e.nullContext||{},{name:"name",hash:{},data:o}):i)+"</a>\r\n"},compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return null!=(i=n.if.call(null!=t?t:e.nullContext||{},null!=(i=null!=t?t.options:t)?i.isActive:i,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.program(3,o,0),data:o}))?i:""},useData:!0})},735:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({1:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return"<p>"+e.escapeExpression(e.lambda(null!=(i=null!=t?t.options:t)?i.emptyStateText:i,t))+"</p>"},compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return"<h5>"+e.escapeExpression(e.lambda(null!=(i=null!=t?t.options:t)?i.resourcesHeadingText:i,t))+"</h5>\r\n"+(null!=(i=n.if.call(null!=t?t:e.nullContext||{},null!=(i=null!=t?t.options:t)?i.emptyStateText:i,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?i:"")+'\r\n<div class="resource-list-region"></div>'},useData:!0})},736:function(e,t,n){e.exports={svgContainer:"_uEVJ",actionSvg:"_1oLg0"}},737:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({1:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression;return'<a class="float-right '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.svgContainer:i,t))+" "+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.actionSvg:i,t))+' text-muted delete">'+(null!=(i=l(null!=(i=null!=t?t.options:t)?i.trashSvg:i,t))?i:"")+'</a>\r\n<a class="float-right '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.svgContainer:i,t))+" "+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.actionSvg:i,t))+' text-muted edit">'+(null!=(i=l(null!=(i=null!=t?t.options:t)?i.editSvg:i,t))?i:"")+"</a>\r\n"},compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l,a=e.lambda,s=e.escapeExpression,u=null!=t?t:e.nullContext||{},c=e.hooks.helperMissing;return'<span title="'+s(a(null!=(i=null!=t?t.options:t)?i.resourceType:i,t))+'" class="d-inline-block align-middle mr-2 '+s(a(null!=(i=null!=t?t.options:t)?i.iconClass:i,t))+" "+s(a(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.svgContainer:i,t))+'">'+(null!=(i=a(null!=(i=null!=t?t.options:t)?i.svg:i,t))?i:"")+'</span>\r\n<a href="'+s("function"==typeof(l=null!=(l=n.url||(null!=t?t.url:t))?l:c)?l.call(u,{name:"url",hash:{},data:o}):l)+"?name="+s("function"==typeof(l=null!=(l=n.name||(null!=t?t.name:t))?l:c)?l.call(u,{name:"name",hash:{},data:o}):l)+'" class="align-middle">\r\n '+s("function"==typeof(l=null!=(l=n.name||(null!=t?t.name:t))?l:c)?l.call(u,{name:"name",hash:{},data:o}):l)+"\r\n</a>\r\n"+(null!=(i=n.if.call(u,null!=(i=null!=t?t.options:t)?i.editable:i,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?i:"")},useData:!0})},738:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({1:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression;return'<a class="float-right '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.svgContainer:i,t))+" "+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.actionSvg:i,t))+' text-muted delete">'+(null!=(i=l(null!=(i=null!=t?t.options:t)?i.trashSvg:i,t))?i:"")+'</a>\r\n<a class="float-right '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.svgContainer:i,t))+" "+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.actionSvg:i,t))+' text-muted edit">'+(null!=(i=l(null!=(i=null!=t?t.options:t)?i.editSvg:i,t))?i:"")+"</a>\r\n"},compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l,a=e.lambda,s=e.escapeExpression,u=null!=t?t:e.nullContext||{},c=e.hooks.helperMissing;return'<span class="d-inline-block align-middle mr-2 icon-blue '+s(a(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.svgContainer:i,t))+'">'+(null!=(i=a(null!=(i=null!=t?t.options:t)?i.linkSvg:i,t))?i:"")+'</span>\r\n<a href="'+s("function"==typeof(l=null!=(l=n.url||(null!=t?t.url:t))?l:c)?l.call(u,{name:"url",hash:{},data:o}):l)+'" target="_blank" class="align-middle info-link">\r\n '+s("function"==typeof(l=null!=(l=n.name||(null!=t?t.name:t))?l:c)?l.call(u,{name:"name",hash:{},data:o}):l)+"\r\n</a>\r\n"+(null!=(i=n.if.call(u,null!=(i=null!=t?t.options:t)?i.editable:i,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?i:"")},useData:!0})},739:function(e,t,n){e.exports={svgContainer:"_3T40U",actionSvg:"_3FRzz"}},740:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({1:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return"<p>"+e.escapeExpression(e.lambda(null!=(i=null!=t?t.options:t)?i.emptyStateText:i,t))+"</p>"},compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return"<h5>"+e.escapeExpression(e.lambda(null!=(i=null!=t?t.options:t)?i.headingText:i,t))+"</h5>\r\n"+(null!=(i=n.if.call(null!=t?t:e.nullContext||{},null!=(i=null!=t?t.options:t)?i.emptyStateText:i,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?i:"")+'\r\n<div class="links-region"></div>'},useData:!0})},741:function(e,t,n){"use strict";n.d(t,"a",(function(){return O}));var r=n(1),o=n(23),i=n(2),l=n(58),a=n(13),s=n(87),u=n(0),c=n(6),f=n(685),p=n(680),h=n(660),d=n(742),y=n.n(d),m=n(743),g=n.n(m);function b(e){return(b="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 v(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function k(e,t){return(k=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function w(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 n,r=C(e);if(t){var o=C(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return E(this,n)}}function E(e,t){return!t||"object"!==b(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 C(e){return(C=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var O=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&&k(e,t)}(m,e);var t,n,i,d=w(m);function m(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,m),d.call(this,e)}return t=m,(n=[{key:"regions",value:function(){return{description:{el:".description-region",replaceElement:!0,partialLoading:c.j.VideoBasicInfo},series:{el:".series-region",replaceElement:!0}}}},{key:"getBroadcastDate",value:function(){return this.model.get("dateBroadcast")?o(this.model.get("dateBroadcast")).format(c.p.FULL_YEAR):""}},{key:"getSeriesUrl",value:function(){if(this.options.externalSeriesLink&&this.model.series)return l.a.safeUrlConcat(this.options.config.get("onlineUrl"),"series/".concat(this.model.series.id))}},{key:"renderSeries",value:function(){this.model.series&&this.model.series.get("name")&&this.showChildView("series",new p.a({model:this.model,highlight:!1,seriesUrl:this.getSeriesUrl(),styleUppercase:!1}))}},{key:"renderDescription",value:function(){if(this.model&&this.model.get("description")){var e=new f.a({model:this.model,linkify:!0,size:f.b.Large,truncate:this.options.truncateDescription,allowExpand:!0});this.showChildView("description",e)}}},{key:"getSubtitleLanguage",value:function(){if(!this.model.subtitles||!this.model.get("subtitles").length)return"";var e=r.uniq(this.model.get("subtitles").map((function(e){return e.get("language")})));return r.map(e,(function(e){return CVLanguages.getFullEnglishName(e)})).join(", ")}},{key:"getCitationHeading",value:function(e,t,n){return this.model.get(e)?this.model.get(e).length>1?n:t:""}},{key:"getCitationHeadings",value:function(){return{productionCompaniesText:this.getCitationHeading(c.a.ProductionCompany,"Production Company","Production Companies"),producersText:this.getCitationHeading(c.a.Producer,"Producer","Producers"),disributorsText:this.getCitationHeading(c.a.Distributor,"Distributor","Distributors"),directorsText:this.getCitationHeading(c.a.Director,"Director","Directors")}}},{key:"viewOptions",value:function(){return Object.assign({styles:y.a,ratingClass:this.model.rating&&h.i.mapRatingToClass(this.model.rating.get("value")),broadcastDate:this.getBroadcastDate(),showHeading:this.options.showHeading,subtitles:this.getSubtitleLanguage(),publisherArchiveSvg:a.a.getSvg(a.b.PublisherArchive),showPublisherVideoDetails:this.options.showPublisherVideoDetails},this.getCitationHeadings())}},{key:"onRender",value:function(){this.renderSeries(),this.renderDescription()}},{key:"name",get:function(){return"VideoBasicInfoComponent"}},{key:"template",get:function(){return g.a}},{key:"lang",get:function(){return"shared.videoBasicInfo"}},{key:"defaults",get:function(){return{truncateDescription:!0}}},{key:"behaviors",get:function(){return[{behaviorClass:s.a,selector:".tool-tip"}]}},{key:"appLinks",get:function(){return{".applink-publisher-video":{application:u.b.LIBRARY_EDITOR,action:u.a.LibraryEditor.SHOW_PUBLISHER_VIDEO,args:[this.model.get("id")]}}}}])&&v(t.prototype,n),i&&v(t,i),m}(i.a.Component)},742:function(e,t,n){e.exports={columnNames:"_1N_VT",seriesContainer:"_4pk2s",icon:"_3SoBV",citationValues:"_1nYZg"}},743:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({1:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=null!=t?t:e.nullContext||{};return'<div class="position-relative">\r\n <h5 class="d-inline-block">'+e.escapeExpression((n.lang||t&&t.lang||e.hooks.helperMissing).call(l,"basicInfo",{name:"lang",hash:{},data:o}))+"</h5>\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.showPublisherVideoDetails:i,{name:"if",hash:{},fn:e.program(2,o,0),inverse:e.noop,data:o}))?i:"")+"</div>\r\n"},2:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression;return' <a class="float-right cursor-pointer applink-publisher-video">\r\n <span class="d-inline-block align-middle '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.icon:i,t))+'">'+(null!=(i=l(null!=(i=null!=t?t.options:t)?i.publisherArchiveSvg:i,t))?i:"")+"</span> "+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"viewInPublisherArchive",{name:"lang",hash:{},data:o}))+"\r\n </a>\r\n"},4:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l,a=e.escapeExpression,s=null!=t?t:e.nullContext||{},u=e.hooks.helperMissing;return' <div class="col-3 '+a(e.lambda(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||u).call(s,"videoTitle",{name:"lang",hash:{},data:o}))+'</div>\r\n <p class="col-9">'+a("function"==typeof(l=null!=(l=n.name||(null!=t?t.name:t))?l:u)?l.call(s,{name:"name",hash:{},data:o}):l)+"</p>\r\n"},6:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression;return' <div class="col-3 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"series",{name:"lang",hash:{},data:o}))+'</div>\r\n <div class="col-9 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.seriesContainer:i,t))+'"><div class="series-region"></div></div>\r\n'},8:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression;return' <div class="col-3 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"rating",{name:"lang",hash:{},data:o}))+'</div>\r\n <p class="col-9"><span class="p-1 badge text-white tool-tip '+a(l(null!=(i=null!=t?t.options:t)?i.ratingClass:i,t))+" "+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.rating:i,t))+'" title="'+a(l(null!=(i=null!=t?t.rating:t)?i.name:i,t))+'">'+a(l(null!=(i=null!=t?t.rating:t)?i.code:i,t))+"</span></p>\r\n"},10:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.escapeExpression;return' <div class="col-3 '+l(e.lambda(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+l((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"description",{name:"lang",hash:{},data:o}))+'</div>\r\n <div class="col-9">\r\n <div class="description-region"></div>\r\n </div>\r\n'},12:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l,a=e.escapeExpression,s=null!=t?t:e.nullContext||{},u=e.hooks.helperMissing;return' <div class="col-3 '+a(e.lambda(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||u).call(s,"productionYear",{name:"lang",hash:{},data:o}))+'</div>\r\n <p class="col-9">'+a("function"==typeof(l=null!=(l=n.productionYear||(null!=t?t.productionYear:t))?l:u)?l.call(s,{name:"productionYear",hash:{},data:o}):l)+"</p>\r\n"},14:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression,s=null!=t?t:e.nullContext||{};return' <div class="col-3 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(s,"producers",{name:"lang",hash:{},data:o}))+'</div>\r\n <div class="col-9 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.citationValues:i,t))+'">\r\n <p>\r\n'+(null!=(i=n.each.call(s,null!=t?t.producers:t,{name:"each",hash:{},fn:e.program(15,o,0),inverse:e.noop,data:o}))?i:"")+" </p>\r\n </div>\r\n"},15:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return" <span>"+e.escapeExpression("function"==typeof(i=null!=(i=n.name||(null!=t?t.name:t))?i:e.hooks.helperMissing)?i.call(null!=t?t:e.nullContext||{},{name:"name",hash:{},data:o}):i)+"</span>\r\n"},17:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression,s=null!=t?t:e.nullContext||{};return' <div class="col-3 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(s,"directors",{name:"lang",hash:{},data:o}))+'</div>\r\n <div class="col-9 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.citationValues:i,t))+'">\r\n <p>\r\n'+(null!=(i=n.each.call(s,null!=t?t.directors:t,{name:"each",hash:{},fn:e.program(15,o,0),inverse:e.noop,data:o}))?i:"")+" </p>\r\n </div>\r\n"},19:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression,s=null!=t?t:e.nullContext||{};return' <div class="col-3 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(s,"productionCompanies",{name:"lang",hash:{},data:o}))+'</div>\r\n <div class="col-9 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.citationValues:i,t))+'">\r\n <p>\r\n'+(null!=(i=n.each.call(s,null!=t?t.productionCompanies:t,{name:"each",hash:{},fn:e.program(15,o,0),inverse:e.noop,data:o}))?i:"")+" </p>\r\n </div>\r\n"},21:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression,s=null!=t?t:e.nullContext||{};return' <div class="col-3 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(s,"distributors",{name:"lang",hash:{},data:o}))+'</div>\r\n <div class="col-9 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.citationValues:i,t))+'">\r\n <p>\r\n'+(null!=(i=n.each.call(s,null!=t?t.distributors:t,{name:"each",hash:{},fn:e.program(15,o,0),inverse:e.noop,data:o}))?i:"")+" </p>\r\n </div>\r\n"},23:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return null!=(i=n.if.call(null!=t?t:e.nullContext||{},null!=t?t.channel:t,{name:"if",hash:{},fn:e.program(24,o,0),inverse:e.noop,data:o}))?i:""},24:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression;return'\r\n <div class="col-3 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"channel",{name:"lang",hash:{},data:o}))+'</div>\r\n <p class="col-9">'+a(l(null!=(i=null!=t?t.channel:t)?i.name:i,t))+"</p>\r\n "},26:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression;return' <div class="col-3 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"broadcastDate",{name:"lang",hash:{},data:o}))+'</div>\r\n <p class="col-9">'+a(l(null!=(i=null!=t?t.options:t)?i.broadcastDate:i,t))+"</p>\r\n"},28:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression;return' <div class="col-3 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"subtitles",{name:"lang",hash:{},data:o}))+'</div>\r\n <p class="col-9">'+a(l(null!=(i=null!=t?t.options:t)?i.subtitles:i,t))+"</p>\r\n"},compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=null!=t?t:e.nullContext||{};return(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.showHeading:i,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?i:"")+'<div class="row mb-0">\r\n'+(null!=(i=n.if.call(l,null!=t?t.name:t,{name:"if",hash:{},fn:e.program(4,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.series:t)?i.name:i,{name:"if",hash:{},fn:e.program(6,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.rating:t)?i.code:i,{name:"if",hash:{},fn:e.program(8,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=t?t.description:t,{name:"if",hash:{},fn:e.program(10,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=t?t.productionYear:t,{name:"if",hash:{},fn:e.program(12,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.producers:t)?i.length:i,{name:"if",hash:{},fn:e.program(14,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.directors:t)?i.length:i,{name:"if",hash:{},fn:e.program(17,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.productionCompanies:t)?i.length:i,{name:"if",hash:{},fn:e.program(19,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.distributors:t)?i.length:i,{name:"if",hash:{},fn:e.program(21,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n "+(null!=(i=n.if.call(l,null!=(i=null!=t?t.channel:t)?i.name:i,{name:"if",hash:{},fn:e.program(23,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.broadcastDate:i,{name:"if",hash:{},fn:e.program(26,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.subtitles:i,{name:"if",hash:{},fn:e.program(28,o,0),inverse:e.noop,data:o}))?i:"")+"</div>"},useData:!0})},782:function(e,t,n){"use strict";var r=n(2),o=n(733),i=n.n(o),l=n(734),a=n.n(l);function s(e){return(s="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 u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function c(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function f(e,t,n){return t&&c(e.prototype,t),n&&c(e,n),e}function p(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&&h(e,t)}function h(e,t){return(h=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function d(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 n,r=m(e);if(t){var o=m(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return y(this,n)}}function y(e,t){return!t||"object"!==s(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 m(e){return(m=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var g=function(e){p(n,e);var t=d(n);function n(){return u(this,n),t.apply(this,arguments)}return f(n,[{key:"viewOptions",value:function(){return{isActive:this.model.get("active")}}},{key:"name",get:function(){return"BreadcrumbItemComponent"}},{key:"template",get:function(){return a.a}},{key:"tagName",get:function(){return"li"}},{key:"className",get:function(){var e="breadcrumb-item";return this.model.get("active")&&(e+=" active"),e}},{key:"attributes",get:function(){return this.model.get("active")?{"aria-current":"page"}:{}}},{key:"appLinks",get:function(){return this.model.get("active")?{}:{a:this.model.get("appLink")}}}]),n}(r.a.Component),b=function(e){p(n,e);var t=d(n);function n(){return u(this,n),t.apply(this,arguments)}return f(n,[{key:"name",get:function(){return"BreadcrumbComponentCollection"}},{key:"tagName",get:function(){return"ol"}},{key:"className",get:function(){return"breadcrumb m-0 p-0"}},{key:"childView",get:function(){return g}}]),n}(r.a.ComponentCollection),v=n(34),k=n(0);function w(e){return(w="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 E(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function C(e,t){return(C=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function O(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 n,r=x(e);if(t){var o=x(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return S(this,n)}}function S(e,t){return!t||"object"!==w(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 x(e){return(x=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.d(t,"a",(function(){return R}));var R=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&&C(e,t)}(a,e);var t,n,o,l=O(a);function a(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,a),l.call(this,e)}return t=a,(n=[{key:"initialize",value:function(){this.getBreadcrumbs()}},{key:"regions",value:function(){return{breadcrumbs:".breadcrumbs-region"}}},{key:"getBreadcrumbs",value:function(){this.breadcrumbCollection=new r.a.Collection;var e,t=this.options.folder;do{if(e=v.a.getParent(t.id,this.options.libraries),this.breadcrumbCollection.add(this.getBreadcrumb(t,!!e),{at:0}),!e)break;t=e}while(e);this.options.video&&this.breadcrumbCollection.add({name:this.options.video.get("name"),appLink:{application:k.b.LIBRARY_EDITOR,action:k.a.LibraryEditor.VIDEO_DETAILS,args:[this.options.video.id]}}),this.breadcrumbCollection.length&&this.breadcrumbCollection.last().set("active",!this.options.enableLastItemAppLink)}},{key:"getBreadcrumb",value:function(e,t){var n=t?k.a.LibraryEditor.FOLDER:k.a.LibraryEditor.LIBRARY;return{name:e.get("name"),appLink:{application:k.b.LIBRARY_EDITOR,action:n,args:[e.id]}}}},{key:"onRender",value:function(){var e=new b({collection:this.breadcrumbCollection});this.showChildView("breadcrumbs",e)}},{key:"name",get:function(){return"BreadcrumbsComponent"}},{key:"template",get:function(){return i.a}},{key:"className",get:function(){return"d-inline-block"}}])&&E(t.prototype,n),o&&E(t,o),a}(r.a.Component)},783:function(e,t,n){"use strict";var r=n(2),o=n(7),i=n(13),l=n(4),a=n(39),s=n(11),u=n(0),c=n(738),f=n.n(c),p=n(739),h=n.n(p),d=n(3);function y(e){return(y="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 m(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function g(e,t){return(g=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function b(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 n,r=k(e);if(t){var o=k(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return v(this,n)}}function v(e,t){return!t||"object"!==y(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 k(e){return(k=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var w=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&&g(e,t)}(p,e);var t,n,r,c=b(p);function p(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,p),c.call(this,e)}return t=p,(n=[{key:"events",value:function(){return{"click .delete":"onClickDelete","click .edit":"onClickEdit"}}},{key:"onClickEdit",value:function(){var e=a.a.mergeOptions(this.options.analyticsOptions,{actionType:l.q.Edit,entity:l.e.Resource,workflowPhase:l.r.Start}),t={id:this.model.get("id"),parentId:+this.options.videoId};a.a.logUserAction(t,e)}},{key:"onClickDelete",value:function(){var e=this;new s.d({title:d.a.getPhrase(this.lang,"removeHeading"),text:d.a.getPhrase(this.lang,"removeConfirm",{name:s.v.escapeExpression(this.model.get("name"))}),buttons:[{text:d.a.getPhrase(this.lang,"remove"),className:"btn btn-danger",success:!0},{text:d.a.getPhrase(this.lang,"cancel"),className:"btn btn-secondary",close:!0}],channelName:s.k.generateUniqueChannelName(this)}).render().done((function(){o.Radio.channel(e.options.channelName).trigger("delete:link",e.model.get("id"))}))}},{key:"viewOptions",value:function(){return{styles:h.a,editable:this.options.editable,linkSvg:i.a.getSvg(i.b.Link),editSvg:i.a.getSvg(i.b.Edit),trashSvg:i.a.getSvg(i.b.Delete)}}},{key:"name",get:function(){return"LinkItemComponent"}},{key:"template",get:function(){return f.a}},{key:"className",get:function(){return"mb-2"}},{key:"lang",get:function(){return"libraryEditor.editLinks"}},{key:"appLinks",get:function(){return{".edit":{application:u.b.LIBRARY_EDITOR,action:u.a.LibraryEditor.EDIT_LINK,args:[this.options.videoId,this.model.get("id")]}}}}])&&m(t.prototype,n),r&&m(t,r),p}(r.a.Component),E=n(740),C=n.n(E);function O(e){return(O="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 S(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function x(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function R(e,t,n){return t&&x(e.prototype,t),n&&x(e,n),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&&I(e,t)}function I(e,t){return(I=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function j(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 n,r=D(e);if(t){var o=D(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return P(this,n)}}function P(e,t){return!t||"object"!==O(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 D(e){return(D=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.d(t,"a",(function(){return T}));var T=function(e){_(n,e);var t=j(n);function n(e){return S(this,n),t.call(this,e)}return R(n,[{key:"regions",value:function(){return{links:{el:".links-region",replaceElement:!0}}}},{key:"viewOptions",value:function(){return this.options}},{key:"onRender",value:function(){this.showChildView("links",new V({collection:this.options.customCollection||this.model.get("links"),channelName:this.options.channelName,analyticsOptions:this.options.analyticsOptions,editable:this.options.editable,videoId:this.options.videoId,headingText:this.options.headingText,emptyStateText:this.options.emptyStateText}))}},{key:"name",get:function(){return"VideoLinksComponent"}},{key:"template",get:function(){return C.a}},{key:"className",get:function(){return this.options.customCollection?"":"py-3 border-top"}}]),n}(r.a.Component),V=function(e){_(n,e);var t=j(n);function n(e){return S(this,n),t.call(this,e)}return R(n,[{key:"name",get:function(){return"LinkItemComponentCollection"}},{key:"childViewOptions",get:function(){return this.options}},{key:"childView",get:function(){return w}}]),n}(r.a.ComponentCollection)},851:function(e,t,n){e.exports={svgContainer:"_2fUyj"}},852:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({1:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.lambda,a=e.escapeExpression;return' <span class="d-inline-block ml-2 '+a(l(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.svgContainer:i,t))+'" title="'+a(l(null!=(i=null!=t?t.options:t)?i.restrictionMessage:i,t))+'">'+(null!=(i=l(null!=(i=null!=t?t.options:t)?i.lockSvg:i,t))?i:"")+"</span>\r\n"},compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l,a=null!=t?t:e.nullContext||{};return'<div class="d-inline-flex align-items-center">\r\n <h4 class="d-inline-block mb-0">'+e.escapeExpression("function"==typeof(l=null!=(l=n.name||(null!=t?t.name:t))?l:e.hooks.helperMissing)?l.call(a,{name:"name",hash:{},data:o}):l)+"</h4>\r\n"+(null!=(i=n.if.call(a,null!=(i=null!=t?t.options:t)?i.hasRestriction:i,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?i:"")+'</div>\r\n<div class="video-actions-region d-inline-block"></div>'},useData:!0})},853:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({1:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.escapeExpression;return' <span class="badge p-1 '+l(e.lambda(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.interactive:i,t))+'">'+l((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"interactive",{name:"lang",hash:{},data:o}))+"</span>\r\n"},3:function(e,t,n,r,o){var i;e.propertyIsEnumerable;return' <div class="mt-3">\r\n <h5>'+e.escapeExpression((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"folders",{name:"lang",hash:{smartCount:null!=(i=null!=t?t.options:t)?i.folders:i},data:o}))+'</h5>\r\n <div class="folders-region"></div>\r\n </div>\r\n'},5:function(e,t,n,r,o){e.propertyIsEnumerable;return' <div class="mt-3">\r\n <h5>'+e.escapeExpression((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"tags",{name:"lang",hash:{},data:o}))+'</h5>\r\n <div class="tags-region"></div>\r\n </div>\r\n'},7:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=e.escapeExpression;return' <div class="mt-3">\r\n <h5>'+l((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"curriculumLinks",{name:"lang",hash:{},data:o}))+"</h5>\r\n <p>"+l(e.lambda(null!=(i=null!=t?t.options:t)?i.links:i,t))+"</p>\r\n </div>\r\n"},compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=null!=t?t:e.nullContext||{};return'<div class="border-right h-100 pl-2 pr-3">\r\n <div class="video-preview-region"></div>\r\n <div class="mt-3">\r\n'+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.interactive:i,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?i:"")+" </div>\r\n\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.folders:i,{name:"if",hash:{},fn:e.program(3,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.tags:i,{name:"if",hash:{},fn:e.program(5,o,0),inverse:e.noop,data:o}))?i:"")+"\r\n"+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.links:i,{name:"if",hash:{},fn:e.program(7,o,0),inverse:e.noop,data:o}))?i:"")+"</div>"},useData:!0})},854:function(e,t,n){e.exports={interactive:"cAujD"}},859:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l,a=e.escapeExpression;return'<div class="col-3 '+a(e.lambda(null!=(i=null!=(i=null!=t?t.options:t)?i.styles:i)?i.columnNames:i,t))+'">'+a("function"==typeof(l=null!=(l=n.name||(null!=t?t.name:t))?l:e.hooks.helperMissing)?l.call(null!=t?t:e.nullContext||{},{name:"name",hash:{},data:o}):l)+'</div>\r\n<div class="col-9">\r\n <div class="description-region"></div>\r\n</div>'},useData:!0})},860:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){return'<h5 class="mb-0">Extra Information</h5>\r\n<div class="text-muted mb-3">This information is only visible to admins and will not be searchable</div>\r\n<div class="fields-region"></div>'},useData:!0})},861:function(e,t,n){e.exports={columnNames:"_1ZuuN"}},862:function(e,t,n){var r=n(8);e.exports=(r.default||r).template({1:function(e,t,n,r,o){return'<div class="row pl-3 pt-3 pr-3">\r\n <div class="breadcrumbs-region"></div>\r\n</div>\r\n'},3:function(e,t,n,r,o){return' <div class="fields-region"></div>\r\n'},5:function(e,t,n,r,o){return' <div class="video-chapters-region"></div>\r\n'},7:function(e,t,n,r,o){return' <div class="video-resources-region"></div>\r\n'},9:function(e,t,n,r,o){return' <div class="video-links-region"></div>\r\n'},compiler:[8,">= 4.3.0"],main:function(e,t,n,r,o){e.propertyIsEnumerable;var i,l=null!=t?t:e.nullContext||{};return(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.hasFolder:i,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?i:"")+'<div class="row border-bottom">\r\n <div class="video-header-region"></div>\r\n</div>\r\n<div class="row">\r\n <div class="col-4">\r\n <div class="main-video-information-region"></div>\r\n </div>\r\n <div class="col-8">\r\n <div class="basic-video-information-region py-3 pr-2"></div>\r\n'+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.hasFields:i,{name:"if",hash:{},fn:e.program(3,o,0),inverse:e.noop,data:o}))?i:"")+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.hasChapters:i,{name:"if",hash:{},fn:e.program(5,o,0),inverse:e.noop,data:o}))?i:"")+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.hasResources:i,{name:"if",hash:{},fn:e.program(7,o,0),inverse:e.noop,data:o}))?i:"")+(null!=(i=n.if.call(l,null!=(i=null!=t?t.options:t)?i.hasLinks:i,{name:"if",hash:{},fn:e.program(9,o,0),inverse:e.noop,data:o}))?i:"")+" </div>\r\n</div>"},useData:!0})}}]);
@@ -0,0 +1 @@
1
+ (window.webpackJsonp_clickview_library_editor=window.webpackJsonp_clickview_library_editor||[]).push([[24],{1091:function(t,e,n){"use strict";n.r(e);var r=n(1),o=n(2),i=n(5),a=n(3),c=n(4),u=n(13),l=n(178),s=n(28),f=n(119),p=n(0),y=n(6),d=n(678),h=n(803),b=n.n(h),g=n(804),m=n.n(g),v=n(11),w=n(684),O=(n(712),n(679)),R=n(690);function _(t){return(_="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 k(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function S(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function E(t,e,n){return e&&S(t.prototype,e),n&&S(t,n),t}function P(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)}function D(t,e){return(D=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function j(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,r=I(t);if(e){var o=I(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return C(this,n)}}function C(t,e){return!e||"object"!==_(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 I(t){return(I=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var T=function(t){P(n,t);var e=j(n);function n(t){return k(this,n),e.call(this,t)}return E(n,[{key:"initialize",value:function(){this.listenTo(this.model,"change:name",this.render)}},{key:"regions",value:function(){return{actions:{el:".actions-region",replaceElement:!0}}}},{key:"viewOptions",value:function(){var t=v.g.createFolderThumbnailUrl(this.model.thumbnail,{fallbackBaseUrl:this.options.imageCdnUrl,fallbackCategoryName:this.model.get("name"),type:y.f.Thumbnails});return{styles:m.a,imageUrl:t}}},{key:"onRender",value:function(){this.showChildView("actions",new R.a({model:this.model,extraClasses:"".concat(m.a.actions," rounded-circle"),buttonClass:"text-light",analyticsOptions:{location:c.k.LibraryTiles}}))}},{key:"name",get:function(){return"LibraryFolderItemComponent"}},{key:"template",get:function(){return b.a}},{key:"className",get:function(){return"col-3 p-2"}},{key:"appLinks",get:function(){return{a:{application:p.b.LIBRARY_EDITOR,action:p.a.LibraryEditor.FOLDER,args:[this.model.get("id")]}}}},{key:"behaviors",get:function(){return[{behaviorClass:O.a,channelNames:[p.w.VIDEO_DRAG_DROP,p.w.FOLDER_DRAG_DROP],analyticsOptions:{location:c.k.LibraryTiles}},{behaviorClass:w.a}]}}]),n}(o.a.Component),x=function(t){P(n,t);var e=j(n);function n(t){return k(this,n),e.call(this,t)}return E(n,[{key:"name",get:function(){return"LibraryFolderListComponent"}},{key:"className",get:function(){return"row"}},{key:"childView",get:function(){return T}},{key:"childViewOptions",get:function(){return this.options.childOptions}}]),n}(o.a.ComponentCollection),L=n(723),A=n(805),F=n.n(A),B=n(806),N=n.n(B);function V(t){return(V="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 M(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function U(t,e){return(U=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,r=G(t);if(e){var o=G(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return q(this,n)}}function q(t,e){return!e||"object"!==V(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 G(t){return(G=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}n.d(e,"LibraryView",(function(){return H}));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&&U(t,e)}(b,t);var e,n,o,h=Y(b);function b(t){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,b),h.call(this,t)}return e=b,(n=[{key:"initialize",value:function(){var t=this;this.libraryDataService=i.a.getInstance(p.g.Library,this),this.listenTo(p.e.LIBRARY,"clear:library:folder:cache",(function(){t.folders=null,t.render()}))}},{key:"regions",value:function(){return{folders:{el:".folders-region",replaceElement:!0,partialLoading:y.j.LibraryFolders},actions:{el:".actions-region",replaceElement:!0}}}},{key:"renderFolders",value:function(){this.showChildView("folders",new x({collection:this.folders,childOptions:{imageCdnUrl:this.config.get("imageCdnUrl")}}))}},{key:"renderActions",value:function(){this.showChildView("actions",new L.a({model:this.model,extraClasses:"".concat(N.a.actions," rounded-circle mr-2 mt-2"),analyticsOptions:{location:c.k.Banner}}))}},{key:"bindScrollListener",value:function(){var t=this;if(!this.scrollBound){this.scrollBound=!0;var e=$(window),n=r.debounce((function(){if(e.scrollTop()+e.height()>t.$el.offset().top+t.$el.height()&&t.currentIdentifier){var n=t.libraryDataService.getLibraryFoldersCursors(t.currentIdentifier);n&&n.next&&t.libraryDataService.getLibraryFolders(t.getNewCollectionIdentifier(n.next),(function(e){t.folders.add(e.toJSON())}))}}),333);e.scroll(n),window.setTimeout(n,100)}}},{key:"getNewCollectionIdentifier",value:function(t){return this.currentIdentifier=new d.a(this.model.categoryTree.get("id"),s.a.AtoZ,t)}},{key:"onBeforeRender",value:function(){var t=this;if(this.model)return this.folders||this.libraryDataService.getLibraryFolders(this.getNewCollectionIdentifier(),(function(e){t.folders=e,t.render()})),!!this.model&&!!this.folders;this.libraryDataService.getLibraries((function(e){t.model=e.get(t.options.libraryId),t.listenTo(t.model,"change:name",t.render),t.render()}))}},{key:"onRender",value:function(){this.renderFolders(),this.renderActions(),this.bindScrollListener()}},{key:"name",get:function(){return"LibraryView"}},{key:"title",get:function(){return!!this.model&&this.model.get("name")}},{key:"lang",get:function(){return"libraryEditor.library"}},{key:"template",get:function(){return F.a}},{key:"className",get:function(){return"bg-white px-3 pt-3 pb-2 position-relative ".concat(N.a.library)}},{key:"behaviors",get:function(){var t=this;return[{behaviorClass:l.a,region:"folders",type:y.c.Library,shouldRender:function(){return t.model&&!t.model.children.length},componentOptions:{libraryId:this.options.libraryId,moreSvg:u.a.getSvg(u.b.More),heading:a.a.getPhrase(this.lang,"emptyStateHeading"),description:a.a.getPhrase(this.lang,"emptyStateInfo",{moreSvg:'<span class="d-inline-block svg-container align-top">\n '.concat(u.a.getSvg(u.b.More),"</span>")})},emptyStateComponents:p.h}]}},{key:"requiredResources",get:function(){return{config:f.b.config}}}])&&M(e.prototype,n),o&&M(e,o),b}(o.a.View)},657:function(t,e,n){"use strict";n.d(e,"a",(function(){return p}));var r=n(1),o=n(2),i=n(176);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 c(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function u(t,e){return(u=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function l(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,r=f(t);if(e){var o=f(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return s(this,n)}}function s(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 p=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)}(s,t);var e,n,o,a=l(s);function s(t){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.call(this,t)}return e=s,(n=[{key:"initialize",value:function(){this.listenTo(this.options.channelName,"center:dropdown",this.centerSelectedItem)}},{key:"getExtraClasses",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.alignment,n=void 0===e?"left":e,r=t.extraClasses,o="dropdown-menu-".concat(n);return r&&(o="".concat(o," ").concat(r)),o}},{key:"centerSelectedItem",value:function(){var t=this.$el.find(".active");if(t.length){var e=this.$el.scrollTop()+t.position().top,n=.5*this.$el.height()+.5*t.height();this.$el.scrollTop(e-n)}}},{key:"name",get:function(){return"DropdownCollectionComponent"}},{key:"className",get:function(){return"dropdown-menu items-viewpart ".concat(this.getExtraClasses(this.options.displayOptions))}},{key:"attributes",get:function(){return{"aria-labelledby":"dropdownSelector"}}},{key:"childView",get:function(){return i.a}},{key:"childViewOptions",get:function(){var t={channelName:this.options.channelName,analyticsHelper:this.options.analyticsHelper};return r.extend(t,this.options.childOptions)}}])&&c(e.prototype,n),o&&c(e,o),s}(o.a.ComponentCollection)},667:function(t,e,n){t.exports={dragItem:"_2TIZ7",svgContainer:"_3JzEU",dragText:"_1Kdwj"}},668:function(t,e,n){var r=n(8);t.exports=(r.default||r).template({compiler:[8,">= 4.3.0"],main:function(t,e,n,r,o){t.propertyIsEnumerable;var i,a=t.lambda,c=t.escapeExpression;return'<span class="'+c(a(null!=(i=null!=(i=null!=e?e.options:e)?i.styles:i)?i.svgContainer:i,e))+' mr-2">'+(null!=(i=a(null!=(i=null!=e?e.options:e)?i.svg:i,e))?i:"")+'</span>\r\n<span class="'+c(a(null!=(i=null!=(i=null!=e?e.options:e)?i.styles:i)?i.dragText:i,e))+'">'+c(a(null!=(i=null!=e?e.options:e)?i.text:i,e))+"</span>"},useData:!0})},678:function(t,e,n){"use strict";var r=n(121),o=n(1),i=n(120),a=n(0),c=n(88),u=n(174);function l(t){return(l="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 s(t){return function(t){if(Array.isArray(t))return f(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return f(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return f(t,e)}(t)||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 f(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}function p(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function y(t,e){return(y=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function d(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,r=b(t);if(e){var o=b(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return h(this,n)}}function h(t,e){return!e||"object"!==l(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 b(t){return(b=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&&y(t,e)}(l,t);var e,n,r,i=d(l);function l(t){var e;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,l),(e=i.call(this,{collectionPrefix:"".concat(a.f.RECENT_VIDEOS,":collection"),cursor:t.cursor,sort:t.sort})).setAdditionalData(t),e}return e=l,(n=[{key:"setAdditionalData",value:function(t){var e=t.libraryIds,n=t.dateQueryString,r=t.subjects;e&&(this.libraryIds=e),r&&(o.isArray(r)&&r.length&&(this.subjects=r),o.isArray(r)||(this.subjects=[r]));var i=o.findWhere(u.g,{queryString:n})||u.e;this.dateOption=new c.b(i)}},{key:"toString",value:function(){var t=this.subjects&&this.subjects.length&&this.subjects.map((function(t){return escape(t.get("name"))}))||[];return[this.collectionPrefix,this.libraryIds,this.dateOption.get("from"),this.dateOption.get("to")].concat(s(t),[this.cursor]).filter(Boolean).join(":")}},{key:"toParams",value:function(){var t={};return this.libraryIds&&(t.libraryIds=this.libraryIds),this.dateOption&&(t.from=this.dateOption.get("from"),t.to=this.dateOption.get("to")),this.subjects&&(t.subjectIds=o.flatten(this.subjects.map((function(t){return t.get("subjectIds")})))),this.cursor&&(t.cursor=this.cursor),t}}])&&p(e.prototype,n),r&&p(e,r),l}(i.a);function m(t){return(m="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 v(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function w(t,e){return(w=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function O(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,r=_(t);if(e){var o=_(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return R(this,n)}}function R(t,e){return!e||"object"!==m(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 _(t){return(_=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&&w(t,e)}(l,t);var e,n,r,i=O(l);function l(t){var e;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,l),(e=i.call(this,{collectionPrefix:"".concat(a.f.RECENT_SUBJECTS,":collection"),sort:t.sort})).setAdditionalData(t),e}return e=l,(n=[{key:"setAdditionalData",value:function(t){var e=t.libraryIds,n=t.dateQueryString;e&&(this.libraryIds=e);var r=o.findWhere(u.g,{queryString:n})||u.e;this.dateOption=new c.b(r)}},{key:"toString",value:function(){return[this.collectionPrefix,this.libraryIds,this.dateOption.get("from"),this.dateOption.get("to")].filter(Boolean).join(":")}},{key:"toParams",value:function(){var t={};return this.libraryIds&&(t.libraryIds=this.libraryIds),this.dateOption&&(t.from=this.dateOption.get("from"),t.to=this.dateOption.get("to")),t}}])&&v(e.prototype,n),r&&v(e,r),l}(i.a);function S(t){return(S="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 E(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function P(t,e){return(P=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function D(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,r=C(t);if(e){var o=C(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return j(this,n)}}function j(t,e){return!e||"object"!==S(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 C(t){return(C=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var I=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&&P(t,e)}(n,t);var e=D(n);function n(t,r){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";return E(this,n),e.call(this,{collectionPrefix:a.f.LIBRARY_FOLDERS,id:t,sort:r,cursor:o})}return n}(i.a);n.d(e,"d",(function(){return r.a})),n.d(e,"b",(function(){return g})),n.d(e,"c",(function(){return k})),n.d(e,"a",(function(){return I}))},679:function(t,e,n){"use strict";n.d(e,"a",(function(){return d}));var r=n(1),o=n(7),i=n(2),a=n(91);function c(t){return(c="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 u(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function l(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function f(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,r=y(t);if(e){var o=y(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return p(this,n)}}function p(t,e){return!e||"object"!==c(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 y(t){return(y=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&&s(t,e)}(p,t);var e,n,i,c=f(p);function p(){return u(this,p),c.apply(this,arguments)}return e=p,(n=[{key:"getDroppableElement",value:function(){return this.options.ui?this.view.getUI(this.options.ui):this.$el}},{key:"drop",value:function(){var t=this;r.each(this.options.channelNames,(function(e){o.Radio.channel(e).trigger("drag:drop",t.view.model,t.options.analyticsOptions)}))}},{key:"accept",value:function(){var t=this,e=!1;return r.each(this.options.channelNames,(function(n){!0===o.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",a.active)}),500)}},{key:"out",value:function(){this.isHoveringOver=!1}},{key:"onRender",value:function(){var t={tolerance:"pointer",drop:r.bind(this.drop,this),accept:r.bind(this.accept,this),over:r.bind(this.over,this),out:r.bind(this.out,this)};t.classes={"ui-droppable":a.droppable,"ui-droppable-active":a.active,"ui-droppable-hover":a.hover},this.getDroppableElement().droppable(t)}},{key:"onBeforeDestroy",value:function(){this.getDroppableElement().droppable("instance")&&this.getDroppableElement().droppable("destroy")}}])&&l(e.prototype,n),i&&l(e,i),p}(i.a.Behavior)},683:function(t,e,n){"use strict";var r=n(667),o=n.n(r),i=n(668),a=n.n(i);function c(t){return(c="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 u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function s(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,r=p(t);if(e){var o=p(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return f(this,n)}}function f(t,e){return!e||"object"!==c(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 p(t){return(p=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var y=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&&l(t,e)}(c,t);var e,n,r,i=s(c);function c(t){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,c),i.call(this,t)}return e=c,(n=[{key:"viewOptions",value:function(){return Object.assign({styles:o.a},this.options)}},{key:"name",get:function(){return"DraggableItemComponent"}},{key:"template",get:function(){return a.a}},{key:"className",get:function(){return"".concat(o.a.dragItem," p-3")}}])&&u(e.prototype,n),r&&u(e,r),c}(n(2).a.Component),d={delay:150,cursorAt:{left:-20,top:10},refreshPositions:!0};n.d(e,"c",(function(){return o.a})),n.d(e,"b",(function(){return y})),n.d(e,"a",(function(){return d}))},684:function(t,e,n){"use strict";n.d(e,"a",(function(){return m}));var r=n(1),o=n(7),i=n(2),a=n(13),c=n(0),u=n(683),l=n(691),s=n.n(l);function f(t){return(f="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 p(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function y(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function d(t,e){return(d=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function h(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,r=g(t);if(e){var o=g(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return b(this,n)}}function b(t,e){return!e||"object"!==f(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 g(t){return(g=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var m=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)}(f,t);var e,n,i,l=h(f);function f(){return p(this,f),l.apply(this,arguments)}return e=f,(n=[{key:"getClassMappings",value:function(){return{"ui-draggable":u.c.draggable,"ui-draggable-handle":u.c.handle,"ui-draggable-disabled":u.c.disabled,"ui-draggable-dragging":u.c.dragging}}},{key:"helper",value:function(){return new u.b({text:this.view.model.get("name"),svg:a.a.getSvg(a.b.Folder)}).render().el}},{key:"start",value:function(){o.Radio.channel(c.w.FOLDER_DRAG_DROP).trigger("drag:start",this.view.model),this.view.$el.addClass(s.a.draggingFolder)}},{key:"stop",value:function(){o.Radio.channel(c.w.FOLDER_DRAG_DROP).trigger("drag:stop"),this.view.$el.removeClass(s.a.draggingFolder)}},{key:"onRender",value:function(){var t={helper:r.bind(this.helper,this),start:r.bind(this.start,this),stop:r.bind(this.stop,this)};t.classes=this.getClassMappings(),this.view.$el.draggable(r.extend({},u.a,t))}},{key:"onBeforeDestroy",value:function(){this.view.$el.draggable("instance")&&this.view.$el.draggable("destroy")}}])&&y(e.prototype,n),i&&y(e,i),f}(i.a.Behavior)},690:function(t,e,n){"use strict";var r=n(2),o=n(13),i=n(54),a=n(4),c=n(39),u=n(657),l=n(0),s=n(3),f=n(692),p=n.n(f);function y(t){return(y="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 d(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function h(t,e){return(h=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function b(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,r=m(t);if(e){var o=m(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return g(this,n)}}function g(t,e){return!e||"object"!==y(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 v=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&&h(t,e)}(f,t);var e,n,o,i=b(f);function f(t){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,f),i.call(this,t)}return e=f,(n=[{key:"regions",value:function(){return{items:{el:".items-region",replaceElement:!0}}}},{key:"getFolderActions",value:function(){return[{title:s.a.getPhrase(this.lang,"addSubfolder"),analyticsOptions:c.a.mergeOptions(this.options.analyticsOptions,{actionType:a.q.Create,entity:a.e.Folder,workflowPhase:a.r.Start}),appLink:{application:l.b.LIBRARY_EDITOR,action:l.a.LibraryEditor.NEW_SUB_FOLDER,args:[this.model.get("id")]}},{title:s.a.getPhrase(this.lang,"rename"),analyticsOptions:c.a.mergeOptions(this.options.analyticsOptions,{actionType:a.q.Rename,entity:a.e.Folder,workflowPhase:a.r.Start}),appLink:{application:l.b.LIBRARY_EDITOR,action:l.a.LibraryEditor.RENAME_FOLDER,args:[this.model.get("id")]}},{title:s.a.getPhrase(this.lang,"move"),analyticsOptions:c.a.mergeOptions(this.options.analyticsOptions,{actionType:a.q.Move,entity:a.e.Folder,workflowPhase:a.r.Start}),appLink:{application:l.b.LIBRARY_EDITOR,action:l.a.LibraryEditor.MOVE_FOLDER,args:[this.model.get("id")]}},{title:s.a.getPhrase(this.lang,"editImages"),analyticsOptions:c.a.mergeOptions(this.options.analyticsOptions,{actionType:a.q.EditAssoc,entity:a.e.Folder,workflowPhase:a.r.Start,descriptor:a.a.Image}),appLink:{application:l.b.LIBRARY_EDITOR,action:l.a.LibraryEditor.EDIT_FOLDER_IMAGES,args:[this.model.get("id")]}},{title:s.a.getPhrase(this.lang,"generatePdf"),analyticsOptions:c.a.mergeOptions(this.options.analyticsOptions,{actionType:a.q.Create,entity:a.e.PDF,workflowPhase:a.r.Start}),appLink:{application:l.b.LIBRARY_EDITOR,action:l.a.LibraryEditor.GENERATE_PDF,args:[this.model.get("id")]}},{title:s.a.getPhrase(this.lang,"remove"),analyticsOptions:c.a.mergeOptions(this.options.analyticsOptions,{actionType:a.q.Delete,entity:a.e.Folder,workflowPhase:a.r.Start}),classes:"text-danger",appLink:{application:l.b.LIBRARY_EDITOR,action:l.a.LibraryEditor.DELETE_FOLDER,args:[this.model.get("id")]}}]}},{key:"onRender",value:function(){this.showChildView("items",new u.a({analyticsHelper:c.a,displayOptions:{alignment:"right"},channelName:this.channelName,collection:new r.a.Collection(this.getFolderActions()),childOptions:{isDisabled:function(){return this.model.get("disabled")}}}))}},{key:"name",get:function(){return"FolderActionsDropdownComponent"}},{key:"template",get:function(){return p.a}},{key:"lang",get:function(){return"libraryEditor.folderActionsDropdown"}},{key:"channelName",get:function(){return"".concat(this.name).concat(this.cid)}}])&&d(e.prototype,n),o&&d(e,o),f}(r.a.Component),w=n(693),O=n.n(w),R=n(694),_=n.n(R);function k(t){return(k="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 S(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function E(t,e){return(E=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,r=j(t);if(e){var o=j(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return D(this,n)}}function D(t,e){return!e||"object"!==k(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 j(t){return(j=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}n.d(e,"a",(function(){return C}));var C=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&&E(t,e)}(c,t);var e,n,r,a=P(c);function c(t){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,c),a.call(this,t)}return e=c,(n=[{key:"events",value:function(){return{"click @ui.dropdownToggle":"onClickDropdownToggle","click @ui.dropdownItem":"onClickDropdownItem"}}},{key:"regions",value:function(){return{items:{replaceElement:!0,el:".items-region"}}}},{key:"onClickDropdownToggle",value:function(){this.model instanceof i.a&&this.showChildView("items",new v({model:this.model,analyticsOptions:this.options.analyticsOptions}))}},{key:"onClickDropdownItem",value:function(t){t.stopPropagation(),t.preventDefault(),this.getUI("dropdownToggle").dropdown("toggle")}},{key:"viewOptions",value:function(){return{hasActions:this.model instanceof i.a,dropdownClass:"".concat(_.a.dropdownButton," ").concat(this.options.buttonClass),svg:o.a.getSvg(o.b.More)}}},{key:"name",get:function(){return"VideoCollectionActionsComponent"}},{key:"channelName",get:function(){return"".concat(this.name).concat(this.cid)}},{key:"className",get:function(){if(this.model instanceof i.a)return"position-absolute ".concat(_.a.dropdownContainer," ").concat(this.options.extraClasses," ")}},{key:"elements",get:function(){return{dropdownToggle:".ui-dropdown-toggle",dropdownItem:".dropdown-item"}}},{key:"template",get:function(){return O.a}}])&&S(e.prototype,n),r&&S(e,r),c}(r.a.Component)},691:function(t,e,n){t.exports={dragging:"_2wBn3",draggingFolder:"_1r3AS"}},692:function(t,e,n){var r=n(8);t.exports=(r.default||r).template({compiler:[8,">= 4.3.0"],main:function(t,e,n,r,o){return'<div class="items-region"></div>'},useData:!0})},693:function(t,e,n){var r=n(8);t.exports=(r.default||r).template({1:function(t,e,n,r,o){t.propertyIsEnumerable;var i,a=t.lambda;return'<span data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="'+t.escapeExpression(a(null!=(i=null!=e?e.options:e)?i.dropdownClass:i,e))+' d-inline-block ui-dropdown-toggle">\r\n '+(null!=(i=a(null!=(i=null!=e?e.options:e)?i.svg:i,e))?i:"")+'\r\n</span>\r\n<div class="items-region"></div>\r\n'},compiler:[8,">= 4.3.0"],main:function(t,e,n,r,o){var i;t.propertyIsEnumerable;return null!=(i=n.if.call(null!=e?e:t.nullContext||{},null!=(i=null!=e?e.options:e)?i.hasActions:i,{name:"if",hash:{},fn:t.program(1,o,0),inverse:t.noop,data:o}))?i:""},useData:!0})},694:function(t,e,n){t.exports={dropdownContainer:"_2F3Cz",dropdownButton:"_2TdId"}},712:function(t,e,n){"use strict";n.d(e,"a",(function(){return R}));var r=n(1),o=n(7),i=n(2),a=n(16),c=n(13),u=n(0),l=n(11),s=n(3),f=n(683),p=n(118),y=n(722),d=n.n(y);function h(t){return(h="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 b(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function g(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function m(t,e){return(m=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,r=O(t);if(e){var o=O(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return w(this,n)}}function w(t,e){return!e||"object"!==h(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 O(t){return(O=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var R=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&&m(t,e)}(w,t);var e,n,y,h=v(w);function w(){return b(this,w),h.apply(this,arguments)}return e=w,(n=[{key:"initialize",value:function(){this.options.model||i.a.ErrorHelper.throw(new a.a("DraggableVideoBehavior must be passed a Video model")),this.listenTo(u.w.VIDEO_DRAG_DROP,"drag:style:".concat(this.options.model.id),this.styleDragStart),this.listenTo(u.w.VIDEO_DRAG_DROP,"drag:stop",this.styleDragStop)}},{key:"helper",value:function(){var t=this.getVideoModels();return new f.b({text:t.length>1?s.a.getPhrase(this.lang,"videos",{videoCount:t.length}):t[0].get("name"),svg:c.a.getSvg(c.b.Play)}).render().el}},{key:"getSelector",value:function(){return this.view.getUI(this.options.selector)}},{key:"styleDragStart",value:function(){this.getSelector().addClass(d.a.draggingVideo)}},{key:"styleDragStop",value:function(){this.getSelector().removeClass(d.a.draggingVideo)}},{key:"start",value:function(){var t=this.getVideoModels(),e=o.Radio.channel(u.w.VIDEO_DRAG_DROP);e.trigger("drag:start",t,this.options.collectionIdentifier),r.each(t,(function(t){return e.trigger("drag:style:".concat(t.id))}))}},{key:"stop",value:function(){o.Radio.channel(u.w.VIDEO_DRAG_DROP).trigger("drag:stop")}},{key:"getVideoModels",value:function(){var t=this,e=l.a.GetSelectedModels({key:this.options.collectionIdentifier.toString(),type:p.a.VIDEO_LIST,collection:this.view.model.collection});return r.any(e,(function(e){return e.id===t.view.model.id}))||(e=[this.view.model]),e.length?e:[this.view.model]}},{key:"getClassMappings",value:function(){return{"ui-draggable":f.c.draggable,"ui-draggable-disabled":f.c.disabled,"ui-draggable-handle":f.c.handle,"ui-draggable-dragging":f.c.dragging}}},{key:"onRender",value:function(){var t=this.getSelector(),e={helper:r.bind(this.helper,this),start:r.bind(this.start,this),stop:r.bind(this.stop,this)};e.classes=this.getClassMappings(),t.draggable(r.extend({},f.a,e))}},{key:"onBeforeDestroy",value:function(){var t=this.getSelector();t.draggable("instance")&&t.draggable("destroy")}},{key:"lang",get:function(){return"libraryEditor.behaviors"}}])&&g(e.prototype,n),y&&g(e,y),w}(i.a.Behavior)},722:function(t,e,n){t.exports={draggingVideo:"_3cCHx"}},723:function(t,e,n){"use strict";n.d(e,"a",(function(){return w}));var r=n(2),o=n(13),i=n(4),a=n(39),c=n(657),u=n(0),l=n(3),s=n(724),f=n.n(s),p=n(725),y=n.n(p);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 h(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function b(t,e){return(b=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function g(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,r=v(t);if(e){var o=v(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return m(this,n)}}function m(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 v(t){return(v=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var w=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)}(d,t);var e,n,s,p=g(d);function d(t){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,d),p.call(this,t)}return e=d,(n=[{key:"events",value:function(){return{"click @ui.dropdownToggle":"onClickDropdownToggle","click @ui.dropdownItem":"onClickDropdownItem"}}},{key:"regions",value:function(){return{dropdownItems:{replaceElement:!0,el:".items-region"}}}},{key:"onClickDropdownToggle",value:function(){this.showChildView("dropdownItems",new c.a({analyticsHelper:a.a,displayOptions:{alignment:"right"},channelName:this.channelName,collection:new r.a.Collection([{title:l.a.getPhrase(this.lang,"addFolder"),analyticsOptions:a.a.mergeOptions(this.options.analyticsOptions,{actionType:i.q.Create,entity:i.e.Folder,workflowPhase:i.r.Start}),appLink:{application:u.b.LIBRARY_EDITOR,action:u.a.Shared.NEW_FOLDER,args:[this.model.get("id")]}},{title:l.a.getPhrase(this.lang,"rename"),analyticsOptions:a.a.mergeOptions(this.options.analyticsOptions,{actionType:i.q.Rename,entity:i.e.Library,workflowPhase:i.r.Start}),appLink:{application:u.b.LIBRARY_EDITOR,action:u.a.LibraryEditor.RENAME_LIBRARY,args:[this.model.get("id")]}},{title:l.a.getPhrase(this.lang,"remove"),analyticsOptions:a.a.mergeOptions(this.options.analyticsOptions,{actionType:i.q.Delete,entity:i.e.Library,workflowPhase:i.r.Start}),appLink:{application:u.b.LIBRARY_EDITOR,action:u.a.LibraryEditor.DELETE_LIBRARY,args:[this.model.get("id")]},classes:"text-danger"}])}))}},{key:"onClickDropdownItem",value:function(t){t.stopPropagation(),t.preventDefault(),this.getUI("dropdownToggle").dropdown("toggle")}},{key:"viewOptions",value:function(){return{dropdownClass:"".concat(y.a.dropdownButton," ").concat(this.options.buttonClass),svg:o.a.getSvg(o.b.More)}}},{key:"name",get:function(){return"LibraryActionsComponent"}},{key:"template",get:function(){return f.a}},{key:"channelName",get:function(){return"".concat(this.name).concat(this.cid)}},{key:"lang",get:function(){return"libraryEditor.libraryActions"}},{key:"className",get:function(){return"position-absolute ".concat(y.a.dropdownContainer," ").concat(this.options.extraClasses," ")}},{key:"elements",get:function(){return{dropdownToggle:".ui-dropdown-toggle",dropdownItem:".dropdown-item"}}}])&&h(e.prototype,n),s&&h(e,s),d}(r.a.Component)},724:function(t,e,n){var r=n(8);t.exports=(r.default||r).template({compiler:[8,">= 4.3.0"],main:function(t,e,n,r,o){t.propertyIsEnumerable;var i,a=t.lambda;return'<span data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="'+t.escapeExpression(a(null!=(i=null!=e?e.options:e)?i.dropdownClass:i,e))+' d-inline-block ui-dropdown-toggle">\r\n '+(null!=(i=a(null!=(i=null!=e?e.options:e)?i.svg:i,e))?i:"")+'\r\n</span>\r\n<div class="items-region"></div>'},useData:!0})},725:function(t,e,n){t.exports={dropdownContainer:"_293SV",dropdownButton:"_23YxG"}},803:function(t,e,n){var r=n(8);t.exports=(r.default||r).template({compiler:[8,">= 4.3.0"],main:function(t,e,n,r,o){t.propertyIsEnumerable;var i,a,c=t.lambda,u=t.escapeExpression;return'<a\r\n class="d-block cursor-pointer no-decoration '+u(c(null!=(i=null!=(i=null!=e?e.options:e)?i.styles:i)?i.folder:i,e))+'"\r\n style="background-image: url(\''+u(c(null!=(i=null!=e?e.options:e)?i.imageUrl:i,e))+'\')"\r\n>\r\n <h3 class="position-absolute text-white text-center m-0">'+u("function"==typeof(a=null!=(a=n.name||(null!=e?e.name:e))?a:t.hooks.helperMissing)?a.call(null!=e?e:t.nullContext||{},{name:"name",hash:{},data:o}):a)+'</h3>\r\n</a>\r\n<div class="actions-region"></div>'},useData:!0})},804:function(t,e,n){t.exports={folder:"_1MHyt",actions:"_3-hwy"}},805:function(t,e,n){var r=n(8);t.exports=(r.default||r).template({compiler:[8,">= 4.3.0"],main:function(t,e,n,r,o){var i;t.propertyIsEnumerable;return'<h1 class="h3">'+t.escapeExpression("function"==typeof(i=null!=(i=n.name||(null!=e?e.name:e))?i:t.hooks.helperMissing)?i.call(null!=e?e:t.nullContext||{},{name:"name",hash:{},data:o}):i)+'</h1>\r\n<div class="folders-region"></div>\r\n<div class="actions-region"></div>'},useData:!0})},806:function(t,e,n){t.exports={actions:"_3vCmp"}}}]);
@@ -0,0 +1 @@
1
+ (window.webpackJsonp_clickview_library_editor=window.webpackJsonp_clickview_library_editor||[]).push([[25],{1080:function(e,t,n){"use strict";n.r(t);var i=n(1),o=n(7),r=n(2),a=n(16),s=n(24),l=n(3),c=n(10),u=n(5),h=n(68),d=n(0),f=n(184),p=n(86),v=n(11),m=n(61),y=n(133),g=n(182),b=n(6),w=n(4),k=n(39),S=n(118),T=n(89),E=n(653),C=n(789),O=n(795),R=n(792),x=n(791),D=n(889),N=n.n(D);function _(e){return(_="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 P(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function M(e,t){return(M=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function j(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 n,i=I(e);if(t){var o=I(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return V(this,n)}}function V(e,t){return!t||"object"!==_(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 I(e){return(I=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var L=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&&M(e,t)}(a,e);var t,n,i,r=j(a);function a(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,a),r.call(this,e)}return t=a,(n=[{key:"initialize",value:function(){var e=this;this.listenTo(this.model,"change",(function(){return e.options.viewModel.validate()}))}},{key:"regions",value:function(){return{textArea:{el:".text-area-region",replaceElement:!0}}}},{key:"onRender",value:function(){this.showChildView("textArea",new x.a({name:"value",class:"form-control",placeholder:this.model.get("placeholder"),id:"admin-notes"})),this.stickit(),o.Validation.bind(this)}},{key:"onDestroy",value:function(){this.unstickit(),o.Validation.unbind(this)}},{key:"template",get:function(){return N.a}},{key:"name",get:function(){return"ExtraInfoItemComponent"}},{key:"bindings",get:function(){return{"[name=value]":{observe:"value",setOptions:{validate:!0}}}}}])&&P(t.prototype,n),i&&P(t,i),a}(r.a.Component),U=n(890),B=n.n(U);function A(e){return(A="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 F(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function J(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function z(e,t,n){return t&&J(e.prototype,t),n&&J(e,n),e}function H(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&&q(e,t)}function q(e,t){return(q=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function G(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 n,i=W(e);if(t){var o=W(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return Y(this,n)}}function Y(e,t){return!t||"object"!==A(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 W(e){return(W=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var X=function(e){H(n,e);var t=G(n);function n(e){return F(this,n),t.call(this,e)}return z(n,[{key:"name",get:function(){return"ExtraInfoComponentCollection"}},{key:"childView",get:function(){return L}},{key:"childViewOptions",get:function(){return{viewModel:this.options.viewModel}}}]),n}(r.a.ComponentCollection),K=function(e){H(n,e);var t=G(n);function n(e){return F(this,n),t.call(this,e)}return z(n,[{key:"regions",value:function(){return{fields:{el:".fields-region",replaceElement:!0}}}},{key:"onRender",value:function(){this.showChildView("fields",new X({collection:this.model.fields,viewModel:this.model}))}},{key:"name",get:function(){return"ExtraInfoComponent"}},{key:"template",get:function(){return B.a}},{key:"className",get:function(){return"border-top pt-3"}}]),n}(r.a.Component),Z=n(59),Q=n(179),$=n(687),ee=n(689),te=n(105),ne=n(891),ie=n.n(ne);function oe(e){return(oe="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 re(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function ae(e,t){return(ae=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function se(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 n,i=ce(e);if(t){var o=ce(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return le(this,n)}}function le(e,t){return!t||"object"!==oe(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 ce(e){return(ce=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var ue=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&&ae(e,t)}(s,e);var t,n,i,o=se(s);function s(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),o.call(this,e)}return t=s,(n=[{key:"regions",value:function(){return{tagList:{el:".tag-list-region",replaceElement:!0},tagSelector:{el:".tag-selector-region",replaceElement:!0}}}},{key:"initialize",value:function(){this.options.behavior!==te.c.Edit||this.options.parentId||r.a.ErrorHelper.throw(new a.a("parentId is required to edit tags."))}},{key:"getTypeaheadConfigs",value:function(){var e=Q.a.getTypeaheadConfig(),t=Q.a.getBloodhoundConfig(),n={newType:d.v.TagsRaw},i={newType:d.v.TagsRaw,footerTemplate:Z.a.getConfirmSelectionTemplate()};return[{name:d.v.TagsRaw,typeaheadConfig:e,bloodhoundConfig:t,options:{hideEmptyResults:!0}},{name:"add-new",typeaheadConfig:e,bloodhoundConfig:t,options:n},{name:"empty-suggestion",typeaheadConfig:e,bloodhoundConfig:t,options:i}]}},{key:"viewOptions",value:function(){var e;return this.showEmptyStateText()&&(e=this.options.emptyStateText),{headerText:this.options.headerText,editable:this.options.behavior===te.c.Edit,emptyStateText:e}}},{key:"showEmptyStateText",value:function(){return this.options.behavior!==te.c.Edit&&!this.collection.length&&!!this.options.emptyStateText}},{key:"renderTagSelector",value:function(){this.options.behavior===te.c.Edit&&this.showChildView("tagSelector",new $.a({model:this.model,parentChannelName:this.options.channelName,inputId:"tag-select",selectEvent:"add:tag",typeaheadConfigs:this.getTypeaheadConfigs(),placeholderText:l.a.getPhrase(this.lang,"placeholder"),callbacks:{onRender:Z.a.selectFirstResult,onBlur:Z.a.clearInputOnBlur},typeaheadOptions:{hint:!1},actionOptions:{clearOnSelect:!0}}))}},{key:"renderTagList",value:function(){this.showEmptyStateText()||this.showChildView("tagList",new ee.a({collection:this.collection,channelName:this.options.channelName,behavior:this.options.behavior,orientation:this.options.orientation,removeEvent:this.options.removeEvent}))}},{key:"onRender",value:function(){this.renderTagSelector(),this.renderTagList()}},{key:"name",get:function(){return"TagsComponent"}},{key:"template",get:function(){return ie.a}},{key:"lang",get:function(){return"libraryEditor.tags"}},{key:"defaults",get:function(){return{headerText:l.a.getPhrase(this.lang,"heading"),orientation:te.d.Flex}}}])&&re(t.prototype,n),i&&re(t,i),s}(r.a.Component),he=n(158),de=n(892),fe=n.n(de),pe=n(893),ve=n.n(pe);function me(e){return(me="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 ye(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ge(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function be(e,t){return(be=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function we(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 n,i=Se(e);if(t){var o=Se(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return ke(this,n)}}function ke(e,t){return!t||"object"!==me(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 Se(e){return(Se=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var Te=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&&be(e,t)}(s,e);var t,n,i,a=we(s);function s(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),a.call(this,e)}return t=s,(n=[{key:"getParentChannel",value:function(){return o.Radio.channel(this.options.channelName)}},{key:"getSaveChannelName",value:function(){return"".concat(this.name,":").concat(this.cid)}},{key:"regions",value:function(){return{save:{el:".save-region",replaceElement:!0}}}},{key:"events",value:function(){return{"click .undo":"onUndo"}}},{key:"initialize",value:function(){var e;this.model||(this.model=new r.a.Model((ye(e={},he.c.ShowSpinner,this.options.showSpinner),ye(e,he.c.Disabled,this.options.isDisabled),e)));var t=this.options.channelName;this.listenTo(t,S.d.DisableSave,this.onDisableSave),this.listenTo(t,S.d.EnableSave,this.onEnableSave),this.listenTo(t,S.d.CancelSave,this.onCancelSave);var n=o.Radio.channel(this.getSaveChannelName());this.listenTo(n,S.d.Save,this.onSave),this.options.allowUndo&&(this.options.hasChanges&&this.model.set("showUndo",!0),this.listenTo(this.model,"change:showUndo",this.render))}},{key:"onCancelSave",value:function(){this.model.set(he.c.ShowSpinner,!1)}},{key:"onEnableSave",value:function(){this.model.set(he.c.Disabled,!1),this.options.allowUndo&&this.model.set("showUndo",!0)}},{key:"onDisableSave",value:function(){this.model.get(he.c.ShowSpinner)&&this.model.set(he.c.ShowSpinner,!1,{silent:!0}),this.model.set(he.c.Disabled,!0),this.options.allowUndo&&this.model.set("showUndo",!1)}},{key:"onUndo",value:function(e){e.stopPropagation(),this.getParentChannel().trigger(S.d.Undo)}},{key:"onSave",value:function(){this.model.set(he.c.ShowSpinner,!0),this.getParentChannel().trigger(S.d.Save)}},{key:"viewOptions",value:function(){return{allowUndo:this.options.allowUndo&&this.model.get("showUndo"),styles:ve.a}}},{key:"renderSaveButton",value:function(){var e=new he.a({saveEvent:S.d.Save,channelName:this.getSaveChannelName(),model:this.model,buttonText:l.a.getPhrase(this.lang,"save"),extraButtonClass:"btn-primary ".concat(ve.a.saveButton),spinnerOptions:{size:v.r.Small,type:v.s.Light,extraClasses:"mx-auto"}});this.showChildView("save",e)}},{key:"onRender",value:function(){this.renderSaveButton()}},{key:"name",get:function(){return"SaveComponent"}},{key:"template",get:function(){return fe.a}},{key:"className",get:function(){return"save-component ".concat(this.options.extraClasses)}},{key:"lang",get:function(){return"libraryEditor.save"}}])&&ge(t.prototype,n),i&&ge(t,i),s}(r.a.Component),Ee=n(177),Ce=n(123),Oe=n(173),Re=n(894),xe=n.n(Re);function De(e){return(De="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 Ne(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function _e(e,t){return(_e=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function Pe(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 n,i=je(e);if(t){var o=je(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return Me(this,n)}}function Me(e,t){return!t||"object"!==De(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 je(e){return(je=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var Ve=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&&_e(e,t)}(r,e);var t,n,i,o=Pe(r);function r(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,r),o.call(this,e)}return t=r,(n=[{key:"initialize",value:function(){this.viewModel=s.a.get("image:storage")}},{key:"regions",value:function(){return{thumbnail:{el:".thumbnail-region",replaceElement:!0}}}},{key:"viewOptions",value:function(){return{editable:this.options.editable,dimensions:d.m[b.f.Thumbnails]}}},{key:"onRender",value:function(){this.showChildView("thumbnail",new Ee.a({model:this.model,thumbnailOptions:{size:Ce.a.Medium}}))}},{key:"name",get:function(){return"EditThumbnailComponent"}},{key:"lang",get:function(){return"libraryEditor.editThumbnail"}},{key:"template",get:function(){return xe.a}},{key:"behaviors",get:function(){var e=this;return[{behaviorClass:Oe.c,channelName:this.options.channelName,buttonSelector:".upload-thumbnail",imageType:b.f.Thumbnails,appLink:{application:d.b.LIBRARY_EDITOR,action:d.a.LibraryEditor.UPLOAD_THUMBNAIL,args:[this.options.model.id]},saveImage:function(t){return e.viewModel.set({dataUrl:t})}}]}},{key:"defaults",get:function(){return{editable:!0}}}])&&Ne(t.prototype,n),i&&Ne(t,i),r}(r.a.Component),Ie=n(895),Le=n.n(Ie),Ue=n(896),Be=n.n(Ue);function Ae(e){return(Ae="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 Fe(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function Je(e,t){return(Je=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function ze(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 n,i=qe(e);if(t){var o=qe(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return He(this,n)}}function He(e,t){return!t||"object"!==Ae(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 qe(e){return(qe=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var Ge=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&&Je(e,t)}(r,e);var t,n,i,o=ze(r);function r(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,r),o.call(this,e)}return t=r,(n=[{key:"initialize",value:function(){this.listenTo(this.options.channelName,"update:tags",this.renderCustomerTags)}},{key:"regions",value:function(){return{topSave:{el:".top-save-region",replaceElement:!0},bottomSave:{el:".bottom-save-region",replaceElement:!0},thumbnail:{el:".thumbnail-region",replaceElement:!0},basicInfo:{el:".basic-info-region",replaceElement:!0},additionalInfo:{el:".additional-details-region",replaceElement:!0},productionInfo:{el:".production-info-region",replaceElement:!0},fields:{el:".fields-region",replaceElement:!0},clickViewTags:{el:".cv-tags-region",replaceElement:!1},customerTags:{el:".customer-tags-region",replaceElement:!0}}}},{key:"renderSave",value:function(){this.options.editable&&this.showChildView("topSave",new Te({channelName:this.options.channelName,allowUndo:!0,isDisabled:this.options.isSaveDisabled,hasChanges:this.options.hasChanges,extraClasses:"float-right"})),this.showChildView("bottomSave",new Te({channelName:this.options.channelName,allowUndo:!0,isDisabled:this.options.isSaveDisabled,hasChanges:this.options.hasChanges,extraClasses:"float-right"}))}},{key:"renderBasicInfo",value:function(){this.showChildView("basicInfo",new C.a({model:this.model,ratings:this.options.ratings,channelName:this.options.channelName,editable:this.options.editable,showingSaveButton:this.options.editable,showPublisherVideoDetails:this.options.showPublisherVideoDetails}))}},{key:"renderThumbnail",value:function(){this.showChildView("thumbnail",new Ve({model:this.model,channelName:this.options.channelName,editable:this.options.editable}))}},{key:"renderAdditionalInfo",value:function(){this.showChildView("additionalInfo",new R.a({model:this.model,channelName:this.options.channelName,libraries:this.options.libraries,hostedLibraries:this.options.hostedLibraries,editable:this.options.editable}))}},{key:"renderProductionInfo",value:function(){this.showChildView("productionInfo",new O.a({model:this.model,channelName:this.options.channelName,editable:this.options.editable}))}},{key:"renderFields",value:function(){this.showChildView("fields",new K({model:this.model,channelName:this.options.channelName}))}},{key:"renderClickViewTags",value:function(){if(!this.options.editable){var e=v.j.filterObjectsByOwnerType(this.model.tags,te.b.ClickView,this.options.currentUser.get("customerId"));this.showChildView("clickViewTags",new ue({parentId:this.model.get("id"),collection:e,orientation:te.d.Flex,behavior:te.c.Disabled,channelName:this.options.channelName,headerText:l.a.getPhrase(this.lang,"clickviewTags"),emptyStateText:l.a.getPhrase(this.lang,"clickviewTagsEmpty")}))}}},{key:"renderCustomerTags",value:function(){var e=v.j.filterObjectsByOwnerType(this.model.tags,te.b.Customer,this.options.currentUser.get("customerId"));this.showChildView("customerTags",new ue({parentId:this.model.get("id"),collection:e,channelName:this.options.channelName,behavior:te.c.Edit,headerText:l.a.getPhrase(this.lang,"customerTags"),removeEvent:"remove:tag"}))}},{key:"renderTags",value:function(){this.renderClickViewTags(),this.renderCustomerTags()}},{key:"viewOptions",value:function(){return{styles:Be.a,editable:this.options.editable,suggestEditClasses:"info-link text-underline suggest-edit",isExchange:v.x.isExchangeVideo(this.model)}}},{key:"onRender",value:function(){this.renderSave(),this.renderBasicInfo(),this.renderThumbnail(),this.renderAdditionalInfo(),this.renderProductionInfo(),this.renderFields(),this.renderTags()}},{key:"name",get:function(){return"EditVideoDetailsComponent"}},{key:"className",get:function(){return"edit-video-detail py-3"}},{key:"lang",get:function(){return"libraryEditor.editVideoDetails"}},{key:"template",get:function(){return Le.a}},{key:"appLinks",get:function(){return{".suggest-edit":{application:d.b.LIBRARY_EDITOR,action:d.a.LibraryEditor.SUGGEST_AN_EDIT,args:[this.model.id]}}}}])&&Fe(t.prototype,n),i&&Fe(t,i),r}(r.a.Component),Ye=n(703),We=n(180),Xe=n(181),Ke=n(897),Ze=n.n(Ke);function Qe(e){return(Qe="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 $e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function et(e,t){return(et=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function tt(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 n,i=it(e);if(t){var o=it(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return nt(this,n)}}function nt(e,t){return!t||"object"!==Qe(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 it(e){return(it=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.d(t,"EditVideoView",(function(){return ot}));var ot=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&&et(e,t)}(R,e);var t,n,C,O=tt(R);function R(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,R),(t=O.call(this,e)).editable=!1,t}return t=R,(n=[{key:"regions",value:function(){return{tabs:{el:".tab-region",replaceElement:!0,partialLoading:b.j.EditVideoTabs},content:{el:".edit-content-region",replaceElement:!0,partialLoading:b.j.EditVideoDetails}}}},{key:"initialize",value:function(){this.navLock=u.a.getInstance(d.x.NavLock,this),this.initDataListeners(),v.u.initBackButton(),this.initServices()}},{key:"initServices",value:function(){this.videoDataService=u.a.getInstance(d.g.Video,this),this.tagDataService=u.a.getInstance(d.g.Tags,this),this.libraryDataService=u.a.getInstance(d.g.Library,this),this.seriesDataService=u.a.getInstance(d.g.Series,this),this.ratingsDataService=u.a.getInstance(d.g.Ratings,this),this.migrationVideoDataService=u.a.getInstance(d.g.MigrationVideo,this),this.fieldsDataService=u.a.getInstance(d.g.Fields,this),this.alertService=u.a.getInstance(d.x.Alerts,this),this.personDataService=u.a.getInstance(d.g.Person,this),this.companyDataService=u.a.getInstance(d.g.Company,this)}},{key:"initDataListeners",value:function(){this.listenTo(c.a.SHELL,r.a.EventNames.NAV_UNLOCKED_BY_USER,this.onNavigateAway),this.listenTo(d.e.VIDEO,"videos:".concat(this.options.videoId,":sync"),this.render),this.listenTo(d.e.VIDEO,"videos:".concat(this.options.videoId,":error"),this.onError),this.listenTo(d.e.RATINGS,"".concat(d.f.RATINGS,":sync"),this.render),this.listenTo(d.e.VIDEO,"".concat(d.f.UPDATE_VIDEO_THUMBNAIL,":").concat(this.options.videoId,":sync"),this.onThumbnailUpdated),this.listenTo(d.e.LIBRARY,"hosted:libraries:sync",this.render),this.listenTo(this.channelName,"select:rating",i.partial(this.onTypeaheadSelection,i,"rating")),this.listenTo(this.channelName,"select:channel",i.partial(this.onTypeaheadSelection,i,"channel")),this.listenTo(this.channelName,"select:series",this.onSelectSeries),this.listenTo(this.channelName,"add:season",this.onSelectSeason),this.listenTo(this.channelName,"add:distributors",this.onSelectDistributor),this.listenTo(this.channelName,"add:productionCompanies",this.onSelectProductionCompany),this.listenTo(this.channelName,"add:directors",this.onSelectDirector),this.listenTo(this.channelName,"add:producers",this.onSelectProducer),this.listenTo(this.channelName,"add:tag",this.onAddTag),this.listenTo(this.channelName,"remove:distributors",this.onRemoveDistributor),this.listenTo(this.channelName,"remove:productionCompanies",this.onRemoveProductionCompany),this.listenTo(this.channelName,"remove:directors",this.onRemoveDirector),this.listenTo(this.channelName,"remove:producers",this.onRemoveProducer),this.listenTo(this.channelName,"remove:tag",this.onRemoveTag),this.listenTo(this.channelName,S.d.Save,this.onSave),this.listenTo(this.channelName,S.d.Undo,this.onUndo),this.listenTo(this.channelName,S.d.DetectInput,this.onTypeaheadInput),this.listenTo(this.channelName,"image:load",this.onBeforeThumbnailUpload)}},{key:"onError",value:function(e){switch(e.type){case h.a.NotFound:r.a.ErrorHelper.throw(new Xe.a);break;case h.a.Forbidden:r.a.ErrorHelper.throw(new We.a)}}},{key:"onTypeaheadSelection",value:function(e,t,n){if(n){var o=this.viewModel.get(t),r=o.filter({name:e.name});i.each(r,(function(e){return o.remove(e)})),o.add(e)}else this.viewModel.set(t,e);this.onModelChange(e,{manualUpdate:!0})}},{key:"onTypeaheadInput",value:function(e,t,n){e.get("name")||(n&&n.isCollection?this.viewModel.get(t).remove(e.get("id"),{silent:!0}):this.viewModel.get(t).clear({silent:!0}),this.onModelChange(null,{manualUpdate:!0}),"series"===t&&(this.validateSeries(),o.Radio.channel(this.channelName).trigger("clear:series")))}},{key:"onSelectSeries",value:function(e){var t=this;e.id?this.seriesDataService.getSeries(e.id,(function(e){t.viewModel.unset("season"),t.viewModel.set("episodeNumber",null),t.onTypeaheadSelection(e.toJSON(),"series")})):e.name&&this.seriesDataService.createSeries(e.name,(function(e){t.viewModel.unset("season"),t.viewModel.set("episodeNumber",null),t.onTypeaheadSelection({id:e.id},"series")}))}},{key:"onSelectSeason",value:function(e){var t=this;if(i.isNull(e))return this.viewModel.get("season").clear({silent:!0}),this.viewModel.set("episodeNumber",null),v.c.deselectAll(this.viewModel.get("series.seasons")),void this.onModelChange(null,{manualUpdate:!0});if(e.id)return this.viewModel.set("season",e),v.c.setSelected(e.id,this.viewModel.get("series.seasons")),void this.onModelChange(e,{manualUpdate:!0});if(e.number){var n=this.viewModel.get("series.id");this.seriesDataService.createSeason(e,n,(function(e){t.viewModel.set("season",e.toJSON()),!t.viewModel.get("series.seasons")&&t.viewModel.get("series").set("seasons",new f.a),t.viewModel.get("series.seasons").add(e.toJSON()),v.c.setSelected(e.id,t.viewModel.get("series.seasons")),t.onModelChange(e.toJSON(),{manualUpdate:!0}),t.render()}))}}},{key:"onSelectDistributor",value:function(e){var t=this;e.id?this.onTypeaheadSelection(e,"distributors",!0):e.name&&this.companyDataService.createCompany(e.name,(function(e){t.onTypeaheadSelection(e.toJSON(),"distributors",!0)}))}},{key:"onSelectProductionCompany",value:function(e){var t=this;e.id?this.onTypeaheadSelection(e,"productionCompanies",!0):e.name&&this.companyDataService.createCompany(e.name,(function(e){t.onTypeaheadSelection(e.toJSON(),"productionCompanies",!0)}))}},{key:"onSelectDirector",value:function(e){var t=this;e.id?this.onTypeaheadSelection(e,"directors",!0):e.name&&this.personDataService.createPerson(e.name,(function(e){t.onTypeaheadSelection(e.toJSON(),"directors",!0)}))}},{key:"onSelectProducer",value:function(e){var t=this;e.id?this.onTypeaheadSelection(e,"producers",!0):e.name&&this.personDataService.createPerson(e.name,(function(e){t.onTypeaheadSelection(e.toJSON(),"producers",!0)}))}},{key:"onRemoveDistributor",value:function(e){this.removeFromCollection(e,"distributors")}},{key:"onRemoveProductionCompany",value:function(e){this.removeFromCollection(e,"productionCompanies")}},{key:"onRemoveDirector",value:function(e){this.removeFromCollection(e,"directors")}},{key:"onRemoveProducer",value:function(e){this.removeFromCollection(e,"producers")}},{key:"removeFromCollection",value:function(e,t){e&&e.id&&t&&(this.viewModel.get(t).remove(e.id),this.onModelChange(null,{manualUpdate:!0}))}},{key:"onAddTag",value:function(e){var t=this;if(e&&e.name){var n=e.name.trim().toLowerCase();if(n&&!v.c.findModelByName(n,this.viewModel.tags)){var i=new y.a({name:n});this.viewModel.tags.add(i),this.tagDataService.createTag(n,this.model.get("id"),(function(e){i.set(e.toJSON()),o.Radio.channel(t.channelName).trigger("update:tags")}))}}}},{key:"onRemoveTag",value:function(e){var t=this;e instanceof y.a&&e.id&&this.tagDataService.dissociateTag(e.id,this.model.get("id"),(function(){t.viewModel.tags.remove(e),o.Radio.channel(t.channelName).trigger("update:tags"),t.logDissocAction(t.model.get("id"),e,w.e.Tag)}))}},{key:"saveFields",value:function(e,t){var n=this,o=0;e.updatedVideo=i.extend({},e.updatedVideo||{});var r=function(){++o===e.dataChanges.fields.length&&t(e)};i.each(e.dataChanges.fields,(function(e){if(e.id&&!e.value)return n.viewModel.fields.remove(n.viewModel.fields.findWhere({id:e.id})),void n.fieldsDataService.deleteField(e.id,r);!e.id||e.id>0?n.fieldsDataService.updateField(e,r):n.fieldsDataService.addField(n.options.videoId,e,(function(t){n.viewModel.fields.findWhere({id:e.id}).set("id",t.id),r()}))}))}},{key:"bulkDissoc",value:function(e,t){this.videoDataService.bulkDissoc(this.model.id,e.pendingDissocs,(function(){t(e)}))}},{key:"saveVideo",value:function(e,t){var n=this,o=i.omit(e.dataChanges,"fields");if(i.isEmpty(o))t(e);else{var r=i.omit(e.dataChanges,"fields");this.videoDataService.updateVideo(this.model.get("id"),this.folder.get("id"),r,(function(o){(e.dataChanges.series&&e.dataChanges.series.id||e.dataChanges.episodeNumber||e.dataChanges.season)&&n.videoDataService.clearVideoCache(),e.updatedVideo=i.extend({},e.updatedVideo||{},o),t(e)}))}}},{key:"afterSave",value:function(e,t){if(this.viewModel){e.updatedVideo&&this.updateState(e.updatedVideo),this.unlockNav(),this.updateSaveButton(S.d.DisableSave),this.logEditAction(e.dataChanges,w.r.Save);var n=g.a.updatedVideoAlert(this.viewModel.get("name"));this.alertService.success(n||"Video was successfully updated")()}}},{key:"onSave",value:function(){if(this.viewModel.validate(),!1===this.viewModel.isValid())return this.updateSaveButton(S.d.CancelSave),!1;this.validateSeries();var e=E.a.getChanges(this.model,this.viewModel),t=E.a.getRemovedObjectIds(this.model,this.viewModel);if(!e&&!i.keys(t).length)return this.updateSaveButton(S.d.CancelSave),!1;var n=new r.a.Middleware;return e&&e.fields&&n.use(i.bind(this.saveFields,this)),t&&i.keys(t).length&&n.use(i.bind(this.bulkDissoc,this)),this.editable&&n.use(i.bind(this.saveVideo,this)),n.use(i.bind(this.afterSave,this)),n.go({dataChanges:e,pendingDissocs:t},null),!1}},{key:"onUndo",value:function(){var e=this;new v.d({title:l.a.getPhrase(this.lang,"undoTitle"),text:l.a.getPhrase(this.lang,"undoBody",{videoName:this.model.get("name")}),buttons:[{text:l.a.getPhrase(this.lang,"undo"),className:"btn btn-danger",success:!0},{text:l.a.getPhrase(this.lang,"cancel"),className:"btn btn-secondary",close:!0}]}).render().done((function(){e.logEditAction({},w.r.Discard),e.revertState({undo:!0}),e.render()}))}},{key:"updateState",value:function(e){this.stopListening(this.viewModel),E.a.updateModelState(this.model,this.viewModel,e),s.a.clear(this.viewModelName),this.getViewModel(),this.renderContent()}},{key:"onNavigateAway",value:function(){this.revertState()}},{key:"revertState",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.undo;this.stopListening(this.viewModel),s.a.clear(this.viewModelName),delete this.viewModel,this.unlockNav(),t&&this.getViewModel()}},{key:"lockNav",value:function(){this.navLock.lock({title:l.a.getPhrase(this.lang,"navLockHeading"),text:l.a.getPhrase(this.lang,"navLockBody")})}},{key:"unlockNav",value:function(){this.navLock.unlock()}},{key:"onBeforeThumbnailUpload",value:function(){this.navLock.isLocked()&&(this.navLock.unlock(),s.a.get("upload:thumbnail:options").set("lockNav",!0))}},{key:"onModelChange",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(t.stickitChange||t.manualUpdate)if(this.viewModel.validate(),!1!==this.viewModel.isValid()){var n=E.a.getChanges(this.model,this.viewModel)||i.keys(E.a.getRemovedObjectIds(this.model,this.viewModel)).length;if(!n)return this.unlockNav(),void this.updateSaveButton(S.d.DisableSave);this.lockNav(),this.updateSaveButton(S.d.EnableSave)}else this.updateSaveButton(S.d.DisableSave)}},{key:"updateSaveButton",value:function(e){var t=o.Radio.channel(this.channelName),n=S.d.EnableSave,i=S.d.DisableSave,s=S.d.CancelSave;switch(e){case n:return void t.trigger(n);case i:return void t.trigger(i);case s:return void t.trigger(s)}r.a.ErrorHelper.throw(new a.a("Save action type is not valid."))}},{key:"onThumbnailUpdated",value:function(){var e=this;this.videoDataService.clearCacheAndGetVideo(this.options.videoId,(function(t){e.model=t,e.viewModel.set("thumbnail",e.model.thumbnail.toJSON())}))}},{key:"logEditAction",value:function(e,t){var n=Object.assign({id:this.model.get("id")},e);k.a.logUserAction(n,{actionType:w.q.Edit,entity:w.e.Video,location:w.k.EditVideoDetails,workflowPhase:t})}},{key:"logDissocAction",value:function(e,t,n){var i=Object.assign({videoId:e},t.pick("id","name"));k.a.logUserAction(i,{actionType:w.q.Dissociate,entity:n,location:w.k.EditVideoDetails})}},{key:"onValidation",value:function(e){this.viewModel.set("disabled",!e)}},{key:"getViewModel",value:function(){this.model.fields&&this.model.fields.length||this.model.set("fields",Object(E.d)()),this.viewModel=s.a.get(this.viewModelName,this.model.toJSON(),{ctor:m.a}),this.editable&&(this.viewModel.addValidation(E.k),this.viewModel.addValidation(E.e)),this.viewModel.addValidation(E.b),this.listenTo(this.viewModel,"validated",this.onValidation),this.listenTo(this.viewModel,"change",this.onModelChange),this.listenTo(this.viewModel,"change:dateBroadcast",i.partial(this.onModelChange,i,{manualUpdate:!0})),this.viewModel.fields&&(this.viewModel.fields&&this.viewModel.fields.each((function(e){return e.addValidation(E.c)})),this.listenTo(this.viewModel.fields,"change",this.onModelChange))}},{key:"validateSeries",value:function(){this.viewModel.get("series.id")||(this.viewModel.unset("season"),this.viewModel.set("episodeNumber",null))}},{key:"fetchData",value:function(){var e=this;this.model=this.videoDataService.getVideo(this.options.videoId),this.ratings=this.ratingsDataService.getAllRatings(),this.hostedLibraries=this.libraryDataService.getHostedLibraries(),this.migrationVideoDataService.getCustomerVideoByMasterId(this.options.videoId,(function(t){var n=!!e.publisherVideo;e.publisherVideo=t,n&&e.isRendered()&&e.renderContent()})),this.model&&(this.editable=v.j.canEditVideo(this.model),this.folder=this.model.categories.first(),this.ratings&&this.hostedLibraries&&(this.viewModel instanceof m.a||this.getViewModel()))}},{key:"onBeforeRender",value:function(){return this.fetchData(),!!this.model&&!!this.ratings&&!!this.viewModel}},{key:"renderContent",value:function(){var e=E.a.getChanges(this.model,this.viewModel)||i.keys(E.a.getRemovedObjectIds(this.model,this.viewModel)).length;this.showChildView("content",new Ge({model:this.viewModel,ratings:this.ratings,libraries:this.libraries,hostedLibraries:this.hostedLibraries,channelName:this.channelName,isSaveDisabled:!e,hasChanges:!!e,editable:this.editable,currentUser:this.currentUser,showPublisherVideoDetails:!!this.publisherVideo}))}},{key:"renderTabs",value:function(){this.showChildView("tabs",new Ye.a({tabs:v.u.getEditVideoTabs(this.options.videoId,{hideChaptersTab:!this.editable}),activeTab:".edit-video-applink",goBackTab:v.u.getBackButton(this.options.videoId)}))}},{key:"onRender",value:function(){this.renderTabs(),this.renderContent()}},{key:"name",get:function(){return"EditVideoView"}},{key:"title",get:function(){return this.model&&this.model.get("name")}},{key:"lang",get:function(){return"libraryEditor.editVideo"}},{key:"className",get:function(){return"bg-white p-3"}},{key:"channelName",get:function(){return"".concat(this.name,":").concat(this.cid)}},{key:"viewModelName",get:function(){return"".concat(this.name,":").concat(this.options.videoId)}},{key:"template",get:function(){return Ze.a}},{key:"requiredResources",get:function(){return{libraries:T.b.libraries,currentUser:p.b.currentUser}}}])&&$e(t.prototype,n),C&&$e(t,C),R}(r.a.View)},675:function(e,t,n){"use strict";n.d(t,"a",(function(){return v}));var i=n(1),o=n(2),r=n(676),a=n.n(r),s=n(677),l=n.n(s);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 u(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function h(e,t){return(h=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function d(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 n,i=p(e);if(t){var o=p(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return f(this,n)}}function f(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 p(e){return(p=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var v=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&&h(e,t)}(s,e);var t,n,o,r=d(s);function s(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),r.call(this,e)}return t=s,(n=[{key:"viewOptions",value:function(){var e=this.options.tabs.map((function(e){return Object.assign(Object.assign({},e),{link:e.link.selector.replace(".","")})}));return{styles:a.a,tabs:e}}},{key:"setActiveTab",value:function(){var e=this,t=!1;if(this.options.tabs.forEach((function(n){n.active=!1,n.link.selector===e.options.activeTab&&(n.active=!0,t=!0)})),!t){var n=i.first(this.options.tabs);n&&(n.active=!0)}}},{key:"onBeforeRender",value:function(){this.setActiveTab()}},{key:"name",get:function(){return"TabsView"}},{key:"className",get:function(){var e="bg-white py-2 border-bottom";return this.options.className&&(e+=" ".concat(this.options.className)),e}},{key:"template",get:function(){return l.a}},{key:"appLinks",get:function(){var e={};return this.options.tabs.forEach((function(t){return e[t.link.selector]=t.link.appLink})),e}}])&&u(t.prototype,n),o&&u(t,o),s}(o.a.Component)},676:function(e,t,n){e.exports={link:"_5idZs",active:"_3Ty4M"}},677:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({1:function(e,t,n,i,o,r,a){var s;e.propertyIsEnumerable;return null!=(s=n.unless.call(null!=t?t:e.nullContext||{},null!=t?t.hide:t,{name:"unless",hash:{},fn:e.program(2,o,0,r,a),inverse:e.noop,data:o}))?s:""},2:function(e,t,n,i,o,r,a){e.propertyIsEnumerable;var s,l=e.lambda,c=e.escapeExpression;return' <a class="'+c(l(null!=(s=null!=(s=null!=a[1]?a[1].options:a[1])?s.styles:s)?s.link:s,t))+" p-2 "+c(l(null!=t?t.link:t,t))+" "+(null!=(s=n.if.call(null!=t?t:e.nullContext||{},null!=t?t.active:t,{name:"if",hash:{},fn:e.program(3,o,0,r,a),inverse:e.noop,data:o}))?s:"")+'">'+c(l(null!=t?t.name:t,t))+"</a>\r\n"},3:function(e,t,n,i,o,r,a){var s;e.propertyIsEnumerable;return e.escapeExpression(e.lambda(null!=(s=null!=(s=null!=a[1]?a[1].options:a[1])?s.styles:s)?s.active:s,t))+" border-bottom border-primary text-primary"},compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o,r,a){var s;e.propertyIsEnumerable;return null!=(s=n.each.call(null!=t?t:e.nullContext||{},null!=(s=null!=t?t.options:t)?s.tabs:s,{name:"each",hash:{},fn:e.program(1,o,0,r,a),inverse:e.noop,data:o}))?s:""},useData:!0,useDepths:!0})},689:function(e,t,n){"use strict";var i=n(2),o=n(16),r=n(7),a=n(0),s=n(105),l=n(731),c=n.n(l),u=n(732),h=n.n(u);function d(e){return(d="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 f(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function p(e,t){return(p=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function v(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 n,i=y(e);if(t){var o=y(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return m(this,n)}}function m(e,t){return!t||"object"!==d(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 y(e){return(y=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var g=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&&p(e,t)}(l,e);var t,n,i,o=v(l);function l(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,l),o.call(this,e)}return t=l,(n=[{key:"events",value:function(){return this.options.removeEvent?{"click @ui.close":"onRemoveTag"}:{click:"onClickTag"}}},{key:"initialize",value:function(){this.options.behavior===s.c.Edit&&this.listenTo(this.model,"change",this.render)}},{key:"isSaving",value:function(){if(this.options.behavior!==s.c.Filter){var e=this.model.pick("id","name","remove"),t=e.id,n=e.name;return!!e.remove||!t||!n}}},{key:"onRemoveTag",value:function(e){if(e.stopPropagation(),!this.isSaving())return this.model.set("remove",!0),r.Radio.channel(this.options.channelName).trigger(this.options.removeEvent,this.model),!1}},{key:"onClickTag",value:function(e){this.options.behavior!==s.c.Filter||this.options.removeEvent||r.Radio.channel(this.options.channelName).trigger(this.options.clickEvent,this.model)}},{key:"viewOptions",value:function(){return{removable:this.options.removeEvent}}},{key:"onRender",value:function(){this.resetClassName()}},{key:"name",get:function(){return"TagItemComponent"}},{key:"tagName",get:function(){return this.options.behavior===s.c.Link?"a":"span"}},{key:"className",get:function(){var e="".concat(this.options.orientation===s.d.Vertical?"":" d-inline-flex"),t="".concat(this.isSaving()?" saving":""),n="".concat(this.options.behavior===s.c.Disabled?" ".concat(h.a.disabled):""),i="".concat(this.options.behavior===s.c.Filter?" cursor-pointer":"");return"badge-pill tag py-1 px-2 my-1 mr-1".concat(i).concat(e).concat(t).concat(n)}},{key:"template",get:function(){return c.a}},{key:"elements",get:function(){return{close:".close"}}},{key:"appLinks",get:function(){return this.options.behavior!==s.c.Link?{}:{"[this]":{application:a.b.SEARCH,action:a.a.Search.HOME,params:{tag:this.model.get("name")}}}}},{key:"defaults",get:function(){return{behavior:s.c.Link,orientation:s.d.Flex}}}])&&f(t.prototype,n),i&&f(t,i),l}(i.a.Component);function b(e){return(b="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 w(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function k(e,t){return(k=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function S(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 n,i=E(e);if(t){var o=E(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return T(this,n)}}function T(e,t){return!t||"object"!==b(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(e){return(E=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.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&&k(e,t)}(l,e);var t,n,r,a=S(l);function l(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,l),a.call(this,e)}return t=l,(n=[{key:"initialize",value:function(){this.options.behavior!==s.c.Edit||this.options.removeEvent||i.a.ErrorHelper.throw(new o.a("removeEvent is required to edit tags."))}},{key:"name",get:function(){return"TagComponentCollection"}},{key:"defaults",get:function(){return{orientation:s.d.Flex}}},{key:"className",get:function(){var e="".concat(this.options.orientation===s.d.Vertical?" d-flex align-items-start flex-column":"");return"tags".concat(e)}},{key:"childViewOptions",get:function(){return{channelName:this.options.channelName,behavior:this.options.behavior,orientation:this.options.orientation,removeEvent:this.options.removeEvent,clickEvent:this.options.clickEvent}}},{key:"childView",get:function(){return g}}])&&w(t.prototype,n),r&&w(t,r),l}(i.a.ComponentCollection)},703:function(e,t,n){"use strict";n.d(t,"a",(function(){return g}));var i=n(7),o=n(2),r=n(13),a=n(704),s=n.n(a),l=n(705),c=n.n(l),u=n(0),h=n(675);function d(e){return(d="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 f(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function p(e,t){return(p=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function v(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 n,i=y(e);if(t){var o=y(this).constructor;n=Reflect.construct(i,arguments,o)}else n=i.apply(this,arguments);return m(this,n)}}function m(e,t){return!t||"object"!==d(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 y(e){return(y=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var g=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&&p(e,t)}(l,e);var t,n,o,a=v(l);function l(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,l),a.call(this,e)}return t=l,(n=[{key:"regions",value:function(){return{tabs:{el:".tabs-region",replaceElement:!0}}}},{key:"viewOptions",value:function(){var e=Object.assign(Object.assign({},this.options.goBackTab),{link:this.options.goBackTab.link.selector.replace(".","")});return{styles:s.a,backTab:e,backArrow:r.a.getSvg(r.b.ArrowLeft)}}},{key:"onSave",value:function(){i.Radio.channel(u.b.LIBRARY_EDITOR).trigger(u.a.LibraryEditor.SAVE_VIDEO)}},{key:"onRender",value:function(){this.showChildView("tabs",new h.a({tabs:this.options.tabs,activeTab:this.options.activeTab}))}},{key:"name",get:function(){return"EditVideoTabsComponent"}},{key:"className",get:function(){return"bg-white"}},{key:"template",get:function(){return c.a}},{key:"appLinks",get:function(){var e,t,n,i=this.options.goBackTab.link;return e={},t=i.selector,n=i.appLink,t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}}])&&f(t.prototype,n),o&&f(t,o),l}(o.a.Component)},704:function(e,t,n){e.exports={svgContainer:"_27gR6"}},705:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o){e.propertyIsEnumerable;var r,a=e.lambda,s=e.escapeExpression;return'<div class="row">\r\n <h4>\r\n <a class="d-inline-flex align-items-center '+s(a(null!=(r=null!=(r=null!=t?t.options:t)?r.styles:r)?r.link:r,t))+" "+s(a(null!=(r=null!=(r=null!=t?t.options:t)?r.backTab:r)?r.link:r,t))+'">\r\n <span class="'+s(a(null!=(r=null!=(r=null!=t?t.options:t)?r.styles:r)?r.svgContainer:r,t))+' d-inline-block mx-2">'+(null!=(r=a(null!=(r=null!=t?t.options:t)?r.backArrow:r,t))?r:"")+"</span>\r\n "+s(a(null!=(r=null!=(r=null!=t?t.options:t)?r.backTab:r)?r.name:r,t))+'\r\n </a>\r\n </h4>\r\n</div>\r\n<div class="tabs-region pl-2"></div>'},useData:!0})},731:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({1:function(e,t,n,i,o){return'<span class="close cursor-pointer" aria-hidden="true">&times;</span>\r\n'},compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o){e.propertyIsEnumerable;var r,a,s=null!=t?t:e.nullContext||{};return e.escapeExpression("function"==typeof(a=null!=(a=n.name||(null!=t?t.name:t))?a:e.hooks.helperMissing)?a.call(s,{name:"name",hash:{},data:o}):a)+"\r\n"+(null!=(r=n.if.call(s,null!=(r=null!=t?t.options:t)?r.removable:r,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?r:"")},useData:!0})},732:function(e,t,n){e.exports={disabled:"_3Vziu"}},889:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o){var r;e.propertyIsEnumerable;return'<div class="form-group">\r\n <label for="edit-description">'+e.escapeExpression("function"==typeof(r=null!=(r=n.name||(null!=t?t.name:t))?r:e.hooks.helperMissing)?r.call(null!=t?t:e.nullContext||{},{name:"name",hash:{},data:o}):r)+'</label>\r\n <div class="text-area-region"></div>\r\n <div class="form-feedback"></div>\r\n</div>'},useData:!0})},890:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o){return'<h5 class="mb-0">Extra Information</h5>\r\n<div class="text-muted mb-3">This information is only visible to admins and will not be searchable</div>\r\n<div class="fields-region"></div>'},useData:!0})},891:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({1:function(e,t,n,i,o){var r;e.propertyIsEnumerable;return"<h5>"+e.escapeExpression(e.lambda(null!=(r=null!=t?t.options:t)?r.headerText:r,t))+"</h5>\r\n"},3:function(e,t,n,i,o){var r;e.propertyIsEnumerable;return"<p>"+e.escapeExpression(e.lambda(null!=(r=null!=t?t.options:t)?r.emptyStateText:r,t))+"</p>\r\n"},5:function(e,t,n,i,o){return'<div class="tag-selector-region"></div>\r\n'},compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o){e.propertyIsEnumerable;var r,a=null!=t?t:e.nullContext||{};return(null!=(r=n.if.call(a,null!=(r=null!=t?t.options:t)?r.headerText:r,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?r:"")+(null!=(r=n.if.call(a,null!=(r=null!=t?t.options:t)?r.emptyStateText:r,{name:"if",hash:{},fn:e.program(3,o,0),inverse:e.noop,data:o}))?r:"")+(null!=(r=n.if.call(a,null!=(r=null!=t?t.options:t)?r.editable:r,{name:"if",hash:{},fn:e.program(5,o,0),inverse:e.noop,data:o}))?r:"")+'<div class="tag-list-region"></div>'},useData:!0})},892:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({1:function(e,t,n,i,o){e.propertyIsEnumerable;var r,a=e.escapeExpression;return'<span class="text-muted mx-2 undo '+a(e.lambda(null!=(r=null!=(r=null!=t?t.options:t)?r.styles:r)?r.undo:r,t))+'">'+a((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"undo",{name:"lang",hash:{},data:o}))+"</span>\r\n"},compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o){var r;e.propertyIsEnumerable;return(null!=(r=n.if.call(null!=t?t:e.nullContext||{},null!=(r=null!=t?t.options:t)?r.allowUndo:r,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?r:"")+'<div class="save-region"></div>'},useData:!0})},893:function(e,t,n){e.exports={saveButton:"_2FsA6",undo:"v6msX"}},894:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({1:function(e,t,n,i,o){e.propertyIsEnumerable;return"<h5>"+e.escapeExpression((n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"label",{name:"lang",hash:{},data:o}))+"</h5>\r\n"},3:function(e,t,n,i,o){return"my-2"},5:function(e,t,n,i,o){e.propertyIsEnumerable;var r,a=null!=t?t:e.nullContext||{},s=e.hooks.helperMissing,l=e.escapeExpression;return' <div class="text-muted mt-3 mb-1"><em>'+l((n.lang||t&&t.lang||s).call(a,"recommendedSize",{name:"lang",hash:{height:null!=(r=null!=(r=null!=t?t.options:t)?r.dimensions:r)?r.height:r,width:null!=(r=null!=(r=null!=t?t.options:t)?r.dimensions:r)?r.width:r},data:o}))+'</em></div>\r\n <button class="upload-thumbnail btn btn-light mb-3 w-100">'+l((n.lang||t&&t.lang||s).call(a,"upload",{name:"lang",hash:{},data:o}))+"</button>\r\n"},compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o){e.propertyIsEnumerable;var r,a=null!=t?t:e.nullContext||{};return(null!=(r=n.if.call(a,null!=(r=null!=t?t.options:t)?r.editable:r,{name:"if",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?r:"")+'<div class="thumbnail-region"></div>\r\n<div class="'+(null!=(r=n.unless.call(a,null!=(r=null!=t?t.options:t)?r.editable:r,{name:"unless",hash:{},fn:e.program(3,o,0),inverse:e.noop,data:o}))?r:"")+'">\r\n'+(null!=(r=n.if.call(a,null!=(r=null!=t?t.options:t)?r.editable:r,{name:"if",hash:{},fn:e.program(5,o,0),inverse:e.noop,data:o}))?r:"")+"</div>"},useData:!0})},895:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({1:function(e,t,n,i,o){return"mb-4"},3:function(e,t,n,i,o){var r;e.propertyIsEnumerable;return' <p class="mb-2 py-1 px-2 alert alert-info '+e.escapeExpression(e.lambda(null!=(r=null!=(r=null!=t?t.options:t)?r.styles:r)?r.suggestEdit:r,t))+'">\r\n'+(null!=(r=n.if.call(null!=t?t:e.nullContext||{},null!=(r=null!=t?t.options:t)?r.isExchange:r,{name:"if",hash:{},fn:e.program(4,o,0),inverse:e.program(6,o,0),data:o}))?r:"")+" </p>\r\n"},4:function(e,t,n,i,o){var r;e.propertyIsEnumerable;return" "+(null!=(r=(n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"suggestEditExchange",{name:"lang",hash:{classNames:null!=(r=null!=t?t.options:t)?r.suggestEditClasses:r},data:o}))?r:"")+"\r\n"},6:function(e,t,n,i,o){var r;e.propertyIsEnumerable;return" "+(null!=(r=(n.lang||t&&t.lang||e.hooks.helperMissing).call(null!=t?t:e.nullContext||{},"suggestEdit",{name:"lang",hash:{classNames:null!=(r=null!=t?t.options:t)?r.suggestEditClasses:r},data:o}))?r:"")+"\r\n"},compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o){e.propertyIsEnumerable;var r,a=null!=t?t:e.nullContext||{};return'<div class="row">\r\n <div class="left-pane col-4">\r\n <div class="thumbnail-region"></div>\r\n <div class="cv-tags-region '+(null!=(r=n.unless.call(a,null!=(r=null!=t?t.options:t)?r.editable:r,{name:"unless",hash:{},fn:e.program(1,o,0),inverse:e.noop,data:o}))?r:"")+'"></div>\r\n <div class="customer-tags-region"></div>\r\n </div>\r\n <div class="right-pane col-8">\r\n'+(null!=(r=n.unless.call(a,null!=(r=null!=t?t.options:t)?r.editable:r,{name:"unless",hash:{},fn:e.program(3,o,0),inverse:e.noop,data:o}))?r:"")+' <div class="top-save-region"></div>\r\n <div class="basic-info-region mb-4"></div> \r\n <div class="additional-details-region mb-4"></div> \r\n <div class="production-info-region mb-4"></div> \r\n <div class="fields-region mb-4"></div>\r\n <div class="bottom-save-region"></div>\r\n </div>\r\n</div>'},useData:!0})},896:function(e,t,n){e.exports={suggestEdit:"_1X4l5"}},897:function(e,t,n){var i=n(8);e.exports=(i.default||i).template({compiler:[8,">= 4.3.0"],main:function(e,t,n,i,o){return'<div class="tab-region"></div>\r\n<div class="edit-content-region"></div>\r\n<div class="dialog-region"></div>'},useData:!0})}}]);